blob: 9c7e8d56484bb36cb9551a573110bc93fd05ea06 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
89# ifdef WIN3264
90# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
Bram Moolenaarb463e8d2017-06-05 15:07:09 +0200105#define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 gtk_widget_get_display(gui.mainwin), atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
108/* Selection type distinguishers */
109enum
110{
111 TARGET_TYPE_NONE,
112 TARGET_UTF8_STRING,
113 TARGET_STRING,
114 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000115 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 TARGET_TEXT,
117 TARGET_TEXT_URI_LIST,
118 TARGET_TEXT_PLAIN,
119 TARGET_VIM,
120 TARGET_VIMENC
121};
122
123/*
124 * Table of selection targets supported by Vim.
125 * Note: Order matters, preferred types should come first.
126 */
127static const GtkTargetEntry selection_targets[] =
128{
129 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
130 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000131 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
134 {"TEXT", 0, TARGET_TEXT},
135 {"STRING", 0, TARGET_STRING}
136};
137#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
138
139#ifdef FEAT_DND
140/*
141 * Table of DnD targets supported by Vim.
142 * Note: Order matters, preferred types should come first.
143 */
144static const GtkTargetEntry dnd_targets[] =
145{
146 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000147 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {"STRING", 0, TARGET_STRING},
150 {"text/plain", 0, TARGET_TEXT_PLAIN}
151};
152# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
153#endif
154
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156/*
157 * "Monospace" is a standard font alias that should be present
158 * on all proper Pango/fontconfig installations.
159 */
160# define DEFAULT_FONT "Monospace 10"
161
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
163/*
164 * Atoms used to communicate save-yourself from the X11 session manager. There
165 * is no need to move them into the GUI struct, since they should be constant.
166 */
167static GdkAtom wm_protocols_atom = GDK_NONE;
168static GdkAtom save_yourself_atom = GDK_NONE;
169#endif
170
171/*
172 * Atoms used to control/reference X11 selections.
173 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000174static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
179/*
180 * Keycodes recognized by vim.
181 * NOTE: when changing this, the table in gui_x11.c probably needs the same
182 * change!
183 */
184static struct special_key
185{
186 guint key_sym;
187 char_u code0;
188 char_u code1;
189}
190const special_keys[] =
191{
192 {GDK_Up, 'k', 'u'},
193 {GDK_Down, 'k', 'd'},
194 {GDK_Left, 'k', 'l'},
195 {GDK_Right, 'k', 'r'},
196 {GDK_F1, 'k', '1'},
197 {GDK_F2, 'k', '2'},
198 {GDK_F3, 'k', '3'},
199 {GDK_F4, 'k', '4'},
200 {GDK_F5, 'k', '5'},
201 {GDK_F6, 'k', '6'},
202 {GDK_F7, 'k', '7'},
203 {GDK_F8, 'k', '8'},
204 {GDK_F9, 'k', '9'},
205 {GDK_F10, 'k', ';'},
206 {GDK_F11, 'F', '1'},
207 {GDK_F12, 'F', '2'},
208 {GDK_F13, 'F', '3'},
209 {GDK_F14, 'F', '4'},
210 {GDK_F15, 'F', '5'},
211 {GDK_F16, 'F', '6'},
212 {GDK_F17, 'F', '7'},
213 {GDK_F18, 'F', '8'},
214 {GDK_F19, 'F', '9'},
215 {GDK_F20, 'F', 'A'},
216 {GDK_F21, 'F', 'B'},
217 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
218 {GDK_F22, 'F', 'C'},
219 {GDK_F23, 'F', 'D'},
220 {GDK_F24, 'F', 'E'},
221 {GDK_F25, 'F', 'F'},
222 {GDK_F26, 'F', 'G'},
223 {GDK_F27, 'F', 'H'},
224 {GDK_F28, 'F', 'I'},
225 {GDK_F29, 'F', 'J'},
226 {GDK_F30, 'F', 'K'},
227 {GDK_F31, 'F', 'L'},
228 {GDK_F32, 'F', 'M'},
229 {GDK_F33, 'F', 'N'},
230 {GDK_F34, 'F', 'O'},
231 {GDK_F35, 'F', 'P'},
232#ifdef SunXK_F36
233 {SunXK_F36, 'F', 'Q'},
234 {SunXK_F37, 'F', 'R'},
235#endif
236 {GDK_Help, '%', '1'},
237 {GDK_Undo, '&', '8'},
238 {GDK_BackSpace, 'k', 'b'},
239 {GDK_Insert, 'k', 'I'},
240 {GDK_Delete, 'k', 'D'},
241 {GDK_3270_BackTab, 'k', 'B'},
242 {GDK_Clear, 'k', 'C'},
243 {GDK_Home, 'k', 'h'},
244 {GDK_End, '@', '7'},
245 {GDK_Prior, 'k', 'P'},
246 {GDK_Next, 'k', 'N'},
247 {GDK_Print, '%', '9'},
248 /* Keypad keys: */
249 {GDK_KP_Left, 'k', 'l'},
250 {GDK_KP_Right, 'k', 'r'},
251 {GDK_KP_Up, 'k', 'u'},
252 {GDK_KP_Down, 'k', 'd'},
253 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
254 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
255 {GDK_KP_Home, 'K', '1'},
256 {GDK_KP_End, 'K', '4'},
257 {GDK_KP_Prior, 'K', '3'}, /* page up */
258 {GDK_KP_Next, 'K', '5'}, /* page down */
259
260 {GDK_KP_Add, 'K', '6'},
261 {GDK_KP_Subtract, 'K', '7'},
262 {GDK_KP_Divide, 'K', '8'},
263 {GDK_KP_Multiply, 'K', '9'},
264 {GDK_KP_Enter, 'K', 'A'},
265 {GDK_KP_Decimal, 'K', 'B'},
266
267 {GDK_KP_0, 'K', 'C'},
268 {GDK_KP_1, 'K', 'D'},
269 {GDK_KP_2, 'K', 'E'},
270 {GDK_KP_3, 'K', 'F'},
271 {GDK_KP_4, 'K', 'G'},
272 {GDK_KP_5, 'K', 'H'},
273 {GDK_KP_6, 'K', 'I'},
274 {GDK_KP_7, 'K', 'J'},
275 {GDK_KP_8, 'K', 'K'},
276 {GDK_KP_9, 'K', 'L'},
277
278 /* End of list marker: */
279 {0, 0, 0}
280};
281
282/*
283 * Flags for command line options table below.
284 */
285#define ARG_FONT 1
286#define ARG_GEOMETRY 2
287#define ARG_REVERSE 3
288#define ARG_NOREVERSE 4
289#define ARG_BACKGROUND 5
290#define ARG_FOREGROUND 6
291#define ARG_ICONIC 7
292#define ARG_ROLE 8
293#define ARG_NETBEANS 9
294#define ARG_XRM 10 /* ignored */
295#define ARG_MENUFONT 11 /* ignored */
296#define ARG_INDEX_MASK 0x00ff
297#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
298#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
299#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
300#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
301#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
302
303/*
304 * This table holds all the X GUI command line options allowed. This includes
305 * the standard ones so that we can skip them when Vim is started without the
306 * GUI (but the GUI might start up later).
307 *
308 * When changing this, also update doc/gui_x11.txt and the usage message!!!
309 */
310typedef struct
311{
312 const char *name;
313 unsigned int flags;
314}
315cmdline_option_T;
316
317static const cmdline_option_T cmdline_options[] =
318{
319 /* We handle these options ourselves */
320 {"-fn", ARG_FONT|ARG_HAS_VALUE},
321 {"-font", ARG_FONT|ARG_HAS_VALUE},
322 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
323 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
324 {"-rv", ARG_REVERSE},
325 {"-reverse", ARG_REVERSE},
326 {"+rv", ARG_NOREVERSE},
327 {"+reverse", ARG_NOREVERSE},
328 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
329 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
330 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
331 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
332 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334#ifdef FEAT_NETBEANS_INTG
335 {"-nb", ARG_NETBEANS}, /* non-standard value format */
336 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
337 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
338 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 /* Arguments handled by GTK (and GNOME) internally. */
341 {"--g-fatal-warnings", ARG_FOR_GTK},
342 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
343 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
344 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
345 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
346 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--sync", ARG_FOR_GTK},
348 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
349 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
350 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
352 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
353 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354#ifdef FEAT_GUI_GNOME
355 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
358 {"--sm-disable", ARG_FOR_GTK},
359 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--oaf-private", ARG_FOR_GTK},
362 {"--enable-sound", ARG_FOR_GTK},
363 {"--disable-sound", ARG_FOR_GTK},
364 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
366 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
367 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
368# if 0 /* conflicts with Vim's own --version argument */
369 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
370# endif
371 {"--disable-crash-dialog", ARG_FOR_GTK},
372#endif
373 {NULL, 0}
374};
375
376static int gui_argc = 0;
377static char **gui_argv = NULL;
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
381static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000382static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383#endif
384static int found_iconic_arg = FALSE;
385
386#ifdef FEAT_GUI_GNOME
387/*
388 * Can't use Gnome if --socketid given
389 */
390static int using_gnome = 0;
391#else
392# define using_gnome 0
393#endif
394
395/*
396 * Parse the GUI related command-line arguments. Any arguments used are
397 * deleted from argv, and *argc is decremented accordingly. This is called
398 * when vim is started, whether or not the GUI has been started.
399 */
400 void
401gui_mch_prepare(int *argc, char **argv)
402{
403 const cmdline_option_T *option;
404 int i = 0;
405 int len = 0;
406
407#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
408 /*
409 * Determine the command used to invoke Vim, to be passed as restart
410 * command to the session manager. If argv[0] contains any directory
411 * components try building an absolute path, otherwise leave it as is.
412 */
413 restart_command = argv[0];
414
415 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
416 {
417 char_u buf[MAXPATHL];
418
419 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000420 {
421 abs_restart_command = (char *)vim_strsave(buf);
422 restart_command = abs_restart_command;
423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 }
425#endif
426
427 /*
428 * Move all the entries in argv which are relevant to GTK+ and GNOME
429 * into gui_argv. Freed later in gui_mch_init().
430 */
431 gui_argc = 0;
432 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
433
434 g_return_if_fail(gui_argv != NULL);
435
436 gui_argv[gui_argc++] = argv[i++];
437
438 while (i < *argc)
439 {
440 /* Don't waste CPU cycles on non-option arguments. */
441 if (argv[i][0] != '-' && argv[i][0] != '+')
442 {
443 ++i;
444 continue;
445 }
446
447 /* Look for argv[i] in cmdline_options[] table. */
448 for (option = &cmdline_options[0]; option->name != NULL; ++option)
449 {
450 len = strlen(option->name);
451
452 if (strncmp(argv[i], option->name, len) == 0)
453 {
454 if (argv[i][len] == '\0')
455 break;
456 /* allow --foo=bar style */
457 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
458 break;
459#ifdef FEAT_NETBEANS_INTG
460 /* darn, -nb has non-standard syntax */
461 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
462 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
463 break;
464#endif
465 }
466 else if ((option->flags & ARG_COMPAT_LONG)
467 && strcmp(argv[i], option->name + 1) == 0)
468 {
469 /* Replace the standard X arguments "-name" and "-display"
470 * with their GNU-style long option counterparts. */
471 argv[i] = (char *)option->name;
472 break;
473 }
474 }
475 if (option->name == NULL) /* no match */
476 {
477 ++i;
478 continue;
479 }
480
481 if (option->flags & ARG_FOR_GTK)
482 {
483 /* Move the argument into gui_argv, which
484 * will later be passed to gtk_init_check() */
485 gui_argv[gui_argc++] = argv[i];
486 }
487 else
488 {
489 char *value = NULL;
490
491 /* Extract the option's value if there is one.
492 * Accept both "--foo bar" and "--foo=bar" style. */
493 if (option->flags & ARG_HAS_VALUE)
494 {
495 if (argv[i][len] == '=')
496 value = &argv[i][len + 1];
497 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
498 value = argv[i + 1];
499 }
500
501 /* Check for options handled by Vim itself */
502 switch (option->flags & ARG_INDEX_MASK)
503 {
504 case ARG_REVERSE:
505 found_reverse_arg = TRUE;
506 break;
507 case ARG_NOREVERSE:
508 found_reverse_arg = FALSE;
509 break;
510 case ARG_FONT:
511 font_argument = value;
512 break;
513 case ARG_GEOMETRY:
514 if (value != NULL)
515 gui.geom = vim_strsave((char_u *)value);
516 break;
517 case ARG_BACKGROUND:
518 background_argument = value;
519 break;
520 case ARG_FOREGROUND:
521 foreground_argument = value;
522 break;
523 case ARG_ICONIC:
524 found_iconic_arg = TRUE;
525 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 case ARG_ROLE:
527 role_argument = value; /* used later in gui_mch_open() */
528 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529#ifdef FEAT_NETBEANS_INTG
530 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 gui.dofork = FALSE; /* don't fork() when starting GUI */
532 netbeansArg = argv[i];
533 break;
534#endif
535 default:
536 break;
537 }
538 }
539
540 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200541 * Must start the GUI for this, otherwise ":gui" will exit later!
542 * Only when the GUI can start. */
543 if ((option->flags & ARG_NEEDS_GUI)
544 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 gui.starting = TRUE;
546
547 if (option->flags & ARG_KEEP)
548 ++i;
549 else
550 {
551 /* Remove the flag from the argument vector. */
552 if (--*argc > i)
553 {
554 int n_strip = 1;
555
556 /* Move the argument's value as well, if there is one. */
557 if ((option->flags & ARG_HAS_VALUE)
558 && argv[i][len] != '='
559 && strcmp(argv[i + 1], "--") != 0)
560 {
561 ++n_strip;
562 --*argc;
563 if (option->flags & ARG_FOR_GTK)
564 gui_argv[gui_argc++] = argv[i + 1];
565 }
566
567 if (*argc > i)
568 mch_memmove(&argv[i], &argv[i + n_strip],
569 (*argc - i) * sizeof(char *));
570 }
571 argv[*argc] = NULL;
572 }
573 }
574
575 gui_argv[gui_argc] = NULL;
576}
577
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000578#if defined(EXITFREE) || defined(PROTO)
579 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100580gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000581{
582 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000583#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
584 vim_free(abs_restart_command);
585#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000586}
587#endif
588
Bram Moolenaar98921892016-02-23 17:14:37 +0100589#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590/*
591 * This should be maybe completely removed.
592 * Doesn't seem possible, since check_copy_area() relies on
593 * this information. --danielk
594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000596visibility_event(GtkWidget *widget UNUSED,
597 GdkEventVisibility *event,
598 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
600 gui.visibility = event->state;
601 /*
602 * When we do an gdk_window_copy_area(), and the window is partially
603 * obscured, we want to receive an event to tell us whether it worked
604 * or not.
605 */
606 if (gui.text_gc != NULL)
607 gdk_gc_set_exposures(gui.text_gc,
608 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
609 return FALSE;
610}
Bram Moolenaar98921892016-02-23 17:14:37 +0100611#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612
613/*
614 * Redraw the corresponding portions of the screen.
615 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100616#if GTK_CHECK_VERSION(3,0,0)
617static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100618static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100619
620static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100621static void gui_gtk_window_clear(GdkWindow *win);
622
623 static void
624gui_gtk3_redraw(int x, int y, int width, int height)
625{
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100626 /* Range checks are left to gui_redraw_block() */
Bram Moolenaar98921892016-02-23 17:14:37 +0100627 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
628 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
629 GUI_MON_NOCLEAR);
630}
631
632 static void
633gui_gtk3_update_cursor(cairo_t *cr)
634{
635 if (gui.row == gui.cursor_row)
636 {
637 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100638 if (State & CMDLINE)
639 gui_update_cursor(TRUE, FALSE);
640 else
641 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100642 gui.by_signal = FALSE;
643 cairo_paint(cr);
644 }
645}
646
647 static gboolean
648gui_gtk3_should_draw_cursor(void)
649{
650 unsigned int cond = 0;
651 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100652 if (gui.cursor_col >= gui.col)
653 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100654 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100655 return cond;
656}
657
658 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200659draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100660 cairo_t *cr,
661 gpointer user_data UNUSED)
662{
663 /* Skip this when the GUI isn't set up yet, will redraw later. */
664 if (gui.starting)
665 return FALSE;
666
667 out_flush(); /* make sure all output has been processed */
668 /* for GTK+ 3, may induce other draw events. */
669
670 cairo_set_source_surface(cr, gui.surface, 0, 0);
671
672 /* Draw the window without the cursor. */
673 gui.by_signal = TRUE;
674 {
675 cairo_rectangle_list_t *list = NULL;
676
Bram Moolenaar98921892016-02-23 17:14:37 +0100677 list = cairo_copy_clip_rectangle_list(cr);
678 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
679 {
680 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100681
682 /* First clear all the blocks and then redraw them. Just in case
683 * some blocks overlap. */
Bram Moolenaar98921892016-02-23 17:14:37 +0100684 for (i = 0; i < list->num_rectangles; i++)
685 {
686 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200687
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100688 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0,
689 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1);
690 }
691
692 for (i = 0; i < list->num_rectangles; i++)
693 {
694 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200695
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100696 if (blink_mode)
697 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
698 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100699 {
700 if (get_real_state() & VISUAL)
701 gui_gtk3_redraw(rect.x, rect.y,
702 rect.width, rect.height);
703 else
704 gui_redraw(rect.x, rect.y, rect.width, rect.height);
705 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100706 }
707 }
708 cairo_rectangle_list_destroy(list);
709
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100710 if (get_real_state() & VISUAL)
711 {
712 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
713 gui_update_cursor(TRUE, TRUE);
714 }
715
Bram Moolenaar98921892016-02-23 17:14:37 +0100716 cairo_paint(cr);
717 }
718 gui.by_signal = FALSE;
719
720 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100721 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100722 gui_gtk3_update_cursor(cr);
723
724 return FALSE;
725}
726#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000728expose_event(GtkWidget *widget UNUSED,
729 GdkEventExpose *event,
730 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731{
732 /* Skip this when the GUI isn't set up yet, will redraw later. */
733 if (gui.starting)
734 return FALSE;
735
736 out_flush(); /* make sure all output has been processed */
737 gui_redraw(event->area.x, event->area.y,
738 event->area.width, event->area.height);
739
740 /* Clear the border areas if needed */
741 if (event->area.x < FILL_X(0))
742 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
743 if (event->area.y < FILL_Y(0))
744 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
745 if (event->area.x > FILL_X(Columns))
746 gdk_window_clear_area(gui.drawarea->window,
747 FILL_X((int)Columns), 0, 0, 0);
748 if (event->area.y > FILL_Y(Rows))
749 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
750
751 return FALSE;
752}
Bram Moolenaar98921892016-02-23 17:14:37 +0100753#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755#ifdef FEAT_CLIENTSERVER
756/*
757 * Handle changes to the "Comm" property
758 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000760property_event(GtkWidget *widget,
761 GdkEventProperty *event,
762 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763{
764 if (event->type == GDK_PROPERTY_NOTIFY
765 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100766# if GTK_CHECK_VERSION(3,0,0)
767 && GDK_WINDOW_XID(event->window) == commWindow
768# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100770# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 && GET_X_ATOM(event->atom) == commProperty)
772 {
773 XEvent xev;
774
775 /* Translate to XLib */
776 xev.xproperty.type = PropertyNotify;
777 xev.xproperty.atom = commProperty;
778 xev.xproperty.window = commWindow;
779 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100780# if GTK_CHECK_VERSION(3,0,0)
781 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
782 &xev, 0);
783# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200784 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100785# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 }
787 return FALSE;
788}
Bram Moolenaar98921892016-02-23 17:14:37 +0100789#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790
791
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200792#if GTK_CHECK_VERSION(3,0,0)
793typedef gboolean timeout_cb_type;
794#else
795typedef gint timeout_cb_type;
796#endif
797
798/*
799 * Start a timer that will invoke the specified callback.
800 * Returns the ID of the timer.
801 */
802 static guint
803timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
804{
805#if GTK_CHECK_VERSION(3,0,0)
806 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
807#else
808 return gtk_timeout_add((guint32)time, (GtkFunction)callback, flagp);
809#endif
810}
811
812 static void
813timeout_remove(guint timer)
814{
815#if GTK_CHECK_VERSION(3,0,0)
816 g_source_remove(timer);
817#else
818 gtk_timeout_remove(timer);
819#endif
820}
821
822
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823/****************************************************************************
824 * Focus handlers:
825 */
826
827
828/*
829 * This is a simple state machine:
830 * BLINK_NONE not blinking at all
831 * BLINK_OFF blinking, cursor is not shown
832 * BLINK_ON blinking, cursor is shown
833 */
834
835#define BLINK_NONE 0
836#define BLINK_OFF 1
837#define BLINK_ON 2
838
839static int blink_state = BLINK_NONE;
840static long_u blink_waittime = 700;
841static long_u blink_ontime = 400;
842static long_u blink_offtime = 250;
843static guint blink_timer = 0;
844
Bram Moolenaar98921892016-02-23 17:14:37 +0100845#if GTK_CHECK_VERSION(3,0,0)
846 static gboolean
847gui_gtk_is_blink_on(void)
848{
849 return blink_state == BLINK_ON;
850}
Bram Moolenaar98921892016-02-23 17:14:37 +0100851#endif
852
Bram Moolenaar703a8042016-06-04 16:24:32 +0200853 int
854gui_mch_is_blinking(void)
855{
856 return blink_state != BLINK_NONE;
857}
858
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200859 int
860gui_mch_is_blink_off(void)
861{
862 return blink_state == BLINK_OFF;
863}
864
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 void
866gui_mch_set_blinking(long waittime, long on, long off)
867{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100868#if GTK_CHECK_VERSION(3,0,0)
869 if (waittime == 0 || on == 0 || off == 0)
870 {
871 blink_mode = FALSE;
872
873 blink_waittime = 700;
874 blink_ontime = 400;
875 blink_offtime = 250;
876 }
877 else
878 {
879 blink_mode = TRUE;
880
881 blink_waittime = waittime;
882 blink_ontime = on;
883 blink_offtime = off;
884 }
885#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 blink_waittime = waittime;
887 blink_ontime = on;
888 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890}
891
892/*
893 * Stop the cursor blinking. Show the cursor if it wasn't shown.
894 */
895 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100896gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897{
898 if (blink_timer)
899 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200900 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 blink_timer = 0;
902 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100903 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200904 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200906 gui_mch_flush();
907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 blink_state = BLINK_NONE;
909}
910
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200911 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000912blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913{
914 if (blink_state == BLINK_ON)
915 {
916 gui_undraw_cursor();
917 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200918 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 }
920 else
921 {
922 gui_update_cursor(TRUE, FALSE);
923 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200924 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200926 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
928 return FALSE; /* don't happen again */
929}
930
931/*
932 * Start the cursor blinking. If it was already blinking, this restarts the
933 * waiting time and shows the cursor.
934 */
935 void
936gui_mch_start_blink(void)
937{
938 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200939 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200940 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200941 blink_timer = 0;
942 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 /* Only switch blinking on if none of the times is zero */
944 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
945 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200946 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 blink_state = BLINK_ON;
948 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200949 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 }
951}
952
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000954enter_notify_event(GtkWidget *widget UNUSED,
955 GdkEventCrossing *event UNUSED,
956 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957{
958 if (blink_state == BLINK_NONE)
959 gui_mch_start_blink();
960
961 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100962#if GTK_CHECK_VERSION(3,0,0)
963 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
964#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 gtk_widget_grab_focus(gui.drawarea);
968
969 return FALSE;
970}
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000973leave_notify_event(GtkWidget *widget UNUSED,
974 GdkEventCrossing *event UNUSED,
975 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976{
977 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100978 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980 return FALSE;
981}
982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000984focus_in_event(GtkWidget *widget,
985 GdkEventFocus *event UNUSED,
986 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987{
988 gui_focus_change(TRUE);
989
990 if (blink_state == BLINK_NONE)
991 gui_mch_start_blink();
992
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000993 /* make sure keyboard input goes to the draw area (if this is focus for a
994 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000995 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000996 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997
998 return TRUE;
999}
1000
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001002focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001003 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001004 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005{
1006 gui_focus_change(FALSE);
1007
1008 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001009 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010
1011 return TRUE;
1012}
1013
1014
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015/*
1016 * Translate a GDK key value to UTF-8 independently of the current locale.
1017 * The output is written to string, which must have room for at least 6 bytes
1018 * plus the NUL terminator. Returns the length in bytes.
1019 *
1020 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1021 * of GdkEventKey::string instead. But event->string is evil; see here why:
1022 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1023 */
1024 static int
1025keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1026{
1027 int len;
1028 guint32 uc;
1029
1030 uc = gdk_keyval_to_unicode(keyval);
1031 if (uc != 0)
1032 {
1033 /* Check for CTRL-foo */
1034 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1035 {
1036 /* These mappings look arbitrary at the first glance, but in fact
1037 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1038 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1039 * more sense and is consistent with usual terminal behaviour). */
1040 if (uc >= '@')
1041 string[0] = uc & 0x1F;
1042 else if (uc == '2')
1043 string[0] = NUL;
1044 else if (uc >= '3' && uc <= '7')
1045 string[0] = uc ^ 0x28;
1046 else if (uc == '8')
1047 string[0] = BS;
1048 else if (uc == '?')
1049 string[0] = DEL;
1050 else
1051 string[0] = uc;
1052 len = 1;
1053 }
1054 else
1055 {
1056 /* Translate a normal key to UTF-8. This doesn't work for dead
1057 * keys of course, you _have_ to use an input method for that. */
1058 len = utf_char2bytes((int)uc, string);
1059 }
1060 }
1061 else
1062 {
1063 /* Translate keys which are represented by ASCII control codes in Vim.
1064 * There are only a few of those; most control keys are translated to
1065 * special terminal-like control sequences. */
1066 len = 1;
1067 switch (keyval)
1068 {
1069 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1070 string[0] = TAB;
1071 break;
1072 case GDK_Linefeed:
1073 string[0] = NL;
1074 break;
1075 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1076 string[0] = CAR;
1077 break;
1078 case GDK_Escape:
1079 string[0] = ESC;
1080 break;
1081 default:
1082 len = 0;
1083 break;
1084 }
1085 }
1086 string[len] = NUL;
1087
1088 return len;
1089}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001091 static int
1092modifiers_gdk2vim(guint state)
1093{
1094 int modifiers = 0;
1095
1096 if (state & GDK_SHIFT_MASK)
1097 modifiers |= MOD_MASK_SHIFT;
1098 if (state & GDK_CONTROL_MASK)
1099 modifiers |= MOD_MASK_CTRL;
1100 if (state & GDK_MOD1_MASK)
1101 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001102#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001103 if (state & GDK_SUPER_MASK)
1104 modifiers |= MOD_MASK_META;
1105#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001106 if (state & GDK_MOD4_MASK)
1107 modifiers |= MOD_MASK_META;
1108
1109 return modifiers;
1110}
1111
1112 static int
1113modifiers_gdk2mouse(guint state)
1114{
1115 int modifiers = 0;
1116
1117 if (state & GDK_SHIFT_MASK)
1118 modifiers |= MOUSE_SHIFT;
1119 if (state & GDK_CONTROL_MASK)
1120 modifiers |= MOUSE_CTRL;
1121 if (state & GDK_MOD1_MASK)
1122 modifiers |= MOUSE_ALT;
1123
1124 return modifiers;
1125}
1126
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127/*
1128 * Main keyboard handler:
1129 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001131key_press_event(GtkWidget *widget UNUSED,
1132 GdkEventKey *event,
1133 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001135 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1137 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 guint key_sym;
1139 int len;
1140 int i;
1141 int modifiers;
1142 int key;
1143 guint state;
1144 char_u *s, *d;
1145
Bram Moolenaar98921892016-02-23 17:14:37 +01001146#if GTK_CHECK_VERSION(3,0,0)
1147 is_key_pressed = TRUE;
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001148 gui_mch_stop_blink(TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001149#endif
1150
Bram Moolenaar20892c12011-06-26 04:49:00 +02001151 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 key_sym = event->keyval;
1153 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154
1155#ifdef FEAT_XIM
1156 if (xim_queue_key_press_event(event, TRUE))
1157 return TRUE;
1158#endif
1159
1160#ifdef FEAT_HANGULIN
1161 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1162 {
1163 hangul_input_state_toggle();
1164 return TRUE;
1165 }
1166#endif
1167
1168#ifdef SunXK_F36
1169 /*
1170 * These keys have bogus lookup strings, and trapping them here is
1171 * easier than trying to XRebindKeysym() on them with every possible
1172 * combination of modifiers.
1173 */
1174 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1175 len = 0;
1176 else
1177#endif
1178 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 len = keyval_to_string(key_sym, state, string2);
1180
1181 /* Careful: convert_input() doesn't handle the NUL character.
1182 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1183 if (len > 1 && input_conv.vc_type != CONV_NONE)
1184 len = convert_input(string2, len, sizeof(string2));
1185
1186 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 d = string;
1188 for (i = 0; i < len; ++i)
1189 {
1190 *d++ = s[i];
1191 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1192 {
1193 /* Turn CSI into K_CSI. */
1194 *d++ = KS_EXTRA;
1195 *d++ = (int)KE_CSI;
1196 }
1197 }
1198 len = d - string;
1199 }
1200
1201 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1202 if (key_sym == GDK_ISO_Left_Tab)
1203 {
1204 key_sym = GDK_Tab;
1205 state |= GDK_SHIFT_MASK;
1206 }
1207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208#ifdef FEAT_MENU
1209 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1210 * is a menu shortcut, we ignore everything with the ALT modifier. */
1211 if ((state & GDK_MOD1_MASK)
1212 && gui.menu_is_active
1213 && (*p_wak == 'y'
1214 || (*p_wak == 'm'
1215 && len == 1
1216 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 /* For GTK2 we return false to signify that we haven't handled the
1218 * keypress, so that gtk will handle the mnemonic or accelerator. */
1219 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220#endif
1221
1222 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1223 * that already has the 8th bit set.
1224 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1225 * Don't do this for double-byte encodings, it turns the char into a lead
1226 * byte. */
1227 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001228 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001229#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001230 || (state & GDK_SUPER_MASK)
1231#endif
1232 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1234 && (string[0] & 0x80) == 0
1235 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 )
1238 {
1239 string[0] |= 0x80;
1240 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 if (enc_utf8) /* convert to utf-8 */
1242 {
1243 string[1] = string[0] & 0xbf;
1244 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1245 if (string[1] == CSI)
1246 {
1247 string[2] = KS_EXTRA;
1248 string[3] = (int)KE_CSI;
1249 len = 4;
1250 }
1251 else
1252 len = 2;
1253 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 }
1255
1256 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1257 * value) to detect backspace, delete and keypad keys. */
1258 if (len == 0 || len == 1)
1259 {
1260 for (i = 0; special_keys[i].key_sym != 0; i++)
1261 {
1262 if (special_keys[i].key_sym == key_sym)
1263 {
1264 string[0] = CSI;
1265 string[1] = special_keys[i].code0;
1266 string[2] = special_keys[i].code1;
1267 len = -3;
1268 break;
1269 }
1270 }
1271 }
1272
1273 if (len == 0) /* Unrecognized key */
1274 return TRUE;
1275
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 /* Special keys (and a few others) may have modifiers. Also when using a
1277 * double-byte encoding (can't set the 8th bit). */
1278 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1279 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1280 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1281 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001282 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001283#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001284 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001286 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001288 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289
1290 /*
1291 * For some keys a shift modifier is translated into another key
1292 * code.
1293 */
1294 if (len == -3)
1295 key = TO_SPECIAL(string[1], string[2]);
1296 else
1297 key = string[0];
1298
1299 key = simplify_key(key, &modifiers);
1300 if (key == CSI)
1301 key = K_CSI;
1302 if (IS_SPECIAL(key))
1303 {
1304 string[0] = CSI;
1305 string[1] = K_SECOND(key);
1306 string[2] = K_THIRD(key);
1307 len = 3;
1308 }
1309 else
1310 {
1311 string[0] = key;
1312 len = 1;
1313 }
1314
1315 if (modifiers != 0)
1316 {
1317 string2[0] = CSI;
1318 string2[1] = KS_MODIFIER;
1319 string2[2] = modifiers;
1320 add_to_input_buf(string2, 3);
1321 }
1322 }
1323
1324 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1325 || (string[0] == intr_char && intr_char != Ctrl_C)))
1326 {
1327 trash_input_buf();
1328 got_int = TRUE;
1329 }
1330
1331 add_to_input_buf(string, len);
1332
1333 /* blank out the pointer if necessary */
1334 if (p_mh)
1335 gui_mch_mousehide(TRUE);
1336
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 return TRUE;
1338}
1339
Bram Moolenaar98921892016-02-23 17:14:37 +01001340#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001342key_release_event(GtkWidget *widget UNUSED,
1343 GdkEventKey *event,
1344 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345{
Bram Moolenaar98921892016-02-23 17:14:37 +01001346# if GTK_CHECK_VERSION(3,0,0)
1347 is_key_pressed = FALSE;
1348 gui_mch_start_blink();
1349# endif
1350# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001351 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 /*
1353 * GTK+ 2 input methods may do fancy stuff on key release events too.
1354 * With the default IM for instance, you can enter any UCS code point
1355 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1356 */
1357 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001358# else
1359 return TRUE;
1360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361}
1362#endif
1363
1364
1365/****************************************************************************
1366 * Selection handlers:
1367 */
1368
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001369/* Remember when clip_lose_selection was called from here, we must not call
1370 * gtk_selection_owner_set() then. */
1371static int in_selection_clear_event = FALSE;
1372
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001374selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001376 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001378 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 if (event->selection == clip_plus.gtk_sel_atom)
1380 clip_lose_selection(&clip_plus);
1381 else
1382 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001383 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 return TRUE;
1386}
1387
1388#define RS_NONE 0 /* selection_received_cb() not called yet */
1389#define RS_OK 1 /* selection_received_cb() called and OK */
1390#define RS_FAIL 2 /* selection_received_cb() called and failed */
1391static int received_selection = RS_NONE;
1392
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001394selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001396 guint time_ UNUSED,
1397 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398{
1399 VimClipboard *cbd;
1400 char_u *text;
1401 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001404 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405
Bram Moolenaar98921892016-02-23 17:14:37 +01001406#if GTK_CHECK_VERSION(3,0,0)
1407 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1408#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001410#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 cbd = &clip_plus;
1412 else
1413 cbd = &clip_star;
1414
Bram Moolenaar98921892016-02-23 17:14:37 +01001415#if GTK_CHECK_VERSION(3,0,0)
1416 text = (char_u *)gtk_selection_data_get_data(data);
1417 len = gtk_selection_data_get_length(data);
1418#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 text = (char_u *)data->data;
1420 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001421#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422
1423 if (text == NULL || len <= 0)
1424 {
1425 received_selection = RS_FAIL;
1426 /* clip_free_selection(cbd); ??? */
1427
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 return;
1429 }
1430
Bram Moolenaar98921892016-02-23 17:14:37 +01001431#if GTK_CHECK_VERSION(3,0,0)
1432 if (gtk_selection_data_get_data_type(data) == vim_atom)
1433#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 {
1437 motion_type = *text++;
1438 --len;
1439 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001440#if GTK_CHECK_VERSION(3,0,0)
1441 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1442#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 {
1446 char_u *enc;
1447 vimconv_T conv;
1448
1449 motion_type = *text++;
1450 --len;
1451
1452 enc = text;
1453 text += STRLEN(text) + 1;
1454 len -= text - enc;
1455
1456 /* If the encoding of the text is different from 'encoding', attempt
1457 * converting it. */
1458 conv.vc_type = CONV_NONE;
1459 convert_setup(&conv, enc, p_enc);
1460 if (conv.vc_type != CONV_NONE)
1461 {
1462 tmpbuf = string_convert(&conv, text, &len);
1463 if (tmpbuf != NULL)
1464 text = tmpbuf;
1465 convert_setup(&conv, NULL, NULL);
1466 }
1467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 /* gtk_selection_data_get_text() handles all the nasty details
1470 * and targets and encodings etc. This rocks so hard. */
1471 else
1472 {
1473 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1474 if (tmpbuf_utf8 != NULL)
1475 {
1476 len = STRLEN(tmpbuf_utf8);
1477 if (input_conv.vc_type != CONV_NONE)
1478 {
1479 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1480 if (tmpbuf != NULL)
1481 text = tmpbuf;
1482 }
1483 else
1484 text = tmpbuf_utf8;
1485 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001486 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1487 {
1488 vimconv_T conv;
1489
1490 /* UTF-16, we get this for HTML */
1491 conv.vc_type = CONV_NONE;
1492 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1493
1494 if (conv.vc_type != CONV_NONE)
1495 {
1496 text += 2;
1497 len -= 2;
1498 tmpbuf = string_convert(&conv, text, &len);
1499 convert_setup(&conv, NULL, NULL);
1500 }
1501 if (tmpbuf != NULL)
1502 text = tmpbuf;
1503 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001506 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001507 while (len > 0 && text[len - 1] == NUL)
1508 --len;
1509
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 clip_yank_selection(motion_type, text, (long)len, cbd);
1511 received_selection = RS_OK;
1512 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514}
1515
1516/*
1517 * Prepare our selection data for passing it to the external selection
1518 * client.
1519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001521selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 GtkSelectionData *selection_data,
1523 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001524 guint time_ UNUSED,
1525 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526{
1527 char_u *string;
1528 char_u *tmpbuf;
1529 long_u tmplen;
1530 int length;
1531 int motion_type;
1532 GdkAtom type;
1533 VimClipboard *cbd;
1534
Bram Moolenaar98921892016-02-23 17:14:37 +01001535#if GTK_CHECK_VERSION(3,0,0)
1536 if (gtk_selection_data_get_selection(selection_data)
1537 == clip_plus.gtk_sel_atom)
1538#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001540#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 cbd = &clip_plus;
1542 else
1543 cbd = &clip_star;
1544
1545 if (!cbd->owned)
1546 return; /* Shouldn't ever happen */
1547
1548 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001549 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 && info != (guint)TARGET_UTF8_STRING
1551 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 && info != (guint)TARGET_VIM
1553 && info != (guint)TARGET_COMPOUND_TEXT
1554 && info != (guint)TARGET_TEXT)
1555 return;
1556
1557 /* get the selection from the '*'/'+' register */
1558 clip_get_selection(cbd);
1559
1560 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1561 if (motion_type < 0 || string == NULL)
1562 return;
1563 /* Due to int arguments we can't handle more than G_MAXINT. Also
1564 * reserve one extra byte for NUL or the motion type; just in case.
1565 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1566 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1567
1568 if (info == (guint)TARGET_VIM)
1569 {
1570 tmpbuf = alloc((unsigned)length + 1);
1571 if (tmpbuf != NULL)
1572 {
1573 tmpbuf[0] = motion_type;
1574 mch_memmove(tmpbuf + 1, string, (size_t)length);
1575 }
1576 /* For our own format, the first byte contains the motion type */
1577 ++length;
1578 vim_free(string);
1579 string = tmpbuf;
1580 type = vim_atom;
1581 }
1582
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001583 else if (info == (guint)TARGET_HTML)
1584 {
1585 vimconv_T conv;
1586
1587 /* Since we get utf-16, we probably should set it as well. */
1588 conv.vc_type = CONV_NONE;
1589 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1590 if (conv.vc_type != CONV_NONE)
1591 {
1592 tmpbuf = string_convert(&conv, string, &length);
1593 convert_setup(&conv, NULL, NULL);
1594 vim_free(string);
1595 string = tmpbuf;
1596 }
1597
1598 /* Prepend the BOM: "fffe" */
1599 if (string != NULL)
1600 {
1601 tmpbuf = alloc(length + 2);
1602 tmpbuf[0] = 0xff;
1603 tmpbuf[1] = 0xfe;
1604 mch_memmove(tmpbuf + 2, string, (size_t)length);
1605 vim_free(string);
1606 string = tmpbuf;
1607 length += 2;
1608
Bram Moolenaar98921892016-02-23 17:14:37 +01001609#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001610 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001611 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001612 selection_data->type = selection_data->target;
1613 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001614#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001615 gtk_selection_data_set(selection_data, html_atom, 16,
1616 string, length);
1617 vim_free(string);
1618 }
1619 return;
1620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 else if (info == (guint)TARGET_VIMENC)
1622 {
1623 int l = STRLEN(p_enc);
1624
1625 /* contents: motion_type 'encoding' NUL text */
1626 tmpbuf = alloc((unsigned)length + l + 2);
1627 if (tmpbuf != NULL)
1628 {
1629 tmpbuf[0] = motion_type;
1630 STRCPY(tmpbuf + 1, p_enc);
1631 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1632 }
1633 length += l + 2;
1634 vim_free(string);
1635 string = tmpbuf;
1636 type = vimenc_atom;
1637 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 /* gtk_selection_data_set_text() handles everything for us. This is
1640 * so easy and simple and cool, it'd be insane not to use it. */
1641 else
1642 {
1643 if (output_conv.vc_type != CONV_NONE)
1644 {
1645 tmpbuf = string_convert(&output_conv, string, &length);
1646 vim_free(string);
1647 if (tmpbuf == NULL)
1648 return;
1649 string = tmpbuf;
1650 }
1651 /* Validate the string to avoid runtime warnings */
1652 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1653 {
1654 gtk_selection_data_set_text(selection_data,
1655 (const char *)string, length);
1656 }
1657 vim_free(string);
1658 return;
1659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660
1661 if (string != NULL)
1662 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001663#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001664 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001665 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 selection_data->type = selection_data->target;
1667 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 gtk_selection_data_set(selection_data, type, 8, string, length);
1670 vim_free(string);
1671 }
1672}
1673
1674/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001675 * Check if the GUI can be started. Called before gvimrc is sourced and
1676 * before fork().
1677 * Return OK or FAIL.
1678 */
1679 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001680gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001681{
1682 char_u *p;
1683
1684 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1685 p = mch_getenv((char_u *)"DISPLAY");
1686 if (p == NULL || *p == NUL)
1687 {
1688 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001689 if (give_message)
1690 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001691 return FAIL;
1692 }
1693 return OK;
1694}
1695
1696/*
1697 * Check if the GUI can be started. Called before gvimrc is sourced but after
1698 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 * Return OK or FAIL.
1700 */
1701 int
1702gui_mch_init_check(void)
1703{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001704#ifdef USE_GRESOURCE
1705 static int res_registered = FALSE;
1706
1707 if (!res_registered)
1708 {
1709 /* Call this function in the GUI process; otherwise, the resources
1710 * won't be available. Don't call it twice. */
1711 res_registered = TRUE;
1712 gui_gtk_register_resource();
1713 }
1714#endif
1715
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001716#if GTK_CHECK_VERSION(3,10,0)
1717 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1718 * support for other backends such as Wayland. */
1719 gdk_set_allowed_backends ("x11");
1720#endif
1721
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722#ifdef FEAT_GUI_GNOME
1723 if (gtk_socket_id == 0)
1724 using_gnome = 1;
1725#endif
1726
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001727 /* This defaults to argv[0], but we want it to match the name of the
1728 * shipped gvim.desktop so that Vim's windows can be associated with this
1729 * file. */
1730 g_set_prgname("gvim");
1731
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1733 if (!gtk_init_check(&gui_argc, &gui_argv))
1734 {
1735 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001736 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 return FAIL;
1738 }
1739
1740 return OK;
1741}
1742
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743/****************************************************************************
1744 * Mouse handling callbacks
1745 */
1746
1747
1748static guint mouse_click_timer = 0;
1749static int mouse_timed_out = TRUE;
1750
1751/*
1752 * Timer used to recognize multiple clicks of the mouse button
1753 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001754 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755mouse_click_timer_cb(gpointer data)
1756{
1757 /* we don't use this information currently */
1758 int *timed_out = (int *) data;
1759
1760 *timed_out = TRUE;
1761 return FALSE; /* don't happen again */
1762}
1763
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001764static guint motion_repeat_timer = 0;
1765static int motion_repeat_offset = FALSE;
1766static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 static void
1769process_motion_notify(int x, int y, GdkModifierType state)
1770{
1771 int button;
1772 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001773#if GTK_CHECK_VERSION(3,0,0)
1774 GtkAllocation allocation;
1775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776
1777 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1778 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1779 GDK_BUTTON5_MASK))
1780 ? MOUSE_DRAG : ' ';
1781
1782 /* If our pointer is currently hidden, then we should show it. */
1783 gui_mch_mousehide(FALSE);
1784
1785 /* Just moving the rodent above the drawing area without any button
1786 * being pressed. */
1787 if (button != MOUSE_DRAG)
1788 {
1789 gui_mouse_moved(x, y);
1790 return;
1791 }
1792
1793 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001794 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
Bram Moolenaar49325942007-05-10 19:19:59 +00001796 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1798
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 /*
1800 * Auto repeat timer handling.
1801 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001802#if GTK_CHECK_VERSION(3,0,0)
1803 gtk_widget_get_allocation(gui.drawarea, &allocation);
1804
1805 if (x < 0 || y < 0
1806 || x >= allocation.width
1807 || y >= allocation.height)
1808#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (x < 0 || y < 0
1810 || x >= gui.drawarea->allocation.width
1811 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 {
1814
1815 int dx;
1816 int dy;
1817 int offshoot;
1818 int delay = 10;
1819
1820 /* Calculate the maximal distance of the cursor from the drawing area.
1821 * (offshoot can't become negative here!).
1822 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001823#if GTK_CHECK_VERSION(3,0,0)
1824 dx = x < 0 ? -x : x - allocation.width;
1825 dy = y < 0 ? -y : y - allocation.height;
1826#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1828 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830
1831 offshoot = dx > dy ? dx : dy;
1832
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001833 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 * distance of 127 pixels from the main window.
1835 *
1836 * One could think endlessly about the most ergonomic variant here.
1837 * For example it could make sense to calculate the distance from the
1838 * drags start instead...
1839 *
1840 * Maybe a parabolic interpolation would suite us better here too...
1841 */
1842 if (offshoot > 127)
1843 {
1844 /* 5 appears to be somehow near to my perceptual limits :-). */
1845 delay = 5;
1846 }
1847 else
1848 {
1849 delay = (130 * (127 - offshoot)) / 127 + 5;
1850 }
1851
1852 /* shoot again */
1853 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001854 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1855 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 }
1857}
1858
Bram Moolenaar98921892016-02-23 17:14:37 +01001859#if GTK_CHECK_VERSION(3,0,0)
1860 static GdkDevice *
1861gui_gtk_get_pointer_device(GtkWidget *widget)
1862{
1863 GdkWindow * const win = gtk_widget_get_window(widget);
1864 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001865# if GTK_CHECK_VERSION(3,20,0)
1866 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1867 return gdk_seat_get_pointer(seat);
1868# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001869 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1870 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001871# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001872}
1873
1874 static GdkWindow *
1875gui_gtk_get_pointer(GtkWidget *widget,
1876 gint *x,
1877 gint *y,
1878 GdkModifierType *state)
1879{
1880 GdkWindow * const win = gtk_widget_get_window(widget);
1881 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1882 return gdk_window_get_device_position(win, dev , x, y, state);
1883}
1884
Bram Moolenaar2369c152016-03-04 23:08:25 +01001885# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001886 static GdkWindow *
1887gui_gtk_window_at_position(GtkWidget *widget,
1888 gint *x,
1889 gint *y)
1890{
1891 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1892 return gdk_device_get_window_at_position(dev, x, y);
1893}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001894# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001895#endif
1896
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897/*
1898 * Timer used to recognize multiple clicks of the mouse button.
1899 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001900 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001901motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 int x;
1904 int y;
1905 GdkModifierType state;
1906
Bram Moolenaar98921892016-02-23 17:14:37 +01001907#if GTK_CHECK_VERSION(3,0,0)
1908 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1909#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912
1913 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1914 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1915 GDK_BUTTON5_MASK)))
1916 {
1917 motion_repeat_timer = 0;
1918 return FALSE;
1919 }
1920
1921 /* If there already is a mouse click in the input buffer, wait another
1922 * time (otherwise we would create a backlog of clicks) */
1923 if (vim_used_in_input_buf() > 10)
1924 return TRUE;
1925
1926 motion_repeat_timer = 0;
1927
1928 /*
1929 * Fake a motion event.
1930 * Trick: Pretend the mouse moved to the next character on every other
1931 * event, otherwise drag events will be discarded, because they are still
1932 * in the same character.
1933 */
1934 if (motion_repeat_offset)
1935 x += gui.char_width;
1936
1937 motion_repeat_offset = !motion_repeat_offset;
1938 process_motion_notify(x, y, state);
1939
1940 /* Don't happen again. We will get reinstalled in the synthetic event
1941 * if needed -- thus repeating should still work. */
1942 return FALSE;
1943}
1944
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001946motion_notify_event(GtkWidget *widget,
1947 GdkEventMotion *event,
1948 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949{
1950 if (event->is_hint)
1951 {
1952 int x;
1953 int y;
1954 GdkModifierType state;
1955
Bram Moolenaar98921892016-02-23 17:14:37 +01001956#if GTK_CHECK_VERSION(3,0,0)
1957 gui_gtk_get_pointer(widget, &x, &y, &state);
1958#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 process_motion_notify(x, y, state);
1962 }
1963 else
1964 {
1965 process_motion_notify((int)event->x, (int)event->y,
1966 (GdkModifierType)event->state);
1967 }
1968
1969 return TRUE; /* handled */
1970}
1971
1972
1973/*
1974 * Mouse button handling. Note please that we are capturing multiple click's
1975 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1976 * This is due to the way the generic VIM code is recognizing multiple clicks.
1977 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001979button_press_event(GtkWidget *widget,
1980 GdkEventButton *event,
1981 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982{
1983 int button;
1984 int repeated_click = FALSE;
1985 int x, y;
1986 int_u vim_modifiers;
1987
Bram Moolenaar20892c12011-06-26 04:49:00 +02001988 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001989
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001991#if GTK_CHECK_VERSION(3,0,0)
1992 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1993#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01001995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 gtk_widget_grab_focus(widget);
1997
1998 /*
1999 * Don't let additional events about multiple clicks send by GTK to us
2000 * after the initial button press event confuse us.
2001 */
2002 if (event->type != GDK_BUTTON_PRESS)
2003 return FALSE;
2004
2005 x = event->x;
2006 y = event->y;
2007
2008 /* Handle multiple clicks */
2009 if (!mouse_timed_out && mouse_click_timer)
2010 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002011 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 mouse_click_timer = 0;
2013 repeated_click = TRUE;
2014 }
2015
2016 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002017 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
2018 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
2020 switch (event->button)
2021 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002022 /* Keep in sync with gui_x11.c.
2023 * Buttons 4-7 are handled in scroll_event() */
2024 case 1: button = MOUSE_LEFT; break;
2025 case 2: button = MOUSE_MIDDLE; break;
2026 case 3: button = MOUSE_RIGHT; break;
2027 case 8: button = MOUSE_X1; break;
2028 case 9: button = MOUSE_X2; break;
2029 default:
2030 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 }
2032
2033#ifdef FEAT_XIM
2034 /* cancel any preediting */
2035 if (im_is_preediting())
2036 xim_reset();
2037#endif
2038
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002039 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040
2041 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
2043 return TRUE;
2044}
2045
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002047 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002050scroll_event(GtkWidget *widget,
2051 GdkEventScroll *event,
2052 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053{
2054 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002055 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
Bram Moolenaar98921892016-02-23 17:14:37 +01002057#if GTK_CHECK_VERSION(3,0,0)
2058 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2059#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 gtk_widget_grab_focus(widget);
2063
2064 switch (event->direction)
2065 {
2066 case GDK_SCROLL_UP:
2067 button = MOUSE_4;
2068 break;
2069 case GDK_SCROLL_DOWN:
2070 button = MOUSE_5;
2071 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002072 case GDK_SCROLL_LEFT:
2073 button = MOUSE_7;
2074 break;
2075 case GDK_SCROLL_RIGHT:
2076 button = MOUSE_6;
2077 break;
2078 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 return FALSE;
2080 }
2081
2082# ifdef FEAT_XIM
2083 /* cancel any preediting */
2084 if (im_is_preediting())
2085 xim_reset();
2086# endif
2087
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002088 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089
2090 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2091 FALSE, vim_modifiers);
2092
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 return TRUE;
2094}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002098button_release_event(GtkWidget *widget UNUSED,
2099 GdkEventButton *event,
2100 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101{
2102 int x, y;
2103 int_u vim_modifiers;
2104
Bram Moolenaar20892c12011-06-26 04:49:00 +02002105 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002106
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 /* Remove any motion "machine gun" timers used for automatic further
2108 extension of allocation areas if outside of the applications window
2109 area .*/
2110 if (motion_repeat_timer)
2111 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002112 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 motion_repeat_timer = 0;
2114 }
2115
2116 x = event->x;
2117 y = event->y;
2118
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002119 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
2121 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122
2123 return TRUE;
2124}
2125
2126
2127#ifdef FEAT_DND
2128/****************************************************************************
2129 * Drag aNd Drop support handlers.
2130 */
2131
2132/*
2133 * Count how many items there may be and separate them with a NUL.
2134 * Apparently the items are separated with \r\n. This is not documented,
2135 * thus be careful not to go past the end. Also allow separation with
2136 * NUL characters.
2137 */
2138 static int
2139count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2140{
2141 int i;
2142 char_u *p = out;
2143 int count = 0;
2144
2145 for (i = 0; i < len; ++i)
2146 {
2147 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2148 {
2149 if (p > out && p[-1] != NUL)
2150 {
2151 ++count;
2152 *p++ = NUL;
2153 }
2154 }
2155 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2156 {
2157 *p++ = hexhex2nr(raw + i + 1);
2158 i += 2;
2159 }
2160 else
2161 *p++ = raw[i];
2162 }
2163 if (p > out && p[-1] != NUL)
2164 {
2165 *p = NUL; /* last item didn't have \r or \n */
2166 ++count;
2167 }
2168 return count;
2169}
2170
2171/*
2172 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2173 * this process, URI which protocol is not "file:" are removed. Return
2174 * length of array (less than "max").
2175 */
2176 static int
2177filter_uri_list(char_u **outlist, int max, char_u *src)
2178{
2179 int i, j;
2180
2181 for (i = j = 0; i < max; ++i)
2182 {
2183 outlist[i] = NULL;
2184 if (STRNCMP(src, "file:", 5) == 0)
2185 {
2186 src += 5;
2187 if (STRNCMP(src, "//localhost", 11) == 0)
2188 src += 11;
2189 while (src[0] == '/' && src[1] == '/')
2190 ++src;
2191 outlist[j++] = vim_strsave(src);
2192 }
2193 src += STRLEN(src) + 1;
2194 }
2195 return j;
2196}
2197
2198 static char_u **
2199parse_uri_list(int *count, char_u *data, int len)
2200{
2201 int n = 0;
2202 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002203 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204
2205 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2206 {
2207 n = count_and_decode_uri_list(tmp, data, len);
2208 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2209 n = filter_uri_list(array, n, tmp);
2210 }
2211 vim_free(tmp);
2212 *count = n;
2213 return array;
2214}
2215
2216 static void
2217drag_handle_uri_list(GdkDragContext *context,
2218 GtkSelectionData *data,
2219 guint time_,
2220 GdkModifierType state,
2221 gint x,
2222 gint y)
2223{
2224 char_u **fnames;
2225 int nfiles = 0;
2226
Bram Moolenaar98921892016-02-23 17:14:37 +01002227# if GTK_CHECK_VERSION(3,0,0)
2228 fnames = parse_uri_list(&nfiles,
2229 (char_u *)gtk_selection_data_get_data(data),
2230 gtk_selection_data_get_length(data));
2231# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002233# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 if (fnames != NULL && nfiles > 0)
2236 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002237 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238
2239 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2240
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002241 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242
2243 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2244 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002245 else
2246 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247}
2248
2249 static void
2250drag_handle_text(GdkDragContext *context,
2251 GtkSelectionData *data,
2252 guint time_,
2253 GdkModifierType state)
2254{
2255 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2256 char_u *text;
2257 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259
Bram Moolenaar98921892016-02-23 17:14:37 +01002260# if GTK_CHECK_VERSION(3,0,0)
2261 text = (char_u *)gtk_selection_data_get_data(data);
2262 len = gtk_selection_data_get_length(data);
2263# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 text = data->data;
2265 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002266# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267
Bram Moolenaar98921892016-02-23 17:14:37 +01002268# if GTK_CHECK_VERSION(3,0,0)
2269 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2270# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002272# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 if (input_conv.vc_type != CONV_NONE)
2275 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 if (tmpbuf != NULL)
2277 text = tmpbuf;
2278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279
2280 dnd_yank_drag_data(text, (long)len);
2281 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002284 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
2286 if (dropkey[2] != 0)
2287 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2288 else
2289 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290}
2291
2292/*
2293 * DND receiver.
2294 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 static void
2296drag_data_received_cb(GtkWidget *widget,
2297 GdkDragContext *context,
2298 gint x,
2299 gint y,
2300 GtkSelectionData *data,
2301 guint info,
2302 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002303 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304{
2305 GdkModifierType state;
2306
2307 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002308# if GTK_CHECK_VERSION(3,0,0)
2309 const guchar * const data_data = gtk_selection_data_get_data(data);
2310 const gint data_length = gtk_selection_data_get_length(data);
2311 const gint data_format = gtk_selection_data_get_format(data);
2312
2313 if (data_data == NULL
2314 || data_length <= 0
2315 || data_format != 8
2316 || data_data[data_length] != '\0')
2317# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 if (data->data == NULL
2319 || data->length <= 0
2320 || data->format != 8
2321 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 {
2324 gtk_drag_finish(context, FALSE, FALSE, time_);
2325 return;
2326 }
2327
2328 /* Get the current modifier state for proper distinguishment between
2329 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002330#if GTK_CHECK_VERSION(3,0,0)
2331 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2332# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002334# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335
2336 /* Not sure about the role of "text/plain" here... */
2337 if (info == (guint)TARGET_TEXT_URI_LIST)
2338 drag_handle_uri_list(context, data, time_, state, x, y);
2339 else
2340 drag_handle_text(context, data, time_, state);
2341
2342}
2343#endif /* FEAT_DND */
2344
2345
2346#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2347/*
2348 * GnomeClient interact callback. Check for unsaved buffers that cannot
2349 * be abandoned and pop up a dialog asking the user for confirmation if
2350 * necessary.
2351 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002353sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002355 GnomeDialogType type UNUSED,
2356 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357{
2358 cmdmod_T save_cmdmod;
2359 gboolean shutdown_cancelled;
2360
2361 save_cmdmod = cmdmod;
2362
2363# ifdef FEAT_BROWSE
2364 cmdmod.browse = TRUE;
2365# endif
2366# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2367 cmdmod.confirm = TRUE;
2368# endif
2369 /*
2370 * If there are changed buffers, present the user with
2371 * a dialog if possible, otherwise give an error message.
2372 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002373 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374
2375 exiting = FALSE;
2376 cmdmod = save_cmdmod;
2377 setcursor(); /* position the cursor */
2378 out_flush();
2379 /*
2380 * If the user hit the [Cancel] button the whole shutdown
2381 * will be cancelled. Wow, quite powerful feature (:
2382 */
2383 gnome_interaction_key_return(key, shutdown_cancelled);
2384}
2385
2386/*
2387 * Generate a script that can be used to restore the current editing session.
2388 * Save the value of v:this_session before running :mksession in order to make
2389 * automagic session save fully transparent. Return TRUE on success.
2390 */
2391 static int
2392write_session_file(char_u *filename)
2393{
2394 char_u *escaped_filename;
2395 char *mksession_cmdline;
2396 unsigned int save_ssop_flags;
2397 int failed;
2398
2399 /*
2400 * Build an ex command line to create a script that restores the current
2401 * session if executed. Escape the filename to avoid nasty surprises.
2402 */
2403 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2404 if (escaped_filename == NULL)
2405 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002406 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2407 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002409
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 /*
2411 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2412 * unpredictable effects when the session is saved automatically. Also,
2413 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2414 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2415 * enormously large if the GNOME session feature is used regularly.
2416 */
2417 save_ssop_flags = ssop_flags;
2418 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002419 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
2421 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2422 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2423 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002424 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
2426 ssop_flags = save_ssop_flags;
2427 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002428
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 /*
2430 * Reopen the file and append a command to restore v:this_session,
2431 * as if this save never happened. This is to avoid conflicts with
2432 * the user's own sessions. FIXME: It's probably less hackish to add
2433 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2434 */
2435 if (!failed)
2436 {
2437 FILE *fd;
2438
2439 fd = open_exfile(filename, TRUE, APPENDBIN);
2440
2441 failed = (fd == NULL
2442 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2443 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2444
2445 if (fd != NULL && fclose(fd) != 0)
2446 failed = TRUE;
2447
2448 if (failed)
2449 mch_remove(filename);
2450 }
2451
2452 return !failed;
2453}
2454
2455/*
2456 * "save_yourself" signal handler. Initiate an interaction to ask the user
2457 * for confirmation if necessary. Save the current editing session and tell
2458 * the session manager how to restart Vim.
2459 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 static gboolean
2461sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002462 gint phase UNUSED,
2463 GnomeSaveStyle save_style UNUSED,
2464 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002466 gboolean fast UNUSED,
2467 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468{
2469 static const char suffix[] = "-session.vim";
2470 char *session_file;
2471 unsigned int len;
2472 gboolean success;
2473
2474 /* Always request an interaction if possible. check_changed_any()
2475 * won't actually show a dialog unless any buffers have been modified.
2476 * There doesn't seem to be an obvious way to check that without
2477 * automatically firing the dialog. Anyway, it works just fine. */
2478 if (interact_style == GNOME_INTERACT_ANY)
2479 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2480 &sm_client_check_changed_any,
2481 NULL);
2482 out_flush();
2483 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2484
2485 /* The path is unique for each session save. We do neither know nor care
2486 * which session script will actually be used later. This decision is in
2487 * the domain of the session manager. */
2488 session_file = gnome_config_get_real_path(
2489 gnome_client_get_config_prefix(client));
2490 len = strlen(session_file);
2491
2492 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2493 --len; /* get rid of the superfluous trailing '/' */
2494
2495 session_file = g_renew(char, session_file, len + sizeof(suffix));
2496 memcpy(session_file + len, suffix, sizeof(suffix));
2497
2498 success = write_session_file((char_u *)session_file);
2499
2500 if (success)
2501 {
2502 const char *argv[8];
2503 int i;
2504
2505 /* Tell the session manager how to wipe out the stored session data.
2506 * This isn't as dangerous as it looks, don't worry :) session_file
2507 * is a unique absolute filename. Usually it'll be something like
2508 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2509 i = 0;
2510 argv[i++] = "rm";
2511 argv[i++] = session_file;
2512 argv[i] = NULL;
2513
2514 gnome_client_set_discard_command(client, i, (char **)argv);
2515
2516 /* Tell the session manager how to restore the just saved session.
2517 * This is easily done thanks to Vim's -S option. Pass the -f flag
2518 * since there's no need to fork -- it might even cause confusion.
2519 * Also pass the window role to give the WM something to match on.
2520 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2521 i = 0;
2522 argv[i++] = restart_command;
2523 argv[i++] = "-f";
2524 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 argv[i++] = "--role";
2526 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 argv[i++] = "-S";
2528 argv[i++] = session_file;
2529 argv[i] = NULL;
2530
2531 gnome_client_set_restart_command(client, i, (char **)argv);
2532 gnome_client_set_clone_command(client, 0, NULL);
2533 }
2534
2535 g_free(session_file);
2536
2537 return success;
2538}
2539
2540/*
2541 * Called when the session manager wants us to die. There isn't much to save
2542 * here since "save_yourself" has been emitted before (unless serious trouble
2543 * is happening).
2544 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002546sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547{
2548 /* Don't write messages to the GUI anymore */
2549 full_screen = FALSE;
2550
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002551 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002552 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002553 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 preserve_exit();
2555}
2556
2557/*
2558 * Connect our signal handlers to be notified on session save and shutdown.
2559 */
2560 static void
2561setup_save_yourself(void)
2562{
2563 GnomeClient *client;
2564
2565 client = gnome_master_client();
2566
2567 if (client != NULL)
2568 {
2569 /* Must use the deprecated gtk_signal_connect() for compatibility
2570 * with GNOME 1. Arrgh, zombies! */
2571 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2572 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2573 gtk_signal_connect(GTK_OBJECT(client), "die",
2574 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2575 }
2576}
2577
2578#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2579
2580# ifdef USE_XSMP
2581/*
2582 * GTK tells us that XSMP needs attention
2583 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002585local_xsmp_handle_requests(
2586 GIOChannel *source UNUSED,
2587 GIOCondition condition,
2588 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589{
2590 if (condition == G_IO_IN)
2591 {
2592 /* Do stuff; maybe close connection */
2593 if (xsmp_handle_requests() == FAIL)
2594 g_io_channel_unref((GIOChannel *)data);
2595 return TRUE;
2596 }
2597 /* Error */
2598 g_io_channel_unref((GIOChannel *)data);
2599 xsmp_close();
2600 return TRUE;
2601}
2602# endif /* USE_XSMP */
2603
2604/*
2605 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2606 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2607 */
2608 static void
2609setup_save_yourself(void)
2610{
2611 Atom *existing_atoms = NULL;
2612 int count = 0;
2613
Bram Moolenaar98921892016-02-23 17:14:37 +01002614# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 if (xsmp_icefd != -1)
2616 {
2617 /*
2618 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2619 * set up GTK IO monitor
2620 */
2621 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2622
2623 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2624 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002625 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 }
2627 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002628# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 {
2630 /* Fall back to old method */
2631
2632 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002633# if GTK_CHECK_VERSION(3,0,0)
2634 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2635
2636 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2637 GDK_WINDOW_XID(mainwin_win),
2638 &existing_atoms, &count))
2639# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2641 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2642 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002643# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 {
2645 Atom *new_atoms;
2646 Atom save_yourself_xatom;
2647 int i;
2648
2649 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2650
2651 /* check if WM_SAVE_YOURSELF isn't there yet */
2652 for (i = 0; i < count; ++i)
2653 if (existing_atoms[i] == save_yourself_xatom)
2654 break;
2655
2656 if (i == count)
2657 {
2658 /* allocate an Atoms array which is one item longer */
2659 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2660 * sizeof(Atom)));
2661 if (new_atoms != NULL)
2662 {
2663 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2664 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002665# if GTK_CHECK_VERSION(3,0,0)
2666 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2667 GDK_WINDOW_XID(mainwin_win),
2668# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2670 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002671# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 new_atoms, count + 1);
2673 vim_free(new_atoms);
2674 }
2675 }
2676 XFree(existing_atoms);
2677 }
2678 }
2679}
2680
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681/*
2682 * Installing a global event filter seems to be the only way to catch
2683 * client messages of type WM_PROTOCOLS without overriding GDK's own
2684 * client message event filter. Well, that's still better than trying
2685 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 *
2687 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2688 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2689 * I have the nasty feeling modern session managers just don't send this
2690 * deprecated message anymore. Addition: confirmed by several people.
2691 *
2692 * The GNOME session support is much cooler anyway. Unlike this ugly
2693 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2694 * it should work with KDE as well.
2695 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002697global_event_filter(GdkXEvent *xev,
2698 GdkEvent *event UNUSED,
2699 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 XEvent *xevent = (XEvent *)xev;
2702
2703 if (xevent != NULL
2704 && xevent->type == ClientMessage
2705 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002706 && (long_u)xevent->xclient.data.l[0]
2707 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 {
2709 out_flush();
2710 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2711 /*
2712 * Set the window's WM_COMMAND property, to let the window manager
2713 * know we are done saving ourselves. We don't want to be
2714 * restarted, thus set argv to NULL.
2715 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002716# if GTK_CHECK_VERSION(3,0,0)
2717 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2718 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2719# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2721 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002722# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 NULL, 0);
2724 return GDK_FILTER_REMOVE;
2725 }
2726
2727 return GDK_FILTER_CONTINUE;
2728}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2730
2731
2732/*
2733 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2734 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002736mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737{
2738/* If you get an error message here, you still need to unpack the runtime
2739 * archive! */
2740#ifdef magick
2741# undef magick
2742#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 /* A bit hackish, but avoids casting later and allows optimization */
2744# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745#define magick vim32x32
2746#include "../runtime/vim32x32.xpm"
2747#undef magick
2748#define magick vim16x16
2749#include "../runtime/vim16x16.xpm"
2750#undef magick
2751#define magick vim48x48
2752#include "../runtime/vim48x48.xpm"
2753#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
Bram Moolenaar98921892016-02-23 17:14:37 +01002756#if GTK_CHECK_VERSION(3,0,0)
2757 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2758#endif
2759
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 /* When started with "--echo-wid" argument, write window ID on stdout. */
2761 if (echo_wid_arg)
2762 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002763#if GTK_CHECK_VERSION(3,0,0)
2764 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2765#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002767#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 fflush(stdout);
2769 }
2770
2771 if (vim_strchr(p_go, GO_ICON) != NULL)
2772 {
2773 /*
2774 * Add an icon to the main window. For fun and convenience of the user.
2775 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 GList *icons = NULL;
2777
2778 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2779 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2780 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2781
2782 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2783
2784 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2785 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 }
2787
2788#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2789 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791#endif
2792 /* Setup to indicate to the window manager that we want to catch the
2793 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2794 * manager instead. */
2795#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2796 if (using_gnome)
2797#endif
2798 setup_save_yourself();
2799
2800#ifdef FEAT_CLIENTSERVER
2801 if (serverName == NULL && serverDelayedStartName != NULL)
2802 {
2803 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002804# if GTK_CHECK_VERSION(3,0,0)
2805 commWindow = GDK_WINDOW_XID(mainwin_win);
2806
2807 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2808 serverDelayedStartName);
2809# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2811
2812 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2813 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002814# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 }
2816 else
2817 {
2818 /*
2819 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2820 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002821 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002823# if GTK_CHECK_VERSION(3,0,0)
2824 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2825 GDK_WINDOW_XID(mainwin_win));
2826# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2828 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002829# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 }
2831 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002832# if GTK_CHECK_VERSION(3,0,0)
2833 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2834 G_CALLBACK(property_event), NULL);
2835# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2837 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002838# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839#endif
2840}
2841
2842 static GdkCursor *
2843create_blank_pointer(void)
2844{
2845 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002846#if GTK_CHECK_VERSION(3,0,0)
2847 GdkPixbuf *blank_mask;
2848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002852#if GTK_CHECK_VERSION(3,0,0)
2853 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2854#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 GdkColor color = { 0, 0, 0, 0 };
2856 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002859#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002860 {
2861 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2862 GdkScreen * const scrn = gdk_window_get_screen(win);
2863 root_window = gdk_screen_get_root_window(scrn);
2864 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002865#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 root_window = gtk_widget_get_root_window(gui.mainwin);
2867#endif
2868
2869 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2870 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002871#if GTK_CHECK_VERSION(3,0,0)
2872 {
2873 cairo_surface_t *surf;
2874 cairo_t *cr;
2875
2876 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2877 cr = cairo_create(surf);
2878
Bram Moolenaar36edf062016-07-21 22:10:12 +02002879 cairo_set_source_rgba(cr,
2880 color.red,
2881 color.green,
2882 color.blue,
2883 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002884 cairo_rectangle(cr, 0, 0, 1, 1);
2885 cairo_fill(cr);
2886 cairo_destroy(cr);
2887
2888 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2889 cairo_surface_destroy(surf);
2890
2891 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2892 blank_mask, 0, 0);
2893 g_object_unref(blank_mask);
2894 }
2895#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2897 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2898 &color, &color, 0, 0);
2899 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002900#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901
2902 return cursor;
2903}
2904
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 static void
2906mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002907 GdkScreen *previous_screen UNUSED,
2908 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909{
2910 if (!gtk_widget_has_screen(widget))
2911 return;
2912
2913 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002914 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 */
2916 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002917#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002918 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002919#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 gui.blank_pointer = create_blank_pointer();
2924
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002925#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002926 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2927 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2928 gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2931 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
2934 /*
2935 * Create a new PangoContext for this screen, and initialize it
2936 * with the current font if necessary.
2937 */
2938 if (gui.text_context != NULL)
2939 g_object_unref(gui.text_context);
2940
2941 gui.text_context = gtk_widget_create_pango_context(widget);
2942 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2943
2944 if (gui.norm_font != NULL)
2945 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002946 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002947 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 }
2949}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950
2951/*
2952 * After the drawing area comes up, we calculate all colors and create the
2953 * dummy blank cursor.
2954 *
2955 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2956 * fact that the main VIM engine doesn't take them into account anywhere.
2957 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002959drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002962#if GTK_CHECK_VERSION(3,0,0)
2963 GtkAllocation allocation;
2964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965
2966#ifdef FEAT_XIM
2967 xim_init();
2968#endif
2969 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002970#if GTK_CHECK_VERSION(3,0,0)
2971 gui.surface = gdk_window_create_similar_surface(
2972 gtk_widget_get_window(widget),
2973 CAIRO_CONTENT_COLOR_ALPHA,
2974 gtk_widget_get_allocated_width(widget),
2975 gtk_widget_get_allocated_height(widget));
2976#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002978#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979
2980 gui.blank_pointer = create_blank_pointer();
2981 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002982#if GTK_CHECK_VERSION(3,0,0)
2983 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
2984#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987
2988 /* get the actual size of the scrollbars, if they are realized */
2989 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2990 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2991 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2992 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002993#if GTK_CHECK_VERSION(3,0,0)
2994 gtk_widget_get_allocation(sbar, &allocation);
2995 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2996 gui.scrollbar_width = allocation.width;
2997#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
2999 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
3002 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003003#if GTK_CHECK_VERSION(3,0,0)
3004 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3005 gui.scrollbar_height = allocation.height;
3006#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3008 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010}
3011
3012/*
3013 * Properly clean up on shutdown.
3014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003016drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 /* Don't write messages to the GUI anymore */
3019 full_screen = FALSE;
3020
3021#ifdef FEAT_XIM
3022 im_shutdown();
3023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 if (gui.ascii_glyphs != NULL)
3025 {
3026 pango_glyph_string_free(gui.ascii_glyphs);
3027 gui.ascii_glyphs = NULL;
3028 }
3029 if (gui.ascii_font != NULL)
3030 {
3031 g_object_unref(gui.ascii_font);
3032 gui.ascii_font = NULL;
3033 }
3034 g_object_unref(gui.text_context);
3035 gui.text_context = NULL;
3036
Bram Moolenaar98921892016-02-23 17:14:37 +01003037#if GTK_CHECK_VERSION(3,0,0)
3038 if (gui.surface != NULL)
3039 {
3040 cairo_surface_destroy(gui.surface);
3041 gui.surface = NULL;
3042 }
3043#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 g_object_unref(gui.text_gc);
3045 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047
Bram Moolenaar98921892016-02-23 17:14:37 +01003048#if GTK_CHECK_VERSION(3,0,0)
3049 g_object_unref(G_OBJECT(gui.blank_pointer));
3050#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003052#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054}
3055
Bram Moolenaara859f042016-11-17 19:11:55 +01003056#if GTK_CHECK_VERSION(3,22,2)
3057 static void
3058drawarea_style_updated_cb(GtkWidget *widget UNUSED,
3059 gpointer data UNUSED)
3060#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003062drawarea_style_set_cb(GtkWidget *widget UNUSED,
3063 GtkStyle *previous_style UNUSED,
3064 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01003065#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066{
3067 gui_mch_new_colors();
3068}
3069
Bram Moolenaar98921892016-02-23 17:14:37 +01003070#if GTK_CHECK_VERSION(3,0,0)
3071 static gboolean
3072drawarea_configure_event_cb(GtkWidget *widget,
3073 GdkEventConfigure *event,
3074 gpointer data UNUSED)
3075{
3076 static int cur_width = 0;
3077 static int cur_height = 0;
3078
3079 g_return_val_if_fail(event
3080 && event->width >= 1 && event->height >= 1, TRUE);
3081
Bram Moolenaar182707a2016-11-21 20:55:58 +01003082# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01003083 /* As of 3.22.2, GdkWindows have started distributing configure events to
3084 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
3085 *
3086 * As can be seen from the implementation of move_native_children() and
3087 * configure_native_child() in gdkwindow.c, those functions actually
3088 * propagate configure events to every child, failing to distinguish
3089 * "native" one from non-native one.
3090 *
3091 * Naturally, configure events propagated to here like that are fallacious
3092 * and, as a matter of fact, they trigger a geometric collapse of
3093 * gui.drawarea in fullscreen and miximized modes.
3094 *
3095 * To filter out such nuisance events, we are making use of the fact that
3096 * the field send_event of such GdkEventConfigures is set to FALSE in
3097 * configure_native_child().
3098 *
3099 * Obviously, this is a terrible hack making GVim depend on GTK's
3100 * implementation details. Therefore, watch out any relevant internal
3101 * changes happening in GTK in the feature (sigh).
3102 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01003103 /* Follow-up
3104 * After a few weeks later, the GdkWindow change mentioned above was
3105 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
3106 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01003107 if (event->send_event == FALSE)
3108 return TRUE;
3109# endif
3110
Bram Moolenaar98921892016-02-23 17:14:37 +01003111 if (event->width == cur_width && event->height == cur_height)
3112 return TRUE;
3113
3114 cur_width = event->width;
3115 cur_height = event->height;
3116
3117 if (gui.surface != NULL)
3118 cairo_surface_destroy(gui.surface);
3119
3120 gui.surface = gdk_window_create_similar_surface(
3121 gtk_widget_get_window(widget),
3122 CAIRO_CONTENT_COLOR_ALPHA,
3123 event->width, event->height);
3124
3125 gtk_widget_queue_draw(widget);
3126
3127 return TRUE;
3128}
3129#endif
3130
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131/*
3132 * Callback routine for the "delete_event" signal on the toplevel window.
3133 * Tries to vim gracefully, or refuses to exit with changed buffers.
3134 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003136delete_event_cb(GtkWidget *widget UNUSED,
3137 GdkEventAny *event UNUSED,
3138 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
3140 gui_shell_closed();
3141 return TRUE;
3142}
3143
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003144#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3145 static int
3146get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3147{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003148# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003149 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3150
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003151 if (using_gnome && widget != NULL)
3152 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003153 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003154 BonoboDockItem *dockitem;
3155
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003156 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003157 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3158 {
3159 /* Only menu & toolbar are dock items. Could tabline be?
3160 * Seem to be only the 2 defined in GNOME */
3161 widget = parent;
3162 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003163
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003164 if (dockitem == NULL || dockitem->is_floating)
3165 return 0;
3166 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3167 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003168 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003169# else
3170# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01003171# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003172
Bram Moolenaar98921892016-02-23 17:14:37 +01003173# if GTK_CHECK_VERSION(3,0,0)
3174 if (widget != NULL
3175 && item_orientation == orientation
3176 && gtk_widget_get_realized(widget)
3177 && gtk_widget_get_visible(widget))
3178# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003179 if (widget != NULL
3180 && item_orientation == orientation
3181 && GTK_WIDGET_REALIZED(widget)
3182 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003183# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003184 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003185# if GTK_CHECK_VERSION(3,0,0)
3186 GtkAllocation allocation;
3187
3188 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003189 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003190# else
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003191# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003192 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3193 return widget->allocation.height;
3194 else
3195 return widget->allocation.width;
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003196# else
3197 return widget->allocation.height;
3198# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003199# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003200 }
3201 return 0;
3202}
3203#endif
3204
3205 static int
3206get_menu_tool_width(void)
3207{
3208 int width = 0;
3209
3210#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3211# ifdef FEAT_MENU
3212 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3213# endif
3214# ifdef FEAT_TOOLBAR
3215 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3216# endif
3217# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003218 if (gui.tabline != NULL)
3219 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003220# endif
3221#endif
3222
3223 return width;
3224}
3225
3226 static int
3227get_menu_tool_height(void)
3228{
3229 int height = 0;
3230
3231#ifdef FEAT_MENU
3232 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3233#endif
3234#ifdef FEAT_TOOLBAR
3235 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3236#endif
3237#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003238 if (gui.tabline != NULL)
3239 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003240#endif
3241
3242 return height;
3243}
3244
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003245/* This controls whether we can set the real window hints at
3246 * start-up when in a GtkPlug.
3247 * 0 = normal processing (default)
3248 * 1 = init. hints set, no-one's tried to reset since last check
3249 * 2 = init. hints set, attempt made to change hints
3250 */
3251static int init_window_hints_state = 0;
3252
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003253 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003254update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003255{
3256 static int old_width = 0;
3257 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003258 static int old_min_width = 0;
3259 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003260 static int old_char_width = 0;
3261 static int old_char_height = 0;
3262
3263 int width;
3264 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003265 int min_width;
3266 int min_height;
3267
3268 /* At start-up, don't try to set the hints until the initial
3269 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003270 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003271 */
3272 if (!(force_width && force_height) && init_window_hints_state > 0)
3273 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003274 /* Don't do it! */
3275 init_window_hints_state = 2;
3276 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003277 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003278
3279 /* This also needs to be done when the main window isn't there yet,
3280 * otherwise the hints don't work. */
3281 width = gui_get_base_width();
3282 height = gui_get_base_height();
3283# ifdef FEAT_MENU
3284 height += tabline_height() * gui.char_height;
3285# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003286 width += get_menu_tool_width();
3287 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003288
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003289 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003290 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003291 * 'set columns=' or init. -geom) we briefly set the min. to the size
3292 * we wish to be instead of the legitimate minimum so that we actually
3293 * resize correctly.
3294 */
3295 if (force_width && force_height)
3296 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003297 min_width = force_width;
3298 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003299 }
3300 else
3301 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003302 min_width = width + MIN_COLUMNS * gui.char_width;
3303 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003304 }
3305
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003306 /* Avoid an expose event when the size didn't change. */
3307 if (width != old_width
3308 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003309 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003310 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003311 || gui.char_width != old_char_width
3312 || gui.char_height != old_char_height)
3313 {
3314 GdkGeometry geometry;
3315 GdkWindowHints geometry_mask;
3316
3317 geometry.width_inc = gui.char_width;
3318 geometry.height_inc = gui.char_height;
3319 geometry.base_width = width;
3320 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003321 geometry.min_width = min_width;
3322 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003323 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3324 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003325 /* Using gui.formwin as geometry widget doesn't work as expected
3326 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3327 * in Vim confuse GTK+. */
3328 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3329 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003330 old_width = width;
3331 old_height = height;
3332 old_min_width = min_width;
3333 old_min_height = min_height;
3334 old_char_width = gui.char_width;
3335 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003336 }
3337}
3338
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339#ifdef FEAT_TOOLBAR
3340
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341/*
3342 * This extra effort wouldn't be necessary if we only used stock icons in the
3343 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3344 * shouldn't be treated differently, thus we do need this.
3345 */
3346 static void
3347icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3348{
3349 if (GTK_IS_IMAGE(widget))
3350 {
3351 GtkImage *image = (GtkImage *)widget;
3352
Bram Moolenaar98921892016-02-23 17:14:37 +01003353# if GTK_CHECK_VERSION(3,10,0)
3354 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3355 {
3356 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3357 const gchar *icon_name;
3358
3359 gtk_image_get_icon_name(image, &icon_name, NULL);
3360
3361 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3362 }
3363# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 /* User-defined icons are stored in a GtkIconSet */
3365 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3366 {
3367 GtkIconSet *icon_set;
3368 GtkIconSize icon_size;
3369
3370 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3371 icon_size = (GtkIconSize)(long)user_data;
3372
3373 gtk_icon_set_ref(icon_set);
3374 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3375 gtk_icon_set_unref(icon_set);
3376 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003377# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 }
3379 else if (GTK_IS_CONTAINER(widget))
3380 {
3381 gtk_container_foreach((GtkContainer *)widget,
3382 &icon_size_changed_foreach,
3383 user_data);
3384 }
3385}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386
3387 static void
3388set_toolbar_style(GtkToolbar *toolbar)
3389{
3390 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 GtkIconSize size;
3392 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3395 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3396 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003397 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3399 style = GTK_TOOLBAR_BOTH;
3400 else if (toolbar_flags & TOOLBAR_TEXT)
3401 style = GTK_TOOLBAR_TEXT;
3402 else
3403 style = GTK_TOOLBAR_ICONS;
3404
3405 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003406# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003408# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 switch (tbis_flags)
3411 {
3412 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3413 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3414 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3415 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003416 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3417 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 default: size = GTK_ICON_SIZE_INVALID; break;
3419 }
3420 oldsize = gtk_toolbar_get_icon_size(toolbar);
3421
3422 if (size == GTK_ICON_SIZE_INVALID)
3423 {
3424 /* Let global user preferences decide the icon size. */
3425 gtk_toolbar_unset_icon_size(toolbar);
3426 size = gtk_toolbar_get_icon_size(toolbar);
3427 }
3428 if (size != oldsize)
3429 {
3430 gtk_container_foreach(GTK_CONTAINER(toolbar),
3431 &icon_size_changed_foreach,
3432 GINT_TO_POINTER((int)size));
3433 }
3434 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435}
3436
3437#endif /* FEAT_TOOLBAR */
3438
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003439#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3440static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003441static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003442# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003443static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003444# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003445static int clicked_page; /* page clicked in tab line */
3446
3447/*
3448 * Handle selecting an item in the tab line popup menu.
3449 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003450 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003451tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003452{
Bram Moolenaara5621492006-02-25 21:55:24 +00003453 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003454 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003455}
3456
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003457 static void
3458add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3459{
3460 GtkWidget *item;
3461 char_u *utf_text;
3462
3463 utf_text = CONVERT_TO_UTF8(text);
3464 item = gtk_menu_item_new_with_label((const char *)utf_text);
3465 gtk_widget_show(item);
3466 CONVERT_TO_UTF8_FREE(utf_text);
3467
3468 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003469# if GTK_CHECK_VERSION(3,0,0)
3470 g_signal_connect(G_OBJECT(item), "activate",
3471 G_CALLBACK(tabline_menu_handler),
3472 GINT_TO_POINTER(resp));
3473# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003474 gtk_signal_connect(GTK_OBJECT(item), "activate",
3475 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003476 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003477# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003478}
3479
Bram Moolenaara5621492006-02-25 21:55:24 +00003480/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003481 * Create a menu for the tab line.
3482 */
3483 static GtkWidget *
3484create_tabline_menu(void)
3485{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003486 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003487
3488 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003489 if (first_tabpage->tp_next != NULL)
3490 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3491 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003492 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3493 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003494
3495 return menu;
3496}
3497
3498 static gboolean
3499on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3500{
3501 /* Was this button press event ? */
3502 if (event->type == GDK_BUTTON_PRESS)
3503 {
3504 GdkEventButton *bevent = (GdkEventButton *)event;
3505 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003506 int y = bevent->y;
3507 GtkWidget *tabwidget;
3508 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003509
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003510 /* When ignoring events return TRUE so that the selected page doesn't
3511 * change. */
3512 if (hold_gui_events
3513# ifdef FEAT_CMDWIN
3514 || cmdwin_type != 0
3515# endif
3516 )
3517 return TRUE;
3518
Bram Moolenaar98921892016-02-23 17:14:37 +01003519# if GTK_CHECK_VERSION(3,0,0)
3520 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3521# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003522 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003523# endif
3524
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003525 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003526# if GTK_CHECK_VERSION(3,0,0)
3527 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3528 "tab_num"));
3529# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003530 clicked_page = (int)(long)gtk_object_get_user_data(
3531 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003532# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003533
3534 /* If the event was generated for 3rd button popup the menu. */
3535 if (bevent->button == 3)
3536 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003537# if GTK_CHECK_VERSION(3,22,2)
3538 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3539# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003540 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3541 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003542# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003543 /* We handled the event. */
3544 return TRUE;
3545 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003546 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003547 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003548 if (clicked_page == 0)
3549 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003550 /* Click after all tabs moves to next tab page. When "x" is
3551 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003552 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003553 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003554 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003555 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003556
Bram Moolenaara5621492006-02-25 21:55:24 +00003557 /* We didn't handle the event. */
3558 return FALSE;
3559}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003560
3561/*
3562 * Handle selecting one of the tabs.
3563 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003564 static void
3565on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003566 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003567# if GTK_CHECK_VERSION(3,0,0)
3568 gpointer *page UNUSED,
3569# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003570 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003571# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003572 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003573 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003574{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003575 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003576 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003577}
3578
3579/*
3580 * Handle reordering the tabs (using D&D).
3581 */
3582 static void
3583on_tab_reordered(
3584 GtkNotebook *notebook UNUSED,
3585# if GTK_CHECK_VERSION(3,0,0)
3586 gpointer *page UNUSED,
3587# else
3588 GtkNotebookPage *page UNUSED,
3589# endif
3590 gint idx,
3591 gpointer data UNUSED)
3592{
3593 if (!ignore_tabline_evt)
3594 {
3595 if ((tabpage_index(curtab) - 1) < idx)
3596 tabpage_move(idx + 1);
3597 else
3598 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003599 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003600}
3601
3602/*
3603 * Show or hide the tabline.
3604 */
3605 void
3606gui_mch_show_tabline(int showit)
3607{
3608 if (gui.tabline == NULL)
3609 return;
3610
3611 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3612 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003613 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003614 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003615 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003616 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003617# if GTK_CHECK_VERSION(3,0,0)
3618 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3619# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003620 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003621# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003622 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003623
3624 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003625}
3626
3627/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003628 * Return TRUE when tabline is displayed.
3629 */
3630 int
3631gui_mch_showing_tabline(void)
3632{
3633 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003634 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003635}
3636
3637/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003638 * Update the labels of the tabline.
3639 */
3640 void
3641gui_mch_update_tabline(void)
3642{
3643 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003644 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003645 GtkWidget *label;
3646 tabpage_T *tp;
3647 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003648 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003649 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003650 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003651
3652 if (gui.tabline == NULL)
3653 return;
3654
3655 ignore_tabline_evt = TRUE;
3656
3657 /* Add a label for each tab page. They all contain the same text area. */
3658 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3659 {
3660 if (tp == curtab)
3661 curtabidx = nr;
3662
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003663 tab_num = nr + 1;
3664
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003665 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3666 if (page == NULL)
3667 {
3668 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003669# if GTK_CHECK_VERSION(3,2,0)
3670 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3671 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3672# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003673 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003674# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003675 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003676 event_box = gtk_event_box_new();
3677 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003678 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003679# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003680 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003681# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003682 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003683 gtk_widget_show(label);
3684 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3685 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003686 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003687 nr++);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003688 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3689 page,
3690 TRUE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691 }
3692
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003693 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003694# if GTK_CHECK_VERSION(3,0,0)
3695 g_object_set_data(G_OBJECT(event_box), "tab_num",
3696 GINT_TO_POINTER(tab_num));
3697# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003698 gtk_object_set_user_data(GTK_OBJECT(event_box),
3699 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003700# endif
3701# if GTK_CHECK_VERSION(3,0,0)
3702 label = gtk_bin_get_child(GTK_BIN(event_box));
3703# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003704 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003705# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003706 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003707 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003708 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003709 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003710
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003711 get_tabline_label(tp, TRUE);
3712 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003713# if GTK_CHECK_VERSION(3,0,0)
3714 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3715# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003716 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3717 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003718# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003719 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003720 }
3721
3722 /* Remove any old labels. */
3723 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3724 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3725
Bram Moolenaar98921892016-02-23 17:14:37 +01003726# if GTK_CHECK_VERSION(3,0,0)
3727 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3728 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3729# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003730 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003731 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003732# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003733
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003734 /* Make sure everything is in place before drawing text. */
3735 gui_mch_update();
3736
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003737 ignore_tabline_evt = FALSE;
3738}
3739
3740/*
3741 * Set the current tab to "nr". First tab is 1.
3742 */
3743 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003744gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003745{
3746 if (gui.tabline == NULL)
3747 return;
3748
3749 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003750# if GTK_CHECK_VERSION(3,0,0)
3751 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3752 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3753# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003754 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003755 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003756# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003757 ignore_tabline_evt = FALSE;
3758}
3759
3760#endif /* FEAT_GUI_TABLINE */
3761
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003763 * Add selection targets for PRIMARY and CLIPBOARD selections.
3764 */
3765 void
3766gui_gtk_set_selection_targets(void)
3767{
3768 int i, j = 0;
3769 int n_targets = N_SELECTION_TARGETS;
3770 GtkTargetEntry targets[N_SELECTION_TARGETS];
3771
3772 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3773 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003774 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003775 * return something, instead of trying another target. Therefore only
3776 * offer TARGET_HTML when it works. */
3777 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3778 n_targets--;
3779 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003780 targets[j++] = selection_targets[i];
3781 }
3782
3783 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3784 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3785 gtk_selection_add_targets(gui.drawarea,
3786 (GdkAtom)GDK_SELECTION_PRIMARY,
3787 targets, n_targets);
3788 gtk_selection_add_targets(gui.drawarea,
3789 (GdkAtom)clip_plus.gtk_sel_atom,
3790 targets, n_targets);
3791}
3792
3793/*
3794 * Set up for receiving DND items.
3795 */
3796 void
3797gui_gtk_set_dnd_targets(void)
3798{
3799 int i, j = 0;
3800 int n_targets = N_DND_TARGETS;
3801 GtkTargetEntry targets[N_DND_TARGETS];
3802
3803 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3804 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003805 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003806 n_targets--;
3807 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003808 targets[j++] = dnd_targets[i];
3809 }
3810
3811 gtk_drag_dest_unset(gui.drawarea);
3812 gtk_drag_dest_set(gui.drawarea,
3813 GTK_DEST_DEFAULT_ALL,
3814 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003815 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003816}
3817
3818/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3820 * Returns OK for success, FAIL when the GUI can't be started.
3821 */
3822 int
3823gui_mch_init(void)
3824{
3825 GtkWidget *vbox;
3826
3827#ifdef FEAT_GUI_GNOME
3828 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3829 * exits on failure, but that's a non-issue because we already called
3830 * gtk_init_check() in gui_mch_init_check(). */
3831 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003832 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3834 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003835# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003836 {
3837 char *p = setlocale(LC_NUMERIC, NULL);
3838
3839 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3840 * init may change it. */
3841 if (p == NULL || strcmp(p, "C") != 0)
3842 setlocale(LC_NUMERIC, "C");
3843 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003844# endif
3845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003847 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003849#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 /* Set the human-readable application name */
3851 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 /*
3854 * Force UTF-8 output no matter what the value of 'encoding' is.
3855 * did_set_string_option() in option.c prohibits changing 'termencoding'
3856 * to something else than UTF-8 if the GUI is in use.
3857 */
3858 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3859
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003860#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3864 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003865#if !GTK_CHECK_VERSION(3,0,0)
3866# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003868# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869#endif
3870
3871 /* Initialize values */
3872 gui.border_width = 2;
3873 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3874 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003875#if GTK_CHECK_VERSION(3,0,0)
3876 gui.fgcolor = g_new(GdkRGBA, 1);
3877 gui.bgcolor = g_new(GdkRGBA, 1);
3878 gui.spcolor = g_new(GdkRGBA, 1);
3879#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003880 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003882 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003884 /* LINTED: avoid warning: conversion to 'unsigned long' */
3885 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887
3888 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003889 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
3892 /* Set default foreground and background colors. */
3893 gui.norm_pixel = gui.def_norm_pixel;
3894 gui.back_pixel = gui.def_back_pixel;
3895
3896 if (gtk_socket_id != 0)
3897 {
3898 GtkWidget *plug;
3899
3900 /* Use GtkSocket from another app. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3902 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003903#if GTK_CHECK_VERSION(3,0,0)
3904 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3905#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 {
3909 gui.mainwin = plug;
3910 }
3911 else
3912 {
3913 g_warning("Connection to GTK+ socket (ID %u) failed",
3914 (unsigned int)gtk_socket_id);
3915 /* Pretend we never wanted it if it failed (get own window) */
3916 gtk_socket_id = 0;
3917 }
3918 }
3919
3920 if (gtk_socket_id == 0)
3921 {
3922#ifdef FEAT_GUI_GNOME
3923 if (using_gnome)
3924 {
3925 gui.mainwin = gnome_app_new("Vim", NULL);
3926# ifdef USE_XSMP
3927 /* Use the GNOME save-yourself functionality now. */
3928 xsmp_close();
3929# endif
3930 }
3931 else
3932#endif
3933 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3934 }
3935
3936 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3937
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 /* Create the PangoContext used for drawing all text. */
3939 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3940 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941
Bram Moolenaar98921892016-02-23 17:14:37 +01003942#if GTK_CHECK_VERSION(3,0,0)
3943 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3944#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003946#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3948
Bram Moolenaar98921892016-02-23 17:14:37 +01003949#if GTK_CHECK_VERSION(3,0,0)
3950 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3951 G_CALLBACK(&delete_event_cb), NULL);
3952
3953 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3954 G_CALLBACK(&mainwin_realize), NULL);
3955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3957 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3958
3959 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3960 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003961#endif
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003962
3963 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003965
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 gui.accel_group = gtk_accel_group_new();
3967 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003969 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003970#if GTK_CHECK_VERSION(3,2,0)
3971 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3972 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3973#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976
3977#ifdef FEAT_GUI_GNOME
3978 if (using_gnome)
3979 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003980# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 /* automagically restore menubar/toolbar placement */
3982 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3983# endif
3984 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3985 }
3986 else
3987#endif
3988 {
3989 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3990 gtk_widget_show(vbox);
3991 }
3992
3993#ifdef FEAT_MENU
3994 /*
3995 * Create the menubar and handle
3996 */
3997 gui.menubar = gtk_menu_bar_new();
3998 gtk_widget_set_name(gui.menubar, "vim-menubar");
3999
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004000 /* Avoid that GTK takes <F10> away from us. */
4001 {
4002 GtkSettings *gtk_settings;
4003
4004 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
4005 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
4006 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004007
4008
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009# ifdef FEAT_GUI_GNOME
4010 if (using_gnome)
4011 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 BonoboDockItem *dockitem;
4013
4014 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
4015 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4016 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00004017 /* We don't want the menu to float. */
4018 bonobo_dock_item_set_behavior(dockitem,
4019 bonobo_dock_item_get_behavior(dockitem)
4020 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 }
4023 else
4024# endif /* FEAT_GUI_GNOME */
4025 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00004026 /* Always show the menubar, otherwise <F10> doesn't work. It may be
4027 * disabled in gui_init() later. */
4028 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
4030 }
4031#endif /* FEAT_MENU */
4032
4033#ifdef FEAT_TOOLBAR
4034 /*
4035 * Create the toolbar and handle
4036 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004038# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004039 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004040 /* N.B. Since the default value of GtkToolbar::button-relief is
4041 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4042# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 gtk_rc_parse_string(
4044 "style \"vim-toolbar-style\" {\n"
4045 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4046 "}\n"
4047 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004048# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 gui.toolbar = gtk_toolbar_new();
4050 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4052
4053# ifdef FEAT_GUI_GNOME
4054 if (using_gnome)
4055 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 BonoboDockItem *dockitem;
4057
4058 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4059 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4060 GNOME_APP_TOOLBAR_NAME);
4061 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004062 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004063 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004064 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004065 bonobo_dock_item_get_behavior(dockitem)
4066 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 }
4069 else
4070# endif /* FEAT_GUI_GNOME */
4071 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4073 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4074 gtk_widget_show(gui.toolbar);
4075 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4076 }
4077#endif /* FEAT_TOOLBAR */
4078
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004079#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004080 /*
4081 * Use a Notebook for the tab pages labels. The labels are hidden by
4082 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004083 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004084 gui.tabline = gtk_notebook_new();
4085 gtk_widget_show(gui.tabline);
4086 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4087 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4088 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004089 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004090# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004091 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004092# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004093
Bram Moolenaar98921892016-02-23 17:14:37 +01004094# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004095 tabline_tooltip = gtk_tooltips_new();
4096 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004097# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004098
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004099 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004100 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004101
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004102 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004103# if GTK_CHECK_VERSION(3,2,0)
4104 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4105 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4106# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004107 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004108# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004109 gtk_widget_show(page);
4110 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4111 label = gtk_label_new("-Empty-");
4112 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004113 event_box = gtk_event_box_new();
4114 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004115# if GTK_CHECK_VERSION(3,0,0)
4116 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4117# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004118 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004119# endif
4120# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004121 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004122# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004123 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004124 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02004125 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004126 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004127
Bram Moolenaar98921892016-02-23 17:14:37 +01004128# if GTK_CHECK_VERSION(3,0,0)
4129 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4130 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02004131 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
4132 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004133# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004134 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004135 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02004136 gtk_signal_connect(GTK_OBJECT(gui.tabline), "page-reordered",
4137 GTK_SIGNAL_FUNC(on_tab_reordered), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004138# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004139
4140 /* Create a popup menu for the tab line and connect it. */
4141 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004142# if GTK_CHECK_VERSION(3,0,0)
4143 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4144 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4145# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004146 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004147 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004148# endif
4149#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004150
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004152#if GTK_CHECK_VERSION(3,0,0)
4153 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4154#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004156#endif
4157#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160
4161 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01004162#if GTK_CHECK_VERSION(3,22,2)
4163 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
4164#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004165#if GTK_CHECK_VERSION(3,0,0)
4166 gui.surface = NULL;
4167 gui.by_signal = FALSE;
4168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169
4170 /* Determine which events we will filter. */
4171 gtk_widget_set_events(gui.drawarea,
4172 GDK_EXPOSURE_MASK |
4173 GDK_ENTER_NOTIFY_MASK |
4174 GDK_LEAVE_NOTIFY_MASK |
4175 GDK_BUTTON_PRESS_MASK |
4176 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 GDK_KEY_PRESS_MASK |
4179 GDK_KEY_RELEASE_MASK |
4180 GDK_POINTER_MOTION_MASK |
4181 GDK_POINTER_MOTION_HINT_MASK);
4182
4183 gtk_widget_show(gui.drawarea);
4184 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4185 gtk_widget_show(gui.formwin);
4186 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4187
4188 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4189 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004190#if GTK_CHECK_VERSION(3,0,0)
4191 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4192 : G_OBJECT(gui.drawarea),
4193 "key-press-event",
4194 G_CALLBACK(key_press_event), NULL);
4195#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4197 : GTK_OBJECT(gui.drawarea),
4198 "key_press_event",
4199 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004200#endif
4201#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 /* Also forward key release events for the benefit of GTK+ 2 input
4203 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4204 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4205 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004206 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 G_CALLBACK(&key_release_event), NULL);
4208#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004209#if GTK_CHECK_VERSION(3,0,0)
4210 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4211 G_CALLBACK(drawarea_realize_cb), NULL);
4212 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4213 G_CALLBACK(drawarea_unrealize_cb), NULL);
4214 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4215 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004216# if GTK_CHECK_VERSION(3,22,2)
4217 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
4218 G_CALLBACK(&drawarea_style_updated_cb), NULL);
4219# else
Bram Moolenaar98921892016-02-23 17:14:37 +01004220 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4221 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004222# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004223#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4225 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4226 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4227 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4228
4229 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4230 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004231#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232
Bram Moolenaar98921892016-02-23 17:14:37 +01004233#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004235#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236
4237#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4238 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4239 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4240#endif
4241
4242 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004243 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004244#if GTK_CHECK_VERSION(3,0,0)
4245 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4246#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249
4250 /*
4251 * Set clipboard specific atoms
4252 */
4253 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4256 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4257
4258 /*
4259 * Start out by adding the configured border width into the border offset.
4260 */
4261 gui.border_offset = gui.border_width;
4262
Bram Moolenaar98921892016-02-23 17:14:37 +01004263#if GTK_CHECK_VERSION(3,0,0)
4264 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4265 G_CALLBACK(draw_event), NULL);
4266#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4268 GTK_SIGNAL_FUNC(visibility_event), NULL);
4269 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4270 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272
4273 /*
4274 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4275 * Only needed for some window managers.
4276 */
4277 if (vim_strchr(p_go, GO_POINTER) != NULL)
4278 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004279#if GTK_CHECK_VERSION(3,0,0)
4280 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4281 G_CALLBACK(leave_notify_event), NULL);
4282 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4283 G_CALLBACK(enter_notify_event), NULL);
4284#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4286 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4287 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4288 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004289#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 }
4291
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004292 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4293 * only its widgets. Arguably, this could be common code and we not use
4294 * the window focus at all, but let's be safe.
4295 */
4296 if (gtk_socket_id == 0)
4297 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004298#if GTK_CHECK_VERSION(3,0,0)
4299 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4300 G_CALLBACK(focus_out_event), NULL);
4301 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4302 G_CALLBACK(focus_in_event), NULL);
4303#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004304 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4305 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4306 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4307 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004308#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004309 }
4310 else
4311 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004312#if GTK_CHECK_VERSION(3,0,0)
4313 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4314 G_CALLBACK(focus_out_event), NULL);
4315 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4316 G_CALLBACK(focus_in_event), NULL);
4317#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004318 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4319 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4320 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4321 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004322#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004323#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004324# if GTK_CHECK_VERSION(3,0,0)
4325 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4326 G_CALLBACK(focus_out_event), NULL);
4327 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4328 G_CALLBACK(focus_in_event), NULL);
4329# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004330 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4331 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4332 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4333 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004334# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004335#endif /* FEAT_GUI_TABLINE */
4336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337
Bram Moolenaar98921892016-02-23 17:14:37 +01004338#if GTK_CHECK_VERSION(3,0,0)
4339 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4340 G_CALLBACK(motion_notify_event), NULL);
4341 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4342 G_CALLBACK(button_press_event), NULL);
4343 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4344 G_CALLBACK(button_release_event), NULL);
4345 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4346 G_CALLBACK(&scroll_event), NULL);
4347#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4349 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4350 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4351 GTK_SIGNAL_FUNC(button_press_event), NULL);
4352 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4353 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4355 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357
4358 /*
4359 * Add selection handler functions.
4360 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004361#if GTK_CHECK_VERSION(3,0,0)
4362 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4363 G_CALLBACK(selection_clear_event), NULL);
4364 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4365 G_CALLBACK(selection_received_cb), NULL);
4366#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4368 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4369 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4370 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372
Bram Moolenaara76638f2010-06-05 12:49:46 +02004373 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
Bram Moolenaar98921892016-02-23 17:14:37 +01004375#if GTK_CHECK_VERSION(3,0,0)
4376 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4377 G_CALLBACK(selection_get_cb), NULL);
4378#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4380 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004381#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
4383 /* Pretend we don't have input focus, we will get an event if we do. */
4384 gui.in_focus = FALSE;
4385
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 return OK;
4387}
4388
4389#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4390/*
4391 * This is called from gui_start() after a fork() has been done.
4392 * We have to tell the session manager our new PID.
4393 */
4394 void
4395gui_mch_forked(void)
4396{
4397 if (using_gnome)
4398 {
4399 GnomeClient *client;
4400
4401 client = gnome_master_client();
4402
4403 if (client != NULL)
4404 gnome_client_set_process_id(client, getpid());
4405 }
4406}
4407#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4408
Bram Moolenaar98921892016-02-23 17:14:37 +01004409#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004410 static GdkRGBA
4411color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004412{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004413 GdkRGBA rgba;
4414 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4415 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4416 rgba.blue = ((color & 0xff)) / 255.0;
4417 rgba.alpha = 1.0;
4418 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004419}
4420
4421 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004422set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004423{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004424 const GdkRGBA rgba = color_to_rgba(color);
4425 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004426}
4427#endif /* GTK_CHECK_VERSION(3,0,0) */
4428
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429/*
4430 * Called when the foreground or background color has been changed.
4431 * This used to change the graphics contexts directly but we are
4432 * currently manipulating them where desired.
4433 */
4434 void
4435gui_mch_new_colors(void)
4436{
Bram Moolenaar98921892016-02-23 17:14:37 +01004437#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaara859f042016-11-17 19:11:55 +01004438# if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar98921892016-02-23 17:14:37 +01004439 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaara859f042016-11-17 19:11:55 +01004440# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004441
4442 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4443#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 {
Bram Moolenaara859f042016-11-17 19:11:55 +01004447#if GTK_CHECK_VERSION(3,22,2)
4448 GtkStyleContext * const context
4449 = gtk_widget_get_style_context(gui.drawarea);
4450 GtkCssProvider * const provider = gtk_css_provider_new();
4451 gchar * const css = g_strdup_printf(
4452 "widget#vim-gui-drawarea {\n"
4453 " background-color: #%.2lx%.2lx%.2lx;\n"
4454 "}\n",
4455 (gui.back_pixel >> 16) & 0xff,
4456 (gui.back_pixel >> 8) & 0xff,
4457 gui.back_pixel & 0xff);
4458
4459 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4460 gtk_style_context_add_provider(context,
4461 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4462
4463 g_free(css);
4464 g_object_unref(provider);
4465#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004466 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004467
Bram Moolenaar36edf062016-07-21 22:10:12 +02004468 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004469 {
4470 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004471 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004472 if (pat != NULL)
4473 {
4474 gdk_window_set_background_pattern(da_win, pat);
4475 cairo_pattern_destroy(pat);
4476 }
4477 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004478 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004479 }
4480#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 GdkColor color = { 0, 0, 0, 0 };
4482
4483 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004484# if GTK_CHECK_VERSION(3,0,0)
4485 gdk_window_set_background(da_win, &color);
4486# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004488# endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004489#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 }
4491}
4492
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493/*
4494 * This signal informs us about the need to rearrange our sub-widgets.
4495 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004497form_configure_event(GtkWidget *widget UNUSED,
4498 GdkEventConfigure *event,
4499 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004501 int usable_height = event->height;
4502
Bram Moolenaar182707a2016-11-21 20:55:58 +01004503#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004504 /* As of 3.22.2, GdkWindows have started distributing configure events to
4505 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4506 *
4507 * As can be seen from the implementation of move_native_children() and
4508 * configure_native_child() in gdkwindow.c, those functions actually
4509 * propagate configure events to every child, failing to distinguish
4510 * "native" one from non-native one.
4511 *
4512 * Naturally, configure events propagated to here like that are fallacious
4513 * and, as a matter of fact, they trigger a geometric collapse of
4514 * gui.formwin.
4515 *
4516 * To filter out such fallacious events, check if the given event is the
4517 * one that was sent out to the right place. Ignore it if not.
4518 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004519 /* Follow-up
4520 * After a few weeks later, the GdkWindow change mentioned above was
4521 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4522 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004523 if (event->window != gtk_widget_get_window(gui.formwin))
4524 return TRUE;
4525#endif
4526
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004527 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4528 * no. of char-heights), so we have to manually sanitise them.
4529 * Widths seem to sort themselves out, don't ask me why.
4530 */
4531 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004532 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004533
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004535 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 gtk_form_thaw(GTK_FORM(gui.formwin));
4537
4538 return TRUE;
4539}
4540
4541/*
4542 * Function called when window already closed.
4543 * We can't do much more here than to trying to preserve what had been done,
4544 * since the window is already inevitably going away.
4545 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004546#if GTK_CHECK_VERSION(3,0,0)
4547 static void
4548mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4549#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004551mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553{
4554 /* Don't write messages to the GUI anymore */
4555 full_screen = FALSE;
4556
4557 gui.mainwin = NULL;
4558 gui.drawarea = NULL;
4559
4560 if (!exiting) /* only do anything if the destroy was unexpected */
4561 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004562 vim_strncpy(IObuff,
4563 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4564 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 preserve_exit();
4566 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004567#ifdef USE_GRESOURCE
4568 gui_gtk_unregister_resource();
4569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570}
4571
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004572
4573/*
4574 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4575 * hints (and thus the required size from -geom), but that after that we
4576 * put the hints back to normal (the actual minimum size) so we may
4577 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004578 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004579 * only way we have of making ourselves bigger (by set lines/columns).
4580 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004581 * second after the final attempt to reset the real minimum hints (done by
4582 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004583 * We'll not let the default hints be set while this timer's active.
4584 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004585 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004586check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004587{
4588 if (init_window_hints_state == 1)
4589 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004590 /* Safe to use normal hints now */
4591 init_window_hints_state = 0;
4592 update_window_manager_hints(0, 0);
4593 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004594 }
4595
4596 /* Keep on trying */
4597 init_window_hints_state = 1;
4598 return TRUE;
4599}
4600
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601/*
4602 * Open the GUI window which was created by a call to gui_mch_init().
4603 */
4604 int
4605gui_mch_open(void)
4606{
4607 guicolor_T fg_pixel = INVALCOLOR;
4608 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004609 guint pixel_width;
4610 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 /*
4613 * Allow setting a window role on the command line, or invent one
4614 * if none was specified. This is mainly useful for GNOME session
4615 * support; allowing the WM to restore window placement.
4616 */
4617 if (role_argument != NULL)
4618 {
4619 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4620 }
4621 else
4622 {
4623 char *role;
4624
4625 /* Invent a unique-enough ID string for the role */
4626 role = g_strdup_printf("vim-%u-%u-%u",
4627 (unsigned)mch_get_pid(),
4628 (unsigned)g_random_int(),
4629 (unsigned)time(NULL));
4630
4631 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4632 g_free(role);
4633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634
4635 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637
4638 /* Determine user specified geometry, if present. */
4639 if (gui.geom != NULL)
4640 {
4641 int mask;
4642 unsigned int w, h;
4643 int x = 0;
4644 int y = 0;
4645
4646 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4647
4648 if (mask & WidthValue)
4649 Columns = w;
4650 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004651 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004652 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004653 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004655 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004656 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004657
4658 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4659 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4660
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004661 pixel_width += get_menu_tool_width();
4662 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004663
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004665 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004666 int ww, hh;
4667 gui_mch_get_screen_dimensions(&ww, &hh);
4668 hh += p_ghr + get_menu_tool_height();
4669 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004670 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004671 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004672 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004673 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004675 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004676 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004677
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004678 /* From now until everyone's stopped trying to set the window hints
4679 * to their correct minimum values, stop them being set as we need
4680 * them to remain at our required size for the parent GtkSocket to
4681 * give us the right initial size.
4682 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004683 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004684 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004685 update_window_manager_hints(pixel_width, pixel_height);
4686 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004687 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 }
4690
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004691 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4692 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004693 /* For GTK2 changing the size of the form widget doesn't cause window
4694 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004695 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004696 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004697 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698
4699 if (foreground_argument != NULL)
4700 fg_pixel = gui_get_color((char_u *)foreground_argument);
4701 if (fg_pixel == INVALCOLOR)
4702 fg_pixel = gui_get_color((char_u *)"Black");
4703
4704 if (background_argument != NULL)
4705 bg_pixel = gui_get_color((char_u *)background_argument);
4706 if (bg_pixel == INVALCOLOR)
4707 bg_pixel = gui_get_color((char_u *)"White");
4708
4709 if (found_reverse_arg)
4710 {
4711 gui.def_norm_pixel = bg_pixel;
4712 gui.def_back_pixel = fg_pixel;
4713 }
4714 else
4715 {
4716 gui.def_norm_pixel = fg_pixel;
4717 gui.def_back_pixel = bg_pixel;
4718 }
4719
4720 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4721 * in a vimrc file) */
4722 set_normal_colors();
4723
4724 /* Check that none of the colors are the same as the background color */
4725 gui_check_colors();
4726
4727 /* Get the colors for the highlight groups (gui_check_colors() might have
4728 * changed them). */
4729 highlight_gui_started(); /* re-init colors and fonts */
4730
Bram Moolenaar98921892016-02-23 17:14:37 +01004731#if GTK_CHECK_VERSION(3,0,0)
4732 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4733 G_CALLBACK(mainwin_destroy_cb), NULL);
4734#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4736 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738
4739#ifdef FEAT_HANGULIN
4740 hangul_keyboard_set();
4741#endif
4742
4743 /*
4744 * Notify the fixed area about the need to resize the contents of the
4745 * gui.formwin, which we use for random positioning of the included
4746 * components.
4747 *
4748 * We connect this signal deferred finally after anything is in place,
4749 * since this is intended to handle resizements coming from the window
4750 * manager upon us and should not interfere with what VIM is requesting
4751 * upon startup.
4752 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004753#if GTK_CHECK_VERSION(3,0,0)
4754 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4755 G_CALLBACK(form_configure_event), NULL);
4756#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4758 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760
4761#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004762 /* Set up for receiving DND items. */
4763 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764
Bram Moolenaar98921892016-02-23 17:14:37 +01004765# if GTK_CHECK_VERSION(3,0,0)
4766 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4767 G_CALLBACK(drag_data_received_cb), NULL);
4768# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4770 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004771# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772#endif
4773
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004775 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 if (found_iconic_arg && gtk_socket_id == 0)
4777 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778
4779 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004780#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 unsigned long menu_handler = 0;
4782# ifdef FEAT_TOOLBAR
4783 unsigned long tool_handler = 0;
4784# endif
4785 /*
4786 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4787 * show when restoring the saved layout configuration. We can't just
4788 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4789 * a toplevel window and thus will be realized immediately. Instead,
4790 * connect signal handlers to hide the widgets just after they've been
4791 * marked visible, but before the main window is realized.
4792 */
4793 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4794 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4795 G_CALLBACK(&gtk_widget_hide),
4796 NULL);
4797# ifdef FEAT_TOOLBAR
4798 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4799 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4800 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4801 G_CALLBACK(&gtk_widget_hide),
4802 NULL);
4803# endif
4804#endif
4805 gtk_widget_show(gui.mainwin);
4806
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004807#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 if (menu_handler != 0)
4809 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4810# ifdef FEAT_TOOLBAR
4811 if (tool_handler != 0)
4812 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4813# endif
4814#endif
4815 }
4816
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 return OK;
4818}
4819
4820
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004822gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823{
4824 if (gui.mainwin != NULL)
4825 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826}
4827
4828/*
4829 * Get the position of the top left corner of the window.
4830 */
4831 int
4832gui_mch_get_winpos(int *x, int *y)
4833{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 return OK;
4836}
4837
4838/*
4839 * Set the position of the top left corner of the window to the given
4840 * coordinates.
4841 */
4842 void
4843gui_mch_set_winpos(int x, int y)
4844{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846}
4847
Bram Moolenaar98921892016-02-23 17:14:37 +01004848#if !GTK_CHECK_VERSION(3,0,0)
4849# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850static int resize_idle_installed = FALSE;
4851/*
4852 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4853 * the shell size doesn't exceed the window size, i.e. if the window manager
4854 * ignored our size request. Usually this happens if the window is maximized.
4855 *
4856 * FIXME: It'd be nice if we could find a little more orthodox solution.
4857 * See also the remark below in gui_mch_set_shellsize().
4858 *
4859 * DISABLED: When doing ":set lines+=1" this function would first invoke
4860 * gui_resize_shell() with the old size, then the normal callback would
4861 * report the new size through form_configure_event(). That caused the window
4862 * layout to be messed up.
4863 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 static gboolean
4865force_shell_resize_idle(gpointer data)
4866{
4867 if (gui.mainwin != NULL
4868 && GTK_WIDGET_REALIZED(gui.mainwin)
4869 && GTK_WIDGET_VISIBLE(gui.mainwin))
4870 {
4871 int width;
4872 int height;
4873
4874 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4875
4876 width -= get_menu_tool_width();
4877 height -= get_menu_tool_height();
4878
4879 gui_resize_shell(width, height);
4880 }
4881
4882 resize_idle_installed = FALSE;
4883 return FALSE; /* don't call me again */
4884}
Bram Moolenaar98921892016-02-23 17:14:37 +01004885# endif
4886#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887
Bram Moolenaar09736232009-09-23 16:14:49 +00004888/*
4889 * Return TRUE if the main window is maximized.
4890 */
4891 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004892gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004893{
Bram Moolenaar98921892016-02-23 17:14:37 +01004894#if GTK_CHECK_VERSION(3,0,0)
4895 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4896 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4897 & GDK_WINDOW_STATE_MAXIMIZED));
4898#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004899 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4900 && (gdk_window_get_state(gui.mainwin->window)
4901 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004902#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004903}
4904
4905/*
4906 * Unmaximize the main window
4907 */
4908 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004909gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004910{
4911 if (gui.mainwin != NULL)
4912 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4913}
Bram Moolenaar09736232009-09-23 16:14:49 +00004914
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004916 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4917 * is set. Compute the new Rows and Columns. This is like resizing the
4918 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004919 */
4920 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004921gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004922{
4923 int w, h;
4924
4925 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4926 w -= get_menu_tool_width();
4927 h -= get_menu_tool_height();
4928 gui_resize_shell(w, h);
4929}
4930
4931/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 * Set the windows size.
4933 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 void
4935gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004936 int min_width UNUSED, int min_height UNUSED,
4937 int base_width UNUSED, int base_height UNUSED,
4938 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 /* give GTK+ a chance to put all widget's into place */
4941 gui_mch_update();
4942
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004943 /* this will cause the proper resizement to happen too */
4944 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004945 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004946
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004948 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 * main window instead. */
4950 width += get_menu_tool_width();
4951 height += get_menu_tool_height();
4952
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004953 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004954 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004955 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004956 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
Bram Moolenaar98921892016-02-23 17:14:37 +01004958# if !GTK_CHECK_VERSION(3,0,0)
4959# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 if (!resize_idle_installed)
4961 {
4962 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4963 &force_shell_resize_idle, NULL, NULL);
4964 resize_idle_installed = TRUE;
4965 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004966# endif
4967# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 /*
4969 * Wait until all events are processed to prevent a crash because the
4970 * real size of the drawing area doesn't reflect Vim's internal ideas.
4971 *
4972 * This is a bit of a hack, since Vim is a terminal application with a GUI
4973 * on top, while the GUI expects to be the boss.
4974 */
4975 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976}
4977
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004978 void
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004979gui_gtk_get_screen_size_of_win(GtkWidget *wid, int *width, int *height)
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004980{
4981#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004982 GdkDisplay *dpy = gtk_widget_get_display(wid);
4983 GdkWindow *win = gtk_widget_get_window(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004984 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
4985 GdkRectangle geometry;
4986
4987 gdk_monitor_get_geometry(monitor, &geometry);
4988 *width = geometry.width;
4989 *height = geometry.height;
4990#else
4991 GdkScreen* screen;
4992
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004993 if (wid != NULL && gtk_widget_has_screen(wid))
4994 screen = gtk_widget_get_screen(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004995 else
4996 screen = gdk_screen_get_default();
4997 *width = gdk_screen_get_width(screen);
4998 *height = gdk_screen_get_height(screen);
4999#endif
5000}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001
5002/*
5003 * The screen size is used to make sure the initial window doesn't get bigger
5004 * than the screen. This subtracts some room for menubar, toolbar and window
5005 * decorations.
5006 */
5007 void
5008gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
5009{
Bram Moolenaar7be9b502017-09-09 18:45:26 +02005010 gui_gtk_get_screen_size_of_win(gui.mainwin, screen_w, screen_h);
Bram Moolenaara859f042016-11-17 19:11:55 +01005011
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02005012 /* Subtract 'guiheadroom' from the height to allow some room for the
5013 * window manager (task list and window title bar). */
Bram Moolenaar7be9b502017-09-09 18:45:26 +02005014 *screen_h -= p_ghr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015
5016 /*
5017 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
5018 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02005019 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 * This should be completely changed later.
5021 */
5022 *screen_w -= get_menu_tool_width();
5023 *screen_h -= get_menu_tool_height();
5024}
5025
5026#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005028gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 if (title != NULL && output_conv.vc_type != CONV_NONE)
5031 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032
5033 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
5034
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 if (output_conv.vc_type != CONV_NONE)
5036 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037}
5038#endif /* FEAT_TITLE */
5039
5040#if defined(FEAT_MENU) || defined(PROTO)
5041 void
5042gui_mch_enable_menu(int showit)
5043{
5044 GtkWidget *widget;
5045
5046# ifdef FEAT_GUI_GNOME
5047 if (using_gnome)
5048 widget = gui.menubar_h;
5049 else
5050# endif
5051 widget = gui.menubar;
5052
Bram Moolenaar18144c82006-04-12 21:52:12 +00005053 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005054# if GTK_CHECK_VERSION(3,0,0)
5055 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
5056# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00005057 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01005058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 {
5060 if (showit)
5061 gtk_widget_show(widget);
5062 else
5063 gtk_widget_hide(widget);
5064
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005065 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 }
5067}
5068#endif /* FEAT_MENU */
5069
5070#if defined(FEAT_TOOLBAR) || defined(PROTO)
5071 void
5072gui_mch_show_toolbar(int showit)
5073{
5074 GtkWidget *widget;
5075
5076 if (gui.toolbar == NULL)
5077 return;
5078
5079# ifdef FEAT_GUI_GNOME
5080 if (using_gnome)
5081 widget = gui.toolbar_h;
5082 else
5083# endif
5084 widget = gui.toolbar;
5085
5086 if (showit)
5087 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5088
Bram Moolenaar98921892016-02-23 17:14:37 +01005089# if GTK_CHECK_VERSION(3,0,0)
5090 if (!showit != !gtk_widget_get_visible(widget))
5091# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005093# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 {
5095 if (showit)
5096 gtk_widget_show(widget);
5097 else
5098 gtk_widget_hide(widget);
5099
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005100 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 }
5102}
5103#endif /* FEAT_TOOLBAR */
5104
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105/*
5106 * Check if a given font is a CJK font. This is done in a very crude manner. It
5107 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5108 * font. Consequently, this function cannot be used as a general purpose check
5109 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5110 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5111 */
5112 static int
5113is_cjk_font(PangoFontDescription *font_desc)
5114{
5115 static const char * const cjk_langs[] =
5116 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5117
5118 PangoFont *font;
5119 unsigned i;
5120 int is_cjk = FALSE;
5121
5122 font = pango_context_load_font(gui.text_context, font_desc);
5123
5124 if (font == NULL)
5125 return FALSE;
5126
5127 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5128 {
5129 PangoCoverage *coverage;
5130 gunichar uc;
5131
5132 coverage = pango_font_get_coverage(
5133 font, pango_language_from_string(cjk_langs[i]));
5134
5135 if (coverage != NULL)
5136 {
5137 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5138 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5139 pango_coverage_unref(coverage);
5140 }
5141 }
5142
5143 g_object_unref(font);
5144
5145 return is_cjk;
5146}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
Bram Moolenaar231334e2005-07-25 20:46:57 +00005148/*
5149 * Adjust gui.char_height (after 'linespace' was changed).
5150 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005152gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 PangoFontMetrics *metrics;
5155 int ascent;
5156 int descent;
5157
5158 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5159 pango_context_get_language(gui.text_context));
5160 ascent = pango_font_metrics_get_ascent(metrics);
5161 descent = pango_font_metrics_get_descent(metrics);
5162
5163 pango_font_metrics_unref(metrics);
5164
5165 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005166 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005167 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5169
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 /* A not-positive value of char_height may crash Vim. Only happens
5171 * if 'linespace' is negative (which does make sense sometimes). */
5172 gui.char_ascent = MAX(gui.char_ascent, 0);
5173 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5174
5175 return OK;
5176}
5177
Bram Moolenaar98921892016-02-23 17:14:37 +01005178#if GTK_CHECK_VERSION(3,0,0)
5179/* Callback function used in gui_mch_font_dialog() */
5180 static gboolean
5181font_filter(const PangoFontFamily *family,
5182 const PangoFontFace *face UNUSED,
5183 gpointer data UNUSED)
5184{
5185 return pango_font_family_is_monospace((PangoFontFamily *)family);
5186}
5187#endif
5188
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189/*
5190 * Put up a font dialog and return the selected font name in allocated memory.
5191 * "oldval" is the previous value. Return NULL when cancelled.
5192 * This should probably go into gui_gtk.c. Hmm.
5193 * FIXME:
5194 * The GTK2 font selection dialog has no filtering API. So we could either
5195 * a) implement our own (possibly copying the code from somewhere else) or
5196 * b) just live with it.
5197 */
5198 char_u *
5199gui_mch_font_dialog(char_u *oldval)
5200{
5201 GtkWidget *dialog;
5202 int response;
5203 char_u *fontname = NULL;
5204 char_u *oldname;
5205
Bram Moolenaar98921892016-02-23 17:14:37 +01005206#if GTK_CHECK_VERSION(3,2,0)
5207 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5208 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5209 NULL, NULL);
5210#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213
5214 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5215 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5216
5217 if (oldval != NULL && oldval[0] != NUL)
5218 {
5219 if (output_conv.vc_type != CONV_NONE)
5220 oldname = string_convert(&output_conv, oldval, NULL);
5221 else
5222 oldname = oldval;
5223
5224 /* Annoying bug in GTK (or Pango): if the font name does not include a
5225 * size, zero is used. Use default point size ten. */
5226 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5227 {
5228 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5229
5230 if (p != NULL)
5231 {
5232 STRCPY(p + STRLEN(p), " 10");
5233 if (oldname != oldval)
5234 vim_free(oldname);
5235 oldname = p;
5236 }
5237 }
5238
Bram Moolenaar98921892016-02-23 17:14:37 +01005239#if GTK_CHECK_VERSION(3,2,0)
5240 gtk_font_chooser_set_font(
5241 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5242#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 gtk_font_selection_dialog_set_font_name(
5244 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005245#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246
5247 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005248 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005250 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005251#if GTK_CHECK_VERSION(3,2,0)
5252 gtk_font_chooser_set_font(
5253 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5254#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005255 gtk_font_selection_dialog_set_font_name(
5256 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258
5259 response = gtk_dialog_run(GTK_DIALOG(dialog));
5260
5261 if (response == GTK_RESPONSE_OK)
5262 {
5263 char *name;
5264
Bram Moolenaar98921892016-02-23 17:14:37 +01005265#if GTK_CHECK_VERSION(3,2,0)
5266 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5267#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 name = gtk_font_selection_dialog_get_font_name(
5269 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005270#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 if (name != NULL)
5272 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005273 char_u *p;
5274
5275 /* Apparently some font names include a comma, need to escape
5276 * that, because in 'guifont' it separates names. */
5277 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005279 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005280 {
5281 fontname = string_convert(&input_conv, p, NULL);
5282 vim_free(p);
5283 }
5284 else
5285 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 }
5287 }
5288
5289 if (response != GTK_RESPONSE_NONE)
5290 gtk_widget_destroy(dialog);
5291
5292 return fontname;
5293}
5294
5295/*
5296 * Some monospace fonts don't support a bold weight, and fall back
5297 * silently to the regular weight. But this is no good since our text
5298 * drawing function can emulate bold by overstriking. So let's try
5299 * to detect whether bold weight is actually available and emulate it
5300 * otherwise.
5301 *
5302 * Note that we don't need to check for italic style since Xft can
5303 * emulate italic on its own, provided you have a proper fontconfig
5304 * setup. We wouldn't be able to emulate it in Vim anyway.
5305 */
5306 static void
5307get_styled_font_variants(void)
5308{
5309 PangoFontDescription *bold_font_desc;
5310 PangoFont *plain_font;
5311 PangoFont *bold_font;
5312
5313 gui.font_can_bold = FALSE;
5314
5315 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5316
5317 if (plain_font == NULL)
5318 return;
5319
5320 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5321 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5322
5323 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5324 /*
5325 * The comparison relies on the unique handle nature of a PangoFont*,
5326 * i.e. it's assumed that a different PangoFont* won't refer to the
5327 * same font. Seems to work, and failing here isn't critical anyway.
5328 */
5329 if (bold_font != NULL)
5330 {
5331 gui.font_can_bold = (bold_font != plain_font);
5332 g_object_unref(bold_font);
5333 }
5334
5335 pango_font_description_free(bold_font_desc);
5336 g_object_unref(plain_font);
5337}
5338
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339static PangoEngineShape *default_shape_engine = NULL;
5340
5341/*
5342 * Create a map from ASCII characters in the range [32,126] to glyphs
5343 * of the current font. This is used by gui_gtk2_draw_string() to skip
5344 * the itemize and shaping process for the most common case.
5345 */
5346 static void
5347ascii_glyph_table_init(void)
5348{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005349 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 PangoAttrList *attr_list;
5351 GList *item_list;
5352 int i;
5353
5354 if (gui.ascii_glyphs != NULL)
5355 pango_glyph_string_free(gui.ascii_glyphs);
5356 if (gui.ascii_font != NULL)
5357 g_object_unref(gui.ascii_font);
5358
5359 gui.ascii_glyphs = NULL;
5360 gui.ascii_font = NULL;
5361
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005362 /* For safety, fill in question marks for the control characters.
5363 * Put a space between characters to avoid shaping. */
5364 for (i = 0; i < 128; ++i)
5365 {
5366 if (i >= 32 && i < 127)
5367 ascii_chars[2 * i] = i;
5368 else
5369 ascii_chars[2 * i] = '?';
5370 ascii_chars[2 * i + 1] = ' ';
5371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372
5373 attr_list = pango_attr_list_new();
5374 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5375 0, sizeof(ascii_chars), attr_list, NULL);
5376
5377 if (item_list != NULL && item_list->next == NULL) /* play safe */
5378 {
5379 PangoItem *item;
5380 int width;
5381
5382 item = (PangoItem *)item_list->data;
5383 width = gui.char_width * PANGO_SCALE;
5384
5385 /* Remember the shape engine used for ASCII. */
5386 default_shape_engine = item->analysis.shape_engine;
5387
5388 gui.ascii_font = item->analysis.font;
5389 g_object_ref(gui.ascii_font);
5390
5391 gui.ascii_glyphs = pango_glyph_string_new();
5392
5393 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5394 &item->analysis, gui.ascii_glyphs);
5395
5396 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5397
5398 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5399 {
5400 PangoGlyphGeometry *geom;
5401
5402 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5403 geom->x_offset += MAX(0, width - geom->width) / 2;
5404 geom->width = width;
5405 }
5406 }
5407
5408 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5409 g_list_free(item_list);
5410 pango_attr_list_unref(attr_list);
5411}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412
5413/*
5414 * Initialize Vim to use the font or fontset with the given name.
5415 * Return FAIL if the font could not be loaded, OK otherwise.
5416 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005418gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 PangoFontDescription *font_desc;
5421 PangoLayout *layout;
5422 int width;
5423
5424 /* If font_name is NULL, this means to use the default, which should
5425 * be present on all proper Pango/fontconfig installations. */
5426 if (font_name == NULL)
5427 font_name = (char_u *)DEFAULT_FONT;
5428
5429 font_desc = gui_mch_get_font(font_name, FALSE);
5430
5431 if (font_desc == NULL)
5432 return FAIL;
5433
5434 gui_mch_free_font(gui.norm_font);
5435 gui.norm_font = font_desc;
5436
5437 pango_context_set_font_description(gui.text_context, font_desc);
5438
5439 layout = pango_layout_new(gui.text_context);
5440 pango_layout_set_text(layout, "MW", 2);
5441 pango_layout_get_size(layout, &width, NULL);
5442 /*
5443 * Set char_width to half the width obtained from pango_layout_get_size()
5444 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5445 * Pango to use the same width for both non-CJK characters (e.g. Latin
5446 * letters and numbers) and CJK characters. This results in 's p a c e d
5447 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5448 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5449 * width for CJK fonts.
5450 *
5451 * For related bugs, see:
5452 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5453 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5454 *
5455 * With this, for all four of the following cases, Vim works fine:
5456 * guifont=CJK_fixed_width_font
5457 * guifont=Non_CJK_fixed_font
5458 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5459 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5460 */
5461 if (is_cjk_font(gui.norm_font))
5462 {
5463 int cjk_width;
5464
5465 /* Measure the text extent of U+4E00 and U+4E8C */
5466 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5467 pango_layout_get_size(layout, &cjk_width, NULL);
5468
5469 if (width == cjk_width) /* Xft not patched */
5470 width /= 2;
5471 }
5472 g_object_unref(layout);
5473
5474 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5475
5476 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5477 if (gui.char_width <= 0)
5478 gui.char_width = 8;
5479
Bram Moolenaar231334e2005-07-25 20:46:57 +00005480 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481
5482 /* Set the fontname, which will be used for information purposes */
5483 hl_set_font_name(font_name);
5484
5485 get_styled_font_variants();
5486 ascii_glyph_table_init();
5487
5488 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5489 if (gui.wide_font != NULL
5490 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5491 {
5492 pango_font_description_free(gui.wide_font);
5493 gui.wide_font = NULL;
5494 }
5495
Bram Moolenaare161c792009-11-03 17:13:59 +00005496 if (gui_mch_maximized())
5497 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005498 /* Update lines and columns in accordance with the new font, keep the
5499 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005500 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005501 }
5502 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005503 {
5504 /* Preserve the logical dimensions of the screen. */
5505 update_window_manager_hints(0, 0);
5506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507
5508 return OK;
5509}
5510
5511/*
5512 * Get a reference to the font "name".
5513 * Return zero for failure.
5514 */
5515 GuiFont
5516gui_mch_get_font(char_u *name, int report_error)
5517{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519
5520 /* can't do this when GUI is not running */
5521 if (!gui.in_use || name == NULL)
5522 return NULL;
5523
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 if (output_conv.vc_type != CONV_NONE)
5525 {
5526 char_u *buf;
5527
5528 buf = string_convert(&output_conv, name, NULL);
5529 if (buf != NULL)
5530 {
5531 font = pango_font_description_from_string((const char *)buf);
5532 vim_free(buf);
5533 }
5534 else
5535 font = NULL;
5536 }
5537 else
5538 font = pango_font_description_from_string((const char *)name);
5539
5540 if (font != NULL)
5541 {
5542 PangoFont *real_font;
5543
5544 /* pango_context_load_font() bails out if no font size is set */
5545 if (pango_font_description_get_size(font) <= 0)
5546 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5547
5548 real_font = pango_context_load_font(gui.text_context, font);
5549
5550 if (real_font == NULL)
5551 {
5552 pango_font_description_free(font);
5553 font = NULL;
5554 }
5555 else
5556 g_object_unref(real_font);
5557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558
5559 if (font == NULL)
5560 {
5561 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005562 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 return NULL;
5564 }
5565
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 return font;
5567}
5568
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005569#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005570/*
5571 * Return the name of font "font" in allocated memory.
5572 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005573 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005574gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005575{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005576 if (font != NOFONT)
5577 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005578 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005579
Bram Moolenaar89d40322006-08-29 15:30:07 +00005580 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005581 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005582 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005583
Bram Moolenaar89d40322006-08-29 15:30:07 +00005584 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005585 return s;
5586 }
5587 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005588 return NULL;
5589}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005590#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005591
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592/*
5593 * If a font is not going to be used, free its structure.
5594 */
5595 void
5596gui_mch_free_font(GuiFont font)
5597{
5598 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600}
5601
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005603 * Return the Pixel value (color) for the given color name.
5604 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 * Return INVALCOLOR for error.
5606 */
5607 guicolor_T
5608gui_mch_get_color(char_u *name)
5609{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005610 guicolor_T color = INVALCOLOR;
5611
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 if (!gui.in_use) /* can't do this when GUI not running */
Bram Moolenaar2e324952018-04-14 14:37:07 +02005613 return color;
5614
5615 if (name != NULL)
5616 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617
Bram Moolenaar98921892016-02-23 17:14:37 +01005618#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005619 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005620#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005621 if (color == INVALCOLOR)
5622 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005624 return gui_mch_get_rgb_color(
5625 (color & 0xff0000) >> 16,
5626 (color & 0xff00) >> 8,
5627 color & 0xff);
5628#endif
5629}
5630
5631/*
5632 * Return the Pixel value (color) for the given RGB values.
5633 * Return INVALCOLOR for error.
5634 */
5635 guicolor_T
5636gui_mch_get_rgb_color(int r, int g, int b)
5637{
5638#if GTK_CHECK_VERSION(3,0,0)
5639 return gui_get_rgb_color_cmn(r, g, b);
5640#else
5641 GdkColor gcolor;
5642 int ret;
5643
5644 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5645 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5646 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647
Bram Moolenaar36edf062016-07-21 22:10:12 +02005648 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5649 &gcolor, FALSE, TRUE);
5650
5651 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5652#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653}
5654
5655/*
5656 * Set the current text foreground color.
5657 */
5658 void
5659gui_mch_set_fg_color(guicolor_T color)
5660{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005661#if GTK_CHECK_VERSION(3,0,0)
5662 *gui.fgcolor = color_to_rgba(color);
5663#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666}
5667
5668/*
5669 * Set the current text background color.
5670 */
5671 void
5672gui_mch_set_bg_color(guicolor_T color)
5673{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005674#if GTK_CHECK_VERSION(3,0,0)
5675 *gui.bgcolor = color_to_rgba(color);
5676#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679}
5680
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005681/*
5682 * Set the current text special color.
5683 */
5684 void
5685gui_mch_set_sp_color(guicolor_T color)
5686{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005687#if GTK_CHECK_VERSION(3,0,0)
5688 *gui.spcolor = color_to_rgba(color);
5689#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005690 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005691#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005692}
5693
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694/*
5695 * Function-like convenience macro for the sake of efficiency.
5696 */
5697#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5698 G_STMT_START{ \
5699 PangoAttribute *tmp_attr_; \
5700 tmp_attr_ = (Attribute); \
5701 tmp_attr_->start_index = (Start); \
5702 tmp_attr_->end_index = (End); \
5703 pango_attr_list_insert((AttrList), tmp_attr_); \
5704 }G_STMT_END
5705
5706 static void
5707apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5708{
5709 char_u *start = NULL;
5710 char_u *p;
5711 int uc;
5712
5713 for (p = s; p < s + len; p += utf_byte2len(*p))
5714 {
5715 uc = utf_ptr2char(p);
5716
5717 if (start == NULL)
5718 {
5719 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5720 start = p;
5721 }
5722 else if (uc < 0x80 /* optimization shortcut */
5723 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5724 {
5725 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5726 attr_list, start - s, p - s);
5727 start = NULL;
5728 }
5729 }
5730
5731 if (start != NULL)
5732 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5733 attr_list, start - s, len);
5734}
5735
5736 static int
5737count_cluster_cells(char_u *s, PangoItem *item,
5738 PangoGlyphString* glyphs, int i,
5739 int *cluster_width,
5740 int *last_glyph_rbearing)
5741{
5742 char_u *p;
5743 int next; /* glyph start index of next cluster */
5744 int start, end; /* string segment of current cluster */
5745 int width; /* real cluster width in Pango units */
5746 int uc;
5747 int cellcount = 0;
5748
5749 width = glyphs->glyphs[i].geometry.width;
5750
5751 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5752 {
5753 if (glyphs->glyphs[next].attr.is_cluster_start)
5754 break;
5755 else if (glyphs->glyphs[next].geometry.width > width)
5756 width = glyphs->glyphs[next].geometry.width;
5757 }
5758
5759 start = item->offset + glyphs->log_clusters[i];
5760 end = item->offset + ((next < glyphs->num_glyphs) ?
5761 glyphs->log_clusters[next] : item->length);
5762
5763 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5764 {
5765 uc = utf_ptr2char(p);
5766 if (uc < 0x80)
5767 ++cellcount;
5768 else if (!utf_iscomposing(uc))
5769 cellcount += utf_char2cells(uc);
5770 }
5771
5772 if (last_glyph_rbearing != NULL
5773 && cellcount > 0 && next == glyphs->num_glyphs)
5774 {
5775 PangoRectangle ink_rect;
5776 /*
5777 * If a certain combining mark had to be taken from a non-monospace
5778 * font, we have to compensate manually by adapting x_offset according
5779 * to the ink extents of the previous glyph.
5780 */
5781 pango_font_get_glyph_extents(item->analysis.font,
5782 glyphs->glyphs[i].glyph,
5783 &ink_rect, NULL);
5784
5785 if (PANGO_RBEARING(ink_rect) > 0)
5786 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5787 }
5788
5789 if (cellcount > 0)
5790 *cluster_width = width;
5791
5792 return cellcount;
5793}
5794
5795/*
5796 * If there are only combining characters in the cluster, we cannot just
5797 * change the width of the previous glyph since there is none. Therefore
5798 * some guesswork is needed.
5799 *
5800 * If ink_rect.x is negative Pango apparently has taken care of the composing
5801 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5802 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005803 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 *
5805 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5806 * the position of the previous glyph. Apparently this happens only with old
5807 * X fonts which don't provide the special combining information needed by
5808 * Pango.
5809 */
5810 static void
5811setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5812 int last_cellcount, int last_cluster_width,
5813 int last_glyph_rbearing)
5814{
5815 PangoRectangle ink_rect;
5816 PangoRectangle logical_rect;
5817 int width;
5818
5819 width = last_cellcount * gui.char_width * PANGO_SCALE;
5820 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5821 glyph->geometry.width = 0;
5822
5823 pango_font_get_glyph_extents(item->analysis.font,
5824 glyph->glyph,
5825 &ink_rect, &logical_rect);
5826 if (ink_rect.x < 0)
5827 {
5828 glyph->geometry.x_offset += last_glyph_rbearing;
5829 glyph->geometry.y_offset = logical_rect.height
5830 - (gui.char_height - p_linespace) * PANGO_SCALE;
5831 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005832 else
5833 /* If the accent width is smaller than the cluster width, position it
5834 * in the middle. */
5835 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836}
5837
Bram Moolenaar98921892016-02-23 17:14:37 +01005838#if GTK_CHECK_VERSION(3,0,0)
5839 static void
5840draw_glyph_string(int row, int col, int num_cells, int flags,
5841 PangoFont *font, PangoGlyphString *glyphs,
5842 cairo_t *cr)
5843#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 static void
5845draw_glyph_string(int row, int col, int num_cells, int flags,
5846 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848{
5849 if (!(flags & DRAW_TRANSP))
5850 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005851#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005852 cairo_set_source_rgba(cr,
5853 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5854 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005855 cairo_rectangle(cr,
5856 FILL_X(col), FILL_Y(row),
5857 num_cells * gui.char_width, gui.char_height);
5858 cairo_fill(cr);
5859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5861
5862 gdk_draw_rectangle(gui.drawarea->window,
5863 gui.text_gc,
5864 TRUE,
5865 FILL_X(col),
5866 FILL_Y(row),
5867 num_cells * gui.char_width,
5868 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 }
5871
Bram Moolenaar98921892016-02-23 17:14:37 +01005872#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005873 cairo_set_source_rgba(cr,
5874 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5875 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005876 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5877 pango_cairo_show_glyph_string(cr, font, glyphs);
5878#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5880
5881 gdk_draw_glyphs(gui.drawarea->window,
5882 gui.text_gc,
5883 font,
5884 TEXT_X(col),
5885 TEXT_Y(row),
5886 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888
5889 /* redraw the contents with an offset of 1 to emulate bold */
5890 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005891#if GTK_CHECK_VERSION(3,0,0)
5892 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005893 cairo_set_source_rgba(cr,
5894 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5895 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005896 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5897 pango_cairo_show_glyph_string(cr, font, glyphs);
5898 }
5899#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 gdk_draw_glyphs(gui.drawarea->window,
5901 gui.text_gc,
5902 font,
5903 TEXT_X(col) + 1,
5904 TEXT_Y(row),
5905 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907}
5908
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005909/*
5910 * Draw underline and undercurl at the bottom of the character cell.
5911 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005912#if GTK_CHECK_VERSION(3,0,0)
5913 static void
5914draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5915#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005916 static void
5917draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005918#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005919{
5920 int i;
5921 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005922 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005923 int y = FILL_Y(row + 1) - 1;
5924
5925 /* Undercurl: draw curl at the bottom of the character cell. */
5926 if (flags & DRAW_UNDERC)
5927 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005928#if GTK_CHECK_VERSION(3,0,0)
5929 cairo_set_line_width(cr, 1.0);
5930 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005931 cairo_set_source_rgba(cr,
5932 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5933 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005934 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5935 {
5936 offset = val[i % 8];
5937 cairo_line_to(cr, i, y - offset + 0.5);
5938 }
5939 cairo_stroke(cr);
5940#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005941 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5942 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5943 {
5944 offset = val[i % 8];
5945 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5946 }
5947 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005948#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005949 }
5950
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005951 /* Draw a strikethrough line */
5952 if (flags & DRAW_STRIKE)
5953 {
5954#if GTK_CHECK_VERSION(3,0,0)
5955 cairo_set_line_width(cr, 1.0);
5956 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5957 cairo_set_source_rgba(cr,
5958 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5959 gui.spcolor->alpha);
5960 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5961 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5962 cairo_stroke(cr);
5963#else
5964 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5965 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5966 FILL_X(col), y + 1 - gui.char_height/2,
5967 FILL_X(col + cells), y + 1 - gui.char_height/2);
5968 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5969#endif
5970 }
5971
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005972 /* Underline: draw a line at the bottom of the character cell. */
5973 if (flags & DRAW_UNDERL)
5974 {
5975 /* When p_linespace is 0, overwrite the bottom row of pixels.
5976 * Otherwise put the line just below the character. */
5977 if (p_linespace > 1)
5978 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005979#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005980 cairo_set_line_width(cr, 1.0);
5981 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5982 cairo_set_source_rgba(cr,
5983 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5984 gui.fgcolor->alpha);
5985 cairo_move_to(cr, FILL_X(col), y + 0.5);
5986 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5987 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005988#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005989 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5990 FILL_X(col), y,
5991 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005992#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005993 }
5994}
5995
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 int
5997gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5998{
5999 GdkRectangle area; /* area for clip mask */
6000 PangoGlyphString *glyphs; /* glyphs of current item */
6001 int column_offset = 0; /* column offset in cells */
6002 int i;
6003 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
6004 char_u *new_conv_buf;
6005 int convlen;
6006 char_u *sp, *bp;
6007 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01006008#if GTK_CHECK_VERSION(3,0,0)
6009 cairo_t *cr;
6010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011
Bram Moolenaar98921892016-02-23 17:14:37 +01006012#if GTK_CHECK_VERSION(3,0,0)
6013 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
6014#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 return len;
6018
6019 if (output_conv.vc_type != CONV_NONE)
6020 {
6021 /*
6022 * Convert characters from 'encoding' to 'termencoding', which is set
6023 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
6024 * prohibits changing this to something else than UTF-8 if the GUI is
6025 * in use.
6026 */
6027 convlen = len;
6028 conv_buf = string_convert(&output_conv, s, &convlen);
6029 g_return_val_if_fail(conv_buf != NULL, len);
6030
6031 /* Correct for differences in char width: some chars are
6032 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
6033 * compensate for that. */
6034 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
6035 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006036 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
6038 {
6039 new_conv_buf = alloc(convlen + 2);
6040 if (new_conv_buf == NULL)
6041 return len;
6042 plen += bp - conv_buf;
6043 mch_memmove(new_conv_buf, conv_buf, plen);
6044 new_conv_buf[plen] = ' ';
6045 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
6046 convlen - plen + 1);
6047 vim_free(conv_buf);
6048 conv_buf = new_conv_buf;
6049 ++convlen;
6050 bp = conv_buf + plen;
6051 plen = 1;
6052 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006053 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 bp += plen;
6055 }
6056 s = conv_buf;
6057 len = convlen;
6058 }
6059
6060 /*
6061 * Restrict all drawing to the current screen line in order to prevent
6062 * fuzzy font lookups from messing up the screen.
6063 */
6064 area.x = gui.border_offset;
6065 area.y = FILL_Y(row);
6066 area.width = gui.num_cols * gui.char_width;
6067 area.height = gui.char_height;
6068
Bram Moolenaar98921892016-02-23 17:14:37 +01006069#if GTK_CHECK_VERSION(3,0,0)
6070 cr = cairo_create(gui.surface);
6071 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
6072 cairo_clip(cr);
6073#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
6075 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01006076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077
6078 glyphs = pango_glyph_string_new();
6079
6080 /*
6081 * Optimization hack: If possible, skip the itemize and shaping process
6082 * for pure ASCII strings. This optimization is particularly effective
6083 * because Vim draws space characters to clear parts of the screen.
6084 */
6085 if (!(flags & DRAW_ITALIC)
6086 && !((flags & DRAW_BOLD) && gui.font_can_bold)
6087 && gui.ascii_glyphs != NULL)
6088 {
6089 char_u *p;
6090
6091 for (p = s; p < s + len; ++p)
6092 if (*p & 0x80)
6093 goto not_ascii;
6094
6095 pango_glyph_string_set_size(glyphs, len);
6096
6097 for (i = 0; i < len; ++i)
6098 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006099 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 glyphs->log_clusters[i] = i;
6101 }
6102
Bram Moolenaar98921892016-02-23 17:14:37 +01006103#if GTK_CHECK_VERSION(3,0,0)
6104 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6105#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006107#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108
6109 column_offset = len;
6110 }
6111 else
6112not_ascii:
6113 {
6114 PangoAttrList *attr_list;
6115 GList *item_list;
6116 int cluster_width;
6117 int last_glyph_rbearing;
6118 int cells = 0; /* cells occupied by current cluster */
6119
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006120 /* Safety check: pango crashes when invoked with invalid utf-8
6121 * characters. */
6122 if (!utf_valid_string(s, s + len))
6123 {
6124 column_offset = len;
6125 goto skipitall;
6126 }
6127
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 /* original width of the current cluster */
6129 cluster_width = PANGO_SCALE * gui.char_width;
6130
6131 /* right bearing of the last non-composing glyph */
6132 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6133
6134 attr_list = pango_attr_list_new();
6135
6136 /* If 'guifontwide' is set then use that for double-width characters.
6137 * Otherwise just go with 'guifont' and let Pango do its thing. */
6138 if (gui.wide_font != NULL)
6139 apply_wide_font_attr(s, len, attr_list);
6140
6141 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6142 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6143 attr_list, 0, len);
6144 if (flags & DRAW_ITALIC)
6145 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6146 attr_list, 0, len);
6147 /*
6148 * Break the text into segments with consistent directional level
6149 * and shaping engine. Pure Latin text needs only a single segment,
6150 * so there's no need to worry about the loop's efficiency. Better
6151 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6152 */
6153 item_list = pango_itemize(gui.text_context,
6154 (const char *)s, 0, len, attr_list, NULL);
6155
6156 while (item_list != NULL)
6157 {
6158 PangoItem *item;
6159 int item_cells = 0; /* item length in cells */
6160
6161 item = (PangoItem *)item_list->data;
6162 item_list = g_list_delete_link(item_list, item_list);
6163 /*
6164 * Increment the bidirectional embedding level by 1 if it is not
6165 * even. An odd number means the output will be RTL, but we don't
6166 * want that since Vim handles right-to-left text on its own. It
6167 * would probably be sufficient to just set level = 0, but you can
6168 * never know :)
6169 *
6170 * Unfortunately we can't take advantage of Pango's ability to
6171 * render both LTR and RTL at the same time. In order to support
6172 * that, Vim's main screen engine would have to make use of Pango
6173 * functionality.
6174 */
6175 item->analysis.level = (item->analysis.level + 1) & (~1U);
6176
6177 /* HACK: Overrule the shape engine, we don't want shaping to be
6178 * done, because drawing the cursor would change the display. */
6179 item->analysis.shape_engine = default_shape_engine;
6180
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006181#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006182 pango_shape_full((const char *)s + item->offset, item->length,
6183 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006184#else
6185 pango_shape((const char *)s + item->offset, item->length,
6186 &item->analysis, glyphs);
6187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 /*
6189 * Fixed-width hack: iterate over the array and assign a fixed
6190 * width to each glyph, thus overriding the choice made by the
6191 * shaping engine. We use utf_char2cells() to determine the
6192 * number of cells needed.
6193 *
6194 * Also perform all kind of dark magic to get composing
6195 * characters right (and pretty too of course).
6196 */
6197 for (i = 0; i < glyphs->num_glyphs; ++i)
6198 {
6199 PangoGlyphInfo *glyph;
6200
6201 glyph = &glyphs->glyphs[i];
6202
6203 if (glyph->attr.is_cluster_start)
6204 {
6205 int cellcount;
6206
6207 cellcount = count_cluster_cells(
6208 s, item, glyphs, i, &cluster_width,
6209 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6210
6211 if (cellcount > 0)
6212 {
6213 int width;
6214
6215 width = cellcount * gui.char_width * PANGO_SCALE;
6216 glyph->geometry.x_offset +=
6217 MAX(0, width - cluster_width) / 2;
6218 glyph->geometry.width = width;
6219 }
6220 else
6221 {
6222 /* If there are only combining characters in the
6223 * cluster, we cannot just change the width of the
6224 * previous glyph since there is none. Therefore
6225 * some guesswork is needed. */
6226 setup_zero_width_cluster(item, glyph, cells,
6227 cluster_width,
6228 last_glyph_rbearing);
6229 }
6230
6231 item_cells += cellcount;
6232 cells = cellcount;
6233 }
6234 else if (i > 0)
6235 {
6236 int width;
6237
6238 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006239 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006240 * In some circumstances Pango uses a positive x_offset,
6241 * then use the width of the previous glyph for this one
6242 * and set the previous width to zero.
6243 * Otherwise we get a negative x_offset, Pango has already
6244 * positioned the combining char, keep the widths as they
6245 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006246 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006247 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006248 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006249 {
6250 glyphs->glyphs[i].geometry.width =
6251 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006252 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006253 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 width = cells * gui.char_width * PANGO_SCALE;
6255 glyph->geometry.x_offset +=
6256 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 }
6258 else /* i == 0 "cannot happen" */
6259 {
6260 glyph->geometry.width = 0;
6261 }
6262 }
6263
6264 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006265#if GTK_CHECK_VERSION(3,0,0)
6266 draw_glyph_string(row, col + column_offset, item_cells,
6267 flags, item->analysis.font, glyphs,
6268 cr);
6269#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 draw_glyph_string(row, col + column_offset, item_cells,
6271 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273
6274 pango_item_free(item);
6275
6276 column_offset += item_cells;
6277 }
6278
6279 pango_attr_list_unref(attr_list);
6280 }
6281
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006282skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006283 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006284#if GTK_CHECK_VERSION(3,0,0)
6285 draw_under(flags, row, col, column_offset, cr);
6286#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006287 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289
6290 pango_glyph_string_free(glyphs);
6291 vim_free(conv_buf);
6292
Bram Moolenaar98921892016-02-23 17:14:37 +01006293#if GTK_CHECK_VERSION(3,0,0)
6294 cairo_destroy(cr);
6295 if (!gui.by_signal)
6296 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6297 &area, FALSE);
6298#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301
6302 return column_offset;
6303}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304
6305/*
6306 * Return OK if the key with the termcap name "name" is supported.
6307 */
6308 int
6309gui_mch_haskey(char_u *name)
6310{
6311 int i;
6312
6313 for (i = 0; special_keys[i].key_sym != 0; i++)
6314 if (name[0] == special_keys[i].code0
6315 && name[1] == special_keys[i].code1)
6316 return OK;
6317 return FAIL;
6318}
6319
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006320#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321/*
6322 * Return the text window-id and display. Only required for X-based GUI's
6323 */
6324 int
6325gui_get_x11_windis(Window *win, Display **dis)
6326{
Bram Moolenaar98921892016-02-23 17:14:37 +01006327#if GTK_CHECK_VERSION(3,0,0)
6328 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6329#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006333#if GTK_CHECK_VERSION(3,0,0)
6334 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6335 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6336#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6338 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 return OK;
6341 }
6342
6343 *dis = NULL;
6344 *win = 0;
6345 return FAIL;
6346}
6347#endif
6348
6349#if defined(FEAT_CLIENTSERVER) \
6350 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6351
6352 Display *
6353gui_mch_get_display(void)
6354{
Bram Moolenaar98921892016-02-23 17:14:37 +01006355#if GTK_CHECK_VERSION(3,0,0)
6356 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6357 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6358#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6360 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 else
6363 return NULL;
6364}
6365#endif
6366
6367 void
6368gui_mch_beep(void)
6369{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 GdkDisplay *display;
6371
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006372#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006373 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006374#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006376#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 display = gtk_widget_get_display(gui.mainwin);
6378 else
6379 display = gdk_display_get_default();
6380
6381 if (display != NULL)
6382 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383}
6384
6385 void
6386gui_mch_flash(int msec)
6387{
Bram Moolenaar98921892016-02-23 17:14:37 +01006388#if GTK_CHECK_VERSION(3,0,0)
6389 /* TODO Replace GdkGC with Cairo */
6390 (void)msec;
6391#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 GdkGCValues values;
6393 GdkGC *invert_gc;
6394
6395 if (gui.drawarea->window == NULL)
6396 return;
6397
6398 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6399 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6400 values.function = GDK_XOR;
6401 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6402 &values,
6403 GDK_GC_FOREGROUND |
6404 GDK_GC_BACKGROUND |
6405 GDK_GC_FUNCTION);
6406 gdk_gc_set_exposures(invert_gc,
6407 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6408 /*
6409 * Do a visual beep by changing back and forth in some undetermined way,
6410 * the foreground and background colors. This is due to the fact that
6411 * there can't be really any prediction about the effects of XOR on
6412 * arbitrary X11 servers. However this seems to be enough for what we
6413 * intend it to do.
6414 */
6415 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6416 TRUE,
6417 0, 0,
6418 FILL_X((int)Columns) + gui.border_offset,
6419 FILL_Y((int)Rows) + gui.border_offset);
6420
6421 gui_mch_flush();
6422 ui_delay((long)msec, TRUE); /* wait so many msec */
6423
6424 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6425 TRUE,
6426 0, 0,
6427 FILL_X((int)Columns) + gui.border_offset,
6428 FILL_Y((int)Rows) + gui.border_offset);
6429
6430 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006431#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432}
6433
6434/*
6435 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6436 */
6437 void
6438gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6439{
Bram Moolenaar98921892016-02-23 17:14:37 +01006440#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006441 const GdkRectangle rect = {
6442 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6443 };
6444 cairo_t * const cr = cairo_create(gui.surface);
6445
Bram Moolenaar36edf062016-07-21 22:10:12 +02006446 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006447# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6448 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6449# else
6450 /* Give an implementation for older cairo versions if necessary. */
6451# endif
6452 gdk_cairo_rectangle(cr, &rect);
6453 cairo_fill(cr);
6454
6455 cairo_destroy(cr);
6456
6457 if (!gui.by_signal)
6458 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6459 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006460#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 GdkGCValues values;
6462 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463
6464 if (gui.drawarea->window == NULL)
6465 return;
6466
Bram Moolenaar89d40322006-08-29 15:30:07 +00006467 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6468 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 values.function = GDK_XOR;
6470 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6471 &values,
6472 GDK_GC_FOREGROUND |
6473 GDK_GC_BACKGROUND |
6474 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006475 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6476 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6478 TRUE,
6479 FILL_X(c), FILL_Y(r),
6480 (nc) * gui.char_width, (nr) * gui.char_height);
6481 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006482#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483}
6484
6485/*
6486 * Iconify the GUI window.
6487 */
6488 void
6489gui_mch_iconify(void)
6490{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492}
6493
6494#if defined(FEAT_EVAL) || defined(PROTO)
6495/*
6496 * Bring the Vim window to the foreground.
6497 */
6498 void
6499gui_mch_set_foreground(void)
6500{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502}
6503#endif
6504
6505/*
6506 * Draw a cursor without focus.
6507 */
6508 void
6509gui_mch_draw_hollow_cursor(guicolor_T color)
6510{
6511 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006512#if GTK_CHECK_VERSION(3,0,0)
6513 cairo_t *cr;
6514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515
Bram Moolenaar98921892016-02-23 17:14:37 +01006516#if GTK_CHECK_VERSION(3,0,0)
6517 if (gtk_widget_get_window(gui.drawarea) == NULL)
6518#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006520#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 return;
6522
Bram Moolenaar98921892016-02-23 17:14:37 +01006523#if GTK_CHECK_VERSION(3,0,0)
6524 cr = cairo_create(gui.surface);
6525#endif
6526
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 gui_mch_set_fg_color(color);
6528
Bram Moolenaar98921892016-02-23 17:14:37 +01006529#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006530 cairo_set_source_rgba(cr,
6531 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6532 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006533#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006535#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006536 if (mb_lefthalve(gui.row, gui.col))
6537 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006538#if GTK_CHECK_VERSION(3,0,0)
6539 cairo_set_line_width(cr, 1.0);
6540 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6541 cairo_rectangle(cr,
6542 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6543 i * gui.char_width - 1, gui.char_height - 1);
6544 cairo_stroke(cr);
6545 cairo_destroy(cr);
6546#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006547 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6548 FALSE,
6549 FILL_X(gui.col), FILL_Y(gui.row),
6550 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552}
6553
6554/*
6555 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6556 * color "color".
6557 */
6558 void
6559gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6560{
Bram Moolenaar98921892016-02-23 17:14:37 +01006561#if GTK_CHECK_VERSION(3,0,0)
6562 if (gtk_widget_get_window(gui.drawarea) == NULL)
6563#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566 return;
6567
6568 gui_mch_set_fg_color(color);
6569
Bram Moolenaar98921892016-02-23 17:14:37 +01006570#if GTK_CHECK_VERSION(3,0,0)
6571 {
6572 cairo_t *cr;
6573
6574 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006575 cairo_set_source_rgba(cr,
6576 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6577 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006578 cairo_rectangle(cr,
6579# ifdef FEAT_RIGHTLEFT
6580 /* vertical line should be on the right of current point */
6581 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6582# endif
6583 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6584 w, h);
6585 cairo_fill(cr);
6586 cairo_destroy(cr);
6587 }
6588#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6590 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6591 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006592# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593 /* vertical line should be on the right of current point */
6594 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006595# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 FILL_X(gui.col),
6597 FILL_Y(gui.row) + gui.char_height - h,
6598 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006599#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600}
6601
6602
6603/*
6604 * Catch up with any queued X11 events. This may put keyboard input into the
6605 * input buffer, call resize call-backs, trigger timers etc. If there is
6606 * nothing in the X11 event queue (& no timers pending), then we return
6607 * immediately.
6608 */
6609 void
6610gui_mch_update(void)
6611{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006612 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6613 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614}
6615
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006616 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617input_timer_cb(gpointer data)
6618{
6619 int *timed_out = (int *) data;
6620
Bram Moolenaar49325942007-05-10 19:19:59 +00006621 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 *timed_out = TRUE;
6623
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 return FALSE; /* don't happen again */
6625}
6626
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006627#ifdef FEAT_JOB_CHANNEL
6628 static timeout_cb_type
6629channel_poll_cb(gpointer data UNUSED)
6630{
6631 /* Using an event handler for a channel that may be disconnected does
6632 * not work, it hangs. Instead poll for messages. */
6633 channel_handle_events(TRUE);
6634 parse_queued_messages();
6635
6636 return TRUE; /* repeat */
6637}
6638#endif
6639
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640/*
6641 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6642 * from the keyboard.
6643 * wtime == -1 Wait forever.
6644 * wtime == 0 This should never happen.
6645 * wtime > 0 Wait wtime milliseconds for a character.
6646 * Returns OK if a character was found to be available within the given time,
6647 * or FAIL otherwise.
6648 */
6649 int
6650gui_mch_wait_for_chars(long wtime)
6651{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006652 int focus;
6653 guint timer;
6654 static int timed_out;
6655 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006656#ifdef FEAT_JOB_CHANNEL
6657 guint channel_timer = 0;
6658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659
6660 timed_out = FALSE;
6661
6662 /* this timeout makes sure that we will return if no characters arrived in
6663 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006664 if (wtime > 0)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006665 timer = timeout_add(wtime, input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 else
6667 timer = 0;
6668
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006669#ifdef FEAT_JOB_CHANNEL
6670 /* If there is a channel with the keep_open flag we need to poll for input
6671 * on them. */
6672 if (channel_any_keep_open())
6673 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6674#endif
6675
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 focus = gui.in_focus;
6677
6678 do
6679 {
6680 /* Stop or start blinking when focus changes */
6681 if (gui.in_focus != focus)
6682 {
6683 if (gui.in_focus)
6684 gui_mch_start_blink();
6685 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006686 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006687 focus = gui.in_focus;
6688 }
6689
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006690#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006691# ifdef FEAT_TIMERS
6692 did_add_timer = FALSE;
6693# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006694 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006695# ifdef FEAT_TIMERS
6696 if (did_add_timer)
6697 /* Need to recompute the waiting time. */
6698 goto theend;
6699# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006700#endif
6701
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 /*
6703 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006704 * Skip this if input is available anyway (can happen in rare
6705 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006707 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006708 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709
6710 /* Got char, return immediately */
6711 if (input_available())
6712 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006713 retval = OK;
6714 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715 }
6716 } while (wtime < 0 || !timed_out);
6717
6718 /*
6719 * Flush all eventually pending (drawing) events.
6720 */
6721 gui_mch_update();
6722
Bram Moolenaar4231da42016-06-02 14:30:04 +02006723theend:
6724 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006725 timeout_remove(timer);
6726#ifdef FEAT_JOB_CHANNEL
6727 if (channel_timer != 0)
6728 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006729#endif
6730
6731 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732}
6733
6734
6735/****************************************************************************
6736 * Output drawing routines.
6737 ****************************************************************************/
6738
6739
6740/* Flush any output to the screen */
6741 void
6742gui_mch_flush(void)
6743{
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006744#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006745 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746#else
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006747 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748#endif
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006749 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750}
6751
6752/*
6753 * Clear a rectangular region of the screen from text pos (row1, col1) to
6754 * (row2, col2) inclusive.
6755 */
6756 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006757gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006759
6760 int col1 = check_col(col1arg);
6761 int col2 = check_col(col2arg);
6762 int row1 = check_row(row1arg);
6763 int row2 = check_row(row2arg);
6764
Bram Moolenaar98921892016-02-23 17:14:37 +01006765#if GTK_CHECK_VERSION(3,0,0)
6766 if (gtk_widget_get_window(gui.drawarea) == NULL)
6767 return;
6768#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 GdkColor color;
6770
6771 if (gui.drawarea->window == NULL)
6772 return;
6773
6774 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776
Bram Moolenaar98921892016-02-23 17:14:37 +01006777#if GTK_CHECK_VERSION(3,0,0)
6778 {
6779 /* Add one pixel to the far right column in case a double-stroked
6780 * bold glyph may sit there. */
6781 const GdkRectangle rect = {
6782 FILL_X(col1), FILL_Y(row1),
6783 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6784 (row2 - row1 + 1) * gui.char_height
6785 };
6786 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6787 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006788# if GTK_CHECK_VERSION(3,22,2)
6789 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6790# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006791 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6792 if (pat != NULL)
6793 cairo_set_source(cr, pat);
6794 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006795 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006796# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006797 gdk_cairo_rectangle(cr, &rect);
6798 cairo_fill(cr);
6799 cairo_destroy(cr);
6800
6801 if (!gui.by_signal)
6802 gdk_window_invalidate_rect(win, &rect, FALSE);
6803 }
6804#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 gdk_gc_set_foreground(gui.text_gc, &color);
6806
6807 /* Clear one extra pixel at the far right, for when bold characters have
6808 * spilled over to the window border. */
6809 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6810 FILL_X(col1), FILL_Y(row1),
6811 (col2 - col1 + 1) * gui.char_width
6812 + (col2 == Columns - 1),
6813 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006814#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815}
6816
Bram Moolenaar98921892016-02-23 17:14:37 +01006817#if GTK_CHECK_VERSION(3,0,0)
6818 static void
6819gui_gtk_window_clear(GdkWindow *win)
6820{
6821 const GdkRectangle rect = {
6822 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6823 };
6824 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006825# if GTK_CHECK_VERSION(3,22,2)
6826 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6827# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006828 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6829 if (pat != NULL)
6830 cairo_set_source(cr, pat);
6831 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006832 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006833# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006834 gdk_cairo_rectangle(cr, &rect);
6835 cairo_fill(cr);
6836 cairo_destroy(cr);
6837
6838 if (!gui.by_signal)
6839 gdk_window_invalidate_rect(win, &rect, FALSE);
6840}
6841#endif
6842
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843 void
6844gui_mch_clear_all(void)
6845{
Bram Moolenaar98921892016-02-23 17:14:37 +01006846#if GTK_CHECK_VERSION(3,0,0)
6847 if (gtk_widget_get_window(gui.drawarea) != NULL)
6848 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850 if (gui.drawarea->window != NULL)
6851 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853}
6854
Bram Moolenaar98921892016-02-23 17:14:37 +01006855#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856/*
6857 * Redraw any text revealed by scrolling up/down.
6858 */
6859 static void
6860check_copy_area(void)
6861{
6862 GdkEvent *event;
6863 int expose_count;
6864
6865 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6866 return;
6867
6868 /* Avoid redrawing the cursor while scrolling or it'll end up where
6869 * we don't want it to be. I'm not sure if it's correct to call
6870 * gui_dont_update_cursor() at this point but it works as a quick
6871 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006872 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873
6874 do
6875 {
6876 /* Wait to check whether the scroll worked or not. */
6877 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6878
6879 if (event == NULL)
6880 break; /* received NoExpose event */
6881
6882 gui_redraw(event->expose.area.x, event->expose.area.y,
6883 event->expose.area.width, event->expose.area.height);
6884
6885 expose_count = event->expose.count;
6886 gdk_event_free(event);
6887 }
6888 while (expose_count > 0); /* more events follow */
6889
6890 gui_can_update_cursor();
6891}
Bram Moolenaar98921892016-02-23 17:14:37 +01006892#endif /* !GTK_CHECK_VERSION(3,0,0) */
6893
6894#if GTK_CHECK_VERSION(3,0,0)
6895 static void
6896gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6897 int src_x, int src_y,
6898 int width, int height)
6899{
6900 cairo_t * const cr = cairo_create(gui.surface);
6901
6902 cairo_rectangle(cr, dest_x, dest_y, width, height);
6903 cairo_clip(cr);
6904 cairo_push_group(cr);
6905 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6906 cairo_paint(cr);
6907 cairo_pop_group_to_source(cr);
6908 cairo_paint(cr);
6909
6910 cairo_destroy(cr);
6911}
6912#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
6914/*
6915 * Delete the given number of lines from the given row, scrolling up any
6916 * text further down within the scroll region.
6917 */
6918 void
6919gui_mch_delete_lines(int row, int num_lines)
6920{
Bram Moolenaar98921892016-02-23 17:14:37 +01006921#if GTK_CHECK_VERSION(3,0,0)
6922 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6923 const int nrows = gui.scroll_region_bot - row + 1;
6924 const int src_nrows = nrows - num_lines;
6925
6926 gui_gtk_surface_copy_rect(
6927 FILL_X(gui.scroll_region_left), FILL_Y(row),
6928 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6929 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6930 gui_clear_block(
6931 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6932 gui.scroll_region_bot, gui.scroll_region_right);
6933 gui_gtk3_redraw(
6934 FILL_X(gui.scroll_region_left), FILL_Y(row),
6935 gui.char_width * ncols + 1, gui.char_height * nrows);
6936 if (!gui.by_signal)
6937 gtk_widget_queue_draw_area(gui.drawarea,
6938 FILL_X(gui.scroll_region_left), FILL_Y(row),
6939 gui.char_width * ncols + 1, gui.char_height * nrows);
6940#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6942 return; /* Can't see the window */
6943
6944 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6945 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6946
6947 /* copy one extra pixel, for when bold has spilled over */
6948 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6949 FILL_X(gui.scroll_region_left), FILL_Y(row),
6950 gui.drawarea->window,
6951 FILL_X(gui.scroll_region_left),
6952 FILL_Y(row + num_lines),
6953 gui.char_width * (gui.scroll_region_right
6954 - gui.scroll_region_left + 1) + 1,
6955 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6956
6957 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6958 gui.scroll_region_left,
6959 gui.scroll_region_bot, gui.scroll_region_right);
6960 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006961#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962}
6963
6964/*
6965 * Insert the given number of lines before the given row, scrolling down any
6966 * following text within the scroll region.
6967 */
6968 void
6969gui_mch_insert_lines(int row, int num_lines)
6970{
Bram Moolenaar98921892016-02-23 17:14:37 +01006971#if GTK_CHECK_VERSION(3,0,0)
6972 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6973 const int nrows = gui.scroll_region_bot - row + 1;
6974 const int src_nrows = nrows - num_lines;
6975
6976 gui_gtk_surface_copy_rect(
6977 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6978 FILL_X(gui.scroll_region_left), FILL_Y(row),
6979 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6980 gui_mch_clear_block(
6981 row, gui.scroll_region_left,
6982 row + num_lines - 1, gui.scroll_region_right);
6983 gui_gtk3_redraw(
6984 FILL_X(gui.scroll_region_left), FILL_Y(row),
6985 gui.char_width * ncols + 1, gui.char_height * nrows);
6986 if (!gui.by_signal)
6987 gtk_widget_queue_draw_area(gui.drawarea,
6988 FILL_X(gui.scroll_region_left), FILL_Y(row),
6989 gui.char_width * ncols + 1, gui.char_height * nrows);
6990#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6992 return; /* Can't see the window */
6993
6994 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6995 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6996
6997 /* copy one extra pixel, for when bold has spilled over */
6998 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6999 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
7000 gui.drawarea->window,
7001 FILL_X(gui.scroll_region_left), FILL_Y(row),
7002 gui.char_width * (gui.scroll_region_right
7003 - gui.scroll_region_left + 1) + 1,
7004 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
7005
7006 gui_clear_block(row, gui.scroll_region_left,
7007 row + num_lines - 1, gui.scroll_region_right);
7008 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01007009#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010}
7011
7012/*
7013 * X Selection stuff, for cutting and pasting text to other windows.
7014 */
7015 void
7016clip_mch_request_selection(VimClipboard *cbd)
7017{
7018 GdkAtom target;
7019 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00007020 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021
7022 for (i = 0; i < N_SELECTION_TARGETS; ++i)
7023 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00007024 if (!clip_html && selection_targets[i].info == TARGET_HTML)
7025 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 received_selection = RS_NONE;
7027 target = gdk_atom_intern(selection_targets[i].target, FALSE);
7028
7029 gtk_selection_convert(gui.drawarea,
7030 cbd->gtk_sel_atom, target,
7031 (guint32)GDK_CURRENT_TIME);
7032
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00007033 /* Hack: Wait up to three seconds for the selection. A hang was
7034 * noticed here when using the netrw plugin combined with ":gui"
7035 * during the FocusGained event. */
7036 start = time(NULL);
7037 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02007038 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039
7040 if (received_selection != RS_FAIL)
7041 return;
7042 }
7043
7044 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01007045#if GTK_CHECK_VERSION(3,0,0)
7046 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
7047 cbd);
7048#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00007049 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01007050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051}
7052
7053/*
7054 * Disown the selection.
7055 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007057clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01007059 if (!in_selection_clear_event)
7060 {
7061 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
7062 gui_mch_update();
7063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064}
7065
7066/*
7067 * Own the selection and return OK if it worked.
7068 */
7069 int
7070clip_mch_own_selection(VimClipboard *cbd)
7071{
7072 int success;
7073
7074 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02007075 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 gui_mch_update();
7077 return (success) ? OK : FAIL;
7078}
7079
7080/*
7081 * Send the current selection to the clipboard. Do nothing for X because we
7082 * will fill in the selection only when requested by another app.
7083 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007085clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086{
7087}
7088
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007089 int
7090clip_gtk_owner_exists(VimClipboard *cbd)
7091{
7092 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
7093}
7094
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095
7096#if defined(FEAT_MENU) || defined(PROTO)
7097/*
7098 * Make a menu item appear either active or not active (grey or not grey).
7099 */
7100 void
7101gui_mch_menu_grey(vimmenu_T *menu, int grey)
7102{
7103 if (menu->id == NULL)
7104 return;
7105
7106 if (menu_is_separator(menu->name))
7107 grey = TRUE;
7108
7109 gui_mch_menu_hidden(menu, FALSE);
7110 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007111# if GTK_CHECK_VERSION(3,0,0)
7112 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7113# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007115# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 {
7117 gtk_widget_set_sensitive(menu->id, !grey);
7118 gui_mch_update();
7119 }
7120}
7121
7122/*
7123 * Make menu item hidden or not hidden.
7124 */
7125 void
7126gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7127{
7128 if (menu->id == 0)
7129 return;
7130
7131 if (hidden)
7132 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007133# if GTK_CHECK_VERSION(3,0,0)
7134 if (gtk_widget_get_visible(menu->id))
7135# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007136 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007137# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 {
7139 gtk_widget_hide(menu->id);
7140 gui_mch_update();
7141 }
7142 }
7143 else
7144 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007145# if GTK_CHECK_VERSION(3,0,0)
7146 if (!gtk_widget_get_visible(menu->id))
7147# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007149# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 {
7151 gtk_widget_show(menu->id);
7152 gui_mch_update();
7153 }
7154 }
7155}
7156
7157/*
7158 * This is called after setting all the menus to grey/hidden or not.
7159 */
7160 void
7161gui_mch_draw_menubar(void)
7162{
7163 /* just make sure that the visual changes get effect immediately */
7164 gui_mch_update();
7165}
7166#endif /* FEAT_MENU */
7167
7168/*
7169 * Scrollbar stuff.
7170 */
7171 void
7172gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7173{
7174 if (sb->id == NULL)
7175 return;
7176
Bram Moolenaar98921892016-02-23 17:14:37 +01007177#if GTK_CHECK_VERSION(3,0,0)
7178 gtk_widget_set_visible(sb->id, flag);
7179#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007180 if (flag)
7181 gtk_widget_show(sb->id);
7182 else
7183 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007186 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187}
7188
7189
7190/*
7191 * Return the RGB value of a pixel as long.
7192 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007193 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007194gui_mch_get_rgb(guicolor_T pixel)
7195{
Bram Moolenaar98921892016-02-23 17:14:37 +01007196#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007197 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007198#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007199 GdkColor color;
7200
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7202 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007204 return (guicolor_T)(
7205 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007207 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007208#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209}
7210
7211/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007212 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007214 void
7215gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216{
Bram Moolenaar98921892016-02-23 17:14:37 +01007217#if GTK_CHECK_VERSION(3,0,0)
7218 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7219#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007220 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222}
7223
7224 void
7225gui_mch_setmouse(int x, int y)
7226{
7227 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7228 * internal GDK mechanism present to accomplish this. (and for good
7229 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007230#if GTK_CHECK_VERSION(3,0,0)
7231 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7232 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7233 0, 0, 0U, 0U, x, y);
7234#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7236 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7237 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239}
7240
7241
7242#ifdef FEAT_MOUSESHAPE
7243/* The last set mouse pointer shape is remembered, to be used when it goes
7244 * from hidden to not hidden. */
7245static int last_shape = 0;
7246#endif
7247
7248/*
7249 * Use the blank mouse pointer or not.
7250 *
7251 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7252 */
7253 void
7254gui_mch_mousehide(int hide)
7255{
7256 if (gui.pointer_hidden != hide)
7257 {
7258 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007259#if GTK_CHECK_VERSION(3,0,0)
7260 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7261#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007262 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 {
7265 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007266#if GTK_CHECK_VERSION(3,0,0)
7267 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7268 gui.blank_pointer);
7269#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 else
7273#ifdef FEAT_MOUSESHAPE
7274 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007275#elif GTK_CHECK_VERSION(3,0,0)
7276 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277#else
7278 gdk_window_set_cursor(gui.drawarea->window, NULL);
7279#endif
7280 }
7281 }
7282}
7283
7284#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7285
7286/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7287 * misc2.c! */
7288static const int mshape_ids[] =
7289{
7290 GDK_LEFT_PTR, /* arrow */
7291 GDK_CURSOR_IS_PIXMAP, /* blank */
7292 GDK_XTERM, /* beam */
7293 GDK_SB_V_DOUBLE_ARROW, /* updown */
7294 GDK_SIZING, /* udsizing */
7295 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7296 GDK_SIZING, /* lrsizing */
7297 GDK_WATCH, /* busy */
7298 GDK_X_CURSOR, /* no */
7299 GDK_CROSSHAIR, /* crosshair */
7300 GDK_HAND1, /* hand1 */
7301 GDK_HAND2, /* hand2 */
7302 GDK_PENCIL, /* pencil */
7303 GDK_QUESTION_ARROW, /* question */
7304 GDK_RIGHT_PTR, /* right-arrow */
7305 GDK_CENTER_PTR, /* up-arrow */
7306 GDK_LEFT_PTR /* last one */
7307};
7308
7309 void
7310mch_set_mouse_shape(int shape)
7311{
7312 int id;
7313 GdkCursor *c;
7314
Bram Moolenaar98921892016-02-23 17:14:37 +01007315# if GTK_CHECK_VERSION(3,0,0)
7316 if (gtk_widget_get_window(gui.drawarea) == NULL)
7317# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007319# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007320 return;
7321
7322 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007323# if GTK_CHECK_VERSION(3,0,0)
7324 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7325 gui.blank_pointer);
7326# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007328# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 else
7330 {
7331 if (shape >= MSHAPE_NUMBERED)
7332 {
7333 id = shape - MSHAPE_NUMBERED;
7334 if (id >= GDK_LAST_CURSOR)
7335 id = GDK_LEFT_PTR;
7336 else
7337 id &= ~1; /* they are always even (why?) */
7338 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007339 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007341 else
7342 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007344 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007345# if GTK_CHECK_VERSION(3,0,0)
7346 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7347# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007349# endif
7350# if GTK_CHECK_VERSION(3,0,0)
7351 g_object_unref(G_OBJECT(c));
7352# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007354# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 }
7356 if (shape != MSHAPE_HIDE)
7357 last_shape = shape;
7358}
7359#endif /* FEAT_MOUSESHAPE */
7360
7361
7362#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7363/*
7364 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7365 * scaled down if the current font is not big enough, or scaled up if the image
7366 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7367 * will be cut off if the current font is not big enough, or centered if it's
7368 * too small.
7369 */
7370# define SIGN_WIDTH (2 * gui.char_width)
7371# define SIGN_HEIGHT (gui.char_height)
7372# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7373
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 void
7375gui_mch_drawsign(int row, int col, int typenr)
7376{
7377 GdkPixbuf *sign;
7378
7379 sign = (GdkPixbuf *)sign_get_image(typenr);
7380
Bram Moolenaar98921892016-02-23 17:14:37 +01007381# if GTK_CHECK_VERSION(3,0,0)
7382 if (sign != NULL && gui.drawarea != NULL
7383 && gtk_widget_get_window(gui.drawarea) != NULL)
7384# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387 {
7388 int width;
7389 int height;
7390 int xoffset;
7391 int yoffset;
7392 int need_scale;
7393
7394 width = gdk_pixbuf_get_width(sign);
7395 height = gdk_pixbuf_get_height(sign);
7396 /*
7397 * Decide whether we need to scale. Allow one pixel of border
7398 * width to be cut off, in order to avoid excessive scaling for
7399 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007400 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 */
7402 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007403 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 || (width < 3 * SIGN_WIDTH / 4
7405 && height < 3 * SIGN_HEIGHT / 4));
7406 if (need_scale)
7407 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007408 double aspect;
7409 int w = width;
7410 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007411
7412 /* Keep the original aspect ratio */
7413 aspect = (double)height / (double)width;
7414 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7415 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007416 if (((double)(MAX(height, SIGN_HEIGHT)) /
7417 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7418 {
7419 /* Change the aspect ratio by at most 15% to fill the
7420 * available space completly. */
7421 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7422 height = MIN(height, SIGN_HEIGHT);
7423 }
7424 else
7425 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007427 if (w == width && h == height)
7428 {
7429 /* no change in dimensions; don't decrease reference counter
7430 * (below) */
7431 need_scale = FALSE;
7432 }
7433 else
7434 {
7435 /* This doesn't seem to be worth caching, and doing so would
7436 * complicate the code quite a bit. */
7437 sign = gdk_pixbuf_scale_simple(sign, width, height,
7438 GDK_INTERP_BILINEAR);
7439 if (sign == NULL)
7440 return; /* out of memory */
7441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 }
7443
7444 /* The origin is the upper-left corner of the pixmap. Therefore
7445 * these offset may become negative if the pixmap is smaller than
7446 * the 2x1 cells reserved for the sign icon. */
7447 xoffset = (width - SIGN_WIDTH) / 2;
7448 yoffset = (height - SIGN_HEIGHT) / 2;
7449
Bram Moolenaar98921892016-02-23 17:14:37 +01007450# if GTK_CHECK_VERSION(3,0,0)
7451 {
7452 cairo_t *cr;
7453 cairo_surface_t *bg_surf;
7454 cairo_t *bg_cr;
7455 cairo_surface_t *sign_surf;
7456 cairo_t *sign_cr;
7457
7458 cr = cairo_create(gui.surface);
7459
7460 bg_surf = cairo_surface_create_similar(gui.surface,
7461 cairo_surface_get_content(gui.surface),
7462 SIGN_WIDTH, SIGN_HEIGHT);
7463 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007464 cairo_set_source_rgba(bg_cr,
7465 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7466 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007467 cairo_paint(bg_cr);
7468
7469 sign_surf = cairo_surface_create_similar(gui.surface,
7470 cairo_surface_get_content(gui.surface),
7471 SIGN_WIDTH, SIGN_HEIGHT);
7472 sign_cr = cairo_create(sign_surf);
7473 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7474 cairo_paint(sign_cr);
7475
7476 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7477 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7478 cairo_paint(sign_cr);
7479
7480 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7481 cairo_paint(cr);
7482
7483 cairo_destroy(sign_cr);
7484 cairo_surface_destroy(sign_surf);
7485 cairo_destroy(bg_cr);
7486 cairo_surface_destroy(bg_surf);
7487 cairo_destroy(cr);
7488
7489 if (!gui.by_signal)
7490 gtk_widget_queue_draw_area(gui.drawarea,
7491 FILL_X(col), FILL_Y(col), width, height);
7492
7493 }
7494# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007495 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7496
7497 gdk_draw_rectangle(gui.drawarea->window,
7498 gui.text_gc,
7499 TRUE,
7500 FILL_X(col),
7501 FILL_Y(row),
7502 SIGN_WIDTH,
7503 SIGN_HEIGHT);
7504
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 gdk_pixbuf_render_to_drawable_alpha(sign,
7506 gui.drawarea->window,
7507 MAX(0, xoffset),
7508 MAX(0, yoffset),
7509 FILL_X(col) - MIN(0, xoffset),
7510 FILL_Y(row) - MIN(0, yoffset),
7511 MIN(width, SIGN_WIDTH),
7512 MIN(height, SIGN_HEIGHT),
7513 GDK_PIXBUF_ALPHA_BILEVEL,
7514 127,
7515 GDK_RGB_DITHER_NORMAL,
7516 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007517# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518 if (need_scale)
7519 g_object_unref(sign);
7520 }
7521}
7522
7523 void *
7524gui_mch_register_sign(char_u *signfile)
7525{
7526 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7527 {
7528 GdkPixbuf *sign;
7529 GError *error = NULL;
7530 char_u *message;
7531
7532 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7533
7534 if (error == NULL)
7535 return sign;
7536
7537 message = (char_u *)error->message;
7538
7539 if (message != NULL && input_conv.vc_type != CONV_NONE)
7540 message = string_convert(&input_conv, message, NULL);
7541
7542 if (message != NULL)
7543 {
7544 /* The error message is already translated and will be more
7545 * descriptive than anything we could possibly do ourselves. */
7546 EMSG2("E255: %s", message);
7547
7548 if (input_conv.vc_type != CONV_NONE)
7549 vim_free(message);
7550 }
7551 g_error_free(error);
7552 }
7553
7554 return NULL;
7555}
7556
7557 void
7558gui_mch_destroy_sign(void *sign)
7559{
7560 if (sign != NULL)
7561 g_object_unref(sign);
7562}
7563
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564#endif /* FEAT_SIGN_ICONS */