blob: 39b918ab833298bc852604fb67b0ea8229f06151 [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.
545 * Must start the GUI for this, otherwise ":gui" will exit later! */
546 if (option->flags & ARG_NEEDS_GUI)
547 gui.starting = TRUE;
548
549 if (option->flags & ARG_KEEP)
550 ++i;
551 else
552 {
553 /* Remove the flag from the argument vector. */
554 if (--*argc > i)
555 {
556 int n_strip = 1;
557
558 /* Move the argument's value as well, if there is one. */
559 if ((option->flags & ARG_HAS_VALUE)
560 && argv[i][len] != '='
561 && strcmp(argv[i + 1], "--") != 0)
562 {
563 ++n_strip;
564 --*argc;
565 if (option->flags & ARG_FOR_GTK)
566 gui_argv[gui_argc++] = argv[i + 1];
567 }
568
569 if (*argc > i)
570 mch_memmove(&argv[i], &argv[i + n_strip],
571 (*argc - i) * sizeof(char *));
572 }
573 argv[*argc] = NULL;
574 }
575 }
576
577 gui_argv[gui_argc] = NULL;
578}
579
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000580#if defined(EXITFREE) || defined(PROTO)
581 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100582gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000583{
584 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000585#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
586 vim_free(abs_restart_command);
587#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588}
589#endif
590
Bram Moolenaar98921892016-02-23 17:14:37 +0100591#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592/*
593 * This should be maybe completely removed.
594 * Doesn't seem possible, since check_copy_area() relies on
595 * this information. --danielk
596 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000598visibility_event(GtkWidget *widget UNUSED,
599 GdkEventVisibility *event,
600 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601{
602 gui.visibility = event->state;
603 /*
604 * When we do an gdk_window_copy_area(), and the window is partially
605 * obscured, we want to receive an event to tell us whether it worked
606 * or not.
607 */
608 if (gui.text_gc != NULL)
609 gdk_gc_set_exposures(gui.text_gc,
610 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
611 return FALSE;
612}
Bram Moolenaar98921892016-02-23 17:14:37 +0100613#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
615/*
616 * Redraw the corresponding portions of the screen.
617 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100618#if GTK_CHECK_VERSION(3,0,0)
619static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100620static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100621
622static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100623static void gui_gtk_window_clear(GdkWindow *win);
624
625 static void
626gui_gtk3_redraw(int x, int y, int width, int height)
627{
628 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
629 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
630 GUI_MON_NOCLEAR);
631}
632
633 static void
634gui_gtk3_update_cursor(cairo_t *cr)
635{
636 if (gui.row == gui.cursor_row)
637 {
638 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100639 if (State & CMDLINE)
640 gui_update_cursor(TRUE, FALSE);
641 else
642 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100643 gui.by_signal = FALSE;
644 cairo_paint(cr);
645 }
646}
647
648 static gboolean
649gui_gtk3_should_draw_cursor(void)
650{
651 unsigned int cond = 0;
652 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100653 if (gui.cursor_col >= gui.col)
654 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100655 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100656 return cond;
657}
658
659 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200660draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100661 cairo_t *cr,
662 gpointer user_data UNUSED)
663{
664 /* Skip this when the GUI isn't set up yet, will redraw later. */
665 if (gui.starting)
666 return FALSE;
667
668 out_flush(); /* make sure all output has been processed */
669 /* for GTK+ 3, may induce other draw events. */
670
671 cairo_set_source_surface(cr, gui.surface, 0, 0);
672
673 /* Draw the window without the cursor. */
674 gui.by_signal = TRUE;
675 {
676 cairo_rectangle_list_t *list = NULL;
677
Bram Moolenaar98921892016-02-23 17:14:37 +0100678 list = cairo_copy_clip_rectangle_list(cr);
679 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
680 {
681 int i;
682 for (i = 0; i < list->num_rectangles; i++)
683 {
684 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200685
686 gui_mch_clear_block(Y_2_ROW(rect.y), 1,
687 Y_2_ROW(rect.y + rect.height - 1), Columns);
688
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100689 if (blink_mode)
690 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
691 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100692 {
693 if (get_real_state() & VISUAL)
694 gui_gtk3_redraw(rect.x, rect.y,
695 rect.width, rect.height);
696 else
697 gui_redraw(rect.x, rect.y, rect.width, rect.height);
698 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100699 }
700 }
701 cairo_rectangle_list_destroy(list);
702
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100703 if (get_real_state() & VISUAL)
704 {
705 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
706 gui_update_cursor(TRUE, TRUE);
707 }
708
Bram Moolenaar98921892016-02-23 17:14:37 +0100709 cairo_paint(cr);
710 }
711 gui.by_signal = FALSE;
712
713 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100714 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100715 gui_gtk3_update_cursor(cr);
716
717 return FALSE;
718}
719#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000721expose_event(GtkWidget *widget UNUSED,
722 GdkEventExpose *event,
723 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724{
725 /* Skip this when the GUI isn't set up yet, will redraw later. */
726 if (gui.starting)
727 return FALSE;
728
729 out_flush(); /* make sure all output has been processed */
730 gui_redraw(event->area.x, event->area.y,
731 event->area.width, event->area.height);
732
733 /* Clear the border areas if needed */
734 if (event->area.x < FILL_X(0))
735 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
736 if (event->area.y < FILL_Y(0))
737 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
738 if (event->area.x > FILL_X(Columns))
739 gdk_window_clear_area(gui.drawarea->window,
740 FILL_X((int)Columns), 0, 0, 0);
741 if (event->area.y > FILL_Y(Rows))
742 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
743
744 return FALSE;
745}
Bram Moolenaar98921892016-02-23 17:14:37 +0100746#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747
748#ifdef FEAT_CLIENTSERVER
749/*
750 * Handle changes to the "Comm" property
751 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000753property_event(GtkWidget *widget,
754 GdkEventProperty *event,
755 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756{
757 if (event->type == GDK_PROPERTY_NOTIFY
758 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100759# if GTK_CHECK_VERSION(3,0,0)
760 && GDK_WINDOW_XID(event->window) == commWindow
761# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100763# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 && GET_X_ATOM(event->atom) == commProperty)
765 {
766 XEvent xev;
767
768 /* Translate to XLib */
769 xev.xproperty.type = PropertyNotify;
770 xev.xproperty.atom = commProperty;
771 xev.xproperty.window = commWindow;
772 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100773# if GTK_CHECK_VERSION(3,0,0)
774 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
775 &xev, 0);
776# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200777 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 }
780 return FALSE;
781}
Bram Moolenaar98921892016-02-23 17:14:37 +0100782#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
784
785/****************************************************************************
786 * Focus handlers:
787 */
788
789
790/*
791 * This is a simple state machine:
792 * BLINK_NONE not blinking at all
793 * BLINK_OFF blinking, cursor is not shown
794 * BLINK_ON blinking, cursor is shown
795 */
796
797#define BLINK_NONE 0
798#define BLINK_OFF 1
799#define BLINK_ON 2
800
801static int blink_state = BLINK_NONE;
802static long_u blink_waittime = 700;
803static long_u blink_ontime = 400;
804static long_u blink_offtime = 250;
805static guint blink_timer = 0;
806
Bram Moolenaar98921892016-02-23 17:14:37 +0100807#if GTK_CHECK_VERSION(3,0,0)
808 static gboolean
809gui_gtk_is_blink_on(void)
810{
811 return blink_state == BLINK_ON;
812}
Bram Moolenaar98921892016-02-23 17:14:37 +0100813#endif
814
Bram Moolenaar703a8042016-06-04 16:24:32 +0200815 int
816gui_mch_is_blinking(void)
817{
818 return blink_state != BLINK_NONE;
819}
820
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200821 int
822gui_mch_is_blink_off(void)
823{
824 return blink_state == BLINK_OFF;
825}
826
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 void
828gui_mch_set_blinking(long waittime, long on, long off)
829{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100830#if GTK_CHECK_VERSION(3,0,0)
831 if (waittime == 0 || on == 0 || off == 0)
832 {
833 blink_mode = FALSE;
834
835 blink_waittime = 700;
836 blink_ontime = 400;
837 blink_offtime = 250;
838 }
839 else
840 {
841 blink_mode = TRUE;
842
843 blink_waittime = waittime;
844 blink_ontime = on;
845 blink_offtime = off;
846 }
847#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 blink_waittime = waittime;
849 blink_ontime = on;
850 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852}
853
854/*
855 * Stop the cursor blinking. Show the cursor if it wasn't shown.
856 */
857 void
858gui_mch_stop_blink(void)
859{
860 if (blink_timer)
861 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100862#if GTK_CHECK_VERSION(3,0,0)
863 g_source_remove(blink_timer);
864#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 blink_timer = 0;
868 }
869 if (blink_state == BLINK_OFF)
870 gui_update_cursor(TRUE, FALSE);
871 blink_state = BLINK_NONE;
872}
873
Bram Moolenaar98921892016-02-23 17:14:37 +0100874#if GTK_CHECK_VERSION(3,0,0)
875 static gboolean
876#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100878#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000879blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880{
881 if (blink_state == BLINK_ON)
882 {
883 gui_undraw_cursor();
884 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100885#if GTK_CHECK_VERSION(3,0,0)
886 blink_timer = g_timeout_add((guint)blink_offtime,
887 (GSourceFunc) blink_cb, NULL);
888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 blink_timer = gtk_timeout_add((guint32)blink_offtime,
890 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 }
893 else
894 {
895 gui_update_cursor(TRUE, FALSE);
896 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100897#if GTK_CHECK_VERSION(3,0,0)
898 blink_timer = g_timeout_add((guint)blink_ontime,
899 (GSourceFunc) blink_cb, NULL);
900#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 blink_timer = gtk_timeout_add((guint32)blink_ontime,
902 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 }
905
906 return FALSE; /* don't happen again */
907}
908
909/*
910 * Start the cursor blinking. If it was already blinking, this restarts the
911 * waiting time and shows the cursor.
912 */
913 void
914gui_mch_start_blink(void)
915{
916 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200917 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100918#if GTK_CHECK_VERSION(3,0,0)
919 g_source_remove(blink_timer);
920#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100922#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200923 blink_timer = 0;
924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 /* Only switch blinking on if none of the times is zero */
926 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
927 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100928#if GTK_CHECK_VERSION(3,0,0)
929 blink_timer = g_timeout_add((guint)blink_waittime,
930 (GSourceFunc) blink_cb, NULL);
931#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 blink_timer = gtk_timeout_add((guint32)blink_waittime,
933 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 blink_state = BLINK_ON;
936 gui_update_cursor(TRUE, FALSE);
937 }
938}
939
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000941enter_notify_event(GtkWidget *widget UNUSED,
942 GdkEventCrossing *event UNUSED,
943 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944{
945 if (blink_state == BLINK_NONE)
946 gui_mch_start_blink();
947
948 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100949#if GTK_CHECK_VERSION(3,0,0)
950 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
951#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100953#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 gtk_widget_grab_focus(gui.drawarea);
955
956 return FALSE;
957}
958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000960leave_notify_event(GtkWidget *widget UNUSED,
961 GdkEventCrossing *event UNUSED,
962 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963{
964 if (blink_state != BLINK_NONE)
965 gui_mch_stop_blink();
966
967 return FALSE;
968}
969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000971focus_in_event(GtkWidget *widget,
972 GdkEventFocus *event UNUSED,
973 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 gui_focus_change(TRUE);
976
977 if (blink_state == BLINK_NONE)
978 gui_mch_start_blink();
979
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000980 /* make sure keyboard input goes to the draw area (if this is focus for a
981 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000982 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000983 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985 return TRUE;
986}
987
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000989focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200990 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000991 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992{
993 gui_focus_change(FALSE);
994
995 if (blink_state != BLINK_NONE)
996 gui_mch_stop_blink();
997
998 return TRUE;
999}
1000
1001
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002/*
1003 * Translate a GDK key value to UTF-8 independently of the current locale.
1004 * The output is written to string, which must have room for at least 6 bytes
1005 * plus the NUL terminator. Returns the length in bytes.
1006 *
1007 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1008 * of GdkEventKey::string instead. But event->string is evil; see here why:
1009 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1010 */
1011 static int
1012keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1013{
1014 int len;
1015 guint32 uc;
1016
1017 uc = gdk_keyval_to_unicode(keyval);
1018 if (uc != 0)
1019 {
1020 /* Check for CTRL-foo */
1021 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1022 {
1023 /* These mappings look arbitrary at the first glance, but in fact
1024 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1025 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1026 * more sense and is consistent with usual terminal behaviour). */
1027 if (uc >= '@')
1028 string[0] = uc & 0x1F;
1029 else if (uc == '2')
1030 string[0] = NUL;
1031 else if (uc >= '3' && uc <= '7')
1032 string[0] = uc ^ 0x28;
1033 else if (uc == '8')
1034 string[0] = BS;
1035 else if (uc == '?')
1036 string[0] = DEL;
1037 else
1038 string[0] = uc;
1039 len = 1;
1040 }
1041 else
1042 {
1043 /* Translate a normal key to UTF-8. This doesn't work for dead
1044 * keys of course, you _have_ to use an input method for that. */
1045 len = utf_char2bytes((int)uc, string);
1046 }
1047 }
1048 else
1049 {
1050 /* Translate keys which are represented by ASCII control codes in Vim.
1051 * There are only a few of those; most control keys are translated to
1052 * special terminal-like control sequences. */
1053 len = 1;
1054 switch (keyval)
1055 {
1056 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1057 string[0] = TAB;
1058 break;
1059 case GDK_Linefeed:
1060 string[0] = NL;
1061 break;
1062 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1063 string[0] = CAR;
1064 break;
1065 case GDK_Escape:
1066 string[0] = ESC;
1067 break;
1068 default:
1069 len = 0;
1070 break;
1071 }
1072 }
1073 string[len] = NUL;
1074
1075 return len;
1076}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001078 static int
1079modifiers_gdk2vim(guint state)
1080{
1081 int modifiers = 0;
1082
1083 if (state & GDK_SHIFT_MASK)
1084 modifiers |= MOD_MASK_SHIFT;
1085 if (state & GDK_CONTROL_MASK)
1086 modifiers |= MOD_MASK_CTRL;
1087 if (state & GDK_MOD1_MASK)
1088 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001089#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001090 if (state & GDK_SUPER_MASK)
1091 modifiers |= MOD_MASK_META;
1092#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001093 if (state & GDK_MOD4_MASK)
1094 modifiers |= MOD_MASK_META;
1095
1096 return modifiers;
1097}
1098
1099 static int
1100modifiers_gdk2mouse(guint state)
1101{
1102 int modifiers = 0;
1103
1104 if (state & GDK_SHIFT_MASK)
1105 modifiers |= MOUSE_SHIFT;
1106 if (state & GDK_CONTROL_MASK)
1107 modifiers |= MOUSE_CTRL;
1108 if (state & GDK_MOD1_MASK)
1109 modifiers |= MOUSE_ALT;
1110
1111 return modifiers;
1112}
1113
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114/*
1115 * Main keyboard handler:
1116 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001118key_press_event(GtkWidget *widget UNUSED,
1119 GdkEventKey *event,
1120 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001122 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1124 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 guint key_sym;
1126 int len;
1127 int i;
1128 int modifiers;
1129 int key;
1130 guint state;
1131 char_u *s, *d;
1132
Bram Moolenaar98921892016-02-23 17:14:37 +01001133#if GTK_CHECK_VERSION(3,0,0)
1134 is_key_pressed = TRUE;
1135 gui_mch_stop_blink();
1136#endif
1137
Bram Moolenaar20892c12011-06-26 04:49:00 +02001138 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 key_sym = event->keyval;
1140 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142#ifdef FEAT_XIM
1143 if (xim_queue_key_press_event(event, TRUE))
1144 return TRUE;
1145#endif
1146
1147#ifdef FEAT_HANGULIN
1148 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1149 {
1150 hangul_input_state_toggle();
1151 return TRUE;
1152 }
1153#endif
1154
1155#ifdef SunXK_F36
1156 /*
1157 * These keys have bogus lookup strings, and trapping them here is
1158 * easier than trying to XRebindKeysym() on them with every possible
1159 * combination of modifiers.
1160 */
1161 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1162 len = 0;
1163 else
1164#endif
1165 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 len = keyval_to_string(key_sym, state, string2);
1167
1168 /* Careful: convert_input() doesn't handle the NUL character.
1169 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1170 if (len > 1 && input_conv.vc_type != CONV_NONE)
1171 len = convert_input(string2, len, sizeof(string2));
1172
1173 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 d = string;
1175 for (i = 0; i < len; ++i)
1176 {
1177 *d++ = s[i];
1178 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1179 {
1180 /* Turn CSI into K_CSI. */
1181 *d++ = KS_EXTRA;
1182 *d++ = (int)KE_CSI;
1183 }
1184 }
1185 len = d - string;
1186 }
1187
1188 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1189 if (key_sym == GDK_ISO_Left_Tab)
1190 {
1191 key_sym = GDK_Tab;
1192 state |= GDK_SHIFT_MASK;
1193 }
1194
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195#ifdef FEAT_MENU
1196 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1197 * is a menu shortcut, we ignore everything with the ALT modifier. */
1198 if ((state & GDK_MOD1_MASK)
1199 && gui.menu_is_active
1200 && (*p_wak == 'y'
1201 || (*p_wak == 'm'
1202 && len == 1
1203 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 /* For GTK2 we return false to signify that we haven't handled the
1205 * keypress, so that gtk will handle the mnemonic or accelerator. */
1206 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207#endif
1208
1209 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1210 * that already has the 8th bit set.
1211 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1212 * Don't do this for double-byte encodings, it turns the char into a lead
1213 * byte. */
1214 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001215 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001216#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001217 || (state & GDK_SUPER_MASK)
1218#endif
1219 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1221 && (string[0] & 0x80) == 0
1222 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 )
1225 {
1226 string[0] |= 0x80;
1227 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 if (enc_utf8) /* convert to utf-8 */
1229 {
1230 string[1] = string[0] & 0xbf;
1231 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1232 if (string[1] == CSI)
1233 {
1234 string[2] = KS_EXTRA;
1235 string[3] = (int)KE_CSI;
1236 len = 4;
1237 }
1238 else
1239 len = 2;
1240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 }
1242
1243 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1244 * value) to detect backspace, delete and keypad keys. */
1245 if (len == 0 || len == 1)
1246 {
1247 for (i = 0; special_keys[i].key_sym != 0; i++)
1248 {
1249 if (special_keys[i].key_sym == key_sym)
1250 {
1251 string[0] = CSI;
1252 string[1] = special_keys[i].code0;
1253 string[2] = special_keys[i].code1;
1254 len = -3;
1255 break;
1256 }
1257 }
1258 }
1259
1260 if (len == 0) /* Unrecognized key */
1261 return TRUE;
1262
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 /* Special keys (and a few others) may have modifiers. Also when using a
1264 * double-byte encoding (can't set the 8th bit). */
1265 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1266 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1267 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1268 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001269 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001270#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001271 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001273 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001275 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
1277 /*
1278 * For some keys a shift modifier is translated into another key
1279 * code.
1280 */
1281 if (len == -3)
1282 key = TO_SPECIAL(string[1], string[2]);
1283 else
1284 key = string[0];
1285
1286 key = simplify_key(key, &modifiers);
1287 if (key == CSI)
1288 key = K_CSI;
1289 if (IS_SPECIAL(key))
1290 {
1291 string[0] = CSI;
1292 string[1] = K_SECOND(key);
1293 string[2] = K_THIRD(key);
1294 len = 3;
1295 }
1296 else
1297 {
1298 string[0] = key;
1299 len = 1;
1300 }
1301
1302 if (modifiers != 0)
1303 {
1304 string2[0] = CSI;
1305 string2[1] = KS_MODIFIER;
1306 string2[2] = modifiers;
1307 add_to_input_buf(string2, 3);
1308 }
1309 }
1310
1311 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1312 || (string[0] == intr_char && intr_char != Ctrl_C)))
1313 {
1314 trash_input_buf();
1315 got_int = TRUE;
1316 }
1317
1318 add_to_input_buf(string, len);
1319
1320 /* blank out the pointer if necessary */
1321 if (p_mh)
1322 gui_mch_mousehide(TRUE);
1323
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 return TRUE;
1325}
1326
Bram Moolenaar98921892016-02-23 17:14:37 +01001327#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001329key_release_event(GtkWidget *widget UNUSED,
1330 GdkEventKey *event,
1331 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332{
Bram Moolenaar98921892016-02-23 17:14:37 +01001333# if GTK_CHECK_VERSION(3,0,0)
1334 is_key_pressed = FALSE;
1335 gui_mch_start_blink();
1336# endif
1337# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001338 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 /*
1340 * GTK+ 2 input methods may do fancy stuff on key release events too.
1341 * With the default IM for instance, you can enter any UCS code point
1342 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1343 */
1344 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001345# else
1346 return TRUE;
1347# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348}
1349#endif
1350
1351
1352/****************************************************************************
1353 * Selection handlers:
1354 */
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001357selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001359 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360{
1361 if (event->selection == clip_plus.gtk_sel_atom)
1362 clip_lose_selection(&clip_plus);
1363 else
1364 clip_lose_selection(&clip_star);
1365
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 return TRUE;
1367}
1368
1369#define RS_NONE 0 /* selection_received_cb() not called yet */
1370#define RS_OK 1 /* selection_received_cb() called and OK */
1371#define RS_FAIL 2 /* selection_received_cb() called and failed */
1372static int received_selection = RS_NONE;
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001375selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001377 guint time_ UNUSED,
1378 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379{
1380 VimClipboard *cbd;
1381 char_u *text;
1382 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001385 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaar98921892016-02-23 17:14:37 +01001387#if GTK_CHECK_VERSION(3,0,0)
1388 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1389#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 cbd = &clip_plus;
1393 else
1394 cbd = &clip_star;
1395
Bram Moolenaar98921892016-02-23 17:14:37 +01001396#if GTK_CHECK_VERSION(3,0,0)
1397 text = (char_u *)gtk_selection_data_get_data(data);
1398 len = gtk_selection_data_get_length(data);
1399#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 text = (char_u *)data->data;
1401 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001402#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
1404 if (text == NULL || len <= 0)
1405 {
1406 received_selection = RS_FAIL;
1407 /* clip_free_selection(cbd); ??? */
1408
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 return;
1410 }
1411
Bram Moolenaar98921892016-02-23 17:14:37 +01001412#if GTK_CHECK_VERSION(3,0,0)
1413 if (gtk_selection_data_get_data_type(data) == vim_atom)
1414#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 {
1418 motion_type = *text++;
1419 --len;
1420 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001421#if GTK_CHECK_VERSION(3,0,0)
1422 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1423#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001425#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 {
1427 char_u *enc;
1428 vimconv_T conv;
1429
1430 motion_type = *text++;
1431 --len;
1432
1433 enc = text;
1434 text += STRLEN(text) + 1;
1435 len -= text - enc;
1436
1437 /* If the encoding of the text is different from 'encoding', attempt
1438 * converting it. */
1439 conv.vc_type = CONV_NONE;
1440 convert_setup(&conv, enc, p_enc);
1441 if (conv.vc_type != CONV_NONE)
1442 {
1443 tmpbuf = string_convert(&conv, text, &len);
1444 if (tmpbuf != NULL)
1445 text = tmpbuf;
1446 convert_setup(&conv, NULL, NULL);
1447 }
1448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 /* gtk_selection_data_get_text() handles all the nasty details
1451 * and targets and encodings etc. This rocks so hard. */
1452 else
1453 {
1454 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1455 if (tmpbuf_utf8 != NULL)
1456 {
1457 len = STRLEN(tmpbuf_utf8);
1458 if (input_conv.vc_type != CONV_NONE)
1459 {
1460 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1461 if (tmpbuf != NULL)
1462 text = tmpbuf;
1463 }
1464 else
1465 text = tmpbuf_utf8;
1466 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001467 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1468 {
1469 vimconv_T conv;
1470
1471 /* UTF-16, we get this for HTML */
1472 conv.vc_type = CONV_NONE;
1473 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1474
1475 if (conv.vc_type != CONV_NONE)
1476 {
1477 text += 2;
1478 len -= 2;
1479 tmpbuf = string_convert(&conv, text, &len);
1480 convert_setup(&conv, NULL, NULL);
1481 }
1482 if (tmpbuf != NULL)
1483 text = tmpbuf;
1484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001487 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001488 while (len > 0 && text[len - 1] == NUL)
1489 --len;
1490
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 clip_yank_selection(motion_type, text, (long)len, cbd);
1492 received_selection = RS_OK;
1493 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495}
1496
1497/*
1498 * Prepare our selection data for passing it to the external selection
1499 * client.
1500 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001502selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 GtkSelectionData *selection_data,
1504 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001505 guint time_ UNUSED,
1506 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507{
1508 char_u *string;
1509 char_u *tmpbuf;
1510 long_u tmplen;
1511 int length;
1512 int motion_type;
1513 GdkAtom type;
1514 VimClipboard *cbd;
1515
Bram Moolenaar98921892016-02-23 17:14:37 +01001516#if GTK_CHECK_VERSION(3,0,0)
1517 if (gtk_selection_data_get_selection(selection_data)
1518 == clip_plus.gtk_sel_atom)
1519#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 cbd = &clip_plus;
1523 else
1524 cbd = &clip_star;
1525
1526 if (!cbd->owned)
1527 return; /* Shouldn't ever happen */
1528
1529 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001530 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 && info != (guint)TARGET_UTF8_STRING
1532 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 && info != (guint)TARGET_VIM
1534 && info != (guint)TARGET_COMPOUND_TEXT
1535 && info != (guint)TARGET_TEXT)
1536 return;
1537
1538 /* get the selection from the '*'/'+' register */
1539 clip_get_selection(cbd);
1540
1541 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1542 if (motion_type < 0 || string == NULL)
1543 return;
1544 /* Due to int arguments we can't handle more than G_MAXINT. Also
1545 * reserve one extra byte for NUL or the motion type; just in case.
1546 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1547 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1548
1549 if (info == (guint)TARGET_VIM)
1550 {
1551 tmpbuf = alloc((unsigned)length + 1);
1552 if (tmpbuf != NULL)
1553 {
1554 tmpbuf[0] = motion_type;
1555 mch_memmove(tmpbuf + 1, string, (size_t)length);
1556 }
1557 /* For our own format, the first byte contains the motion type */
1558 ++length;
1559 vim_free(string);
1560 string = tmpbuf;
1561 type = vim_atom;
1562 }
1563
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001564 else if (info == (guint)TARGET_HTML)
1565 {
1566 vimconv_T conv;
1567
1568 /* Since we get utf-16, we probably should set it as well. */
1569 conv.vc_type = CONV_NONE;
1570 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1571 if (conv.vc_type != CONV_NONE)
1572 {
1573 tmpbuf = string_convert(&conv, string, &length);
1574 convert_setup(&conv, NULL, NULL);
1575 vim_free(string);
1576 string = tmpbuf;
1577 }
1578
1579 /* Prepend the BOM: "fffe" */
1580 if (string != NULL)
1581 {
1582 tmpbuf = alloc(length + 2);
1583 tmpbuf[0] = 0xff;
1584 tmpbuf[1] = 0xfe;
1585 mch_memmove(tmpbuf + 2, string, (size_t)length);
1586 vim_free(string);
1587 string = tmpbuf;
1588 length += 2;
1589
Bram Moolenaar98921892016-02-23 17:14:37 +01001590#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001591 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001592 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001593 selection_data->type = selection_data->target;
1594 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001595#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001596 gtk_selection_data_set(selection_data, html_atom, 16,
1597 string, length);
1598 vim_free(string);
1599 }
1600 return;
1601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 else if (info == (guint)TARGET_VIMENC)
1603 {
1604 int l = STRLEN(p_enc);
1605
1606 /* contents: motion_type 'encoding' NUL text */
1607 tmpbuf = alloc((unsigned)length + l + 2);
1608 if (tmpbuf != NULL)
1609 {
1610 tmpbuf[0] = motion_type;
1611 STRCPY(tmpbuf + 1, p_enc);
1612 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1613 }
1614 length += l + 2;
1615 vim_free(string);
1616 string = tmpbuf;
1617 type = vimenc_atom;
1618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 /* gtk_selection_data_set_text() handles everything for us. This is
1621 * so easy and simple and cool, it'd be insane not to use it. */
1622 else
1623 {
1624 if (output_conv.vc_type != CONV_NONE)
1625 {
1626 tmpbuf = string_convert(&output_conv, string, &length);
1627 vim_free(string);
1628 if (tmpbuf == NULL)
1629 return;
1630 string = tmpbuf;
1631 }
1632 /* Validate the string to avoid runtime warnings */
1633 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1634 {
1635 gtk_selection_data_set_text(selection_data,
1636 (const char *)string, length);
1637 }
1638 vim_free(string);
1639 return;
1640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641
1642 if (string != NULL)
1643 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001644#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001645 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001646 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 selection_data->type = selection_data->target;
1648 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 gtk_selection_data_set(selection_data, type, 8, string, length);
1651 vim_free(string);
1652 }
1653}
1654
1655/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001656 * Check if the GUI can be started. Called before gvimrc is sourced and
1657 * before fork().
1658 * Return OK or FAIL.
1659 */
1660 int
1661gui_mch_early_init_check(void)
1662{
1663 char_u *p;
1664
1665 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1666 p = mch_getenv((char_u *)"DISPLAY");
1667 if (p == NULL || *p == NUL)
1668 {
1669 gui.dying = TRUE;
1670 EMSG(_((char *)e_opendisp));
1671 return FAIL;
1672 }
1673 return OK;
1674}
1675
1676/*
1677 * Check if the GUI can be started. Called before gvimrc is sourced but after
1678 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 * Return OK or FAIL.
1680 */
1681 int
1682gui_mch_init_check(void)
1683{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001684#ifdef USE_GRESOURCE
1685 static int res_registered = FALSE;
1686
1687 if (!res_registered)
1688 {
1689 /* Call this function in the GUI process; otherwise, the resources
1690 * won't be available. Don't call it twice. */
1691 res_registered = TRUE;
1692 gui_gtk_register_resource();
1693 }
1694#endif
1695
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001696#if GTK_CHECK_VERSION(3,10,0)
1697 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1698 * support for other backends such as Wayland. */
1699 gdk_set_allowed_backends ("x11");
1700#endif
1701
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702#ifdef FEAT_GUI_GNOME
1703 if (gtk_socket_id == 0)
1704 using_gnome = 1;
1705#endif
1706
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001707 /* This defaults to argv[0], but we want it to match the name of the
1708 * shipped gvim.desktop so that Vim's windows can be associated with this
1709 * file. */
1710 g_set_prgname("gvim");
1711
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1713 if (!gtk_init_check(&gui_argc, &gui_argv))
1714 {
1715 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001716 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 return FAIL;
1718 }
1719
1720 return OK;
1721}
1722
1723
1724/****************************************************************************
1725 * Mouse handling callbacks
1726 */
1727
1728
1729static guint mouse_click_timer = 0;
1730static int mouse_timed_out = TRUE;
1731
1732/*
1733 * Timer used to recognize multiple clicks of the mouse button
1734 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001735#if GTK_CHECK_VERSION(3,0,0)
1736 static gboolean
1737#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001739#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740mouse_click_timer_cb(gpointer data)
1741{
1742 /* we don't use this information currently */
1743 int *timed_out = (int *) data;
1744
1745 *timed_out = TRUE;
1746 return FALSE; /* don't happen again */
1747}
1748
1749static guint motion_repeat_timer = 0;
1750static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001751#ifdef GTK_DEST_DEFAULT_ALL
1752static gboolean motion_repeat_timer_cb(gpointer);
1753#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001755#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756
1757 static void
1758process_motion_notify(int x, int y, GdkModifierType state)
1759{
1760 int button;
1761 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001762#if GTK_CHECK_VERSION(3,0,0)
1763 GtkAllocation allocation;
1764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1767 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1768 GDK_BUTTON5_MASK))
1769 ? MOUSE_DRAG : ' ';
1770
1771 /* If our pointer is currently hidden, then we should show it. */
1772 gui_mch_mousehide(FALSE);
1773
1774 /* Just moving the rodent above the drawing area without any button
1775 * being pressed. */
1776 if (button != MOUSE_DRAG)
1777 {
1778 gui_mouse_moved(x, y);
1779 return;
1780 }
1781
1782 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001783 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784
Bram Moolenaar49325942007-05-10 19:19:59 +00001785 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1787
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 /*
1789 * Auto repeat timer handling.
1790 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001791#if GTK_CHECK_VERSION(3,0,0)
1792 gtk_widget_get_allocation(gui.drawarea, &allocation);
1793
1794 if (x < 0 || y < 0
1795 || x >= allocation.width
1796 || y >= allocation.height)
1797#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 if (x < 0 || y < 0
1799 || x >= gui.drawarea->allocation.width
1800 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 {
1803
1804 int dx;
1805 int dy;
1806 int offshoot;
1807 int delay = 10;
1808
1809 /* Calculate the maximal distance of the cursor from the drawing area.
1810 * (offshoot can't become negative here!).
1811 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001812#if GTK_CHECK_VERSION(3,0,0)
1813 dx = x < 0 ? -x : x - allocation.width;
1814 dy = y < 0 ? -y : y - allocation.height;
1815#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1817 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001818#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
1820 offshoot = dx > dy ? dx : dy;
1821
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001822 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 * distance of 127 pixels from the main window.
1824 *
1825 * One could think endlessly about the most ergonomic variant here.
1826 * For example it could make sense to calculate the distance from the
1827 * drags start instead...
1828 *
1829 * Maybe a parabolic interpolation would suite us better here too...
1830 */
1831 if (offshoot > 127)
1832 {
1833 /* 5 appears to be somehow near to my perceptual limits :-). */
1834 delay = 5;
1835 }
1836 else
1837 {
1838 delay = (130 * (127 - offshoot)) / 127 + 5;
1839 }
1840
1841 /* shoot again */
1842 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001843#if GTK_CHECK_VERSION(3,0,0)
1844 motion_repeat_timer = g_timeout_add((guint)delay,
1845 motion_repeat_timer_cb, NULL);
1846#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1848 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 }
1851}
1852
Bram Moolenaar98921892016-02-23 17:14:37 +01001853#if GTK_CHECK_VERSION(3,0,0)
1854 static GdkDevice *
1855gui_gtk_get_pointer_device(GtkWidget *widget)
1856{
1857 GdkWindow * const win = gtk_widget_get_window(widget);
1858 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001859# if GTK_CHECK_VERSION(3,20,0)
1860 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1861 return gdk_seat_get_pointer(seat);
1862# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001863 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1864 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001865# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001866}
1867
1868 static GdkWindow *
1869gui_gtk_get_pointer(GtkWidget *widget,
1870 gint *x,
1871 gint *y,
1872 GdkModifierType *state)
1873{
1874 GdkWindow * const win = gtk_widget_get_window(widget);
1875 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1876 return gdk_window_get_device_position(win, dev , x, y, state);
1877}
1878
Bram Moolenaar2369c152016-03-04 23:08:25 +01001879# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001880 static GdkWindow *
1881gui_gtk_window_at_position(GtkWidget *widget,
1882 gint *x,
1883 gint *y)
1884{
1885 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1886 return gdk_device_get_window_at_position(dev, x, y);
1887}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001888# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001889#endif
1890
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891/*
1892 * Timer used to recognize multiple clicks of the mouse button.
1893 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001894#if GTK_CHECK_VERSION(3,0,0)
1895 static gboolean
1896#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001898#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001899motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900{
1901 int x;
1902 int y;
1903 GdkModifierType state;
1904
Bram Moolenaar98921892016-02-23 17:14:37 +01001905#if GTK_CHECK_VERSION(3,0,0)
1906 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1907#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910
1911 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1912 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1913 GDK_BUTTON5_MASK)))
1914 {
1915 motion_repeat_timer = 0;
1916 return FALSE;
1917 }
1918
1919 /* If there already is a mouse click in the input buffer, wait another
1920 * time (otherwise we would create a backlog of clicks) */
1921 if (vim_used_in_input_buf() > 10)
1922 return TRUE;
1923
1924 motion_repeat_timer = 0;
1925
1926 /*
1927 * Fake a motion event.
1928 * Trick: Pretend the mouse moved to the next character on every other
1929 * event, otherwise drag events will be discarded, because they are still
1930 * in the same character.
1931 */
1932 if (motion_repeat_offset)
1933 x += gui.char_width;
1934
1935 motion_repeat_offset = !motion_repeat_offset;
1936 process_motion_notify(x, y, state);
1937
1938 /* Don't happen again. We will get reinstalled in the synthetic event
1939 * if needed -- thus repeating should still work. */
1940 return FALSE;
1941}
1942
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001944motion_notify_event(GtkWidget *widget,
1945 GdkEventMotion *event,
1946 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948 if (event->is_hint)
1949 {
1950 int x;
1951 int y;
1952 GdkModifierType state;
1953
Bram Moolenaar98921892016-02-23 17:14:37 +01001954#if GTK_CHECK_VERSION(3,0,0)
1955 gui_gtk_get_pointer(widget, &x, &y, &state);
1956#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 process_motion_notify(x, y, state);
1960 }
1961 else
1962 {
1963 process_motion_notify((int)event->x, (int)event->y,
1964 (GdkModifierType)event->state);
1965 }
1966
1967 return TRUE; /* handled */
1968}
1969
1970
1971/*
1972 * Mouse button handling. Note please that we are capturing multiple click's
1973 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1974 * This is due to the way the generic VIM code is recognizing multiple clicks.
1975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001977button_press_event(GtkWidget *widget,
1978 GdkEventButton *event,
1979 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980{
1981 int button;
1982 int repeated_click = FALSE;
1983 int x, y;
1984 int_u vim_modifiers;
1985
Bram Moolenaar20892c12011-06-26 04:49:00 +02001986 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001987
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001989#if GTK_CHECK_VERSION(3,0,0)
1990 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1991#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01001993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 gtk_widget_grab_focus(widget);
1995
1996 /*
1997 * Don't let additional events about multiple clicks send by GTK to us
1998 * after the initial button press event confuse us.
1999 */
2000 if (event->type != GDK_BUTTON_PRESS)
2001 return FALSE;
2002
2003 x = event->x;
2004 y = event->y;
2005
2006 /* Handle multiple clicks */
2007 if (!mouse_timed_out && mouse_click_timer)
2008 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002009#if GTK_CHECK_VERSION(3,0,0)
2010 g_source_remove(mouse_click_timer);
2011#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 mouse_click_timer = 0;
2015 repeated_click = TRUE;
2016 }
2017
2018 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002019#if GTK_CHECK_VERSION(3,0,0)
2020 mouse_click_timer = g_timeout_add((guint)p_mouset,
2021 mouse_click_timer_cb, &mouse_timed_out);
2022#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2024 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002025#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026
2027 switch (event->button)
2028 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002029 /* Keep in sync with gui_x11.c.
2030 * Buttons 4-7 are handled in scroll_event() */
2031 case 1: button = MOUSE_LEFT; break;
2032 case 2: button = MOUSE_MIDDLE; break;
2033 case 3: button = MOUSE_RIGHT; break;
2034 case 8: button = MOUSE_X1; break;
2035 case 9: button = MOUSE_X2; break;
2036 default:
2037 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 }
2039
2040#ifdef FEAT_XIM
2041 /* cancel any preediting */
2042 if (im_is_preediting())
2043 xim_reset();
2044#endif
2045
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002046 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047
2048 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049
2050 return TRUE;
2051}
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002054 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002057scroll_event(GtkWidget *widget,
2058 GdkEventScroll *event,
2059 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
2061 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002062 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063
Bram Moolenaar98921892016-02-23 17:14:37 +01002064#if GTK_CHECK_VERSION(3,0,0)
2065 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2066#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002068#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 gtk_widget_grab_focus(widget);
2070
2071 switch (event->direction)
2072 {
2073 case GDK_SCROLL_UP:
2074 button = MOUSE_4;
2075 break;
2076 case GDK_SCROLL_DOWN:
2077 button = MOUSE_5;
2078 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002079 case GDK_SCROLL_LEFT:
2080 button = MOUSE_7;
2081 break;
2082 case GDK_SCROLL_RIGHT:
2083 button = MOUSE_6;
2084 break;
2085 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 return FALSE;
2087 }
2088
2089# ifdef FEAT_XIM
2090 /* cancel any preediting */
2091 if (im_is_preediting())
2092 xim_reset();
2093# endif
2094
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002095 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096
2097 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2098 FALSE, vim_modifiers);
2099
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 return TRUE;
2101}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102
2103
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002105button_release_event(GtkWidget *widget UNUSED,
2106 GdkEventButton *event,
2107 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108{
2109 int x, y;
2110 int_u vim_modifiers;
2111
Bram Moolenaar20892c12011-06-26 04:49:00 +02002112 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002113
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 /* Remove any motion "machine gun" timers used for automatic further
2115 extension of allocation areas if outside of the applications window
2116 area .*/
2117 if (motion_repeat_timer)
2118 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002119#if GTK_CHECK_VERSION(3,0,0)
2120 g_source_remove(motion_repeat_timer);
2121#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002123#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 motion_repeat_timer = 0;
2125 }
2126
2127 x = event->x;
2128 y = event->y;
2129
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002130 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131
2132 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134 return TRUE;
2135}
2136
2137
2138#ifdef FEAT_DND
2139/****************************************************************************
2140 * Drag aNd Drop support handlers.
2141 */
2142
2143/*
2144 * Count how many items there may be and separate them with a NUL.
2145 * Apparently the items are separated with \r\n. This is not documented,
2146 * thus be careful not to go past the end. Also allow separation with
2147 * NUL characters.
2148 */
2149 static int
2150count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2151{
2152 int i;
2153 char_u *p = out;
2154 int count = 0;
2155
2156 for (i = 0; i < len; ++i)
2157 {
2158 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2159 {
2160 if (p > out && p[-1] != NUL)
2161 {
2162 ++count;
2163 *p++ = NUL;
2164 }
2165 }
2166 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2167 {
2168 *p++ = hexhex2nr(raw + i + 1);
2169 i += 2;
2170 }
2171 else
2172 *p++ = raw[i];
2173 }
2174 if (p > out && p[-1] != NUL)
2175 {
2176 *p = NUL; /* last item didn't have \r or \n */
2177 ++count;
2178 }
2179 return count;
2180}
2181
2182/*
2183 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2184 * this process, URI which protocol is not "file:" are removed. Return
2185 * length of array (less than "max").
2186 */
2187 static int
2188filter_uri_list(char_u **outlist, int max, char_u *src)
2189{
2190 int i, j;
2191
2192 for (i = j = 0; i < max; ++i)
2193 {
2194 outlist[i] = NULL;
2195 if (STRNCMP(src, "file:", 5) == 0)
2196 {
2197 src += 5;
2198 if (STRNCMP(src, "//localhost", 11) == 0)
2199 src += 11;
2200 while (src[0] == '/' && src[1] == '/')
2201 ++src;
2202 outlist[j++] = vim_strsave(src);
2203 }
2204 src += STRLEN(src) + 1;
2205 }
2206 return j;
2207}
2208
2209 static char_u **
2210parse_uri_list(int *count, char_u *data, int len)
2211{
2212 int n = 0;
2213 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002214 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215
2216 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2217 {
2218 n = count_and_decode_uri_list(tmp, data, len);
2219 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2220 n = filter_uri_list(array, n, tmp);
2221 }
2222 vim_free(tmp);
2223 *count = n;
2224 return array;
2225}
2226
2227 static void
2228drag_handle_uri_list(GdkDragContext *context,
2229 GtkSelectionData *data,
2230 guint time_,
2231 GdkModifierType state,
2232 gint x,
2233 gint y)
2234{
2235 char_u **fnames;
2236 int nfiles = 0;
2237
Bram Moolenaar98921892016-02-23 17:14:37 +01002238# if GTK_CHECK_VERSION(3,0,0)
2239 fnames = parse_uri_list(&nfiles,
2240 (char_u *)gtk_selection_data_get_data(data),
2241 gtk_selection_data_get_length(data));
2242# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245
2246 if (fnames != NULL && nfiles > 0)
2247 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002248 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249
2250 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2251
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002252 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2255 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002256 else
2257 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258}
2259
2260 static void
2261drag_handle_text(GdkDragContext *context,
2262 GtkSelectionData *data,
2263 guint time_,
2264 GdkModifierType state)
2265{
2266 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2267 char_u *text;
2268 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
Bram Moolenaar98921892016-02-23 17:14:37 +01002271# if GTK_CHECK_VERSION(3,0,0)
2272 text = (char_u *)gtk_selection_data_get_data(data);
2273 len = gtk_selection_data_get_length(data);
2274# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 text = data->data;
2276 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
Bram Moolenaar98921892016-02-23 17:14:37 +01002279# if GTK_CHECK_VERSION(3,0,0)
2280 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2281# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002283# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 if (input_conv.vc_type != CONV_NONE)
2286 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 if (tmpbuf != NULL)
2288 text = tmpbuf;
2289 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 dnd_yank_drag_data(text, (long)len);
2292 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002295 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296
2297 if (dropkey[2] != 0)
2298 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2299 else
2300 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301}
2302
2303/*
2304 * DND receiver.
2305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 static void
2307drag_data_received_cb(GtkWidget *widget,
2308 GdkDragContext *context,
2309 gint x,
2310 gint y,
2311 GtkSelectionData *data,
2312 guint info,
2313 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002314 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
2316 GdkModifierType state;
2317
2318 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002319# if GTK_CHECK_VERSION(3,0,0)
2320 const guchar * const data_data = gtk_selection_data_get_data(data);
2321 const gint data_length = gtk_selection_data_get_length(data);
2322 const gint data_format = gtk_selection_data_get_format(data);
2323
2324 if (data_data == NULL
2325 || data_length <= 0
2326 || data_format != 8
2327 || data_data[data_length] != '\0')
2328# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 if (data->data == NULL
2330 || data->length <= 0
2331 || data->format != 8
2332 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 {
2335 gtk_drag_finish(context, FALSE, FALSE, time_);
2336 return;
2337 }
2338
2339 /* Get the current modifier state for proper distinguishment between
2340 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002341#if GTK_CHECK_VERSION(3,0,0)
2342 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2343# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002345# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346
2347 /* Not sure about the role of "text/plain" here... */
2348 if (info == (guint)TARGET_TEXT_URI_LIST)
2349 drag_handle_uri_list(context, data, time_, state, x, y);
2350 else
2351 drag_handle_text(context, data, time_, state);
2352
2353}
2354#endif /* FEAT_DND */
2355
2356
2357#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2358/*
2359 * GnomeClient interact callback. Check for unsaved buffers that cannot
2360 * be abandoned and pop up a dialog asking the user for confirmation if
2361 * necessary.
2362 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002364sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002366 GnomeDialogType type UNUSED,
2367 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369 cmdmod_T save_cmdmod;
2370 gboolean shutdown_cancelled;
2371
2372 save_cmdmod = cmdmod;
2373
2374# ifdef FEAT_BROWSE
2375 cmdmod.browse = TRUE;
2376# endif
2377# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2378 cmdmod.confirm = TRUE;
2379# endif
2380 /*
2381 * If there are changed buffers, present the user with
2382 * a dialog if possible, otherwise give an error message.
2383 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002384 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385
2386 exiting = FALSE;
2387 cmdmod = save_cmdmod;
2388 setcursor(); /* position the cursor */
2389 out_flush();
2390 /*
2391 * If the user hit the [Cancel] button the whole shutdown
2392 * will be cancelled. Wow, quite powerful feature (:
2393 */
2394 gnome_interaction_key_return(key, shutdown_cancelled);
2395}
2396
2397/*
2398 * Generate a script that can be used to restore the current editing session.
2399 * Save the value of v:this_session before running :mksession in order to make
2400 * automagic session save fully transparent. Return TRUE on success.
2401 */
2402 static int
2403write_session_file(char_u *filename)
2404{
2405 char_u *escaped_filename;
2406 char *mksession_cmdline;
2407 unsigned int save_ssop_flags;
2408 int failed;
2409
2410 /*
2411 * Build an ex command line to create a script that restores the current
2412 * session if executed. Escape the filename to avoid nasty surprises.
2413 */
2414 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2415 if (escaped_filename == NULL)
2416 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002417 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2418 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002420
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 /*
2422 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2423 * unpredictable effects when the session is saved automatically. Also,
2424 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2425 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2426 * enormously large if the GNOME session feature is used regularly.
2427 */
2428 save_ssop_flags = ssop_flags;
2429 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002430 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431
2432 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2433 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2434 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002435 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
2437 ssop_flags = save_ssop_flags;
2438 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002439
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 /*
2441 * Reopen the file and append a command to restore v:this_session,
2442 * as if this save never happened. This is to avoid conflicts with
2443 * the user's own sessions. FIXME: It's probably less hackish to add
2444 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2445 */
2446 if (!failed)
2447 {
2448 FILE *fd;
2449
2450 fd = open_exfile(filename, TRUE, APPENDBIN);
2451
2452 failed = (fd == NULL
2453 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2454 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2455
2456 if (fd != NULL && fclose(fd) != 0)
2457 failed = TRUE;
2458
2459 if (failed)
2460 mch_remove(filename);
2461 }
2462
2463 return !failed;
2464}
2465
2466/*
2467 * "save_yourself" signal handler. Initiate an interaction to ask the user
2468 * for confirmation if necessary. Save the current editing session and tell
2469 * the session manager how to restart Vim.
2470 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 static gboolean
2472sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002473 gint phase UNUSED,
2474 GnomeSaveStyle save_style UNUSED,
2475 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002477 gboolean fast UNUSED,
2478 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479{
2480 static const char suffix[] = "-session.vim";
2481 char *session_file;
2482 unsigned int len;
2483 gboolean success;
2484
2485 /* Always request an interaction if possible. check_changed_any()
2486 * won't actually show a dialog unless any buffers have been modified.
2487 * There doesn't seem to be an obvious way to check that without
2488 * automatically firing the dialog. Anyway, it works just fine. */
2489 if (interact_style == GNOME_INTERACT_ANY)
2490 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2491 &sm_client_check_changed_any,
2492 NULL);
2493 out_flush();
2494 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2495
2496 /* The path is unique for each session save. We do neither know nor care
2497 * which session script will actually be used later. This decision is in
2498 * the domain of the session manager. */
2499 session_file = gnome_config_get_real_path(
2500 gnome_client_get_config_prefix(client));
2501 len = strlen(session_file);
2502
2503 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2504 --len; /* get rid of the superfluous trailing '/' */
2505
2506 session_file = g_renew(char, session_file, len + sizeof(suffix));
2507 memcpy(session_file + len, suffix, sizeof(suffix));
2508
2509 success = write_session_file((char_u *)session_file);
2510
2511 if (success)
2512 {
2513 const char *argv[8];
2514 int i;
2515
2516 /* Tell the session manager how to wipe out the stored session data.
2517 * This isn't as dangerous as it looks, don't worry :) session_file
2518 * is a unique absolute filename. Usually it'll be something like
2519 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2520 i = 0;
2521 argv[i++] = "rm";
2522 argv[i++] = session_file;
2523 argv[i] = NULL;
2524
2525 gnome_client_set_discard_command(client, i, (char **)argv);
2526
2527 /* Tell the session manager how to restore the just saved session.
2528 * This is easily done thanks to Vim's -S option. Pass the -f flag
2529 * since there's no need to fork -- it might even cause confusion.
2530 * Also pass the window role to give the WM something to match on.
2531 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2532 i = 0;
2533 argv[i++] = restart_command;
2534 argv[i++] = "-f";
2535 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 argv[i++] = "--role";
2537 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 argv[i++] = "-S";
2539 argv[i++] = session_file;
2540 argv[i] = NULL;
2541
2542 gnome_client_set_restart_command(client, i, (char **)argv);
2543 gnome_client_set_clone_command(client, 0, NULL);
2544 }
2545
2546 g_free(session_file);
2547
2548 return success;
2549}
2550
2551/*
2552 * Called when the session manager wants us to die. There isn't much to save
2553 * here since "save_yourself" has been emitted before (unless serious trouble
2554 * is happening).
2555 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002557sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558{
2559 /* Don't write messages to the GUI anymore */
2560 full_screen = FALSE;
2561
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002562 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002563 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002564 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 preserve_exit();
2566}
2567
2568/*
2569 * Connect our signal handlers to be notified on session save and shutdown.
2570 */
2571 static void
2572setup_save_yourself(void)
2573{
2574 GnomeClient *client;
2575
2576 client = gnome_master_client();
2577
2578 if (client != NULL)
2579 {
2580 /* Must use the deprecated gtk_signal_connect() for compatibility
2581 * with GNOME 1. Arrgh, zombies! */
2582 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2583 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2584 gtk_signal_connect(GTK_OBJECT(client), "die",
2585 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2586 }
2587}
2588
2589#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2590
2591# ifdef USE_XSMP
2592/*
2593 * GTK tells us that XSMP needs attention
2594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002596local_xsmp_handle_requests(
2597 GIOChannel *source UNUSED,
2598 GIOCondition condition,
2599 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600{
2601 if (condition == G_IO_IN)
2602 {
2603 /* Do stuff; maybe close connection */
2604 if (xsmp_handle_requests() == FAIL)
2605 g_io_channel_unref((GIOChannel *)data);
2606 return TRUE;
2607 }
2608 /* Error */
2609 g_io_channel_unref((GIOChannel *)data);
2610 xsmp_close();
2611 return TRUE;
2612}
2613# endif /* USE_XSMP */
2614
2615/*
2616 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2617 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2618 */
2619 static void
2620setup_save_yourself(void)
2621{
2622 Atom *existing_atoms = NULL;
2623 int count = 0;
2624
Bram Moolenaar98921892016-02-23 17:14:37 +01002625# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 if (xsmp_icefd != -1)
2627 {
2628 /*
2629 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2630 * set up GTK IO monitor
2631 */
2632 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2633
2634 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2635 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002636 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 }
2638 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002639# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 {
2641 /* Fall back to old method */
2642
2643 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002644# if GTK_CHECK_VERSION(3,0,0)
2645 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2646
2647 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2648 GDK_WINDOW_XID(mainwin_win),
2649 &existing_atoms, &count))
2650# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2652 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2653 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002654# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 {
2656 Atom *new_atoms;
2657 Atom save_yourself_xatom;
2658 int i;
2659
2660 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2661
2662 /* check if WM_SAVE_YOURSELF isn't there yet */
2663 for (i = 0; i < count; ++i)
2664 if (existing_atoms[i] == save_yourself_xatom)
2665 break;
2666
2667 if (i == count)
2668 {
2669 /* allocate an Atoms array which is one item longer */
2670 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2671 * sizeof(Atom)));
2672 if (new_atoms != NULL)
2673 {
2674 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2675 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002676# if GTK_CHECK_VERSION(3,0,0)
2677 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2678 GDK_WINDOW_XID(mainwin_win),
2679# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2681 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002682# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 new_atoms, count + 1);
2684 vim_free(new_atoms);
2685 }
2686 }
2687 XFree(existing_atoms);
2688 }
2689 }
2690}
2691
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692/*
2693 * Installing a global event filter seems to be the only way to catch
2694 * client messages of type WM_PROTOCOLS without overriding GDK's own
2695 * client message event filter. Well, that's still better than trying
2696 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 *
2698 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2699 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2700 * I have the nasty feeling modern session managers just don't send this
2701 * deprecated message anymore. Addition: confirmed by several people.
2702 *
2703 * The GNOME session support is much cooler anyway. Unlike this ugly
2704 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2705 * it should work with KDE as well.
2706 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002708global_event_filter(GdkXEvent *xev,
2709 GdkEvent *event UNUSED,
2710 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711{
2712 XEvent *xevent = (XEvent *)xev;
2713
2714 if (xevent != NULL
2715 && xevent->type == ClientMessage
2716 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002717 && (long_u)xevent->xclient.data.l[0]
2718 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 {
2720 out_flush();
2721 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2722 /*
2723 * Set the window's WM_COMMAND property, to let the window manager
2724 * know we are done saving ourselves. We don't want to be
2725 * restarted, thus set argv to NULL.
2726 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002727# if GTK_CHECK_VERSION(3,0,0)
2728 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2729 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2730# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2732 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002733# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 NULL, 0);
2735 return GDK_FILTER_REMOVE;
2736 }
2737
2738 return GDK_FILTER_CONTINUE;
2739}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2741
2742
2743/*
2744 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2745 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002747mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748{
2749/* If you get an error message here, you still need to unpack the runtime
2750 * archive! */
2751#ifdef magick
2752# undef magick
2753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 /* A bit hackish, but avoids casting later and allows optimization */
2755# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756#define magick vim32x32
2757#include "../runtime/vim32x32.xpm"
2758#undef magick
2759#define magick vim16x16
2760#include "../runtime/vim16x16.xpm"
2761#undef magick
2762#define magick vim48x48
2763#include "../runtime/vim48x48.xpm"
2764#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
Bram Moolenaar98921892016-02-23 17:14:37 +01002767#if GTK_CHECK_VERSION(3,0,0)
2768 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2769#endif
2770
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 /* When started with "--echo-wid" argument, write window ID on stdout. */
2772 if (echo_wid_arg)
2773 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002774#if GTK_CHECK_VERSION(3,0,0)
2775 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2776#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 fflush(stdout);
2780 }
2781
2782 if (vim_strchr(p_go, GO_ICON) != NULL)
2783 {
2784 /*
2785 * Add an icon to the main window. For fun and convenience of the user.
2786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 GList *icons = NULL;
2788
2789 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2790 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2791 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2792
2793 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2794
2795 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2796 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 }
2798
2799#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2800 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802#endif
2803 /* Setup to indicate to the window manager that we want to catch the
2804 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2805 * manager instead. */
2806#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2807 if (using_gnome)
2808#endif
2809 setup_save_yourself();
2810
2811#ifdef FEAT_CLIENTSERVER
2812 if (serverName == NULL && serverDelayedStartName != NULL)
2813 {
2814 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002815# if GTK_CHECK_VERSION(3,0,0)
2816 commWindow = GDK_WINDOW_XID(mainwin_win);
2817
2818 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2819 serverDelayedStartName);
2820# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2822
2823 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2824 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002825# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 }
2827 else
2828 {
2829 /*
2830 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2831 * have to change the "server" registration to that of the main window
2832 * If we have not registered a name yet, remember the window
2833 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002834# if GTK_CHECK_VERSION(3,0,0)
2835 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2836 GDK_WINDOW_XID(mainwin_win));
2837# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2839 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002840# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 }
2842 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002843# if GTK_CHECK_VERSION(3,0,0)
2844 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2845 G_CALLBACK(property_event), NULL);
2846# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2848 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002849# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850#endif
2851}
2852
2853 static GdkCursor *
2854create_blank_pointer(void)
2855{
2856 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002857#if GTK_CHECK_VERSION(3,0,0)
2858 GdkPixbuf *blank_mask;
2859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 GdkCursor *cursor;
2863 GdkColor color = { 0, 0, 0, 0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002864#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867
2868#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002869# if GTK_CHECK_VERSION(3,12,0)
2870 {
2871 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2872 GdkScreen * const scrn = gdk_window_get_screen(win);
2873 root_window = gdk_screen_get_root_window(scrn);
2874 }
2875# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002877# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878#endif
2879
2880 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2881 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002882#if GTK_CHECK_VERSION(3,0,0)
2883 {
2884 cairo_surface_t *surf;
2885 cairo_t *cr;
2886
2887 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2888 cr = cairo_create(surf);
2889
2890 cairo_set_source_rgb(cr,
2891 color.red / 65535.0,
2892 color.green / 65535.0,
2893 color.blue / 65535.0);
2894 cairo_rectangle(cr, 0, 0, 1, 1);
2895 cairo_fill(cr);
2896 cairo_destroy(cr);
2897
2898 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2899 cairo_surface_destroy(surf);
2900
2901 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2902 blank_mask, 0, 0);
2903 g_object_unref(blank_mask);
2904 }
2905#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2907 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2908 &color, &color, 0, 0);
2909 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002910#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911
2912 return cursor;
2913}
2914
2915#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 static void
2917mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002918 GdkScreen *previous_screen UNUSED,
2919 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920{
2921 if (!gtk_widget_has_screen(widget))
2922 return;
2923
2924 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002925 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 */
2927 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002928# if GTK_CHECK_VERSION(3,0,0)
2929 g_object_unref(G_OBJECT(gui.blank_pointer));
2930# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002932# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
2934 gui.blank_pointer = create_blank_pointer();
2935
Bram Moolenaar98921892016-02-23 17:14:37 +01002936# if GTK_CHECK_VERSION(3,0,0)
2937 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2938 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2939 gui.blank_pointer);
2940# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2942 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002943# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
2945 /*
2946 * Create a new PangoContext for this screen, and initialize it
2947 * with the current font if necessary.
2948 */
2949 if (gui.text_context != NULL)
2950 g_object_unref(gui.text_context);
2951
2952 gui.text_context = gtk_widget_create_pango_context(widget);
2953 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2954
2955 if (gui.norm_font != NULL)
2956 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002957 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002958 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 }
2960}
2961#endif /* HAVE_GTK_MULTIHEAD */
2962
2963/*
2964 * After the drawing area comes up, we calculate all colors and create the
2965 * dummy blank cursor.
2966 *
2967 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2968 * fact that the main VIM engine doesn't take them into account anywhere.
2969 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002971drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002974#if GTK_CHECK_VERSION(3,0,0)
2975 GtkAllocation allocation;
2976#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977
2978#ifdef FEAT_XIM
2979 xim_init();
2980#endif
2981 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002982#if GTK_CHECK_VERSION(3,0,0)
2983 gui.surface = gdk_window_create_similar_surface(
2984 gtk_widget_get_window(widget),
2985 CAIRO_CONTENT_COLOR_ALPHA,
2986 gtk_widget_get_allocated_width(widget),
2987 gtk_widget_get_allocated_height(widget));
2988#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
2992 gui.blank_pointer = create_blank_pointer();
2993 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002994#if GTK_CHECK_VERSION(3,0,0)
2995 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
2996#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002998#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999
3000 /* get the actual size of the scrollbars, if they are realized */
3001 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
3002 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
3003 && firstwin->w_scrollbars[SBAR_RIGHT].id))
3004 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003005#if GTK_CHECK_VERSION(3,0,0)
3006 gtk_widget_get_allocation(sbar, &allocation);
3007 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3008 gui.scrollbar_width = allocation.width;
3009#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3011 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
3014 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003015#if GTK_CHECK_VERSION(3,0,0)
3016 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3017 gui.scrollbar_height = allocation.height;
3018#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3020 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003021#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022}
3023
3024/*
3025 * Properly clean up on shutdown.
3026 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003028drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
3030 /* Don't write messages to the GUI anymore */
3031 full_screen = FALSE;
3032
3033#ifdef FEAT_XIM
3034 im_shutdown();
3035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 if (gui.ascii_glyphs != NULL)
3037 {
3038 pango_glyph_string_free(gui.ascii_glyphs);
3039 gui.ascii_glyphs = NULL;
3040 }
3041 if (gui.ascii_font != NULL)
3042 {
3043 g_object_unref(gui.ascii_font);
3044 gui.ascii_font = NULL;
3045 }
3046 g_object_unref(gui.text_context);
3047 gui.text_context = NULL;
3048
Bram Moolenaar98921892016-02-23 17:14:37 +01003049#if GTK_CHECK_VERSION(3,0,0)
3050 if (gui.surface != NULL)
3051 {
3052 cairo_surface_destroy(gui.surface);
3053 gui.surface = NULL;
3054 }
3055#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 g_object_unref(gui.text_gc);
3057 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059
Bram Moolenaar98921892016-02-23 17:14:37 +01003060#if GTK_CHECK_VERSION(3,0,0)
3061 g_object_unref(G_OBJECT(gui.blank_pointer));
3062#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003069drawarea_style_set_cb(GtkWidget *widget UNUSED,
3070 GtkStyle *previous_style UNUSED,
3071 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072{
3073 gui_mch_new_colors();
3074}
3075
Bram Moolenaar98921892016-02-23 17:14:37 +01003076#if GTK_CHECK_VERSION(3,0,0)
3077 static gboolean
3078drawarea_configure_event_cb(GtkWidget *widget,
3079 GdkEventConfigure *event,
3080 gpointer data UNUSED)
3081{
3082 static int cur_width = 0;
3083 static int cur_height = 0;
3084
3085 g_return_val_if_fail(event
3086 && event->width >= 1 && event->height >= 1, TRUE);
3087
3088 if (event->width == cur_width && event->height == cur_height)
3089 return TRUE;
3090
3091 cur_width = event->width;
3092 cur_height = event->height;
3093
3094 if (gui.surface != NULL)
3095 cairo_surface_destroy(gui.surface);
3096
3097 gui.surface = gdk_window_create_similar_surface(
3098 gtk_widget_get_window(widget),
3099 CAIRO_CONTENT_COLOR_ALPHA,
3100 event->width, event->height);
3101
3102 gtk_widget_queue_draw(widget);
3103
3104 return TRUE;
3105}
3106#endif
3107
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108/*
3109 * Callback routine for the "delete_event" signal on the toplevel window.
3110 * Tries to vim gracefully, or refuses to exit with changed buffers.
3111 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003113delete_event_cb(GtkWidget *widget UNUSED,
3114 GdkEventAny *event UNUSED,
3115 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116{
3117 gui_shell_closed();
3118 return TRUE;
3119}
3120
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003121#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3122 static int
3123get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3124{
3125 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3126
Bram Moolenaar98921892016-02-23 17:14:37 +01003127# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003128 if (using_gnome && widget != NULL)
3129 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003130 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003131 BonoboDockItem *dockitem;
3132
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003133 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003134 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3135 {
3136 /* Only menu & toolbar are dock items. Could tabline be?
3137 * Seem to be only the 2 defined in GNOME */
3138 widget = parent;
3139 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003140
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003141 if (dockitem == NULL || dockitem->is_floating)
3142 return 0;
3143 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3144 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003145 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003146# endif
3147# if GTK_CHECK_VERSION(3,0,0)
3148 if (widget != NULL
3149 && item_orientation == orientation
3150 && gtk_widget_get_realized(widget)
3151 && gtk_widget_get_visible(widget))
3152# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003153 if (widget != NULL
3154 && item_orientation == orientation
3155 && GTK_WIDGET_REALIZED(widget)
3156 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003157# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003158 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003159# if GTK_CHECK_VERSION(3,0,0)
3160 GtkAllocation allocation;
3161
3162 gtk_widget_get_allocation(widget, &allocation);
3163
3164 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3165 return allocation.height;
3166 else
3167 return allocation.width;
3168# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003169 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3170 return widget->allocation.height;
3171 else
3172 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003173# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003174 }
3175 return 0;
3176}
3177#endif
3178
3179 static int
3180get_menu_tool_width(void)
3181{
3182 int width = 0;
3183
3184#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3185# ifdef FEAT_MENU
3186 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3187# endif
3188# ifdef FEAT_TOOLBAR
3189 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3190# endif
3191# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003192 if (gui.tabline != NULL)
3193 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194# endif
3195#endif
3196
3197 return width;
3198}
3199
3200 static int
3201get_menu_tool_height(void)
3202{
3203 int height = 0;
3204
3205#ifdef FEAT_MENU
3206 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3207#endif
3208#ifdef FEAT_TOOLBAR
3209 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3210#endif
3211#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003212 if (gui.tabline != NULL)
3213 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003214#endif
3215
3216 return height;
3217}
3218
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003219/* This controls whether we can set the real window hints at
3220 * start-up when in a GtkPlug.
3221 * 0 = normal processing (default)
3222 * 1 = init. hints set, no-one's tried to reset since last check
3223 * 2 = init. hints set, attempt made to change hints
3224 */
3225static int init_window_hints_state = 0;
3226
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003227 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003228update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229{
3230 static int old_width = 0;
3231 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003232 static int old_min_width = 0;
3233 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003234 static int old_char_width = 0;
3235 static int old_char_height = 0;
3236
3237 int width;
3238 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003239 int min_width;
3240 int min_height;
3241
3242 /* At start-up, don't try to set the hints until the initial
3243 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003244 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003245 */
3246 if (!(force_width && force_height) && init_window_hints_state > 0)
3247 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003248 /* Don't do it! */
3249 init_window_hints_state = 2;
3250 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003251 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003252
3253 /* This also needs to be done when the main window isn't there yet,
3254 * otherwise the hints don't work. */
3255 width = gui_get_base_width();
3256 height = gui_get_base_height();
3257# ifdef FEAT_MENU
3258 height += tabline_height() * gui.char_height;
3259# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003260 width += get_menu_tool_width();
3261 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003262
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003263 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003264 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003265 * 'set columns=' or init. -geom) we briefly set the min. to the size
3266 * we wish to be instead of the legitimate minimum so that we actually
3267 * resize correctly.
3268 */
3269 if (force_width && force_height)
3270 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003271 min_width = force_width;
3272 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003273 }
3274 else
3275 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003276 min_width = width + MIN_COLUMNS * gui.char_width;
3277 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003278 }
3279
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003280 /* Avoid an expose event when the size didn't change. */
3281 if (width != old_width
3282 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003283 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003284 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003285 || gui.char_width != old_char_width
3286 || gui.char_height != old_char_height)
3287 {
3288 GdkGeometry geometry;
3289 GdkWindowHints geometry_mask;
3290
3291 geometry.width_inc = gui.char_width;
3292 geometry.height_inc = gui.char_height;
3293 geometry.base_width = width;
3294 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003295 geometry.min_width = min_width;
3296 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003297 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3298 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003299 /* Using gui.formwin as geometry widget doesn't work as expected
3300 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3301 * in Vim confuse GTK+. */
3302 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3303 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003304 old_width = width;
3305 old_height = height;
3306 old_min_width = min_width;
3307 old_min_height = min_height;
3308 old_char_width = gui.char_width;
3309 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003310 }
3311}
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313#ifdef FEAT_TOOLBAR
3314
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315/*
3316 * This extra effort wouldn't be necessary if we only used stock icons in the
3317 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3318 * shouldn't be treated differently, thus we do need this.
3319 */
3320 static void
3321icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3322{
3323 if (GTK_IS_IMAGE(widget))
3324 {
3325 GtkImage *image = (GtkImage *)widget;
3326
Bram Moolenaar98921892016-02-23 17:14:37 +01003327# if GTK_CHECK_VERSION(3,10,0)
3328 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3329 {
3330 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3331 const gchar *icon_name;
3332
3333 gtk_image_get_icon_name(image, &icon_name, NULL);
3334
3335 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3336 }
3337# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 /* User-defined icons are stored in a GtkIconSet */
3339 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3340 {
3341 GtkIconSet *icon_set;
3342 GtkIconSize icon_size;
3343
3344 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3345 icon_size = (GtkIconSize)(long)user_data;
3346
3347 gtk_icon_set_ref(icon_set);
3348 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3349 gtk_icon_set_unref(icon_set);
3350 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003351# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 }
3353 else if (GTK_IS_CONTAINER(widget))
3354 {
3355 gtk_container_foreach((GtkContainer *)widget,
3356 &icon_size_changed_foreach,
3357 user_data);
3358 }
3359}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360
3361 static void
3362set_toolbar_style(GtkToolbar *toolbar)
3363{
3364 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 GtkIconSize size;
3366 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3369 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3370 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003371 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3373 style = GTK_TOOLBAR_BOTH;
3374 else if (toolbar_flags & TOOLBAR_TEXT)
3375 style = GTK_TOOLBAR_TEXT;
3376 else
3377 style = GTK_TOOLBAR_ICONS;
3378
3379 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003380# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003382# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 switch (tbis_flags)
3385 {
3386 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3387 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3388 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3389 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003390 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3391 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 default: size = GTK_ICON_SIZE_INVALID; break;
3393 }
3394 oldsize = gtk_toolbar_get_icon_size(toolbar);
3395
3396 if (size == GTK_ICON_SIZE_INVALID)
3397 {
3398 /* Let global user preferences decide the icon size. */
3399 gtk_toolbar_unset_icon_size(toolbar);
3400 size = gtk_toolbar_get_icon_size(toolbar);
3401 }
3402 if (size != oldsize)
3403 {
3404 gtk_container_foreach(GTK_CONTAINER(toolbar),
3405 &icon_size_changed_foreach,
3406 GINT_TO_POINTER((int)size));
3407 }
3408 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409}
3410
3411#endif /* FEAT_TOOLBAR */
3412
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003413#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3414static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003415static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003416# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003417static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003418# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003419static int clicked_page; /* page clicked in tab line */
3420
3421/*
3422 * Handle selecting an item in the tab line popup menu.
3423 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003424 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003425tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003426{
Bram Moolenaara5621492006-02-25 21:55:24 +00003427 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003428 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003429}
3430
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003431 static void
3432add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3433{
3434 GtkWidget *item;
3435 char_u *utf_text;
3436
3437 utf_text = CONVERT_TO_UTF8(text);
3438 item = gtk_menu_item_new_with_label((const char *)utf_text);
3439 gtk_widget_show(item);
3440 CONVERT_TO_UTF8_FREE(utf_text);
3441
3442 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003443# if GTK_CHECK_VERSION(3,0,0)
3444 g_signal_connect(G_OBJECT(item), "activate",
3445 G_CALLBACK(tabline_menu_handler),
3446 GINT_TO_POINTER(resp));
3447# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003448 gtk_signal_connect(GTK_OBJECT(item), "activate",
3449 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003450 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003451# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003452}
3453
Bram Moolenaara5621492006-02-25 21:55:24 +00003454/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003455 * Create a menu for the tab line.
3456 */
3457 static GtkWidget *
3458create_tabline_menu(void)
3459{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003460 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003461
3462 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003463 if (first_tabpage->tp_next != NULL)
3464 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3465 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003466 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3467 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003468
3469 return menu;
3470}
3471
3472 static gboolean
3473on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3474{
3475 /* Was this button press event ? */
3476 if (event->type == GDK_BUTTON_PRESS)
3477 {
3478 GdkEventButton *bevent = (GdkEventButton *)event;
3479 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003480 int y = bevent->y;
3481 GtkWidget *tabwidget;
3482 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003483
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003484 /* When ignoring events return TRUE so that the selected page doesn't
3485 * change. */
3486 if (hold_gui_events
3487# ifdef FEAT_CMDWIN
3488 || cmdwin_type != 0
3489# endif
3490 )
3491 return TRUE;
3492
Bram Moolenaar98921892016-02-23 17:14:37 +01003493# if GTK_CHECK_VERSION(3,0,0)
3494 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3495# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003496 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003497# endif
3498
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003499 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003500# if GTK_CHECK_VERSION(3,0,0)
3501 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3502 "tab_num"));
3503# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003504 clicked_page = (int)(long)gtk_object_get_user_data(
3505 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003506# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003507
3508 /* If the event was generated for 3rd button popup the menu. */
3509 if (bevent->button == 3)
3510 {
3511 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3512 bevent->button, bevent->time);
3513 /* We handled the event. */
3514 return TRUE;
3515 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003516 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003517 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003518 if (clicked_page == 0)
3519 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003520 /* Click after all tabs moves to next tab page. When "x" is
3521 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003522 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003523 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003524 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003525 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003526
Bram Moolenaara5621492006-02-25 21:55:24 +00003527 /* We didn't handle the event. */
3528 return FALSE;
3529}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003530
3531/*
3532 * Handle selecting one of the tabs.
3533 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003534 static void
3535on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003536 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003537# if GTK_CHECK_VERSION(3,0,0)
3538 gpointer *page UNUSED,
3539# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003540 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003541# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003542 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003543 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003544{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003545 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003546 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003547 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003548 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003549}
3550
3551/*
3552 * Show or hide the tabline.
3553 */
3554 void
3555gui_mch_show_tabline(int showit)
3556{
3557 if (gui.tabline == NULL)
3558 return;
3559
3560 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3561 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003562 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003563 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003564 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003565 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003566# if GTK_CHECK_VERSION(3,0,0)
3567 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3568# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003569 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003570# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003571 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003572
3573 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003574}
3575
3576/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003577 * Return TRUE when tabline is displayed.
3578 */
3579 int
3580gui_mch_showing_tabline(void)
3581{
3582 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003583 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003584}
3585
3586/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003587 * Update the labels of the tabline.
3588 */
3589 void
3590gui_mch_update_tabline(void)
3591{
3592 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003593 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003594 GtkWidget *label;
3595 tabpage_T *tp;
3596 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003597 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003598 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003599 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003600
3601 if (gui.tabline == NULL)
3602 return;
3603
3604 ignore_tabline_evt = TRUE;
3605
3606 /* Add a label for each tab page. They all contain the same text area. */
3607 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3608 {
3609 if (tp == curtab)
3610 curtabidx = nr;
3611
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003612 tab_num = nr + 1;
3613
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003614 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3615 if (page == NULL)
3616 {
3617 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003618# if GTK_CHECK_VERSION(3,2,0)
3619 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3620 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3621# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003622 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003623# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003624 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003625 event_box = gtk_event_box_new();
3626 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003627 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003628# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003629 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003630# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003631 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003632 gtk_widget_show(label);
3633 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3634 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003635 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003636 nr++);
3637 }
3638
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003639 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003640# if GTK_CHECK_VERSION(3,0,0)
3641 g_object_set_data(G_OBJECT(event_box), "tab_num",
3642 GINT_TO_POINTER(tab_num));
3643# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003644 gtk_object_set_user_data(GTK_OBJECT(event_box),
3645 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003646# endif
3647# if GTK_CHECK_VERSION(3,0,0)
3648 label = gtk_bin_get_child(GTK_BIN(event_box));
3649# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003650 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003651# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003652 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003653 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003654 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003655 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003656
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003657 get_tabline_label(tp, TRUE);
3658 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003659# if GTK_CHECK_VERSION(3,0,0)
3660 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3661# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003662 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3663 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003664# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003665 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003666 }
3667
3668 /* Remove any old labels. */
3669 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3670 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3671
Bram Moolenaar98921892016-02-23 17:14:37 +01003672# if GTK_CHECK_VERSION(3,0,0)
3673 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3674 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3675# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003676 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003677 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003678# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003679
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003680 /* Make sure everything is in place before drawing text. */
3681 gui_mch_update();
3682
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003683 ignore_tabline_evt = FALSE;
3684}
3685
3686/*
3687 * Set the current tab to "nr". First tab is 1.
3688 */
3689 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003690gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691{
3692 if (gui.tabline == NULL)
3693 return;
3694
3695 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003696# if GTK_CHECK_VERSION(3,0,0)
3697 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3698 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3699# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003700 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003701 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003702# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003703 ignore_tabline_evt = FALSE;
3704}
3705
3706#endif /* FEAT_GUI_TABLINE */
3707
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003709 * Add selection targets for PRIMARY and CLIPBOARD selections.
3710 */
3711 void
3712gui_gtk_set_selection_targets(void)
3713{
3714 int i, j = 0;
3715 int n_targets = N_SELECTION_TARGETS;
3716 GtkTargetEntry targets[N_SELECTION_TARGETS];
3717
3718 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3719 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003720 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003721 * return something, instead of trying another target. Therefore only
3722 * offer TARGET_HTML when it works. */
3723 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3724 n_targets--;
3725 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003726 targets[j++] = selection_targets[i];
3727 }
3728
3729 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3730 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3731 gtk_selection_add_targets(gui.drawarea,
3732 (GdkAtom)GDK_SELECTION_PRIMARY,
3733 targets, n_targets);
3734 gtk_selection_add_targets(gui.drawarea,
3735 (GdkAtom)clip_plus.gtk_sel_atom,
3736 targets, n_targets);
3737}
3738
3739/*
3740 * Set up for receiving DND items.
3741 */
3742 void
3743gui_gtk_set_dnd_targets(void)
3744{
3745 int i, j = 0;
3746 int n_targets = N_DND_TARGETS;
3747 GtkTargetEntry targets[N_DND_TARGETS];
3748
3749 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3750 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003751 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003752 n_targets--;
3753 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003754 targets[j++] = dnd_targets[i];
3755 }
3756
3757 gtk_drag_dest_unset(gui.drawarea);
3758 gtk_drag_dest_set(gui.drawarea,
3759 GTK_DEST_DEFAULT_ALL,
3760 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003761 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003762}
3763
3764/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3766 * Returns OK for success, FAIL when the GUI can't be started.
3767 */
3768 int
3769gui_mch_init(void)
3770{
3771 GtkWidget *vbox;
3772
3773#ifdef FEAT_GUI_GNOME
3774 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3775 * exits on failure, but that's a non-issue because we already called
3776 * gtk_init_check() in gui_mch_init_check(). */
3777 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003778 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3780 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003781# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003782 {
3783 char *p = setlocale(LC_NUMERIC, NULL);
3784
3785 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3786 * init may change it. */
3787 if (p == NULL || strcmp(p, "C") != 0)
3788 setlocale(LC_NUMERIC, "C");
3789 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003790# endif
3791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792#endif
3793 vim_free(gui_argv);
3794 gui_argv = NULL;
3795
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003796#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 /* Set the human-readable application name */
3798 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 /*
3801 * Force UTF-8 output no matter what the value of 'encoding' is.
3802 * did_set_string_option() in option.c prohibits changing 'termencoding'
3803 * to something else than UTF-8 if the GUI is in use.
3804 */
3805 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3806
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003807#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003809#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3811 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003812#if !GTK_CHECK_VERSION(3,0,0)
3813# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816#endif
3817
3818 /* Initialize values */
3819 gui.border_width = 2;
3820 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3821 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003822 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003824 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003826 /* LINTED: avoid warning: conversion to 'unsigned long' */
3827 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
3829 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003830 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832
3833 /* Set default foreground and background colors. */
3834 gui.norm_pixel = gui.def_norm_pixel;
3835 gui.back_pixel = gui.def_back_pixel;
3836
3837 if (gtk_socket_id != 0)
3838 {
3839 GtkWidget *plug;
3840
3841 /* Use GtkSocket from another app. */
3842#ifdef HAVE_GTK_MULTIHEAD
3843 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3844 gtk_socket_id);
3845#else
3846 plug = gtk_plug_new(gtk_socket_id);
3847#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003848#if GTK_CHECK_VERSION(3,0,0)
3849 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3850#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 {
3854 gui.mainwin = plug;
3855 }
3856 else
3857 {
3858 g_warning("Connection to GTK+ socket (ID %u) failed",
3859 (unsigned int)gtk_socket_id);
3860 /* Pretend we never wanted it if it failed (get own window) */
3861 gtk_socket_id = 0;
3862 }
3863 }
3864
3865 if (gtk_socket_id == 0)
3866 {
3867#ifdef FEAT_GUI_GNOME
3868 if (using_gnome)
3869 {
3870 gui.mainwin = gnome_app_new("Vim", NULL);
3871# ifdef USE_XSMP
3872 /* Use the GNOME save-yourself functionality now. */
3873 xsmp_close();
3874# endif
3875 }
3876 else
3877#endif
3878 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3879 }
3880
3881 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 /* Create the PangoContext used for drawing all text. */
3884 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3885 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886
Bram Moolenaar98921892016-02-23 17:14:37 +01003887#if GTK_CHECK_VERSION(3,0,0)
3888 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3889#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3893
Bram Moolenaar98921892016-02-23 17:14:37 +01003894#if GTK_CHECK_VERSION(3,0,0)
3895 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3896 G_CALLBACK(&delete_event_cb), NULL);
3897
3898 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3899 G_CALLBACK(&mainwin_realize), NULL);
3900#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3902 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3903
3904 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3905 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907#ifdef HAVE_GTK_MULTIHEAD
3908 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3909 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3910#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 gui.accel_group = gtk_accel_group_new();
3912 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003914 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003915#if GTK_CHECK_VERSION(3,2,0)
3916 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3917 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3918#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
3922#ifdef FEAT_GUI_GNOME
3923 if (using_gnome)
3924 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003925# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 /* automagically restore menubar/toolbar placement */
3927 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3928# endif
3929 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3930 }
3931 else
3932#endif
3933 {
3934 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3935 gtk_widget_show(vbox);
3936 }
3937
3938#ifdef FEAT_MENU
3939 /*
3940 * Create the menubar and handle
3941 */
3942 gui.menubar = gtk_menu_bar_new();
3943 gtk_widget_set_name(gui.menubar, "vim-menubar");
3944
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003945 /* Avoid that GTK takes <F10> away from us. */
3946 {
3947 GtkSettings *gtk_settings;
3948
3949 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3950 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3951 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003952
3953
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954# ifdef FEAT_GUI_GNOME
3955 if (using_gnome)
3956 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 BonoboDockItem *dockitem;
3958
3959 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3960 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3961 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003962 /* We don't want the menu to float. */
3963 bonobo_dock_item_set_behavior(dockitem,
3964 bonobo_dock_item_get_behavior(dockitem)
3965 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 }
3968 else
3969# endif /* FEAT_GUI_GNOME */
3970 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003971 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3972 * disabled in gui_init() later. */
3973 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3975 }
3976#endif /* FEAT_MENU */
3977
3978#ifdef FEAT_TOOLBAR
3979 /*
3980 * Create the toolbar and handle
3981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003983# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003984 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003985 /* N.B. Since the default value of GtkToolbar::button-relief is
3986 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3987# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 gtk_rc_parse_string(
3989 "style \"vim-toolbar-style\" {\n"
3990 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3991 "}\n"
3992 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003993# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 gui.toolbar = gtk_toolbar_new();
3995 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3997
3998# ifdef FEAT_GUI_GNOME
3999 if (using_gnome)
4000 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 BonoboDockItem *dockitem;
4002
4003 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4004 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4005 GNOME_APP_TOOLBAR_NAME);
4006 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004007 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004008 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004009 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004010 bonobo_dock_item_get_behavior(dockitem)
4011 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 }
4014 else
4015# endif /* FEAT_GUI_GNOME */
4016 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4018 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4019 gtk_widget_show(gui.toolbar);
4020 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4021 }
4022#endif /* FEAT_TOOLBAR */
4023
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004024#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004025 /*
4026 * Use a Notebook for the tab pages labels. The labels are hidden by
4027 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004028 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004029 gui.tabline = gtk_notebook_new();
4030 gtk_widget_show(gui.tabline);
4031 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4032 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4033 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004034 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004035# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004036 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004037# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004038
Bram Moolenaar98921892016-02-23 17:14:37 +01004039# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004040 tabline_tooltip = gtk_tooltips_new();
4041 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004042# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004043
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004044 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004045 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004046
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004047 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004048# if GTK_CHECK_VERSION(3,2,0)
4049 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4050 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4051# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004052 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004053# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004054 gtk_widget_show(page);
4055 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4056 label = gtk_label_new("-Empty-");
4057 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004058 event_box = gtk_event_box_new();
4059 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004060# if GTK_CHECK_VERSION(3,0,0)
4061 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4062# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004063 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004064# endif
4065# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004066 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004067# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004068 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004069 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004070 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004071
Bram Moolenaar98921892016-02-23 17:14:37 +01004072# if GTK_CHECK_VERSION(3,0,0)
4073 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4074 G_CALLBACK(on_select_tab), NULL);
4075# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004076 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004077 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004078# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004079
4080 /* Create a popup menu for the tab line and connect it. */
4081 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004082# if GTK_CHECK_VERSION(3,0,0)
4083 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4084 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4085# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004086 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004087 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004088# endif
4089#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004090
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004092#if GTK_CHECK_VERSION(3,0,0)
4093 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4094#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004096#endif
4097#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004099#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100
4101 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004102#if GTK_CHECK_VERSION(3,0,0)
4103 gui.surface = NULL;
4104 gui.by_signal = FALSE;
4105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106
4107 /* Determine which events we will filter. */
4108 gtk_widget_set_events(gui.drawarea,
4109 GDK_EXPOSURE_MASK |
4110 GDK_ENTER_NOTIFY_MASK |
4111 GDK_LEAVE_NOTIFY_MASK |
4112 GDK_BUTTON_PRESS_MASK |
4113 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 GDK_KEY_PRESS_MASK |
4116 GDK_KEY_RELEASE_MASK |
4117 GDK_POINTER_MOTION_MASK |
4118 GDK_POINTER_MOTION_HINT_MASK);
4119
4120 gtk_widget_show(gui.drawarea);
4121 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4122 gtk_widget_show(gui.formwin);
4123 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4124
4125 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4126 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004127#if GTK_CHECK_VERSION(3,0,0)
4128 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4129 : G_OBJECT(gui.drawarea),
4130 "key-press-event",
4131 G_CALLBACK(key_press_event), NULL);
4132#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4134 : GTK_OBJECT(gui.drawarea),
4135 "key_press_event",
4136 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004137#endif
4138#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 /* Also forward key release events for the benefit of GTK+ 2 input
4140 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4141 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4142 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004143 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 G_CALLBACK(&key_release_event), NULL);
4145#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004146#if GTK_CHECK_VERSION(3,0,0)
4147 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4148 G_CALLBACK(drawarea_realize_cb), NULL);
4149 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4150 G_CALLBACK(drawarea_unrealize_cb), NULL);
4151 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4152 G_CALLBACK(drawarea_configure_event_cb), NULL);
4153 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4154 G_CALLBACK(&drawarea_style_set_cb), NULL);
4155#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4157 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4158 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4159 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4160
4161 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4162 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164
Bram Moolenaar98921892016-02-23 17:14:37 +01004165#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168
4169#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4170 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4171 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4172#endif
4173
4174 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004175 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004176#if GTK_CHECK_VERSION(3,0,0)
4177 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4178#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
4182 /*
4183 * Set clipboard specific atoms
4184 */
4185 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4188 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4189
4190 /*
4191 * Start out by adding the configured border width into the border offset.
4192 */
4193 gui.border_offset = gui.border_width;
4194
Bram Moolenaar98921892016-02-23 17:14:37 +01004195#if GTK_CHECK_VERSION(3,0,0)
4196 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4197 G_CALLBACK(draw_event), NULL);
4198#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4200 GTK_SIGNAL_FUNC(visibility_event), NULL);
4201 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4202 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204
4205 /*
4206 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4207 * Only needed for some window managers.
4208 */
4209 if (vim_strchr(p_go, GO_POINTER) != NULL)
4210 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004211#if GTK_CHECK_VERSION(3,0,0)
4212 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4213 G_CALLBACK(leave_notify_event), NULL);
4214 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4215 G_CALLBACK(enter_notify_event), NULL);
4216#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4218 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4219 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4220 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 }
4223
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004224 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4225 * only its widgets. Arguably, this could be common code and we not use
4226 * the window focus at all, but let's be safe.
4227 */
4228 if (gtk_socket_id == 0)
4229 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004230#if GTK_CHECK_VERSION(3,0,0)
4231 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4232 G_CALLBACK(focus_out_event), NULL);
4233 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4234 G_CALLBACK(focus_in_event), NULL);
4235#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004236 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4237 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4238 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4239 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004240#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004241 }
4242 else
4243 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004244#if GTK_CHECK_VERSION(3,0,0)
4245 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4246 G_CALLBACK(focus_out_event), NULL);
4247 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4248 G_CALLBACK(focus_in_event), NULL);
4249#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004250 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4251 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4252 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4253 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004254#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004255#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004256# if GTK_CHECK_VERSION(3,0,0)
4257 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4258 G_CALLBACK(focus_out_event), NULL);
4259 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4260 G_CALLBACK(focus_in_event), NULL);
4261# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004262 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4263 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4264 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4265 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004266# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004267#endif /* FEAT_GUI_TABLINE */
4268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269
Bram Moolenaar98921892016-02-23 17:14:37 +01004270#if GTK_CHECK_VERSION(3,0,0)
4271 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4272 G_CALLBACK(motion_notify_event), NULL);
4273 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4274 G_CALLBACK(button_press_event), NULL);
4275 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4276 G_CALLBACK(button_release_event), NULL);
4277 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4278 G_CALLBACK(&scroll_event), NULL);
4279#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4281 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4282 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4283 GTK_SIGNAL_FUNC(button_press_event), NULL);
4284 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4285 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4287 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289
4290 /*
4291 * Add selection handler functions.
4292 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004293#if GTK_CHECK_VERSION(3,0,0)
4294 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4295 G_CALLBACK(selection_clear_event), NULL);
4296 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4297 G_CALLBACK(selection_received_cb), NULL);
4298#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4300 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4301 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4302 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304
Bram Moolenaara76638f2010-06-05 12:49:46 +02004305 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
Bram Moolenaar98921892016-02-23 17:14:37 +01004307#if GTK_CHECK_VERSION(3,0,0)
4308 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4309 G_CALLBACK(selection_get_cb), NULL);
4310#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4312 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314
4315 /* Pretend we don't have input focus, we will get an event if we do. */
4316 gui.in_focus = FALSE;
4317
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 return OK;
4319}
4320
4321#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4322/*
4323 * This is called from gui_start() after a fork() has been done.
4324 * We have to tell the session manager our new PID.
4325 */
4326 void
4327gui_mch_forked(void)
4328{
4329 if (using_gnome)
4330 {
4331 GnomeClient *client;
4332
4333 client = gnome_master_client();
4334
4335 if (client != NULL)
4336 gnome_client_set_process_id(client, getpid());
4337 }
4338}
4339#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4340
Bram Moolenaar98921892016-02-23 17:14:37 +01004341#if GTK_CHECK_VERSION(3,0,0)
4342 static void
4343gui_gtk_get_rgb_from_pixel(guint32 pixel, GdkRGBA *result)
4344{
4345 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4346 guint32 r_mask, g_mask, b_mask;
4347 gint r_shift, g_shift, b_shift;
4348
4349 if (visual == NULL)
4350 {
4351 result->red = 0.0;
4352 result->green = 0.0;
4353 result->blue = 0.0;
4354 result->alpha = 0.0;
4355 return;
4356 }
4357
4358 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4359 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4360 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4361
4362 result->red = ((pixel & r_mask) >> r_shift) / 255.0;
4363 result->green = ((pixel & g_mask) >> g_shift) / 255.0;
4364 result->blue = ((pixel & b_mask) >> b_shift) / 255.0;
4365 result->alpha = 1.0;
4366}
4367
4368/* Convert a GdRGBA into a pixel value using drawarea's visual */
4369 static guint32
4370gui_gtk_get_pixel_from_rgb(const GdkRGBA *rgba)
4371{
4372 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4373 guint32 r_mask, g_mask, b_mask;
4374 gint r_shift, g_shift, b_shift;
4375 guint32 r, g, b;
4376
4377 if (visual == NULL)
4378 return 0;
4379
4380 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4381 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4382 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4383
4384 r = rgba->red * 65535;
4385 g = rgba->green * 65535;
4386 b = rgba->blue * 65535;
4387
4388 return ((r << r_shift) & r_mask) |
4389 ((g << g_shift) & g_mask) |
4390 ((b << b_shift) & b_mask);
4391}
4392
4393 static void
4394set_cairo_source_rgb_from_pixel(cairo_t *cr, guint32 pixel)
4395{
4396 GdkRGBA result;
4397 gui_gtk_get_rgb_from_pixel(pixel, &result);
4398 cairo_set_source_rgb(cr, result.red, result.green, result.blue);
4399}
4400#endif /* GTK_CHECK_VERSION(3,0,0) */
4401
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402/*
4403 * Called when the foreground or background color has been changed.
4404 * This used to change the graphics contexts directly but we are
4405 * currently manipulating them where desired.
4406 */
4407 void
4408gui_mch_new_colors(void)
4409{
Bram Moolenaar98921892016-02-23 17:14:37 +01004410#if GTK_CHECK_VERSION(3,0,0)
4411 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4412
4413 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4414#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004416#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004418#if GTK_CHECK_VERSION(3,4,0)
4419 GdkRGBA color;
4420
4421 gui_gtk_get_rgb_from_pixel(gui.back_pixel, &color);
4422 {
4423 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
4424 color.red, color.green, color.blue, color.alpha);
4425 if (pat != NULL)
4426 {
4427 gdk_window_set_background_pattern(da_win, pat);
4428 cairo_pattern_destroy(pat);
4429 }
4430 else
4431 gdk_window_set_background_rgba(da_win, &color);
4432 }
4433#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 GdkColor color = { 0, 0, 0, 0 };
4435
4436 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004437# if GTK_CHECK_VERSION(3,0,0)
4438 gdk_window_set_background(da_win, &color);
4439# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004441# endif
4442#endif /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 }
4444}
4445
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446/*
4447 * This signal informs us about the need to rearrange our sub-widgets.
4448 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004450form_configure_event(GtkWidget *widget UNUSED,
4451 GdkEventConfigure *event,
4452 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004454 int usable_height = event->height;
4455
4456 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4457 * no. of char-heights), so we have to manually sanitise them.
4458 * Widths seem to sort themselves out, don't ask me why.
4459 */
4460 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004461 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004462
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004464 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 gtk_form_thaw(GTK_FORM(gui.formwin));
4466
4467 return TRUE;
4468}
4469
4470/*
4471 * Function called when window already closed.
4472 * We can't do much more here than to trying to preserve what had been done,
4473 * since the window is already inevitably going away.
4474 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004475#if GTK_CHECK_VERSION(3,0,0)
4476 static void
4477mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4478#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004480mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004481#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482{
4483 /* Don't write messages to the GUI anymore */
4484 full_screen = FALSE;
4485
4486 gui.mainwin = NULL;
4487 gui.drawarea = NULL;
4488
4489 if (!exiting) /* only do anything if the destroy was unexpected */
4490 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004491 vim_strncpy(IObuff,
4492 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4493 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 preserve_exit();
4495 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004496#ifdef USE_GRESOURCE
4497 gui_gtk_unregister_resource();
4498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499}
4500
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004501
4502/*
4503 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4504 * hints (and thus the required size from -geom), but that after that we
4505 * put the hints back to normal (the actual minimum size) so we may
4506 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004507 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004508 * only way we have of making ourselves bigger (by set lines/columns).
4509 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004510 * second after the final attempt to reset the real minimum hints (done by
4511 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004512 * We'll not let the default hints be set while this timer's active.
4513 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004514 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004515check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004516{
4517 if (init_window_hints_state == 1)
4518 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004519 /* Safe to use normal hints now */
4520 init_window_hints_state = 0;
4521 update_window_manager_hints(0, 0);
4522 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004523 }
4524
4525 /* Keep on trying */
4526 init_window_hints_state = 1;
4527 return TRUE;
4528}
4529
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530/*
4531 * Open the GUI window which was created by a call to gui_mch_init().
4532 */
4533 int
4534gui_mch_open(void)
4535{
4536 guicolor_T fg_pixel = INVALCOLOR;
4537 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004538 guint pixel_width;
4539 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 /*
4542 * Allow setting a window role on the command line, or invent one
4543 * if none was specified. This is mainly useful for GNOME session
4544 * support; allowing the WM to restore window placement.
4545 */
4546 if (role_argument != NULL)
4547 {
4548 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4549 }
4550 else
4551 {
4552 char *role;
4553
4554 /* Invent a unique-enough ID string for the role */
4555 role = g_strdup_printf("vim-%u-%u-%u",
4556 (unsigned)mch_get_pid(),
4557 (unsigned)g_random_int(),
4558 (unsigned)time(NULL));
4559
4560 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4561 g_free(role);
4562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563
4564 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566
4567 /* Determine user specified geometry, if present. */
4568 if (gui.geom != NULL)
4569 {
4570 int mask;
4571 unsigned int w, h;
4572 int x = 0;
4573 int y = 0;
4574
4575 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4576
4577 if (mask & WidthValue)
4578 Columns = w;
4579 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004580 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004581 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004582 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004584 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004585 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004586
4587 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4588 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4589
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004590 pixel_width += get_menu_tool_width();
4591 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004592
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004594 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004595 int ww, hh;
4596 gui_mch_get_screen_dimensions(&ww, &hh);
4597 hh += p_ghr + get_menu_tool_height();
4598 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004599 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004600 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004601 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004602 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 vim_free(gui.geom);
4606 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004607
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004608 /* From now until everyone's stopped trying to set the window hints
4609 * to their correct minimum values, stop them being set as we need
4610 * them to remain at our required size for the parent GtkSocket to
4611 * give us the right initial size.
4612 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004613 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004614 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004615 update_window_manager_hints(pixel_width, pixel_height);
4616 init_window_hints_state = 1;
4617 g_timeout_add(1000, check_startup_plug_hints, NULL);
4618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 }
4620
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004621 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4622 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004623 /* For GTK2 changing the size of the form widget doesn't cause window
4624 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004625 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004626 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004627 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628
4629 if (foreground_argument != NULL)
4630 fg_pixel = gui_get_color((char_u *)foreground_argument);
4631 if (fg_pixel == INVALCOLOR)
4632 fg_pixel = gui_get_color((char_u *)"Black");
4633
4634 if (background_argument != NULL)
4635 bg_pixel = gui_get_color((char_u *)background_argument);
4636 if (bg_pixel == INVALCOLOR)
4637 bg_pixel = gui_get_color((char_u *)"White");
4638
4639 if (found_reverse_arg)
4640 {
4641 gui.def_norm_pixel = bg_pixel;
4642 gui.def_back_pixel = fg_pixel;
4643 }
4644 else
4645 {
4646 gui.def_norm_pixel = fg_pixel;
4647 gui.def_back_pixel = bg_pixel;
4648 }
4649
4650 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4651 * in a vimrc file) */
4652 set_normal_colors();
4653
4654 /* Check that none of the colors are the same as the background color */
4655 gui_check_colors();
4656
4657 /* Get the colors for the highlight groups (gui_check_colors() might have
4658 * changed them). */
4659 highlight_gui_started(); /* re-init colors and fonts */
4660
Bram Moolenaar98921892016-02-23 17:14:37 +01004661#if GTK_CHECK_VERSION(3,0,0)
4662 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4663 G_CALLBACK(mainwin_destroy_cb), NULL);
4664#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4666 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668
4669#ifdef FEAT_HANGULIN
4670 hangul_keyboard_set();
4671#endif
4672
4673 /*
4674 * Notify the fixed area about the need to resize the contents of the
4675 * gui.formwin, which we use for random positioning of the included
4676 * components.
4677 *
4678 * We connect this signal deferred finally after anything is in place,
4679 * since this is intended to handle resizements coming from the window
4680 * manager upon us and should not interfere with what VIM is requesting
4681 * upon startup.
4682 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004683#if GTK_CHECK_VERSION(3,0,0)
4684 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4685 G_CALLBACK(form_configure_event), NULL);
4686#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4688 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690
4691#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004692 /* Set up for receiving DND items. */
4693 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694
Bram Moolenaar98921892016-02-23 17:14:37 +01004695# if GTK_CHECK_VERSION(3,0,0)
4696 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4697 G_CALLBACK(drag_data_received_cb), NULL);
4698# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4700 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004701# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702#endif
4703
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004705 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 if (found_iconic_arg && gtk_socket_id == 0)
4707 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708
4709 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004710#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 unsigned long menu_handler = 0;
4712# ifdef FEAT_TOOLBAR
4713 unsigned long tool_handler = 0;
4714# endif
4715 /*
4716 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4717 * show when restoring the saved layout configuration. We can't just
4718 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4719 * a toplevel window and thus will be realized immediately. Instead,
4720 * connect signal handlers to hide the widgets just after they've been
4721 * marked visible, but before the main window is realized.
4722 */
4723 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4724 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4725 G_CALLBACK(&gtk_widget_hide),
4726 NULL);
4727# ifdef FEAT_TOOLBAR
4728 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4729 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4730 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4731 G_CALLBACK(&gtk_widget_hide),
4732 NULL);
4733# endif
4734#endif
4735 gtk_widget_show(gui.mainwin);
4736
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004737#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 if (menu_handler != 0)
4739 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4740# ifdef FEAT_TOOLBAR
4741 if (tool_handler != 0)
4742 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4743# endif
4744#endif
4745 }
4746
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 return OK;
4748}
4749
4750
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004752gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753{
4754 if (gui.mainwin != NULL)
4755 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756}
4757
4758/*
4759 * Get the position of the top left corner of the window.
4760 */
4761 int
4762gui_mch_get_winpos(int *x, int *y)
4763{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 return OK;
4766}
4767
4768/*
4769 * Set the position of the top left corner of the window to the given
4770 * coordinates.
4771 */
4772 void
4773gui_mch_set_winpos(int x, int y)
4774{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776}
4777
Bram Moolenaar98921892016-02-23 17:14:37 +01004778#if !GTK_CHECK_VERSION(3,0,0)
4779# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780static int resize_idle_installed = FALSE;
4781/*
4782 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4783 * the shell size doesn't exceed the window size, i.e. if the window manager
4784 * ignored our size request. Usually this happens if the window is maximized.
4785 *
4786 * FIXME: It'd be nice if we could find a little more orthodox solution.
4787 * See also the remark below in gui_mch_set_shellsize().
4788 *
4789 * DISABLED: When doing ":set lines+=1" this function would first invoke
4790 * gui_resize_shell() with the old size, then the normal callback would
4791 * report the new size through form_configure_event(). That caused the window
4792 * layout to be messed up.
4793 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 static gboolean
4795force_shell_resize_idle(gpointer data)
4796{
4797 if (gui.mainwin != NULL
4798 && GTK_WIDGET_REALIZED(gui.mainwin)
4799 && GTK_WIDGET_VISIBLE(gui.mainwin))
4800 {
4801 int width;
4802 int height;
4803
4804 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4805
4806 width -= get_menu_tool_width();
4807 height -= get_menu_tool_height();
4808
4809 gui_resize_shell(width, height);
4810 }
4811
4812 resize_idle_installed = FALSE;
4813 return FALSE; /* don't call me again */
4814}
Bram Moolenaar98921892016-02-23 17:14:37 +01004815# endif
4816#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817
Bram Moolenaar09736232009-09-23 16:14:49 +00004818/*
4819 * Return TRUE if the main window is maximized.
4820 */
4821 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004822gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004823{
Bram Moolenaar98921892016-02-23 17:14:37 +01004824#if GTK_CHECK_VERSION(3,0,0)
4825 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4826 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4827 & GDK_WINDOW_STATE_MAXIMIZED));
4828#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004829 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4830 && (gdk_window_get_state(gui.mainwin->window)
4831 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004832#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004833}
4834
4835/*
4836 * Unmaximize the main window
4837 */
4838 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004839gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004840{
4841 if (gui.mainwin != NULL)
4842 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4843}
Bram Moolenaar09736232009-09-23 16:14:49 +00004844
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004846 * Called when the font changed while the window is maximized. Compute the
4847 * new Rows and Columns. This is like resizing the window.
4848 */
4849 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004850gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004851{
4852 int w, h;
4853
4854 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4855 w -= get_menu_tool_width();
4856 h -= get_menu_tool_height();
4857 gui_resize_shell(w, h);
4858}
4859
4860/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 * Set the windows size.
4862 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 void
4864gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004865 int min_width UNUSED, int min_height UNUSED,
4866 int base_width UNUSED, int base_height UNUSED,
4867 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 /* give GTK+ a chance to put all widget's into place */
4870 gui_mch_update();
4871
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004872 /* this will cause the proper resizement to happen too */
4873 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004874 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004875
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004877 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 * main window instead. */
4879 width += get_menu_tool_width();
4880 height += get_menu_tool_height();
4881
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004882 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004883 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004884 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004885 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886
Bram Moolenaar98921892016-02-23 17:14:37 +01004887# if !GTK_CHECK_VERSION(3,0,0)
4888# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 if (!resize_idle_installed)
4890 {
4891 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4892 &force_shell_resize_idle, NULL, NULL);
4893 resize_idle_installed = TRUE;
4894 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004895# endif
4896# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 /*
4898 * Wait until all events are processed to prevent a crash because the
4899 * real size of the drawing area doesn't reflect Vim's internal ideas.
4900 *
4901 * This is a bit of a hack, since Vim is a terminal application with a GUI
4902 * on top, while the GUI expects to be the boss.
4903 */
4904 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905}
4906
4907
4908/*
4909 * The screen size is used to make sure the initial window doesn't get bigger
4910 * than the screen. This subtracts some room for menubar, toolbar and window
4911 * decorations.
4912 */
4913 void
4914gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4915{
4916#ifdef HAVE_GTK_MULTIHEAD
4917 GdkScreen* screen;
4918
4919 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4920 screen = gtk_widget_get_screen(gui.mainwin);
4921 else
4922 screen = gdk_screen_get_default();
4923
4924 *screen_w = gdk_screen_get_width(screen);
4925 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4926#else
4927 *screen_w = gdk_screen_width();
4928 /* Subtract 'guiheadroom' from the height to allow some room for the
4929 * window manager (task list and window title bar). */
4930 *screen_h = gdk_screen_height() - p_ghr;
4931#endif
4932
4933 /*
4934 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4935 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004936 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 * This should be completely changed later.
4938 */
4939 *screen_w -= get_menu_tool_width();
4940 *screen_h -= get_menu_tool_height();
4941}
4942
4943#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004945gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 if (title != NULL && output_conv.vc_type != CONV_NONE)
4948 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949
4950 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4951
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 if (output_conv.vc_type != CONV_NONE)
4953 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954}
4955#endif /* FEAT_TITLE */
4956
4957#if defined(FEAT_MENU) || defined(PROTO)
4958 void
4959gui_mch_enable_menu(int showit)
4960{
4961 GtkWidget *widget;
4962
4963# ifdef FEAT_GUI_GNOME
4964 if (using_gnome)
4965 widget = gui.menubar_h;
4966 else
4967# endif
4968 widget = gui.menubar;
4969
Bram Moolenaar18144c82006-04-12 21:52:12 +00004970 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004971# if GTK_CHECK_VERSION(3,0,0)
4972 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
4973# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00004974 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01004975# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 {
4977 if (showit)
4978 gtk_widget_show(widget);
4979 else
4980 gtk_widget_hide(widget);
4981
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004982 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 }
4984}
4985#endif /* FEAT_MENU */
4986
4987#if defined(FEAT_TOOLBAR) || defined(PROTO)
4988 void
4989gui_mch_show_toolbar(int showit)
4990{
4991 GtkWidget *widget;
4992
4993 if (gui.toolbar == NULL)
4994 return;
4995
4996# ifdef FEAT_GUI_GNOME
4997 if (using_gnome)
4998 widget = gui.toolbar_h;
4999 else
5000# endif
5001 widget = gui.toolbar;
5002
5003 if (showit)
5004 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5005
Bram Moolenaar98921892016-02-23 17:14:37 +01005006# if GTK_CHECK_VERSION(3,0,0)
5007 if (!showit != !gtk_widget_get_visible(widget))
5008# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005010# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 {
5012 if (showit)
5013 gtk_widget_show(widget);
5014 else
5015 gtk_widget_hide(widget);
5016
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005017 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 }
5019}
5020#endif /* FEAT_TOOLBAR */
5021
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022/*
5023 * Check if a given font is a CJK font. This is done in a very crude manner. It
5024 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5025 * font. Consequently, this function cannot be used as a general purpose check
5026 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5027 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5028 */
5029 static int
5030is_cjk_font(PangoFontDescription *font_desc)
5031{
5032 static const char * const cjk_langs[] =
5033 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5034
5035 PangoFont *font;
5036 unsigned i;
5037 int is_cjk = FALSE;
5038
5039 font = pango_context_load_font(gui.text_context, font_desc);
5040
5041 if (font == NULL)
5042 return FALSE;
5043
5044 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5045 {
5046 PangoCoverage *coverage;
5047 gunichar uc;
5048
5049 coverage = pango_font_get_coverage(
5050 font, pango_language_from_string(cjk_langs[i]));
5051
5052 if (coverage != NULL)
5053 {
5054 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5055 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5056 pango_coverage_unref(coverage);
5057 }
5058 }
5059
5060 g_object_unref(font);
5061
5062 return is_cjk;
5063}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064
Bram Moolenaar231334e2005-07-25 20:46:57 +00005065/*
5066 * Adjust gui.char_height (after 'linespace' was changed).
5067 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005069gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 PangoFontMetrics *metrics;
5072 int ascent;
5073 int descent;
5074
5075 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5076 pango_context_get_language(gui.text_context));
5077 ascent = pango_font_metrics_get_ascent(metrics);
5078 descent = pango_font_metrics_get_descent(metrics);
5079
5080 pango_font_metrics_unref(metrics);
5081
5082 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005083 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005084 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5086
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 /* A not-positive value of char_height may crash Vim. Only happens
5088 * if 'linespace' is negative (which does make sense sometimes). */
5089 gui.char_ascent = MAX(gui.char_ascent, 0);
5090 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5091
5092 return OK;
5093}
5094
Bram Moolenaar98921892016-02-23 17:14:37 +01005095#if GTK_CHECK_VERSION(3,0,0)
5096/* Callback function used in gui_mch_font_dialog() */
5097 static gboolean
5098font_filter(const PangoFontFamily *family,
5099 const PangoFontFace *face UNUSED,
5100 gpointer data UNUSED)
5101{
5102 return pango_font_family_is_monospace((PangoFontFamily *)family);
5103}
5104#endif
5105
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106/*
5107 * Put up a font dialog and return the selected font name in allocated memory.
5108 * "oldval" is the previous value. Return NULL when cancelled.
5109 * This should probably go into gui_gtk.c. Hmm.
5110 * FIXME:
5111 * The GTK2 font selection dialog has no filtering API. So we could either
5112 * a) implement our own (possibly copying the code from somewhere else) or
5113 * b) just live with it.
5114 */
5115 char_u *
5116gui_mch_font_dialog(char_u *oldval)
5117{
5118 GtkWidget *dialog;
5119 int response;
5120 char_u *fontname = NULL;
5121 char_u *oldname;
5122
Bram Moolenaar98921892016-02-23 17:14:37 +01005123#if GTK_CHECK_VERSION(3,2,0)
5124 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5125 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5126 NULL, NULL);
5127#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130
5131 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5132 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5133
5134 if (oldval != NULL && oldval[0] != NUL)
5135 {
5136 if (output_conv.vc_type != CONV_NONE)
5137 oldname = string_convert(&output_conv, oldval, NULL);
5138 else
5139 oldname = oldval;
5140
5141 /* Annoying bug in GTK (or Pango): if the font name does not include a
5142 * size, zero is used. Use default point size ten. */
5143 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5144 {
5145 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5146
5147 if (p != NULL)
5148 {
5149 STRCPY(p + STRLEN(p), " 10");
5150 if (oldname != oldval)
5151 vim_free(oldname);
5152 oldname = p;
5153 }
5154 }
5155
Bram Moolenaar98921892016-02-23 17:14:37 +01005156#if GTK_CHECK_VERSION(3,2,0)
5157 gtk_font_chooser_set_font(
5158 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5159#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 gtk_font_selection_dialog_set_font_name(
5161 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005162#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163
5164 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005165 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005167 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005168#if GTK_CHECK_VERSION(3,2,0)
5169 gtk_font_chooser_set_font(
5170 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5171#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005172 gtk_font_selection_dialog_set_font_name(
5173 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175
5176 response = gtk_dialog_run(GTK_DIALOG(dialog));
5177
5178 if (response == GTK_RESPONSE_OK)
5179 {
5180 char *name;
5181
Bram Moolenaar98921892016-02-23 17:14:37 +01005182#if GTK_CHECK_VERSION(3,2,0)
5183 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5184#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 name = gtk_font_selection_dialog_get_font_name(
5186 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 if (name != NULL)
5189 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005190 char_u *p;
5191
5192 /* Apparently some font names include a comma, need to escape
5193 * that, because in 'guifont' it separates names. */
5194 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005196 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005197 {
5198 fontname = string_convert(&input_conv, p, NULL);
5199 vim_free(p);
5200 }
5201 else
5202 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 }
5204 }
5205
5206 if (response != GTK_RESPONSE_NONE)
5207 gtk_widget_destroy(dialog);
5208
5209 return fontname;
5210}
5211
5212/*
5213 * Some monospace fonts don't support a bold weight, and fall back
5214 * silently to the regular weight. But this is no good since our text
5215 * drawing function can emulate bold by overstriking. So let's try
5216 * to detect whether bold weight is actually available and emulate it
5217 * otherwise.
5218 *
5219 * Note that we don't need to check for italic style since Xft can
5220 * emulate italic on its own, provided you have a proper fontconfig
5221 * setup. We wouldn't be able to emulate it in Vim anyway.
5222 */
5223 static void
5224get_styled_font_variants(void)
5225{
5226 PangoFontDescription *bold_font_desc;
5227 PangoFont *plain_font;
5228 PangoFont *bold_font;
5229
5230 gui.font_can_bold = FALSE;
5231
5232 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5233
5234 if (plain_font == NULL)
5235 return;
5236
5237 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5238 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5239
5240 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5241 /*
5242 * The comparison relies on the unique handle nature of a PangoFont*,
5243 * i.e. it's assumed that a different PangoFont* won't refer to the
5244 * same font. Seems to work, and failing here isn't critical anyway.
5245 */
5246 if (bold_font != NULL)
5247 {
5248 gui.font_can_bold = (bold_font != plain_font);
5249 g_object_unref(bold_font);
5250 }
5251
5252 pango_font_description_free(bold_font_desc);
5253 g_object_unref(plain_font);
5254}
5255
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256static PangoEngineShape *default_shape_engine = NULL;
5257
5258/*
5259 * Create a map from ASCII characters in the range [32,126] to glyphs
5260 * of the current font. This is used by gui_gtk2_draw_string() to skip
5261 * the itemize and shaping process for the most common case.
5262 */
5263 static void
5264ascii_glyph_table_init(void)
5265{
5266 char_u ascii_chars[128];
5267 PangoAttrList *attr_list;
5268 GList *item_list;
5269 int i;
5270
5271 if (gui.ascii_glyphs != NULL)
5272 pango_glyph_string_free(gui.ascii_glyphs);
5273 if (gui.ascii_font != NULL)
5274 g_object_unref(gui.ascii_font);
5275
5276 gui.ascii_glyphs = NULL;
5277 gui.ascii_font = NULL;
5278
5279 /* For safety, fill in question marks for the control characters. */
5280 for (i = 0; i < 32; ++i)
5281 ascii_chars[i] = '?';
5282 for (; i < 127; ++i)
5283 ascii_chars[i] = i;
5284 ascii_chars[i] = '?';
5285
5286 attr_list = pango_attr_list_new();
5287 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5288 0, sizeof(ascii_chars), attr_list, NULL);
5289
5290 if (item_list != NULL && item_list->next == NULL) /* play safe */
5291 {
5292 PangoItem *item;
5293 int width;
5294
5295 item = (PangoItem *)item_list->data;
5296 width = gui.char_width * PANGO_SCALE;
5297
5298 /* Remember the shape engine used for ASCII. */
5299 default_shape_engine = item->analysis.shape_engine;
5300
5301 gui.ascii_font = item->analysis.font;
5302 g_object_ref(gui.ascii_font);
5303
5304 gui.ascii_glyphs = pango_glyph_string_new();
5305
5306 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5307 &item->analysis, gui.ascii_glyphs);
5308
5309 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5310
5311 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5312 {
5313 PangoGlyphGeometry *geom;
5314
5315 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5316 geom->x_offset += MAX(0, width - geom->width) / 2;
5317 geom->width = width;
5318 }
5319 }
5320
5321 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5322 g_list_free(item_list);
5323 pango_attr_list_unref(attr_list);
5324}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325
5326/*
5327 * Initialize Vim to use the font or fontset with the given name.
5328 * Return FAIL if the font could not be loaded, OK otherwise.
5329 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005331gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 PangoFontDescription *font_desc;
5334 PangoLayout *layout;
5335 int width;
5336
5337 /* If font_name is NULL, this means to use the default, which should
5338 * be present on all proper Pango/fontconfig installations. */
5339 if (font_name == NULL)
5340 font_name = (char_u *)DEFAULT_FONT;
5341
5342 font_desc = gui_mch_get_font(font_name, FALSE);
5343
5344 if (font_desc == NULL)
5345 return FAIL;
5346
5347 gui_mch_free_font(gui.norm_font);
5348 gui.norm_font = font_desc;
5349
5350 pango_context_set_font_description(gui.text_context, font_desc);
5351
5352 layout = pango_layout_new(gui.text_context);
5353 pango_layout_set_text(layout, "MW", 2);
5354 pango_layout_get_size(layout, &width, NULL);
5355 /*
5356 * Set char_width to half the width obtained from pango_layout_get_size()
5357 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5358 * Pango to use the same width for both non-CJK characters (e.g. Latin
5359 * letters and numbers) and CJK characters. This results in 's p a c e d
5360 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5361 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5362 * width for CJK fonts.
5363 *
5364 * For related bugs, see:
5365 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5366 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5367 *
5368 * With this, for all four of the following cases, Vim works fine:
5369 * guifont=CJK_fixed_width_font
5370 * guifont=Non_CJK_fixed_font
5371 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5372 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5373 */
5374 if (is_cjk_font(gui.norm_font))
5375 {
5376 int cjk_width;
5377
5378 /* Measure the text extent of U+4E00 and U+4E8C */
5379 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5380 pango_layout_get_size(layout, &cjk_width, NULL);
5381
5382 if (width == cjk_width) /* Xft not patched */
5383 width /= 2;
5384 }
5385 g_object_unref(layout);
5386
5387 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5388
5389 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5390 if (gui.char_width <= 0)
5391 gui.char_width = 8;
5392
Bram Moolenaar231334e2005-07-25 20:46:57 +00005393 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394
5395 /* Set the fontname, which will be used for information purposes */
5396 hl_set_font_name(font_name);
5397
5398 get_styled_font_variants();
5399 ascii_glyph_table_init();
5400
5401 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5402 if (gui.wide_font != NULL
5403 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5404 {
5405 pango_font_description_free(gui.wide_font);
5406 gui.wide_font = NULL;
5407 }
5408
Bram Moolenaare161c792009-11-03 17:13:59 +00005409 if (gui_mch_maximized())
5410 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005411 /* Update lines and columns in accordance with the new font, keep the
5412 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005413 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005414 }
5415 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005416 {
5417 /* Preserve the logical dimensions of the screen. */
5418 update_window_manager_hints(0, 0);
5419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420
5421 return OK;
5422}
5423
5424/*
5425 * Get a reference to the font "name".
5426 * Return zero for failure.
5427 */
5428 GuiFont
5429gui_mch_get_font(char_u *name, int report_error)
5430{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432
5433 /* can't do this when GUI is not running */
5434 if (!gui.in_use || name == NULL)
5435 return NULL;
5436
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 if (output_conv.vc_type != CONV_NONE)
5438 {
5439 char_u *buf;
5440
5441 buf = string_convert(&output_conv, name, NULL);
5442 if (buf != NULL)
5443 {
5444 font = pango_font_description_from_string((const char *)buf);
5445 vim_free(buf);
5446 }
5447 else
5448 font = NULL;
5449 }
5450 else
5451 font = pango_font_description_from_string((const char *)name);
5452
5453 if (font != NULL)
5454 {
5455 PangoFont *real_font;
5456
5457 /* pango_context_load_font() bails out if no font size is set */
5458 if (pango_font_description_get_size(font) <= 0)
5459 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5460
5461 real_font = pango_context_load_font(gui.text_context, font);
5462
5463 if (real_font == NULL)
5464 {
5465 pango_font_description_free(font);
5466 font = NULL;
5467 }
5468 else
5469 g_object_unref(real_font);
5470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471
5472 if (font == NULL)
5473 {
5474 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005475 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 return NULL;
5477 }
5478
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 return font;
5480}
5481
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005482#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005483/*
5484 * Return the name of font "font" in allocated memory.
5485 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005486 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005487gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005488{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005489 if (font != NOFONT)
5490 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005491 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005492
Bram Moolenaar89d40322006-08-29 15:30:07 +00005493 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005494 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005495 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005496
Bram Moolenaar89d40322006-08-29 15:30:07 +00005497 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005498 return s;
5499 }
5500 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005501 return NULL;
5502}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005503#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005504
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505/*
5506 * If a font is not going to be used, free its structure.
5507 */
5508 void
5509gui_mch_free_font(GuiFont font)
5510{
5511 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513}
5514
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515/*
5516 * Return the Pixel value (color) for the given color name. This routine was
5517 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5518 * Programmer's Guide.
5519 * Return INVALCOLOR for error.
5520 */
5521 guicolor_T
5522gui_mch_get_color(char_u *name)
5523{
5524 /* A number of colors that some X11 systems don't have */
5525 static const char *const vimnames[][2] =
5526 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00005527 {"LightRed", "#FFBBBB"},
5528 {"LightGreen", "#88FF88"},
5529 {"LightMagenta","#FFBBFF"},
5530 {"DarkCyan", "#008888"},
5531 {"DarkBlue", "#0000BB"},
5532 {"DarkRed", "#BB0000"},
5533 {"DarkMagenta", "#BB00BB"},
5534 {"DarkGrey", "#BBBBBB"},
5535 {"DarkYellow", "#BBBB00"},
5536 {"Gray10", "#1A1A1A"},
5537 {"Grey10", "#1A1A1A"},
5538 {"Gray20", "#333333"},
5539 {"Grey20", "#333333"},
5540 {"Gray30", "#4D4D4D"},
5541 {"Grey30", "#4D4D4D"},
5542 {"Gray40", "#666666"},
5543 {"Grey40", "#666666"},
5544 {"Gray50", "#7F7F7F"},
5545 {"Grey50", "#7F7F7F"},
5546 {"Gray60", "#999999"},
5547 {"Grey60", "#999999"},
5548 {"Gray70", "#B3B3B3"},
5549 {"Grey70", "#B3B3B3"},
5550 {"Gray80", "#CCCCCC"},
5551 {"Grey80", "#CCCCCC"},
5552 {"Gray90", "#E5E5E5"},
5553 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 {NULL, NULL}
5555 };
5556
5557 if (!gui.in_use) /* can't do this when GUI not running */
5558 return INVALCOLOR;
5559
5560 while (name != NULL)
5561 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005562#if GTK_CHECK_VERSION(3,0,0)
5563 GdkRGBA color;
5564#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 int parsed;
5568 int i;
5569
Bram Moolenaar98921892016-02-23 17:14:37 +01005570#if GTK_CHECK_VERSION(3,0,0)
5571 parsed = gdk_rgba_parse(&color, (const gchar *)name);
5572#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 parsed = gdk_color_parse((const char *)name, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01005574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 if (parsed)
5577 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005578#if GTK_CHECK_VERSION(3,0,0)
5579 return (guicolor_T)gui_gtk_get_pixel_from_rgb(&color);
5580#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5582 &color, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 return (guicolor_T)color.pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01005584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 }
5586 /* add a few builtin names and try again */
5587 for (i = 0; ; ++i)
5588 {
5589 if (vimnames[i][0] == NULL)
5590 {
5591 name = NULL;
5592 break;
5593 }
5594 if (STRICMP(name, vimnames[i][0]) == 0)
5595 {
5596 name = (char_u *)vimnames[i][1];
5597 break;
5598 }
5599 }
5600 }
5601
5602 return INVALCOLOR;
5603}
5604
5605/*
5606 * Set the current text foreground color.
5607 */
5608 void
5609gui_mch_set_fg_color(guicolor_T color)
5610{
5611 gui.fgcolor->pixel = (unsigned long)color;
5612}
5613
5614/*
5615 * Set the current text background color.
5616 */
5617 void
5618gui_mch_set_bg_color(guicolor_T color)
5619{
5620 gui.bgcolor->pixel = (unsigned long)color;
5621}
5622
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005623/*
5624 * Set the current text special color.
5625 */
5626 void
5627gui_mch_set_sp_color(guicolor_T color)
5628{
5629 gui.spcolor->pixel = (unsigned long)color;
5630}
5631
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632/*
5633 * Function-like convenience macro for the sake of efficiency.
5634 */
5635#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5636 G_STMT_START{ \
5637 PangoAttribute *tmp_attr_; \
5638 tmp_attr_ = (Attribute); \
5639 tmp_attr_->start_index = (Start); \
5640 tmp_attr_->end_index = (End); \
5641 pango_attr_list_insert((AttrList), tmp_attr_); \
5642 }G_STMT_END
5643
5644 static void
5645apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5646{
5647 char_u *start = NULL;
5648 char_u *p;
5649 int uc;
5650
5651 for (p = s; p < s + len; p += utf_byte2len(*p))
5652 {
5653 uc = utf_ptr2char(p);
5654
5655 if (start == NULL)
5656 {
5657 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5658 start = p;
5659 }
5660 else if (uc < 0x80 /* optimization shortcut */
5661 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5662 {
5663 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5664 attr_list, start - s, p - s);
5665 start = NULL;
5666 }
5667 }
5668
5669 if (start != NULL)
5670 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5671 attr_list, start - s, len);
5672}
5673
5674 static int
5675count_cluster_cells(char_u *s, PangoItem *item,
5676 PangoGlyphString* glyphs, int i,
5677 int *cluster_width,
5678 int *last_glyph_rbearing)
5679{
5680 char_u *p;
5681 int next; /* glyph start index of next cluster */
5682 int start, end; /* string segment of current cluster */
5683 int width; /* real cluster width in Pango units */
5684 int uc;
5685 int cellcount = 0;
5686
5687 width = glyphs->glyphs[i].geometry.width;
5688
5689 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5690 {
5691 if (glyphs->glyphs[next].attr.is_cluster_start)
5692 break;
5693 else if (glyphs->glyphs[next].geometry.width > width)
5694 width = glyphs->glyphs[next].geometry.width;
5695 }
5696
5697 start = item->offset + glyphs->log_clusters[i];
5698 end = item->offset + ((next < glyphs->num_glyphs) ?
5699 glyphs->log_clusters[next] : item->length);
5700
5701 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5702 {
5703 uc = utf_ptr2char(p);
5704 if (uc < 0x80)
5705 ++cellcount;
5706 else if (!utf_iscomposing(uc))
5707 cellcount += utf_char2cells(uc);
5708 }
5709
5710 if (last_glyph_rbearing != NULL
5711 && cellcount > 0 && next == glyphs->num_glyphs)
5712 {
5713 PangoRectangle ink_rect;
5714 /*
5715 * If a certain combining mark had to be taken from a non-monospace
5716 * font, we have to compensate manually by adapting x_offset according
5717 * to the ink extents of the previous glyph.
5718 */
5719 pango_font_get_glyph_extents(item->analysis.font,
5720 glyphs->glyphs[i].glyph,
5721 &ink_rect, NULL);
5722
5723 if (PANGO_RBEARING(ink_rect) > 0)
5724 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5725 }
5726
5727 if (cellcount > 0)
5728 *cluster_width = width;
5729
5730 return cellcount;
5731}
5732
5733/*
5734 * If there are only combining characters in the cluster, we cannot just
5735 * change the width of the previous glyph since there is none. Therefore
5736 * some guesswork is needed.
5737 *
5738 * If ink_rect.x is negative Pango apparently has taken care of the composing
5739 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5740 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005741 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742 *
5743 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5744 * the position of the previous glyph. Apparently this happens only with old
5745 * X fonts which don't provide the special combining information needed by
5746 * Pango.
5747 */
5748 static void
5749setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5750 int last_cellcount, int last_cluster_width,
5751 int last_glyph_rbearing)
5752{
5753 PangoRectangle ink_rect;
5754 PangoRectangle logical_rect;
5755 int width;
5756
5757 width = last_cellcount * gui.char_width * PANGO_SCALE;
5758 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5759 glyph->geometry.width = 0;
5760
5761 pango_font_get_glyph_extents(item->analysis.font,
5762 glyph->glyph,
5763 &ink_rect, &logical_rect);
5764 if (ink_rect.x < 0)
5765 {
5766 glyph->geometry.x_offset += last_glyph_rbearing;
5767 glyph->geometry.y_offset = logical_rect.height
5768 - (gui.char_height - p_linespace) * PANGO_SCALE;
5769 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005770 else
5771 /* If the accent width is smaller than the cluster width, position it
5772 * in the middle. */
5773 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774}
5775
Bram Moolenaar98921892016-02-23 17:14:37 +01005776#if GTK_CHECK_VERSION(3,0,0)
5777 static void
5778draw_glyph_string(int row, int col, int num_cells, int flags,
5779 PangoFont *font, PangoGlyphString *glyphs,
5780 cairo_t *cr)
5781#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 static void
5783draw_glyph_string(int row, int col, int num_cells, int flags,
5784 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005785#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786{
5787 if (!(flags & DRAW_TRANSP))
5788 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005789#if GTK_CHECK_VERSION(3,0,0)
5790 set_cairo_source_rgb_from_pixel(cr, gui.bgcolor->pixel);
5791 cairo_rectangle(cr,
5792 FILL_X(col), FILL_Y(row),
5793 num_cells * gui.char_width, gui.char_height);
5794 cairo_fill(cr);
5795#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5797
5798 gdk_draw_rectangle(gui.drawarea->window,
5799 gui.text_gc,
5800 TRUE,
5801 FILL_X(col),
5802 FILL_Y(row),
5803 num_cells * gui.char_width,
5804 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 }
5807
Bram Moolenaar98921892016-02-23 17:14:37 +01005808#if GTK_CHECK_VERSION(3,0,0)
5809 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5810 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5811 pango_cairo_show_glyph_string(cr, font, glyphs);
5812#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5814
5815 gdk_draw_glyphs(gui.drawarea->window,
5816 gui.text_gc,
5817 font,
5818 TEXT_X(col),
5819 TEXT_Y(row),
5820 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822
5823 /* redraw the contents with an offset of 1 to emulate bold */
5824 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005825#if GTK_CHECK_VERSION(3,0,0)
5826 {
5827 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5828 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5829 pango_cairo_show_glyph_string(cr, font, glyphs);
5830 }
5831#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 gdk_draw_glyphs(gui.drawarea->window,
5833 gui.text_gc,
5834 font,
5835 TEXT_X(col) + 1,
5836 TEXT_Y(row),
5837 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005838#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839}
5840
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005841/*
5842 * Draw underline and undercurl at the bottom of the character cell.
5843 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005844#if GTK_CHECK_VERSION(3,0,0)
5845 static void
5846draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5847#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005848 static void
5849draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005850#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005851{
5852 int i;
5853 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005854 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005855 int y = FILL_Y(row + 1) - 1;
5856
5857 /* Undercurl: draw curl at the bottom of the character cell. */
5858 if (flags & DRAW_UNDERC)
5859 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005860#if GTK_CHECK_VERSION(3,0,0)
5861 cairo_set_line_width(cr, 1.0);
5862 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5863 set_cairo_source_rgb_from_pixel(cr, gui.spcolor->pixel);
5864 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5865 {
5866 offset = val[i % 8];
5867 cairo_line_to(cr, i, y - offset + 0.5);
5868 }
5869 cairo_stroke(cr);
5870#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005871 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5872 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5873 {
5874 offset = val[i % 8];
5875 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5876 }
5877 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005878#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005879 }
5880
5881 /* Underline: draw a line at the bottom of the character cell. */
5882 if (flags & DRAW_UNDERL)
5883 {
5884 /* When p_linespace is 0, overwrite the bottom row of pixels.
5885 * Otherwise put the line just below the character. */
5886 if (p_linespace > 1)
5887 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005888#if GTK_CHECK_VERSION(3,0,0)
5889 {
5890 cairo_set_line_width(cr, 1.0);
5891 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5892 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5893 cairo_move_to(cr, FILL_X(col), y + 0.5);
5894 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5895 cairo_stroke(cr);
5896 }
5897#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005898 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5899 FILL_X(col), y,
5900 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005901#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005902 }
5903}
5904
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 int
5906gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5907{
5908 GdkRectangle area; /* area for clip mask */
5909 PangoGlyphString *glyphs; /* glyphs of current item */
5910 int column_offset = 0; /* column offset in cells */
5911 int i;
5912 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5913 char_u *new_conv_buf;
5914 int convlen;
5915 char_u *sp, *bp;
5916 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#if GTK_CHECK_VERSION(3,0,0)
5918 cairo_t *cr;
5919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920
Bram Moolenaar98921892016-02-23 17:14:37 +01005921#if GTK_CHECK_VERSION(3,0,0)
5922 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5923#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 return len;
5927
5928 if (output_conv.vc_type != CONV_NONE)
5929 {
5930 /*
5931 * Convert characters from 'encoding' to 'termencoding', which is set
5932 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5933 * prohibits changing this to something else than UTF-8 if the GUI is
5934 * in use.
5935 */
5936 convlen = len;
5937 conv_buf = string_convert(&output_conv, s, &convlen);
5938 g_return_val_if_fail(conv_buf != NULL, len);
5939
5940 /* Correct for differences in char width: some chars are
5941 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5942 * compensate for that. */
5943 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5944 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005945 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5947 {
5948 new_conv_buf = alloc(convlen + 2);
5949 if (new_conv_buf == NULL)
5950 return len;
5951 plen += bp - conv_buf;
5952 mch_memmove(new_conv_buf, conv_buf, plen);
5953 new_conv_buf[plen] = ' ';
5954 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5955 convlen - plen + 1);
5956 vim_free(conv_buf);
5957 conv_buf = new_conv_buf;
5958 ++convlen;
5959 bp = conv_buf + plen;
5960 plen = 1;
5961 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005962 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 bp += plen;
5964 }
5965 s = conv_buf;
5966 len = convlen;
5967 }
5968
5969 /*
5970 * Restrict all drawing to the current screen line in order to prevent
5971 * fuzzy font lookups from messing up the screen.
5972 */
5973 area.x = gui.border_offset;
5974 area.y = FILL_Y(row);
5975 area.width = gui.num_cols * gui.char_width;
5976 area.height = gui.char_height;
5977
Bram Moolenaar98921892016-02-23 17:14:37 +01005978#if GTK_CHECK_VERSION(3,0,0)
5979 cr = cairo_create(gui.surface);
5980 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5981 cairo_clip(cr);
5982#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5984 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986
5987 glyphs = pango_glyph_string_new();
5988
5989 /*
5990 * Optimization hack: If possible, skip the itemize and shaping process
5991 * for pure ASCII strings. This optimization is particularly effective
5992 * because Vim draws space characters to clear parts of the screen.
5993 */
5994 if (!(flags & DRAW_ITALIC)
5995 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5996 && gui.ascii_glyphs != NULL)
5997 {
5998 char_u *p;
5999
6000 for (p = s; p < s + len; ++p)
6001 if (*p & 0x80)
6002 goto not_ascii;
6003
6004 pango_glyph_string_set_size(glyphs, len);
6005
6006 for (i = 0; i < len; ++i)
6007 {
6008 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
6009 glyphs->log_clusters[i] = i;
6010 }
6011
Bram Moolenaar98921892016-02-23 17:14:37 +01006012#if GTK_CHECK_VERSION(3,0,0)
6013 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6014#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017
6018 column_offset = len;
6019 }
6020 else
6021not_ascii:
6022 {
6023 PangoAttrList *attr_list;
6024 GList *item_list;
6025 int cluster_width;
6026 int last_glyph_rbearing;
6027 int cells = 0; /* cells occupied by current cluster */
6028
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006029 /* Safety check: pango crashes when invoked with invalid utf-8
6030 * characters. */
6031 if (!utf_valid_string(s, s + len))
6032 {
6033 column_offset = len;
6034 goto skipitall;
6035 }
6036
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 /* original width of the current cluster */
6038 cluster_width = PANGO_SCALE * gui.char_width;
6039
6040 /* right bearing of the last non-composing glyph */
6041 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6042
6043 attr_list = pango_attr_list_new();
6044
6045 /* If 'guifontwide' is set then use that for double-width characters.
6046 * Otherwise just go with 'guifont' and let Pango do its thing. */
6047 if (gui.wide_font != NULL)
6048 apply_wide_font_attr(s, len, attr_list);
6049
6050 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6051 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6052 attr_list, 0, len);
6053 if (flags & DRAW_ITALIC)
6054 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6055 attr_list, 0, len);
6056 /*
6057 * Break the text into segments with consistent directional level
6058 * and shaping engine. Pure Latin text needs only a single segment,
6059 * so there's no need to worry about the loop's efficiency. Better
6060 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6061 */
6062 item_list = pango_itemize(gui.text_context,
6063 (const char *)s, 0, len, attr_list, NULL);
6064
6065 while (item_list != NULL)
6066 {
6067 PangoItem *item;
6068 int item_cells = 0; /* item length in cells */
6069
6070 item = (PangoItem *)item_list->data;
6071 item_list = g_list_delete_link(item_list, item_list);
6072 /*
6073 * Increment the bidirectional embedding level by 1 if it is not
6074 * even. An odd number means the output will be RTL, but we don't
6075 * want that since Vim handles right-to-left text on its own. It
6076 * would probably be sufficient to just set level = 0, but you can
6077 * never know :)
6078 *
6079 * Unfortunately we can't take advantage of Pango's ability to
6080 * render both LTR and RTL at the same time. In order to support
6081 * that, Vim's main screen engine would have to make use of Pango
6082 * functionality.
6083 */
6084 item->analysis.level = (item->analysis.level + 1) & (~1U);
6085
6086 /* HACK: Overrule the shape engine, we don't want shaping to be
6087 * done, because drawing the cursor would change the display. */
6088 item->analysis.shape_engine = default_shape_engine;
6089
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006090#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006091 pango_shape_full((const char *)s + item->offset, item->length,
6092 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006093#else
6094 pango_shape((const char *)s + item->offset, item->length,
6095 &item->analysis, glyphs);
6096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 /*
6098 * Fixed-width hack: iterate over the array and assign a fixed
6099 * width to each glyph, thus overriding the choice made by the
6100 * shaping engine. We use utf_char2cells() to determine the
6101 * number of cells needed.
6102 *
6103 * Also perform all kind of dark magic to get composing
6104 * characters right (and pretty too of course).
6105 */
6106 for (i = 0; i < glyphs->num_glyphs; ++i)
6107 {
6108 PangoGlyphInfo *glyph;
6109
6110 glyph = &glyphs->glyphs[i];
6111
6112 if (glyph->attr.is_cluster_start)
6113 {
6114 int cellcount;
6115
6116 cellcount = count_cluster_cells(
6117 s, item, glyphs, i, &cluster_width,
6118 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6119
6120 if (cellcount > 0)
6121 {
6122 int width;
6123
6124 width = cellcount * gui.char_width * PANGO_SCALE;
6125 glyph->geometry.x_offset +=
6126 MAX(0, width - cluster_width) / 2;
6127 glyph->geometry.width = width;
6128 }
6129 else
6130 {
6131 /* If there are only combining characters in the
6132 * cluster, we cannot just change the width of the
6133 * previous glyph since there is none. Therefore
6134 * some guesswork is needed. */
6135 setup_zero_width_cluster(item, glyph, cells,
6136 cluster_width,
6137 last_glyph_rbearing);
6138 }
6139
6140 item_cells += cellcount;
6141 cells = cellcount;
6142 }
6143 else if (i > 0)
6144 {
6145 int width;
6146
6147 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006148 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006149 * In some circumstances Pango uses a positive x_offset,
6150 * then use the width of the previous glyph for this one
6151 * and set the previous width to zero.
6152 * Otherwise we get a negative x_offset, Pango has already
6153 * positioned the combining char, keep the widths as they
6154 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006155 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006156 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006157 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006158 {
6159 glyphs->glyphs[i].geometry.width =
6160 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006161 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 width = cells * gui.char_width * PANGO_SCALE;
6164 glyph->geometry.x_offset +=
6165 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166 }
6167 else /* i == 0 "cannot happen" */
6168 {
6169 glyph->geometry.width = 0;
6170 }
6171 }
6172
6173 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006174#if GTK_CHECK_VERSION(3,0,0)
6175 draw_glyph_string(row, col + column_offset, item_cells,
6176 flags, item->analysis.font, glyphs,
6177 cr);
6178#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 draw_glyph_string(row, col + column_offset, item_cells,
6180 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006181#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182
6183 pango_item_free(item);
6184
6185 column_offset += item_cells;
6186 }
6187
6188 pango_attr_list_unref(attr_list);
6189 }
6190
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006191skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006192 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006193#if GTK_CHECK_VERSION(3,0,0)
6194 draw_under(flags, row, col, column_offset, cr);
6195#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006196 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198
6199 pango_glyph_string_free(glyphs);
6200 vim_free(conv_buf);
6201
Bram Moolenaar98921892016-02-23 17:14:37 +01006202#if GTK_CHECK_VERSION(3,0,0)
6203 cairo_destroy(cr);
6204 if (!gui.by_signal)
6205 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6206 &area, FALSE);
6207#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210
6211 return column_offset;
6212}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213
6214/*
6215 * Return OK if the key with the termcap name "name" is supported.
6216 */
6217 int
6218gui_mch_haskey(char_u *name)
6219{
6220 int i;
6221
6222 for (i = 0; special_keys[i].key_sym != 0; i++)
6223 if (name[0] == special_keys[i].code0
6224 && name[1] == special_keys[i].code1)
6225 return OK;
6226 return FAIL;
6227}
6228
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006229#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230/*
6231 * Return the text window-id and display. Only required for X-based GUI's
6232 */
6233 int
6234gui_get_x11_windis(Window *win, Display **dis)
6235{
Bram Moolenaar98921892016-02-23 17:14:37 +01006236#if GTK_CHECK_VERSION(3,0,0)
6237 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6238#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006242#if GTK_CHECK_VERSION(3,0,0)
6243 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6244 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6245#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6247 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 return OK;
6250 }
6251
6252 *dis = NULL;
6253 *win = 0;
6254 return FAIL;
6255}
6256#endif
6257
6258#if defined(FEAT_CLIENTSERVER) \
6259 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6260
6261 Display *
6262gui_mch_get_display(void)
6263{
Bram Moolenaar98921892016-02-23 17:14:37 +01006264#if GTK_CHECK_VERSION(3,0,0)
6265 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6266 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6267#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6269 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006270#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 else
6272 return NULL;
6273}
6274#endif
6275
6276 void
6277gui_mch_beep(void)
6278{
6279#ifdef HAVE_GTK_MULTIHEAD
6280 GdkDisplay *display;
6281
Bram Moolenaar98921892016-02-23 17:14:37 +01006282# if GTK_CHECK_VERSION(3,0,0)
6283 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6284# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006286# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 display = gtk_widget_get_display(gui.mainwin);
6288 else
6289 display = gdk_display_get_default();
6290
6291 if (display != NULL)
6292 gdk_display_beep(display);
6293#else
6294 gdk_beep();
6295#endif
6296}
6297
6298 void
6299gui_mch_flash(int msec)
6300{
Bram Moolenaar98921892016-02-23 17:14:37 +01006301#if GTK_CHECK_VERSION(3,0,0)
6302 /* TODO Replace GdkGC with Cairo */
6303 (void)msec;
6304#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 GdkGCValues values;
6306 GdkGC *invert_gc;
6307
6308 if (gui.drawarea->window == NULL)
6309 return;
6310
6311 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6312 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6313 values.function = GDK_XOR;
6314 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6315 &values,
6316 GDK_GC_FOREGROUND |
6317 GDK_GC_BACKGROUND |
6318 GDK_GC_FUNCTION);
6319 gdk_gc_set_exposures(invert_gc,
6320 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6321 /*
6322 * Do a visual beep by changing back and forth in some undetermined way,
6323 * the foreground and background colors. This is due to the fact that
6324 * there can't be really any prediction about the effects of XOR on
6325 * arbitrary X11 servers. However this seems to be enough for what we
6326 * intend it to do.
6327 */
6328 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6329 TRUE,
6330 0, 0,
6331 FILL_X((int)Columns) + gui.border_offset,
6332 FILL_Y((int)Rows) + gui.border_offset);
6333
6334 gui_mch_flush();
6335 ui_delay((long)msec, TRUE); /* wait so many msec */
6336
6337 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6338 TRUE,
6339 0, 0,
6340 FILL_X((int)Columns) + gui.border_offset,
6341 FILL_Y((int)Rows) + gui.border_offset);
6342
6343 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006344#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345}
6346
6347/*
6348 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6349 */
6350 void
6351gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6352{
Bram Moolenaar98921892016-02-23 17:14:37 +01006353#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006354 const GdkRectangle rect = {
6355 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6356 };
6357 cairo_t * const cr = cairo_create(gui.surface);
6358
6359 set_cairo_source_rgb_from_pixel(cr, gui.norm_pixel ^ gui.back_pixel);
6360# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6361 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6362# else
6363 /* Give an implementation for older cairo versions if necessary. */
6364# endif
6365 gdk_cairo_rectangle(cr, &rect);
6366 cairo_fill(cr);
6367
6368 cairo_destroy(cr);
6369
6370 if (!gui.by_signal)
6371 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6372 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006373#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 GdkGCValues values;
6375 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376
6377 if (gui.drawarea->window == NULL)
6378 return;
6379
Bram Moolenaar89d40322006-08-29 15:30:07 +00006380 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6381 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 values.function = GDK_XOR;
6383 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6384 &values,
6385 GDK_GC_FOREGROUND |
6386 GDK_GC_BACKGROUND |
6387 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006388 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6389 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6391 TRUE,
6392 FILL_X(c), FILL_Y(r),
6393 (nc) * gui.char_width, (nr) * gui.char_height);
6394 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396}
6397
6398/*
6399 * Iconify the GUI window.
6400 */
6401 void
6402gui_mch_iconify(void)
6403{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405}
6406
6407#if defined(FEAT_EVAL) || defined(PROTO)
6408/*
6409 * Bring the Vim window to the foreground.
6410 */
6411 void
6412gui_mch_set_foreground(void)
6413{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415}
6416#endif
6417
6418/*
6419 * Draw a cursor without focus.
6420 */
6421 void
6422gui_mch_draw_hollow_cursor(guicolor_T color)
6423{
6424 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006425#if GTK_CHECK_VERSION(3,0,0)
6426 cairo_t *cr;
6427#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428
Bram Moolenaar98921892016-02-23 17:14:37 +01006429#if GTK_CHECK_VERSION(3,0,0)
6430 if (gtk_widget_get_window(gui.drawarea) == NULL)
6431#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 return;
6435
Bram Moolenaar98921892016-02-23 17:14:37 +01006436#if GTK_CHECK_VERSION(3,0,0)
6437 cr = cairo_create(gui.surface);
6438#endif
6439
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440 gui_mch_set_fg_color(color);
6441
Bram Moolenaar98921892016-02-23 17:14:37 +01006442#if GTK_CHECK_VERSION(3,0,0)
6443 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6444#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 if (mb_lefthalve(gui.row, gui.col))
6448 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006449#if GTK_CHECK_VERSION(3,0,0)
6450 cairo_set_line_width(cr, 1.0);
6451 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6452 cairo_rectangle(cr,
6453 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6454 i * gui.char_width - 1, gui.char_height - 1);
6455 cairo_stroke(cr);
6456 cairo_destroy(cr);
6457#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6459 FALSE,
6460 FILL_X(gui.col), FILL_Y(gui.row),
6461 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463}
6464
6465/*
6466 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6467 * color "color".
6468 */
6469 void
6470gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6471{
Bram Moolenaar98921892016-02-23 17:14:37 +01006472#if GTK_CHECK_VERSION(3,0,0)
6473 if (gtk_widget_get_window(gui.drawarea) == NULL)
6474#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 return;
6478
6479 gui_mch_set_fg_color(color);
6480
Bram Moolenaar98921892016-02-23 17:14:37 +01006481#if GTK_CHECK_VERSION(3,0,0)
6482 {
6483 cairo_t *cr;
6484
6485 cr = cairo_create(gui.surface);
6486 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6487 cairo_rectangle(cr,
6488# ifdef FEAT_RIGHTLEFT
6489 /* vertical line should be on the right of current point */
6490 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6491# endif
6492 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6493 w, h);
6494 cairo_fill(cr);
6495 cairo_destroy(cr);
6496 }
6497#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6499 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6500 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006501# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 /* vertical line should be on the right of current point */
6503 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006504# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 FILL_X(gui.col),
6506 FILL_Y(gui.row) + gui.char_height - h,
6507 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006508#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509}
6510
6511
6512/*
6513 * Catch up with any queued X11 events. This may put keyboard input into the
6514 * input buffer, call resize call-backs, trigger timers etc. If there is
6515 * nothing in the X11 event queue (& no timers pending), then we return
6516 * immediately.
6517 */
6518 void
6519gui_mch_update(void)
6520{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006521 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6522 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523}
6524
Bram Moolenaar98921892016-02-23 17:14:37 +01006525#if GTK_CHECK_VERSION(3,0,0)
6526 static gboolean
6527#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006529#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530input_timer_cb(gpointer data)
6531{
6532 int *timed_out = (int *) data;
6533
Bram Moolenaar49325942007-05-10 19:19:59 +00006534 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 *timed_out = TRUE;
6536
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 return FALSE; /* don't happen again */
6538}
6539
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540/*
6541 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6542 * from the keyboard.
6543 * wtime == -1 Wait forever.
6544 * wtime == 0 This should never happen.
6545 * wtime > 0 Wait wtime milliseconds for a character.
6546 * Returns OK if a character was found to be available within the given time,
6547 * or FAIL otherwise.
6548 */
6549 int
6550gui_mch_wait_for_chars(long wtime)
6551{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006552 int focus;
6553 guint timer;
6554 static int timed_out;
6555 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556
6557 timed_out = FALSE;
6558
6559 /* this timeout makes sure that we will return if no characters arrived in
6560 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006562#if GTK_CHECK_VERSION(3,0,0)
6563 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6564#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 else
6568 timer = 0;
6569
6570 focus = gui.in_focus;
6571
6572 do
6573 {
6574 /* Stop or start blinking when focus changes */
6575 if (gui.in_focus != focus)
6576 {
6577 if (gui.in_focus)
6578 gui_mch_start_blink();
6579 else
6580 gui_mch_stop_blink();
6581 focus = gui.in_focus;
6582 }
6583
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006584#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006585# ifdef FEAT_TIMERS
6586 did_add_timer = FALSE;
6587# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006588 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006589# ifdef FEAT_TIMERS
6590 if (did_add_timer)
6591 /* Need to recompute the waiting time. */
6592 goto theend;
6593# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006594#endif
6595
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 /*
6597 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006598 * Skip this if input is available anyway (can happen in rare
6599 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006601 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006602 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603
6604 /* Got char, return immediately */
6605 if (input_available())
6606 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006607 retval = OK;
6608 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 }
6610 } while (wtime < 0 || !timed_out);
6611
6612 /*
6613 * Flush all eventually pending (drawing) events.
6614 */
6615 gui_mch_update();
6616
Bram Moolenaar4231da42016-06-02 14:30:04 +02006617theend:
6618 if (timer != 0 && !timed_out)
6619#if GTK_CHECK_VERSION(3,0,0)
6620 g_source_remove(timer);
6621#else
6622 gtk_timeout_remove(timer);
6623#endif
6624
6625 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626}
6627
6628
6629/****************************************************************************
6630 * Output drawing routines.
6631 ****************************************************************************/
6632
6633
6634/* Flush any output to the screen */
6635 void
6636gui_mch_flush(void)
6637{
6638#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006639# if GTK_CHECK_VERSION(3,0,0)
6640 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6641# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006643# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6645#else
6646 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 /* This happens to actually do what gui_mch_flush() is supposed to do,
6649 * according to the comment above. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006650#if GTK_CHECK_VERSION(3,0,0)
6651 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
6652 gdk_window_process_updates(gtk_widget_get_window(gui.drawarea), FALSE);
6653#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6655 gdk_window_process_updates(gui.drawarea->window, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01006656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657}
6658
6659/*
6660 * Clear a rectangular region of the screen from text pos (row1, col1) to
6661 * (row2, col2) inclusive.
6662 */
6663 void
6664gui_mch_clear_block(int row1, int col1, int row2, int col2)
6665{
Bram Moolenaar98921892016-02-23 17:14:37 +01006666#if GTK_CHECK_VERSION(3,0,0)
6667 if (gtk_widget_get_window(gui.drawarea) == NULL)
6668 return;
6669#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 GdkColor color;
6671
6672 if (gui.drawarea->window == NULL)
6673 return;
6674
6675 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677
Bram Moolenaar98921892016-02-23 17:14:37 +01006678#if GTK_CHECK_VERSION(3,0,0)
6679 {
6680 /* Add one pixel to the far right column in case a double-stroked
6681 * bold glyph may sit there. */
6682 const GdkRectangle rect = {
6683 FILL_X(col1), FILL_Y(row1),
6684 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6685 (row2 - row1 + 1) * gui.char_height
6686 };
6687 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6688 cairo_t * const cr = cairo_create(gui.surface);
6689 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6690 if (pat != NULL)
6691 cairo_set_source(cr, pat);
6692 else
6693 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6694 gdk_cairo_rectangle(cr, &rect);
6695 cairo_fill(cr);
6696 cairo_destroy(cr);
6697
6698 if (!gui.by_signal)
6699 gdk_window_invalidate_rect(win, &rect, FALSE);
6700 }
6701#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 gdk_gc_set_foreground(gui.text_gc, &color);
6703
6704 /* Clear one extra pixel at the far right, for when bold characters have
6705 * spilled over to the window border. */
6706 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6707 FILL_X(col1), FILL_Y(row1),
6708 (col2 - col1 + 1) * gui.char_width
6709 + (col2 == Columns - 1),
6710 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006711#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712}
6713
Bram Moolenaar98921892016-02-23 17:14:37 +01006714#if GTK_CHECK_VERSION(3,0,0)
6715 static void
6716gui_gtk_window_clear(GdkWindow *win)
6717{
6718 const GdkRectangle rect = {
6719 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6720 };
6721 cairo_t * const cr = cairo_create(gui.surface);
6722 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6723 if (pat != NULL)
6724 cairo_set_source(cr, pat);
6725 else
6726 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6727 gdk_cairo_rectangle(cr, &rect);
6728 cairo_fill(cr);
6729 cairo_destroy(cr);
6730
6731 if (!gui.by_signal)
6732 gdk_window_invalidate_rect(win, &rect, FALSE);
6733}
6734#endif
6735
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 void
6737gui_mch_clear_all(void)
6738{
Bram Moolenaar98921892016-02-23 17:14:37 +01006739#if GTK_CHECK_VERSION(3,0,0)
6740 if (gtk_widget_get_window(gui.drawarea) != NULL)
6741 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6742#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 if (gui.drawarea->window != NULL)
6744 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746}
6747
Bram Moolenaar98921892016-02-23 17:14:37 +01006748#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749/*
6750 * Redraw any text revealed by scrolling up/down.
6751 */
6752 static void
6753check_copy_area(void)
6754{
6755 GdkEvent *event;
6756 int expose_count;
6757
6758 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6759 return;
6760
6761 /* Avoid redrawing the cursor while scrolling or it'll end up where
6762 * we don't want it to be. I'm not sure if it's correct to call
6763 * gui_dont_update_cursor() at this point but it works as a quick
6764 * fix for now. */
6765 gui_dont_update_cursor();
6766
6767 do
6768 {
6769 /* Wait to check whether the scroll worked or not. */
6770 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6771
6772 if (event == NULL)
6773 break; /* received NoExpose event */
6774
6775 gui_redraw(event->expose.area.x, event->expose.area.y,
6776 event->expose.area.width, event->expose.area.height);
6777
6778 expose_count = event->expose.count;
6779 gdk_event_free(event);
6780 }
6781 while (expose_count > 0); /* more events follow */
6782
6783 gui_can_update_cursor();
6784}
Bram Moolenaar98921892016-02-23 17:14:37 +01006785#endif /* !GTK_CHECK_VERSION(3,0,0) */
6786
6787#if GTK_CHECK_VERSION(3,0,0)
6788 static void
6789gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6790 int src_x, int src_y,
6791 int width, int height)
6792{
6793 cairo_t * const cr = cairo_create(gui.surface);
6794
6795 cairo_rectangle(cr, dest_x, dest_y, width, height);
6796 cairo_clip(cr);
6797 cairo_push_group(cr);
6798 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6799 cairo_paint(cr);
6800 cairo_pop_group_to_source(cr);
6801 cairo_paint(cr);
6802
6803 cairo_destroy(cr);
6804}
6805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806
6807/*
6808 * Delete the given number of lines from the given row, scrolling up any
6809 * text further down within the scroll region.
6810 */
6811 void
6812gui_mch_delete_lines(int row, int num_lines)
6813{
Bram Moolenaar98921892016-02-23 17:14:37 +01006814#if GTK_CHECK_VERSION(3,0,0)
6815 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6816 const int nrows = gui.scroll_region_bot - row + 1;
6817 const int src_nrows = nrows - num_lines;
6818
6819 gui_gtk_surface_copy_rect(
6820 FILL_X(gui.scroll_region_left), FILL_Y(row),
6821 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6822 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6823 gui_clear_block(
6824 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6825 gui.scroll_region_bot, gui.scroll_region_right);
6826 gui_gtk3_redraw(
6827 FILL_X(gui.scroll_region_left), FILL_Y(row),
6828 gui.char_width * ncols + 1, gui.char_height * nrows);
6829 if (!gui.by_signal)
6830 gtk_widget_queue_draw_area(gui.drawarea,
6831 FILL_X(gui.scroll_region_left), FILL_Y(row),
6832 gui.char_width * ncols + 1, gui.char_height * nrows);
6833#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6835 return; /* Can't see the window */
6836
6837 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6838 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6839
6840 /* copy one extra pixel, for when bold has spilled over */
6841 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6842 FILL_X(gui.scroll_region_left), FILL_Y(row),
6843 gui.drawarea->window,
6844 FILL_X(gui.scroll_region_left),
6845 FILL_Y(row + num_lines),
6846 gui.char_width * (gui.scroll_region_right
6847 - gui.scroll_region_left + 1) + 1,
6848 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6849
6850 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6851 gui.scroll_region_left,
6852 gui.scroll_region_bot, gui.scroll_region_right);
6853 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006854#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855}
6856
6857/*
6858 * Insert the given number of lines before the given row, scrolling down any
6859 * following text within the scroll region.
6860 */
6861 void
6862gui_mch_insert_lines(int row, int num_lines)
6863{
Bram Moolenaar98921892016-02-23 17:14:37 +01006864#if GTK_CHECK_VERSION(3,0,0)
6865 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6866 const int nrows = gui.scroll_region_bot - row + 1;
6867 const int src_nrows = nrows - num_lines;
6868
6869 gui_gtk_surface_copy_rect(
6870 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6871 FILL_X(gui.scroll_region_left), FILL_Y(row),
6872 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6873 gui_mch_clear_block(
6874 row, gui.scroll_region_left,
6875 row + num_lines - 1, gui.scroll_region_right);
6876 gui_gtk3_redraw(
6877 FILL_X(gui.scroll_region_left), FILL_Y(row),
6878 gui.char_width * ncols + 1, gui.char_height * nrows);
6879 if (!gui.by_signal)
6880 gtk_widget_queue_draw_area(gui.drawarea,
6881 FILL_X(gui.scroll_region_left), FILL_Y(row),
6882 gui.char_width * ncols + 1, gui.char_height * nrows);
6883#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6885 return; /* Can't see the window */
6886
6887 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6888 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6889
6890 /* copy one extra pixel, for when bold has spilled over */
6891 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6892 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6893 gui.drawarea->window,
6894 FILL_X(gui.scroll_region_left), FILL_Y(row),
6895 gui.char_width * (gui.scroll_region_right
6896 - gui.scroll_region_left + 1) + 1,
6897 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6898
6899 gui_clear_block(row, gui.scroll_region_left,
6900 row + num_lines - 1, gui.scroll_region_right);
6901 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006902#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903}
6904
6905/*
6906 * X Selection stuff, for cutting and pasting text to other windows.
6907 */
6908 void
6909clip_mch_request_selection(VimClipboard *cbd)
6910{
6911 GdkAtom target;
6912 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006913 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914
6915 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6916 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006917 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6918 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919 received_selection = RS_NONE;
6920 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6921
6922 gtk_selection_convert(gui.drawarea,
6923 cbd->gtk_sel_atom, target,
6924 (guint32)GDK_CURRENT_TIME);
6925
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006926 /* Hack: Wait up to three seconds for the selection. A hang was
6927 * noticed here when using the netrw plugin combined with ":gui"
6928 * during the FocusGained event. */
6929 start = time(NULL);
6930 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006931 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932
6933 if (received_selection != RS_FAIL)
6934 return;
6935 }
6936
6937 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006938#if GTK_CHECK_VERSION(3,0,0)
6939 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6940 cbd);
6941#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006942 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944}
6945
6946/*
6947 * Disown the selection.
6948 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006950clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006952 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954}
6955
6956/*
6957 * Own the selection and return OK if it worked.
6958 */
6959 int
6960clip_mch_own_selection(VimClipboard *cbd)
6961{
6962 int success;
6963
6964 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006965 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 gui_mch_update();
6967 return (success) ? OK : FAIL;
6968}
6969
6970/*
6971 * Send the current selection to the clipboard. Do nothing for X because we
6972 * will fill in the selection only when requested by another app.
6973 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006975clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976{
6977}
6978
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006979 int
6980clip_gtk_owner_exists(VimClipboard *cbd)
6981{
6982 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6983}
6984
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985
6986#if defined(FEAT_MENU) || defined(PROTO)
6987/*
6988 * Make a menu item appear either active or not active (grey or not grey).
6989 */
6990 void
6991gui_mch_menu_grey(vimmenu_T *menu, int grey)
6992{
6993 if (menu->id == NULL)
6994 return;
6995
6996 if (menu_is_separator(menu->name))
6997 grey = TRUE;
6998
6999 gui_mch_menu_hidden(menu, FALSE);
7000 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007001# if GTK_CHECK_VERSION(3,0,0)
7002 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7003# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007005# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 {
7007 gtk_widget_set_sensitive(menu->id, !grey);
7008 gui_mch_update();
7009 }
7010}
7011
7012/*
7013 * Make menu item hidden or not hidden.
7014 */
7015 void
7016gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7017{
7018 if (menu->id == 0)
7019 return;
7020
7021 if (hidden)
7022 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007023# if GTK_CHECK_VERSION(3,0,0)
7024 if (gtk_widget_get_visible(menu->id))
7025# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007027# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 {
7029 gtk_widget_hide(menu->id);
7030 gui_mch_update();
7031 }
7032 }
7033 else
7034 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007035# if GTK_CHECK_VERSION(3,0,0)
7036 if (!gtk_widget_get_visible(menu->id))
7037# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007039# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 {
7041 gtk_widget_show(menu->id);
7042 gui_mch_update();
7043 }
7044 }
7045}
7046
7047/*
7048 * This is called after setting all the menus to grey/hidden or not.
7049 */
7050 void
7051gui_mch_draw_menubar(void)
7052{
7053 /* just make sure that the visual changes get effect immediately */
7054 gui_mch_update();
7055}
7056#endif /* FEAT_MENU */
7057
7058/*
7059 * Scrollbar stuff.
7060 */
7061 void
7062gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7063{
7064 if (sb->id == NULL)
7065 return;
7066
Bram Moolenaar98921892016-02-23 17:14:37 +01007067#if GTK_CHECK_VERSION(3,0,0)
7068 gtk_widget_set_visible(sb->id, flag);
7069#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 if (flag)
7071 gtk_widget_show(sb->id);
7072 else
7073 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007076 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077}
7078
7079
7080/*
7081 * Return the RGB value of a pixel as long.
7082 */
7083 long_u
7084gui_mch_get_rgb(guicolor_T pixel)
7085{
7086 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01007087#if GTK_CHECK_VERSION(3,0,0)
7088 GdkRGBA rgba;
7089
7090 gui_gtk_get_rgb_from_pixel(pixel, &rgba);
7091
7092 color.red = rgba.red * 65535;
7093 color.green = rgba.green * 65535;
7094 color.blue = rgba.blue * 65535;
7095#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7097 (unsigned long)pixel, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01007098#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099
7100 return (((unsigned)color.red & 0xff00) << 8)
7101 | ((unsigned)color.green & 0xff00)
7102 | (((unsigned)color.blue & 0xff00) >> 8);
7103}
7104
7105/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007106 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007108 void
7109gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110{
Bram Moolenaar98921892016-02-23 17:14:37 +01007111#if GTK_CHECK_VERSION(3,0,0)
7112 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7113#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007114 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007115#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116}
7117
7118 void
7119gui_mch_setmouse(int x, int y)
7120{
7121 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7122 * internal GDK mechanism present to accomplish this. (and for good
7123 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007124#if GTK_CHECK_VERSION(3,0,0)
7125 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7126 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7127 0, 0, 0U, 0U, x, y);
7128#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7130 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7131 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133}
7134
7135
7136#ifdef FEAT_MOUSESHAPE
7137/* The last set mouse pointer shape is remembered, to be used when it goes
7138 * from hidden to not hidden. */
7139static int last_shape = 0;
7140#endif
7141
7142/*
7143 * Use the blank mouse pointer or not.
7144 *
7145 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7146 */
7147 void
7148gui_mch_mousehide(int hide)
7149{
7150 if (gui.pointer_hidden != hide)
7151 {
7152 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007153#if GTK_CHECK_VERSION(3,0,0)
7154 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7155#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007157#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 {
7159 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007160#if GTK_CHECK_VERSION(3,0,0)
7161 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7162 gui.blank_pointer);
7163#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007165#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 else
7167#ifdef FEAT_MOUSESHAPE
7168 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007169#elif GTK_CHECK_VERSION(3,0,0)
7170 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171#else
7172 gdk_window_set_cursor(gui.drawarea->window, NULL);
7173#endif
7174 }
7175 }
7176}
7177
7178#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7179
7180/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7181 * misc2.c! */
7182static const int mshape_ids[] =
7183{
7184 GDK_LEFT_PTR, /* arrow */
7185 GDK_CURSOR_IS_PIXMAP, /* blank */
7186 GDK_XTERM, /* beam */
7187 GDK_SB_V_DOUBLE_ARROW, /* updown */
7188 GDK_SIZING, /* udsizing */
7189 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7190 GDK_SIZING, /* lrsizing */
7191 GDK_WATCH, /* busy */
7192 GDK_X_CURSOR, /* no */
7193 GDK_CROSSHAIR, /* crosshair */
7194 GDK_HAND1, /* hand1 */
7195 GDK_HAND2, /* hand2 */
7196 GDK_PENCIL, /* pencil */
7197 GDK_QUESTION_ARROW, /* question */
7198 GDK_RIGHT_PTR, /* right-arrow */
7199 GDK_CENTER_PTR, /* up-arrow */
7200 GDK_LEFT_PTR /* last one */
7201};
7202
7203 void
7204mch_set_mouse_shape(int shape)
7205{
7206 int id;
7207 GdkCursor *c;
7208
Bram Moolenaar98921892016-02-23 17:14:37 +01007209# if GTK_CHECK_VERSION(3,0,0)
7210 if (gtk_widget_get_window(gui.drawarea) == NULL)
7211# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007213# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 return;
7215
7216 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007217# if GTK_CHECK_VERSION(3,0,0)
7218 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7219 gui.blank_pointer);
7220# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007221 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007222# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 else
7224 {
7225 if (shape >= MSHAPE_NUMBERED)
7226 {
7227 id = shape - MSHAPE_NUMBERED;
7228 if (id >= GDK_LAST_CURSOR)
7229 id = GDK_LEFT_PTR;
7230 else
7231 id &= ~1; /* they are always even (why?) */
7232 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007233 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007235 else
7236 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237# ifdef HAVE_GTK_MULTIHEAD
7238 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007239 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007241 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007243# if GTK_CHECK_VERSION(3,0,0)
7244 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7245# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007246 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007247# endif
7248# if GTK_CHECK_VERSION(3,0,0)
7249 g_object_unref(G_OBJECT(c));
7250# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 }
7254 if (shape != MSHAPE_HIDE)
7255 last_shape = shape;
7256}
7257#endif /* FEAT_MOUSESHAPE */
7258
7259
7260#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7261/*
7262 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7263 * scaled down if the current font is not big enough, or scaled up if the image
7264 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7265 * will be cut off if the current font is not big enough, or centered if it's
7266 * too small.
7267 */
7268# define SIGN_WIDTH (2 * gui.char_width)
7269# define SIGN_HEIGHT (gui.char_height)
7270# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7271
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 void
7273gui_mch_drawsign(int row, int col, int typenr)
7274{
7275 GdkPixbuf *sign;
7276
7277 sign = (GdkPixbuf *)sign_get_image(typenr);
7278
Bram Moolenaar98921892016-02-23 17:14:37 +01007279# if GTK_CHECK_VERSION(3,0,0)
7280 if (sign != NULL && gui.drawarea != NULL
7281 && gtk_widget_get_window(gui.drawarea) != NULL)
7282# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007284# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285 {
7286 int width;
7287 int height;
7288 int xoffset;
7289 int yoffset;
7290 int need_scale;
7291
7292 width = gdk_pixbuf_get_width(sign);
7293 height = gdk_pixbuf_get_height(sign);
7294 /*
7295 * Decide whether we need to scale. Allow one pixel of border
7296 * width to be cut off, in order to avoid excessive scaling for
7297 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007298 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 */
7300 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007301 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302 || (width < 3 * SIGN_WIDTH / 4
7303 && height < 3 * SIGN_HEIGHT / 4));
7304 if (need_scale)
7305 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007306 double aspect;
7307 int w = width;
7308 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309
7310 /* Keep the original aspect ratio */
7311 aspect = (double)height / (double)width;
7312 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7313 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007314 if (((double)(MAX(height, SIGN_HEIGHT)) /
7315 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7316 {
7317 /* Change the aspect ratio by at most 15% to fill the
7318 * available space completly. */
7319 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7320 height = MIN(height, SIGN_HEIGHT);
7321 }
7322 else
7323 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007325 if (w == width && h == height)
7326 {
7327 /* no change in dimensions; don't decrease reference counter
7328 * (below) */
7329 need_scale = FALSE;
7330 }
7331 else
7332 {
7333 /* This doesn't seem to be worth caching, and doing so would
7334 * complicate the code quite a bit. */
7335 sign = gdk_pixbuf_scale_simple(sign, width, height,
7336 GDK_INTERP_BILINEAR);
7337 if (sign == NULL)
7338 return; /* out of memory */
7339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 }
7341
7342 /* The origin is the upper-left corner of the pixmap. Therefore
7343 * these offset may become negative if the pixmap is smaller than
7344 * the 2x1 cells reserved for the sign icon. */
7345 xoffset = (width - SIGN_WIDTH) / 2;
7346 yoffset = (height - SIGN_HEIGHT) / 2;
7347
Bram Moolenaar98921892016-02-23 17:14:37 +01007348# if GTK_CHECK_VERSION(3,0,0)
7349 {
7350 cairo_t *cr;
7351 cairo_surface_t *bg_surf;
7352 cairo_t *bg_cr;
7353 cairo_surface_t *sign_surf;
7354 cairo_t *sign_cr;
7355
7356 cr = cairo_create(gui.surface);
7357
7358 bg_surf = cairo_surface_create_similar(gui.surface,
7359 cairo_surface_get_content(gui.surface),
7360 SIGN_WIDTH, SIGN_HEIGHT);
7361 bg_cr = cairo_create(bg_surf);
7362 set_cairo_source_rgb_from_pixel(bg_cr, gui.bgcolor->pixel);
7363 cairo_paint(bg_cr);
7364
7365 sign_surf = cairo_surface_create_similar(gui.surface,
7366 cairo_surface_get_content(gui.surface),
7367 SIGN_WIDTH, SIGN_HEIGHT);
7368 sign_cr = cairo_create(sign_surf);
7369 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7370 cairo_paint(sign_cr);
7371
7372 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7373 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7374 cairo_paint(sign_cr);
7375
7376 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7377 cairo_paint(cr);
7378
7379 cairo_destroy(sign_cr);
7380 cairo_surface_destroy(sign_surf);
7381 cairo_destroy(bg_cr);
7382 cairo_surface_destroy(bg_surf);
7383 cairo_destroy(cr);
7384
7385 if (!gui.by_signal)
7386 gtk_widget_queue_draw_area(gui.drawarea,
7387 FILL_X(col), FILL_Y(col), width, height);
7388
7389 }
7390# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7392
7393 gdk_draw_rectangle(gui.drawarea->window,
7394 gui.text_gc,
7395 TRUE,
7396 FILL_X(col),
7397 FILL_Y(row),
7398 SIGN_WIDTH,
7399 SIGN_HEIGHT);
7400
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 gdk_pixbuf_render_to_drawable_alpha(sign,
7402 gui.drawarea->window,
7403 MAX(0, xoffset),
7404 MAX(0, yoffset),
7405 FILL_X(col) - MIN(0, xoffset),
7406 FILL_Y(row) - MIN(0, yoffset),
7407 MIN(width, SIGN_WIDTH),
7408 MIN(height, SIGN_HEIGHT),
7409 GDK_PIXBUF_ALPHA_BILEVEL,
7410 127,
7411 GDK_RGB_DITHER_NORMAL,
7412 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007413# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 if (need_scale)
7415 g_object_unref(sign);
7416 }
7417}
7418
7419 void *
7420gui_mch_register_sign(char_u *signfile)
7421{
7422 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7423 {
7424 GdkPixbuf *sign;
7425 GError *error = NULL;
7426 char_u *message;
7427
7428 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7429
7430 if (error == NULL)
7431 return sign;
7432
7433 message = (char_u *)error->message;
7434
7435 if (message != NULL && input_conv.vc_type != CONV_NONE)
7436 message = string_convert(&input_conv, message, NULL);
7437
7438 if (message != NULL)
7439 {
7440 /* The error message is already translated and will be more
7441 * descriptive than anything we could possibly do ourselves. */
7442 EMSG2("E255: %s", message);
7443
7444 if (input_conv.vc_type != CONV_NONE)
7445 vim_free(message);
7446 }
7447 g_error_free(error);
7448 }
7449
7450 return NULL;
7451}
7452
7453 void
7454gui_mch_destroy_sign(void *sign)
7455{
7456 if (sign != NULL)
7457 g_object_unref(sign);
7458}
7459
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460#endif /* FEAT_SIGN_ICONS */