blob: 71bcd6a3a66ebc35fec8cfb0e4eb1a5b78941746 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
Bram Moolenaar009c7b22017-01-09 20:30:27 +010038# ifdef ngettext
39# undef ngettext
40# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000041# ifdef N_
42# undef N_
43# endif
44# ifdef textdomain
45# undef textdomain
46# endif
47# ifdef bindtextdomain
48# undef bindtextdomain
49# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000050# ifdef bind_textdomain_codeset
51# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000053# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
54# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
55# endif
56# include <gnome.h>
57# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000058/* missing prototype in bonobo-dock-item.h */
59extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060#endif
61
62#if !defined(FEAT_GUI_GTK) && defined(PROTO)
63/* When generating prototypes we don't want syntax errors. */
64# define GdkAtom int
65# define GdkEventExpose int
66# define GdkEventFocus int
67# define GdkEventVisibility int
68# define GdkEventProperty int
69# define GtkContainer int
70# define GtkTargetEntry int
71# define GtkType int
72# define GtkWidget int
73# define gint int
74# define gpointer int
75# define guint int
76# define GdkEventKey int
77# define GdkEventSelection int
78# define GtkSelectionData int
79# define GdkEventMotion int
80# define GdkEventButton int
81# define GdkDragContext int
82# define GdkEventConfigure int
83# define GdkEventClient int
84#else
Bram Moolenaar98921892016-02-23 17:14:37 +010085# if GTK_CHECK_VERSION(3,0,0)
86# include <gdk/gdkkeysyms-compat.h>
87# include <gtk/gtkx.h>
88# else
89# include <gdk/gdkkeysyms.h>
90# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000091# include <gdk/gdk.h>
92# ifdef WIN3264
93# include <gdk/gdkwin32.h>
94# else
95# include <gdk/gdkx.h>
96# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# include <gtk/gtk.h>
98# include "gui_gtk_f.h"
99#endif
100
101#ifdef HAVE_X11_SUNKEYSYM_H
102# include <X11/Sunkeysym.h>
103#endif
104
105/*
106 * Easy-to-use macro for multihead support.
107 */
108#ifdef HAVE_GTK_MULTIHEAD
109# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
110 gtk_widget_get_display(gui.mainwin), atom)
111#else
112# define GET_X_ATOM(atom) ((Atom)(atom))
113#endif
114
115/* Selection type distinguishers */
116enum
117{
118 TARGET_TYPE_NONE,
119 TARGET_UTF8_STRING,
120 TARGET_STRING,
121 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000122 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 TARGET_TEXT,
124 TARGET_TEXT_URI_LIST,
125 TARGET_TEXT_PLAIN,
126 TARGET_VIM,
127 TARGET_VIMENC
128};
129
130/*
131 * Table of selection targets supported by Vim.
132 * Note: Order matters, preferred types should come first.
133 */
134static const GtkTargetEntry selection_targets[] =
135{
136 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
137 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000138 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
141 {"TEXT", 0, TARGET_TEXT},
142 {"STRING", 0, TARGET_STRING}
143};
144#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
145
146#ifdef FEAT_DND
147/*
148 * Table of DnD targets supported by Vim.
149 * Note: Order matters, preferred types should come first.
150 */
151static const GtkTargetEntry dnd_targets[] =
152{
153 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000154 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 {"STRING", 0, TARGET_STRING},
157 {"text/plain", 0, TARGET_TEXT_PLAIN}
158};
159# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
160#endif
161
162
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163/*
164 * "Monospace" is a standard font alias that should be present
165 * on all proper Pango/fontconfig installations.
166 */
167# define DEFAULT_FONT "Monospace 10"
168
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
170/*
171 * Atoms used to communicate save-yourself from the X11 session manager. There
172 * is no need to move them into the GUI struct, since they should be constant.
173 */
174static GdkAtom wm_protocols_atom = GDK_NONE;
175static GdkAtom save_yourself_atom = GDK_NONE;
176#endif
177
178/*
179 * Atoms used to control/reference X11 selections.
180 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000181static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
186/*
187 * Keycodes recognized by vim.
188 * NOTE: when changing this, the table in gui_x11.c probably needs the same
189 * change!
190 */
191static struct special_key
192{
193 guint key_sym;
194 char_u code0;
195 char_u code1;
196}
197const special_keys[] =
198{
199 {GDK_Up, 'k', 'u'},
200 {GDK_Down, 'k', 'd'},
201 {GDK_Left, 'k', 'l'},
202 {GDK_Right, 'k', 'r'},
203 {GDK_F1, 'k', '1'},
204 {GDK_F2, 'k', '2'},
205 {GDK_F3, 'k', '3'},
206 {GDK_F4, 'k', '4'},
207 {GDK_F5, 'k', '5'},
208 {GDK_F6, 'k', '6'},
209 {GDK_F7, 'k', '7'},
210 {GDK_F8, 'k', '8'},
211 {GDK_F9, 'k', '9'},
212 {GDK_F10, 'k', ';'},
213 {GDK_F11, 'F', '1'},
214 {GDK_F12, 'F', '2'},
215 {GDK_F13, 'F', '3'},
216 {GDK_F14, 'F', '4'},
217 {GDK_F15, 'F', '5'},
218 {GDK_F16, 'F', '6'},
219 {GDK_F17, 'F', '7'},
220 {GDK_F18, 'F', '8'},
221 {GDK_F19, 'F', '9'},
222 {GDK_F20, 'F', 'A'},
223 {GDK_F21, 'F', 'B'},
224 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
225 {GDK_F22, 'F', 'C'},
226 {GDK_F23, 'F', 'D'},
227 {GDK_F24, 'F', 'E'},
228 {GDK_F25, 'F', 'F'},
229 {GDK_F26, 'F', 'G'},
230 {GDK_F27, 'F', 'H'},
231 {GDK_F28, 'F', 'I'},
232 {GDK_F29, 'F', 'J'},
233 {GDK_F30, 'F', 'K'},
234 {GDK_F31, 'F', 'L'},
235 {GDK_F32, 'F', 'M'},
236 {GDK_F33, 'F', 'N'},
237 {GDK_F34, 'F', 'O'},
238 {GDK_F35, 'F', 'P'},
239#ifdef SunXK_F36
240 {SunXK_F36, 'F', 'Q'},
241 {SunXK_F37, 'F', 'R'},
242#endif
243 {GDK_Help, '%', '1'},
244 {GDK_Undo, '&', '8'},
245 {GDK_BackSpace, 'k', 'b'},
246 {GDK_Insert, 'k', 'I'},
247 {GDK_Delete, 'k', 'D'},
248 {GDK_3270_BackTab, 'k', 'B'},
249 {GDK_Clear, 'k', 'C'},
250 {GDK_Home, 'k', 'h'},
251 {GDK_End, '@', '7'},
252 {GDK_Prior, 'k', 'P'},
253 {GDK_Next, 'k', 'N'},
254 {GDK_Print, '%', '9'},
255 /* Keypad keys: */
256 {GDK_KP_Left, 'k', 'l'},
257 {GDK_KP_Right, 'k', 'r'},
258 {GDK_KP_Up, 'k', 'u'},
259 {GDK_KP_Down, 'k', 'd'},
260 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
261 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
262 {GDK_KP_Home, 'K', '1'},
263 {GDK_KP_End, 'K', '4'},
264 {GDK_KP_Prior, 'K', '3'}, /* page up */
265 {GDK_KP_Next, 'K', '5'}, /* page down */
266
267 {GDK_KP_Add, 'K', '6'},
268 {GDK_KP_Subtract, 'K', '7'},
269 {GDK_KP_Divide, 'K', '8'},
270 {GDK_KP_Multiply, 'K', '9'},
271 {GDK_KP_Enter, 'K', 'A'},
272 {GDK_KP_Decimal, 'K', 'B'},
273
274 {GDK_KP_0, 'K', 'C'},
275 {GDK_KP_1, 'K', 'D'},
276 {GDK_KP_2, 'K', 'E'},
277 {GDK_KP_3, 'K', 'F'},
278 {GDK_KP_4, 'K', 'G'},
279 {GDK_KP_5, 'K', 'H'},
280 {GDK_KP_6, 'K', 'I'},
281 {GDK_KP_7, 'K', 'J'},
282 {GDK_KP_8, 'K', 'K'},
283 {GDK_KP_9, 'K', 'L'},
284
285 /* End of list marker: */
286 {0, 0, 0}
287};
288
289/*
290 * Flags for command line options table below.
291 */
292#define ARG_FONT 1
293#define ARG_GEOMETRY 2
294#define ARG_REVERSE 3
295#define ARG_NOREVERSE 4
296#define ARG_BACKGROUND 5
297#define ARG_FOREGROUND 6
298#define ARG_ICONIC 7
299#define ARG_ROLE 8
300#define ARG_NETBEANS 9
301#define ARG_XRM 10 /* ignored */
302#define ARG_MENUFONT 11 /* ignored */
303#define ARG_INDEX_MASK 0x00ff
304#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
305#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
306#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
307#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
308#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
309
310/*
311 * This table holds all the X GUI command line options allowed. This includes
312 * the standard ones so that we can skip them when Vim is started without the
313 * GUI (but the GUI might start up later).
314 *
315 * When changing this, also update doc/gui_x11.txt and the usage message!!!
316 */
317typedef struct
318{
319 const char *name;
320 unsigned int flags;
321}
322cmdline_option_T;
323
324static const cmdline_option_T cmdline_options[] =
325{
326 /* We handle these options ourselves */
327 {"-fn", ARG_FONT|ARG_HAS_VALUE},
328 {"-font", ARG_FONT|ARG_HAS_VALUE},
329 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
330 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
331 {"-rv", ARG_REVERSE},
332 {"-reverse", ARG_REVERSE},
333 {"+rv", ARG_NOREVERSE},
334 {"+reverse", ARG_NOREVERSE},
335 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
336 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
337 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
338 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
339 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341#ifdef FEAT_NETBEANS_INTG
342 {"-nb", ARG_NETBEANS}, /* non-standard value format */
343 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
344 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
345 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 /* Arguments handled by GTK (and GNOME) internally. */
348 {"--g-fatal-warnings", ARG_FOR_GTK},
349 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
352 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
353 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
354 {"--sync", ARG_FOR_GTK},
355 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
356 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
357 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
359 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361#ifdef FEAT_GUI_GNOME
362 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
363 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--sm-disable", ARG_FOR_GTK},
366 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
367 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
368 {"--oaf-private", ARG_FOR_GTK},
369 {"--enable-sound", ARG_FOR_GTK},
370 {"--disable-sound", ARG_FOR_GTK},
371 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
372 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
373 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
374 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
375# if 0 /* conflicts with Vim's own --version argument */
376 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
377# endif
378 {"--disable-crash-dialog", ARG_FOR_GTK},
379#endif
380 {NULL, 0}
381};
382
383static int gui_argc = 0;
384static char **gui_argv = NULL;
385
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
388static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000389static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390#endif
391static int found_iconic_arg = FALSE;
392
393#ifdef FEAT_GUI_GNOME
394/*
395 * Can't use Gnome if --socketid given
396 */
397static int using_gnome = 0;
398#else
399# define using_gnome 0
400#endif
401
402/*
403 * Parse the GUI related command-line arguments. Any arguments used are
404 * deleted from argv, and *argc is decremented accordingly. This is called
405 * when vim is started, whether or not the GUI has been started.
406 */
407 void
408gui_mch_prepare(int *argc, char **argv)
409{
410 const cmdline_option_T *option;
411 int i = 0;
412 int len = 0;
413
414#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
415 /*
416 * Determine the command used to invoke Vim, to be passed as restart
417 * command to the session manager. If argv[0] contains any directory
418 * components try building an absolute path, otherwise leave it as is.
419 */
420 restart_command = argv[0];
421
422 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
423 {
424 char_u buf[MAXPATHL];
425
426 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000427 {
428 abs_restart_command = (char *)vim_strsave(buf);
429 restart_command = abs_restart_command;
430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 }
432#endif
433
434 /*
435 * Move all the entries in argv which are relevant to GTK+ and GNOME
436 * into gui_argv. Freed later in gui_mch_init().
437 */
438 gui_argc = 0;
439 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
440
441 g_return_if_fail(gui_argv != NULL);
442
443 gui_argv[gui_argc++] = argv[i++];
444
445 while (i < *argc)
446 {
447 /* Don't waste CPU cycles on non-option arguments. */
448 if (argv[i][0] != '-' && argv[i][0] != '+')
449 {
450 ++i;
451 continue;
452 }
453
454 /* Look for argv[i] in cmdline_options[] table. */
455 for (option = &cmdline_options[0]; option->name != NULL; ++option)
456 {
457 len = strlen(option->name);
458
459 if (strncmp(argv[i], option->name, len) == 0)
460 {
461 if (argv[i][len] == '\0')
462 break;
463 /* allow --foo=bar style */
464 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
465 break;
466#ifdef FEAT_NETBEANS_INTG
467 /* darn, -nb has non-standard syntax */
468 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
469 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
470 break;
471#endif
472 }
473 else if ((option->flags & ARG_COMPAT_LONG)
474 && strcmp(argv[i], option->name + 1) == 0)
475 {
476 /* Replace the standard X arguments "-name" and "-display"
477 * with their GNU-style long option counterparts. */
478 argv[i] = (char *)option->name;
479 break;
480 }
481 }
482 if (option->name == NULL) /* no match */
483 {
484 ++i;
485 continue;
486 }
487
488 if (option->flags & ARG_FOR_GTK)
489 {
490 /* Move the argument into gui_argv, which
491 * will later be passed to gtk_init_check() */
492 gui_argv[gui_argc++] = argv[i];
493 }
494 else
495 {
496 char *value = NULL;
497
498 /* Extract the option's value if there is one.
499 * Accept both "--foo bar" and "--foo=bar" style. */
500 if (option->flags & ARG_HAS_VALUE)
501 {
502 if (argv[i][len] == '=')
503 value = &argv[i][len + 1];
504 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
505 value = argv[i + 1];
506 }
507
508 /* Check for options handled by Vim itself */
509 switch (option->flags & ARG_INDEX_MASK)
510 {
511 case ARG_REVERSE:
512 found_reverse_arg = TRUE;
513 break;
514 case ARG_NOREVERSE:
515 found_reverse_arg = FALSE;
516 break;
517 case ARG_FONT:
518 font_argument = value;
519 break;
520 case ARG_GEOMETRY:
521 if (value != NULL)
522 gui.geom = vim_strsave((char_u *)value);
523 break;
524 case ARG_BACKGROUND:
525 background_argument = value;
526 break;
527 case ARG_FOREGROUND:
528 foreground_argument = value;
529 break;
530 case ARG_ICONIC:
531 found_iconic_arg = TRUE;
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 case ARG_ROLE:
534 role_argument = value; /* used later in gui_mch_open() */
535 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536#ifdef FEAT_NETBEANS_INTG
537 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 gui.dofork = FALSE; /* don't fork() when starting GUI */
539 netbeansArg = argv[i];
540 break;
541#endif
542 default:
543 break;
544 }
545 }
546
547 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200548 * Must start the GUI for this, otherwise ":gui" will exit later!
549 * Only when the GUI can start. */
550 if ((option->flags & ARG_NEEDS_GUI)
551 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 gui.starting = TRUE;
553
554 if (option->flags & ARG_KEEP)
555 ++i;
556 else
557 {
558 /* Remove the flag from the argument vector. */
559 if (--*argc > i)
560 {
561 int n_strip = 1;
562
563 /* Move the argument's value as well, if there is one. */
564 if ((option->flags & ARG_HAS_VALUE)
565 && argv[i][len] != '='
566 && strcmp(argv[i + 1], "--") != 0)
567 {
568 ++n_strip;
569 --*argc;
570 if (option->flags & ARG_FOR_GTK)
571 gui_argv[gui_argc++] = argv[i + 1];
572 }
573
574 if (*argc > i)
575 mch_memmove(&argv[i], &argv[i + n_strip],
576 (*argc - i) * sizeof(char *));
577 }
578 argv[*argc] = NULL;
579 }
580 }
581
582 gui_argv[gui_argc] = NULL;
583}
584
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585#if defined(EXITFREE) || defined(PROTO)
586 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100587gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588{
589 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000590#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
591 vim_free(abs_restart_command);
592#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000593}
594#endif
595
Bram Moolenaar98921892016-02-23 17:14:37 +0100596#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597/*
598 * This should be maybe completely removed.
599 * Doesn't seem possible, since check_copy_area() relies on
600 * this information. --danielk
601 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000603visibility_event(GtkWidget *widget UNUSED,
604 GdkEventVisibility *event,
605 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606{
607 gui.visibility = event->state;
608 /*
609 * When we do an gdk_window_copy_area(), and the window is partially
610 * obscured, we want to receive an event to tell us whether it worked
611 * or not.
612 */
613 if (gui.text_gc != NULL)
614 gdk_gc_set_exposures(gui.text_gc,
615 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
616 return FALSE;
617}
Bram Moolenaar98921892016-02-23 17:14:37 +0100618#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
620/*
621 * Redraw the corresponding portions of the screen.
622 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100623#if GTK_CHECK_VERSION(3,0,0)
624static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100625static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100626
627static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100628static void gui_gtk_window_clear(GdkWindow *win);
629
630 static void
631gui_gtk3_redraw(int x, int y, int width, int height)
632{
633 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
634 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
635 GUI_MON_NOCLEAR);
636}
637
638 static void
639gui_gtk3_update_cursor(cairo_t *cr)
640{
641 if (gui.row == gui.cursor_row)
642 {
643 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100644 if (State & CMDLINE)
645 gui_update_cursor(TRUE, FALSE);
646 else
647 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100648 gui.by_signal = FALSE;
649 cairo_paint(cr);
650 }
651}
652
653 static gboolean
654gui_gtk3_should_draw_cursor(void)
655{
656 unsigned int cond = 0;
657 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100658 if (gui.cursor_col >= gui.col)
659 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100660 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100661 return cond;
662}
663
664 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200665draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100666 cairo_t *cr,
667 gpointer user_data UNUSED)
668{
669 /* Skip this when the GUI isn't set up yet, will redraw later. */
670 if (gui.starting)
671 return FALSE;
672
673 out_flush(); /* make sure all output has been processed */
674 /* for GTK+ 3, may induce other draw events. */
675
676 cairo_set_source_surface(cr, gui.surface, 0, 0);
677
678 /* Draw the window without the cursor. */
679 gui.by_signal = TRUE;
680 {
681 cairo_rectangle_list_t *list = NULL;
682
Bram Moolenaar98921892016-02-23 17:14:37 +0100683 list = cairo_copy_clip_rectangle_list(cr);
684 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
685 {
686 int i;
687 for (i = 0; i < list->num_rectangles; i++)
688 {
689 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200690
691 gui_mch_clear_block(Y_2_ROW(rect.y), 1,
692 Y_2_ROW(rect.y + rect.height - 1), Columns);
693
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100694 if (blink_mode)
695 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
696 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100697 {
698 if (get_real_state() & VISUAL)
699 gui_gtk3_redraw(rect.x, rect.y,
700 rect.width, rect.height);
701 else
702 gui_redraw(rect.x, rect.y, rect.width, rect.height);
703 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100704 }
705 }
706 cairo_rectangle_list_destroy(list);
707
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100708 if (get_real_state() & VISUAL)
709 {
710 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
711 gui_update_cursor(TRUE, TRUE);
712 }
713
Bram Moolenaar98921892016-02-23 17:14:37 +0100714 cairo_paint(cr);
715 }
716 gui.by_signal = FALSE;
717
718 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100719 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100720 gui_gtk3_update_cursor(cr);
721
722 return FALSE;
723}
724#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000726expose_event(GtkWidget *widget UNUSED,
727 GdkEventExpose *event,
728 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 /* Skip this when the GUI isn't set up yet, will redraw later. */
731 if (gui.starting)
732 return FALSE;
733
734 out_flush(); /* make sure all output has been processed */
735 gui_redraw(event->area.x, event->area.y,
736 event->area.width, event->area.height);
737
738 /* Clear the border areas if needed */
739 if (event->area.x < FILL_X(0))
740 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
741 if (event->area.y < FILL_Y(0))
742 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
743 if (event->area.x > FILL_X(Columns))
744 gdk_window_clear_area(gui.drawarea->window,
745 FILL_X((int)Columns), 0, 0, 0);
746 if (event->area.y > FILL_Y(Rows))
747 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
748
749 return FALSE;
750}
Bram Moolenaar98921892016-02-23 17:14:37 +0100751#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
753#ifdef FEAT_CLIENTSERVER
754/*
755 * Handle changes to the "Comm" property
756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000758property_event(GtkWidget *widget,
759 GdkEventProperty *event,
760 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 if (event->type == GDK_PROPERTY_NOTIFY
763 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100764# if GTK_CHECK_VERSION(3,0,0)
765 && GDK_WINDOW_XID(event->window) == commWindow
766# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 && GET_X_ATOM(event->atom) == commProperty)
770 {
771 XEvent xev;
772
773 /* Translate to XLib */
774 xev.xproperty.type = PropertyNotify;
775 xev.xproperty.atom = commProperty;
776 xev.xproperty.window = commWindow;
777 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100778# if GTK_CHECK_VERSION(3,0,0)
779 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
780 &xev, 0);
781# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200782 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100783# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 }
785 return FALSE;
786}
Bram Moolenaar98921892016-02-23 17:14:37 +0100787#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789
790/****************************************************************************
791 * Focus handlers:
792 */
793
794
795/*
796 * This is a simple state machine:
797 * BLINK_NONE not blinking at all
798 * BLINK_OFF blinking, cursor is not shown
799 * BLINK_ON blinking, cursor is shown
800 */
801
802#define BLINK_NONE 0
803#define BLINK_OFF 1
804#define BLINK_ON 2
805
806static int blink_state = BLINK_NONE;
807static long_u blink_waittime = 700;
808static long_u blink_ontime = 400;
809static long_u blink_offtime = 250;
810static guint blink_timer = 0;
811
Bram Moolenaar98921892016-02-23 17:14:37 +0100812#if GTK_CHECK_VERSION(3,0,0)
813 static gboolean
814gui_gtk_is_blink_on(void)
815{
816 return blink_state == BLINK_ON;
817}
Bram Moolenaar98921892016-02-23 17:14:37 +0100818#endif
819
Bram Moolenaar703a8042016-06-04 16:24:32 +0200820 int
821gui_mch_is_blinking(void)
822{
823 return blink_state != BLINK_NONE;
824}
825
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200826 int
827gui_mch_is_blink_off(void)
828{
829 return blink_state == BLINK_OFF;
830}
831
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 void
833gui_mch_set_blinking(long waittime, long on, long off)
834{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100835#if GTK_CHECK_VERSION(3,0,0)
836 if (waittime == 0 || on == 0 || off == 0)
837 {
838 blink_mode = FALSE;
839
840 blink_waittime = 700;
841 blink_ontime = 400;
842 blink_offtime = 250;
843 }
844 else
845 {
846 blink_mode = TRUE;
847
848 blink_waittime = waittime;
849 blink_ontime = on;
850 blink_offtime = off;
851 }
852#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 blink_waittime = waittime;
854 blink_ontime = on;
855 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857}
858
859/*
860 * Stop the cursor blinking. Show the cursor if it wasn't shown.
861 */
862 void
863gui_mch_stop_blink(void)
864{
865 if (blink_timer)
866 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100867#if GTK_CHECK_VERSION(3,0,0)
868 g_source_remove(blink_timer);
869#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 blink_timer = 0;
873 }
874 if (blink_state == BLINK_OFF)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200875 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200877 gui_mch_flush();
878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 blink_state = BLINK_NONE;
880}
881
Bram Moolenaar98921892016-02-23 17:14:37 +0100882#if GTK_CHECK_VERSION(3,0,0)
883 static gboolean
884#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100886#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000887blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889 if (blink_state == BLINK_ON)
890 {
891 gui_undraw_cursor();
892 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100893#if GTK_CHECK_VERSION(3,0,0)
894 blink_timer = g_timeout_add((guint)blink_offtime,
895 (GSourceFunc) blink_cb, NULL);
896#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 blink_timer = gtk_timeout_add((guint32)blink_offtime,
898 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 }
901 else
902 {
903 gui_update_cursor(TRUE, FALSE);
904 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100905#if GTK_CHECK_VERSION(3,0,0)
906 blink_timer = g_timeout_add((guint)blink_ontime,
907 (GSourceFunc) blink_cb, NULL);
908#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 blink_timer = gtk_timeout_add((guint32)blink_ontime,
910 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200913 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914
915 return FALSE; /* don't happen again */
916}
917
918/*
919 * Start the cursor blinking. If it was already blinking, this restarts the
920 * waiting time and shows the cursor.
921 */
922 void
923gui_mch_start_blink(void)
924{
925 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200926 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100927#if GTK_CHECK_VERSION(3,0,0)
928 g_source_remove(blink_timer);
929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100931#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200932 blink_timer = 0;
933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 /* Only switch blinking on if none of the times is zero */
935 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
936 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100937#if GTK_CHECK_VERSION(3,0,0)
938 blink_timer = g_timeout_add((guint)blink_waittime,
939 (GSourceFunc) blink_cb, NULL);
940#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 blink_timer = gtk_timeout_add((guint32)blink_waittime,
942 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 blink_state = BLINK_ON;
945 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200946 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 }
948}
949
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000951enter_notify_event(GtkWidget *widget UNUSED,
952 GdkEventCrossing *event UNUSED,
953 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954{
955 if (blink_state == BLINK_NONE)
956 gui_mch_start_blink();
957
958 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100959#if GTK_CHECK_VERSION(3,0,0)
960 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
961#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 gtk_widget_grab_focus(gui.drawarea);
965
966 return FALSE;
967}
968
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000970leave_notify_event(GtkWidget *widget UNUSED,
971 GdkEventCrossing *event UNUSED,
972 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973{
974 if (blink_state != BLINK_NONE)
975 gui_mch_stop_blink();
976
977 return FALSE;
978}
979
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000981focus_in_event(GtkWidget *widget,
982 GdkEventFocus *event UNUSED,
983 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
985 gui_focus_change(TRUE);
986
987 if (blink_state == BLINK_NONE)
988 gui_mch_start_blink();
989
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000990 /* make sure keyboard input goes to the draw area (if this is focus for a
991 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000992 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000993 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994
995 return TRUE;
996}
997
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000999focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001000 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001001 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002{
1003 gui_focus_change(FALSE);
1004
1005 if (blink_state != BLINK_NONE)
1006 gui_mch_stop_blink();
1007
1008 return TRUE;
1009}
1010
1011
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012/*
1013 * Translate a GDK key value to UTF-8 independently of the current locale.
1014 * The output is written to string, which must have room for at least 6 bytes
1015 * plus the NUL terminator. Returns the length in bytes.
1016 *
1017 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1018 * of GdkEventKey::string instead. But event->string is evil; see here why:
1019 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1020 */
1021 static int
1022keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1023{
1024 int len;
1025 guint32 uc;
1026
1027 uc = gdk_keyval_to_unicode(keyval);
1028 if (uc != 0)
1029 {
1030 /* Check for CTRL-foo */
1031 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1032 {
1033 /* These mappings look arbitrary at the first glance, but in fact
1034 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1035 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1036 * more sense and is consistent with usual terminal behaviour). */
1037 if (uc >= '@')
1038 string[0] = uc & 0x1F;
1039 else if (uc == '2')
1040 string[0] = NUL;
1041 else if (uc >= '3' && uc <= '7')
1042 string[0] = uc ^ 0x28;
1043 else if (uc == '8')
1044 string[0] = BS;
1045 else if (uc == '?')
1046 string[0] = DEL;
1047 else
1048 string[0] = uc;
1049 len = 1;
1050 }
1051 else
1052 {
1053 /* Translate a normal key to UTF-8. This doesn't work for dead
1054 * keys of course, you _have_ to use an input method for that. */
1055 len = utf_char2bytes((int)uc, string);
1056 }
1057 }
1058 else
1059 {
1060 /* Translate keys which are represented by ASCII control codes in Vim.
1061 * There are only a few of those; most control keys are translated to
1062 * special terminal-like control sequences. */
1063 len = 1;
1064 switch (keyval)
1065 {
1066 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1067 string[0] = TAB;
1068 break;
1069 case GDK_Linefeed:
1070 string[0] = NL;
1071 break;
1072 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1073 string[0] = CAR;
1074 break;
1075 case GDK_Escape:
1076 string[0] = ESC;
1077 break;
1078 default:
1079 len = 0;
1080 break;
1081 }
1082 }
1083 string[len] = NUL;
1084
1085 return len;
1086}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001088 static int
1089modifiers_gdk2vim(guint state)
1090{
1091 int modifiers = 0;
1092
1093 if (state & GDK_SHIFT_MASK)
1094 modifiers |= MOD_MASK_SHIFT;
1095 if (state & GDK_CONTROL_MASK)
1096 modifiers |= MOD_MASK_CTRL;
1097 if (state & GDK_MOD1_MASK)
1098 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001099#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001100 if (state & GDK_SUPER_MASK)
1101 modifiers |= MOD_MASK_META;
1102#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001103 if (state & GDK_MOD4_MASK)
1104 modifiers |= MOD_MASK_META;
1105
1106 return modifiers;
1107}
1108
1109 static int
1110modifiers_gdk2mouse(guint state)
1111{
1112 int modifiers = 0;
1113
1114 if (state & GDK_SHIFT_MASK)
1115 modifiers |= MOUSE_SHIFT;
1116 if (state & GDK_CONTROL_MASK)
1117 modifiers |= MOUSE_CTRL;
1118 if (state & GDK_MOD1_MASK)
1119 modifiers |= MOUSE_ALT;
1120
1121 return modifiers;
1122}
1123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124/*
1125 * Main keyboard handler:
1126 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001128key_press_event(GtkWidget *widget UNUSED,
1129 GdkEventKey *event,
1130 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001132 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1134 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 guint key_sym;
1136 int len;
1137 int i;
1138 int modifiers;
1139 int key;
1140 guint state;
1141 char_u *s, *d;
1142
Bram Moolenaar98921892016-02-23 17:14:37 +01001143#if GTK_CHECK_VERSION(3,0,0)
1144 is_key_pressed = TRUE;
1145 gui_mch_stop_blink();
1146#endif
1147
Bram Moolenaar20892c12011-06-26 04:49:00 +02001148 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 key_sym = event->keyval;
1150 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
1152#ifdef FEAT_XIM
1153 if (xim_queue_key_press_event(event, TRUE))
1154 return TRUE;
1155#endif
1156
1157#ifdef FEAT_HANGULIN
1158 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1159 {
1160 hangul_input_state_toggle();
1161 return TRUE;
1162 }
1163#endif
1164
1165#ifdef SunXK_F36
1166 /*
1167 * These keys have bogus lookup strings, and trapping them here is
1168 * easier than trying to XRebindKeysym() on them with every possible
1169 * combination of modifiers.
1170 */
1171 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1172 len = 0;
1173 else
1174#endif
1175 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 len = keyval_to_string(key_sym, state, string2);
1177
1178 /* Careful: convert_input() doesn't handle the NUL character.
1179 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1180 if (len > 1 && input_conv.vc_type != CONV_NONE)
1181 len = convert_input(string2, len, sizeof(string2));
1182
1183 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 d = string;
1185 for (i = 0; i < len; ++i)
1186 {
1187 *d++ = s[i];
1188 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1189 {
1190 /* Turn CSI into K_CSI. */
1191 *d++ = KS_EXTRA;
1192 *d++ = (int)KE_CSI;
1193 }
1194 }
1195 len = d - string;
1196 }
1197
1198 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1199 if (key_sym == GDK_ISO_Left_Tab)
1200 {
1201 key_sym = GDK_Tab;
1202 state |= GDK_SHIFT_MASK;
1203 }
1204
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205#ifdef FEAT_MENU
1206 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1207 * is a menu shortcut, we ignore everything with the ALT modifier. */
1208 if ((state & GDK_MOD1_MASK)
1209 && gui.menu_is_active
1210 && (*p_wak == 'y'
1211 || (*p_wak == 'm'
1212 && len == 1
1213 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 /* For GTK2 we return false to signify that we haven't handled the
1215 * keypress, so that gtk will handle the mnemonic or accelerator. */
1216 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217#endif
1218
1219 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1220 * that already has the 8th bit set.
1221 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1222 * Don't do this for double-byte encodings, it turns the char into a lead
1223 * byte. */
1224 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001225 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001226#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001227 || (state & GDK_SUPER_MASK)
1228#endif
1229 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1231 && (string[0] & 0x80) == 0
1232 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 )
1235 {
1236 string[0] |= 0x80;
1237 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (enc_utf8) /* convert to utf-8 */
1239 {
1240 string[1] = string[0] & 0xbf;
1241 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1242 if (string[1] == CSI)
1243 {
1244 string[2] = KS_EXTRA;
1245 string[3] = (int)KE_CSI;
1246 len = 4;
1247 }
1248 else
1249 len = 2;
1250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 }
1252
1253 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1254 * value) to detect backspace, delete and keypad keys. */
1255 if (len == 0 || len == 1)
1256 {
1257 for (i = 0; special_keys[i].key_sym != 0; i++)
1258 {
1259 if (special_keys[i].key_sym == key_sym)
1260 {
1261 string[0] = CSI;
1262 string[1] = special_keys[i].code0;
1263 string[2] = special_keys[i].code1;
1264 len = -3;
1265 break;
1266 }
1267 }
1268 }
1269
1270 if (len == 0) /* Unrecognized key */
1271 return TRUE;
1272
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 /* Special keys (and a few others) may have modifiers. Also when using a
1274 * double-byte encoding (can't set the 8th bit). */
1275 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1276 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1277 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1278 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001279 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001280#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001281 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001283 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001285 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286
1287 /*
1288 * For some keys a shift modifier is translated into another key
1289 * code.
1290 */
1291 if (len == -3)
1292 key = TO_SPECIAL(string[1], string[2]);
1293 else
1294 key = string[0];
1295
1296 key = simplify_key(key, &modifiers);
1297 if (key == CSI)
1298 key = K_CSI;
1299 if (IS_SPECIAL(key))
1300 {
1301 string[0] = CSI;
1302 string[1] = K_SECOND(key);
1303 string[2] = K_THIRD(key);
1304 len = 3;
1305 }
1306 else
1307 {
1308 string[0] = key;
1309 len = 1;
1310 }
1311
1312 if (modifiers != 0)
1313 {
1314 string2[0] = CSI;
1315 string2[1] = KS_MODIFIER;
1316 string2[2] = modifiers;
1317 add_to_input_buf(string2, 3);
1318 }
1319 }
1320
1321 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1322 || (string[0] == intr_char && intr_char != Ctrl_C)))
1323 {
1324 trash_input_buf();
1325 got_int = TRUE;
1326 }
1327
1328 add_to_input_buf(string, len);
1329
1330 /* blank out the pointer if necessary */
1331 if (p_mh)
1332 gui_mch_mousehide(TRUE);
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 return TRUE;
1335}
1336
Bram Moolenaar98921892016-02-23 17:14:37 +01001337#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001339key_release_event(GtkWidget *widget UNUSED,
1340 GdkEventKey *event,
1341 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342{
Bram Moolenaar98921892016-02-23 17:14:37 +01001343# if GTK_CHECK_VERSION(3,0,0)
1344 is_key_pressed = FALSE;
1345 gui_mch_start_blink();
1346# endif
1347# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001348 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 /*
1350 * GTK+ 2 input methods may do fancy stuff on key release events too.
1351 * With the default IM for instance, you can enter any UCS code point
1352 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1353 */
1354 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001355# else
1356 return TRUE;
1357# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358}
1359#endif
1360
1361
1362/****************************************************************************
1363 * Selection handlers:
1364 */
1365
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001367selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001369 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370{
1371 if (event->selection == clip_plus.gtk_sel_atom)
1372 clip_lose_selection(&clip_plus);
1373 else
1374 clip_lose_selection(&clip_star);
1375
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 return TRUE;
1377}
1378
1379#define RS_NONE 0 /* selection_received_cb() not called yet */
1380#define RS_OK 1 /* selection_received_cb() called and OK */
1381#define RS_FAIL 2 /* selection_received_cb() called and failed */
1382static int received_selection = RS_NONE;
1383
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001385selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001387 guint time_ UNUSED,
1388 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389{
1390 VimClipboard *cbd;
1391 char_u *text;
1392 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001395 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396
Bram Moolenaar98921892016-02-23 17:14:37 +01001397#if GTK_CHECK_VERSION(3,0,0)
1398 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1399#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001401#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 cbd = &clip_plus;
1403 else
1404 cbd = &clip_star;
1405
Bram Moolenaar98921892016-02-23 17:14:37 +01001406#if GTK_CHECK_VERSION(3,0,0)
1407 text = (char_u *)gtk_selection_data_get_data(data);
1408 len = gtk_selection_data_get_length(data);
1409#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 text = (char_u *)data->data;
1411 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413
1414 if (text == NULL || len <= 0)
1415 {
1416 received_selection = RS_FAIL;
1417 /* clip_free_selection(cbd); ??? */
1418
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 return;
1420 }
1421
Bram Moolenaar98921892016-02-23 17:14:37 +01001422#if GTK_CHECK_VERSION(3,0,0)
1423 if (gtk_selection_data_get_data_type(data) == vim_atom)
1424#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 motion_type = *text++;
1429 --len;
1430 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001431#if GTK_CHECK_VERSION(3,0,0)
1432 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1433#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 {
1437 char_u *enc;
1438 vimconv_T conv;
1439
1440 motion_type = *text++;
1441 --len;
1442
1443 enc = text;
1444 text += STRLEN(text) + 1;
1445 len -= text - enc;
1446
1447 /* If the encoding of the text is different from 'encoding', attempt
1448 * converting it. */
1449 conv.vc_type = CONV_NONE;
1450 convert_setup(&conv, enc, p_enc);
1451 if (conv.vc_type != CONV_NONE)
1452 {
1453 tmpbuf = string_convert(&conv, text, &len);
1454 if (tmpbuf != NULL)
1455 text = tmpbuf;
1456 convert_setup(&conv, NULL, NULL);
1457 }
1458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 /* gtk_selection_data_get_text() handles all the nasty details
1461 * and targets and encodings etc. This rocks so hard. */
1462 else
1463 {
1464 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1465 if (tmpbuf_utf8 != NULL)
1466 {
1467 len = STRLEN(tmpbuf_utf8);
1468 if (input_conv.vc_type != CONV_NONE)
1469 {
1470 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1471 if (tmpbuf != NULL)
1472 text = tmpbuf;
1473 }
1474 else
1475 text = tmpbuf_utf8;
1476 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001477 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1478 {
1479 vimconv_T conv;
1480
1481 /* UTF-16, we get this for HTML */
1482 conv.vc_type = CONV_NONE;
1483 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1484
1485 if (conv.vc_type != CONV_NONE)
1486 {
1487 text += 2;
1488 len -= 2;
1489 tmpbuf = string_convert(&conv, text, &len);
1490 convert_setup(&conv, NULL, NULL);
1491 }
1492 if (tmpbuf != NULL)
1493 text = tmpbuf;
1494 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001497 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001498 while (len > 0 && text[len - 1] == NUL)
1499 --len;
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 clip_yank_selection(motion_type, text, (long)len, cbd);
1502 received_selection = RS_OK;
1503 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505}
1506
1507/*
1508 * Prepare our selection data for passing it to the external selection
1509 * client.
1510 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001512selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 GtkSelectionData *selection_data,
1514 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001515 guint time_ UNUSED,
1516 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517{
1518 char_u *string;
1519 char_u *tmpbuf;
1520 long_u tmplen;
1521 int length;
1522 int motion_type;
1523 GdkAtom type;
1524 VimClipboard *cbd;
1525
Bram Moolenaar98921892016-02-23 17:14:37 +01001526#if GTK_CHECK_VERSION(3,0,0)
1527 if (gtk_selection_data_get_selection(selection_data)
1528 == clip_plus.gtk_sel_atom)
1529#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 cbd = &clip_plus;
1533 else
1534 cbd = &clip_star;
1535
1536 if (!cbd->owned)
1537 return; /* Shouldn't ever happen */
1538
1539 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001540 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 && info != (guint)TARGET_UTF8_STRING
1542 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 && info != (guint)TARGET_VIM
1544 && info != (guint)TARGET_COMPOUND_TEXT
1545 && info != (guint)TARGET_TEXT)
1546 return;
1547
1548 /* get the selection from the '*'/'+' register */
1549 clip_get_selection(cbd);
1550
1551 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1552 if (motion_type < 0 || string == NULL)
1553 return;
1554 /* Due to int arguments we can't handle more than G_MAXINT. Also
1555 * reserve one extra byte for NUL or the motion type; just in case.
1556 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1557 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1558
1559 if (info == (guint)TARGET_VIM)
1560 {
1561 tmpbuf = alloc((unsigned)length + 1);
1562 if (tmpbuf != NULL)
1563 {
1564 tmpbuf[0] = motion_type;
1565 mch_memmove(tmpbuf + 1, string, (size_t)length);
1566 }
1567 /* For our own format, the first byte contains the motion type */
1568 ++length;
1569 vim_free(string);
1570 string = tmpbuf;
1571 type = vim_atom;
1572 }
1573
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001574 else if (info == (guint)TARGET_HTML)
1575 {
1576 vimconv_T conv;
1577
1578 /* Since we get utf-16, we probably should set it as well. */
1579 conv.vc_type = CONV_NONE;
1580 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1581 if (conv.vc_type != CONV_NONE)
1582 {
1583 tmpbuf = string_convert(&conv, string, &length);
1584 convert_setup(&conv, NULL, NULL);
1585 vim_free(string);
1586 string = tmpbuf;
1587 }
1588
1589 /* Prepend the BOM: "fffe" */
1590 if (string != NULL)
1591 {
1592 tmpbuf = alloc(length + 2);
1593 tmpbuf[0] = 0xff;
1594 tmpbuf[1] = 0xfe;
1595 mch_memmove(tmpbuf + 2, string, (size_t)length);
1596 vim_free(string);
1597 string = tmpbuf;
1598 length += 2;
1599
Bram Moolenaar98921892016-02-23 17:14:37 +01001600#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001601 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001602 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001603 selection_data->type = selection_data->target;
1604 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001605#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001606 gtk_selection_data_set(selection_data, html_atom, 16,
1607 string, length);
1608 vim_free(string);
1609 }
1610 return;
1611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 else if (info == (guint)TARGET_VIMENC)
1613 {
1614 int l = STRLEN(p_enc);
1615
1616 /* contents: motion_type 'encoding' NUL text */
1617 tmpbuf = alloc((unsigned)length + l + 2);
1618 if (tmpbuf != NULL)
1619 {
1620 tmpbuf[0] = motion_type;
1621 STRCPY(tmpbuf + 1, p_enc);
1622 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1623 }
1624 length += l + 2;
1625 vim_free(string);
1626 string = tmpbuf;
1627 type = vimenc_atom;
1628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 /* gtk_selection_data_set_text() handles everything for us. This is
1631 * so easy and simple and cool, it'd be insane not to use it. */
1632 else
1633 {
1634 if (output_conv.vc_type != CONV_NONE)
1635 {
1636 tmpbuf = string_convert(&output_conv, string, &length);
1637 vim_free(string);
1638 if (tmpbuf == NULL)
1639 return;
1640 string = tmpbuf;
1641 }
1642 /* Validate the string to avoid runtime warnings */
1643 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1644 {
1645 gtk_selection_data_set_text(selection_data,
1646 (const char *)string, length);
1647 }
1648 vim_free(string);
1649 return;
1650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
1652 if (string != NULL)
1653 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001654#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001655 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001656 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 selection_data->type = selection_data->target;
1658 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 gtk_selection_data_set(selection_data, type, 8, string, length);
1661 vim_free(string);
1662 }
1663}
1664
1665/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001666 * Check if the GUI can be started. Called before gvimrc is sourced and
1667 * before fork().
1668 * Return OK or FAIL.
1669 */
1670 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001671gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001672{
1673 char_u *p;
1674
1675 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1676 p = mch_getenv((char_u *)"DISPLAY");
1677 if (p == NULL || *p == NUL)
1678 {
1679 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001680 if (give_message)
1681 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001682 return FAIL;
1683 }
1684 return OK;
1685}
1686
1687/*
1688 * Check if the GUI can be started. Called before gvimrc is sourced but after
1689 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 * Return OK or FAIL.
1691 */
1692 int
1693gui_mch_init_check(void)
1694{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001695#ifdef USE_GRESOURCE
1696 static int res_registered = FALSE;
1697
1698 if (!res_registered)
1699 {
1700 /* Call this function in the GUI process; otherwise, the resources
1701 * won't be available. Don't call it twice. */
1702 res_registered = TRUE;
1703 gui_gtk_register_resource();
1704 }
1705#endif
1706
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001707#if GTK_CHECK_VERSION(3,10,0)
1708 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1709 * support for other backends such as Wayland. */
1710 gdk_set_allowed_backends ("x11");
1711#endif
1712
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713#ifdef FEAT_GUI_GNOME
1714 if (gtk_socket_id == 0)
1715 using_gnome = 1;
1716#endif
1717
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001718 /* This defaults to argv[0], but we want it to match the name of the
1719 * shipped gvim.desktop so that Vim's windows can be associated with this
1720 * file. */
1721 g_set_prgname("gvim");
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1724 if (!gtk_init_check(&gui_argc, &gui_argv))
1725 {
1726 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001727 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 return FAIL;
1729 }
1730
1731 return OK;
1732}
1733
1734
1735/****************************************************************************
1736 * Mouse handling callbacks
1737 */
1738
1739
1740static guint mouse_click_timer = 0;
1741static int mouse_timed_out = TRUE;
1742
1743/*
1744 * Timer used to recognize multiple clicks of the mouse button
1745 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001746#if GTK_CHECK_VERSION(3,0,0)
1747 static gboolean
1748#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751mouse_click_timer_cb(gpointer data)
1752{
1753 /* we don't use this information currently */
1754 int *timed_out = (int *) data;
1755
1756 *timed_out = TRUE;
1757 return FALSE; /* don't happen again */
1758}
1759
1760static guint motion_repeat_timer = 0;
1761static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001762#ifdef GTK_DEST_DEFAULT_ALL
1763static gboolean motion_repeat_timer_cb(gpointer);
1764#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 static void
1769process_motion_notify(int x, int y, GdkModifierType state)
1770{
1771 int button;
1772 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001773#if GTK_CHECK_VERSION(3,0,0)
1774 GtkAllocation allocation;
1775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776
1777 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1778 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1779 GDK_BUTTON5_MASK))
1780 ? MOUSE_DRAG : ' ';
1781
1782 /* If our pointer is currently hidden, then we should show it. */
1783 gui_mch_mousehide(FALSE);
1784
1785 /* Just moving the rodent above the drawing area without any button
1786 * being pressed. */
1787 if (button != MOUSE_DRAG)
1788 {
1789 gui_mouse_moved(x, y);
1790 return;
1791 }
1792
1793 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001794 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
Bram Moolenaar49325942007-05-10 19:19:59 +00001796 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1798
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 /*
1800 * Auto repeat timer handling.
1801 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001802#if GTK_CHECK_VERSION(3,0,0)
1803 gtk_widget_get_allocation(gui.drawarea, &allocation);
1804
1805 if (x < 0 || y < 0
1806 || x >= allocation.width
1807 || y >= allocation.height)
1808#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (x < 0 || y < 0
1810 || x >= gui.drawarea->allocation.width
1811 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 {
1814
1815 int dx;
1816 int dy;
1817 int offshoot;
1818 int delay = 10;
1819
1820 /* Calculate the maximal distance of the cursor from the drawing area.
1821 * (offshoot can't become negative here!).
1822 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001823#if GTK_CHECK_VERSION(3,0,0)
1824 dx = x < 0 ? -x : x - allocation.width;
1825 dy = y < 0 ? -y : y - allocation.height;
1826#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1828 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830
1831 offshoot = dx > dy ? dx : dy;
1832
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001833 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 * distance of 127 pixels from the main window.
1835 *
1836 * One could think endlessly about the most ergonomic variant here.
1837 * For example it could make sense to calculate the distance from the
1838 * drags start instead...
1839 *
1840 * Maybe a parabolic interpolation would suite us better here too...
1841 */
1842 if (offshoot > 127)
1843 {
1844 /* 5 appears to be somehow near to my perceptual limits :-). */
1845 delay = 5;
1846 }
1847 else
1848 {
1849 delay = (130 * (127 - offshoot)) / 127 + 5;
1850 }
1851
1852 /* shoot again */
1853 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001854#if GTK_CHECK_VERSION(3,0,0)
1855 motion_repeat_timer = g_timeout_add((guint)delay,
1856 motion_repeat_timer_cb, NULL);
1857#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1859 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 }
1862}
1863
Bram Moolenaar98921892016-02-23 17:14:37 +01001864#if GTK_CHECK_VERSION(3,0,0)
1865 static GdkDevice *
1866gui_gtk_get_pointer_device(GtkWidget *widget)
1867{
1868 GdkWindow * const win = gtk_widget_get_window(widget);
1869 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001870# if GTK_CHECK_VERSION(3,20,0)
1871 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1872 return gdk_seat_get_pointer(seat);
1873# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001874 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1875 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001876# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001877}
1878
1879 static GdkWindow *
1880gui_gtk_get_pointer(GtkWidget *widget,
1881 gint *x,
1882 gint *y,
1883 GdkModifierType *state)
1884{
1885 GdkWindow * const win = gtk_widget_get_window(widget);
1886 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1887 return gdk_window_get_device_position(win, dev , x, y, state);
1888}
1889
Bram Moolenaar2369c152016-03-04 23:08:25 +01001890# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001891 static GdkWindow *
1892gui_gtk_window_at_position(GtkWidget *widget,
1893 gint *x,
1894 gint *y)
1895{
1896 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1897 return gdk_device_get_window_at_position(dev, x, y);
1898}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001899# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001900#endif
1901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902/*
1903 * Timer used to recognize multiple clicks of the mouse button.
1904 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001905#if GTK_CHECK_VERSION(3,0,0)
1906 static gboolean
1907#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001909#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001910motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
1912 int x;
1913 int y;
1914 GdkModifierType state;
1915
Bram Moolenaar98921892016-02-23 17:14:37 +01001916#if GTK_CHECK_VERSION(3,0,0)
1917 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1918#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921
1922 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1923 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1924 GDK_BUTTON5_MASK)))
1925 {
1926 motion_repeat_timer = 0;
1927 return FALSE;
1928 }
1929
1930 /* If there already is a mouse click in the input buffer, wait another
1931 * time (otherwise we would create a backlog of clicks) */
1932 if (vim_used_in_input_buf() > 10)
1933 return TRUE;
1934
1935 motion_repeat_timer = 0;
1936
1937 /*
1938 * Fake a motion event.
1939 * Trick: Pretend the mouse moved to the next character on every other
1940 * event, otherwise drag events will be discarded, because they are still
1941 * in the same character.
1942 */
1943 if (motion_repeat_offset)
1944 x += gui.char_width;
1945
1946 motion_repeat_offset = !motion_repeat_offset;
1947 process_motion_notify(x, y, state);
1948
1949 /* Don't happen again. We will get reinstalled in the synthetic event
1950 * if needed -- thus repeating should still work. */
1951 return FALSE;
1952}
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001955motion_notify_event(GtkWidget *widget,
1956 GdkEventMotion *event,
1957 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958{
1959 if (event->is_hint)
1960 {
1961 int x;
1962 int y;
1963 GdkModifierType state;
1964
Bram Moolenaar98921892016-02-23 17:14:37 +01001965#if GTK_CHECK_VERSION(3,0,0)
1966 gui_gtk_get_pointer(widget, &x, &y, &state);
1967#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 process_motion_notify(x, y, state);
1971 }
1972 else
1973 {
1974 process_motion_notify((int)event->x, (int)event->y,
1975 (GdkModifierType)event->state);
1976 }
1977
1978 return TRUE; /* handled */
1979}
1980
1981
1982/*
1983 * Mouse button handling. Note please that we are capturing multiple click's
1984 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1985 * This is due to the way the generic VIM code is recognizing multiple clicks.
1986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001988button_press_event(GtkWidget *widget,
1989 GdkEventButton *event,
1990 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991{
1992 int button;
1993 int repeated_click = FALSE;
1994 int x, y;
1995 int_u vim_modifiers;
1996
Bram Moolenaar20892c12011-06-26 04:49:00 +02001997 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001998
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01002000#if GTK_CHECK_VERSION(3,0,0)
2001 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2002#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 gtk_widget_grab_focus(widget);
2006
2007 /*
2008 * Don't let additional events about multiple clicks send by GTK to us
2009 * after the initial button press event confuse us.
2010 */
2011 if (event->type != GDK_BUTTON_PRESS)
2012 return FALSE;
2013
2014 x = event->x;
2015 y = event->y;
2016
2017 /* Handle multiple clicks */
2018 if (!mouse_timed_out && mouse_click_timer)
2019 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002020#if GTK_CHECK_VERSION(3,0,0)
2021 g_source_remove(mouse_click_timer);
2022#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 mouse_click_timer = 0;
2026 repeated_click = TRUE;
2027 }
2028
2029 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002030#if GTK_CHECK_VERSION(3,0,0)
2031 mouse_click_timer = g_timeout_add((guint)p_mouset,
2032 mouse_click_timer_cb, &mouse_timed_out);
2033#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2035 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037
2038 switch (event->button)
2039 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002040 /* Keep in sync with gui_x11.c.
2041 * Buttons 4-7 are handled in scroll_event() */
2042 case 1: button = MOUSE_LEFT; break;
2043 case 2: button = MOUSE_MIDDLE; break;
2044 case 3: button = MOUSE_RIGHT; break;
2045 case 8: button = MOUSE_X1; break;
2046 case 9: button = MOUSE_X2; break;
2047 default:
2048 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 }
2050
2051#ifdef FEAT_XIM
2052 /* cancel any preediting */
2053 if (im_is_preediting())
2054 xim_reset();
2055#endif
2056
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002057 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
2061 return TRUE;
2062}
2063
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002065 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002068scroll_event(GtkWidget *widget,
2069 GdkEventScroll *event,
2070 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
2072 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002073 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
Bram Moolenaar98921892016-02-23 17:14:37 +01002075#if GTK_CHECK_VERSION(3,0,0)
2076 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2077#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 gtk_widget_grab_focus(widget);
2081
2082 switch (event->direction)
2083 {
2084 case GDK_SCROLL_UP:
2085 button = MOUSE_4;
2086 break;
2087 case GDK_SCROLL_DOWN:
2088 button = MOUSE_5;
2089 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002090 case GDK_SCROLL_LEFT:
2091 button = MOUSE_7;
2092 break;
2093 case GDK_SCROLL_RIGHT:
2094 button = MOUSE_6;
2095 break;
2096 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 return FALSE;
2098 }
2099
2100# ifdef FEAT_XIM
2101 /* cancel any preediting */
2102 if (im_is_preediting())
2103 xim_reset();
2104# endif
2105
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002106 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2109 FALSE, vim_modifiers);
2110
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 return TRUE;
2112}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
2114
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002116button_release_event(GtkWidget *widget UNUSED,
2117 GdkEventButton *event,
2118 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119{
2120 int x, y;
2121 int_u vim_modifiers;
2122
Bram Moolenaar20892c12011-06-26 04:49:00 +02002123 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002124
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 /* Remove any motion "machine gun" timers used for automatic further
2126 extension of allocation areas if outside of the applications window
2127 area .*/
2128 if (motion_repeat_timer)
2129 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002130#if GTK_CHECK_VERSION(3,0,0)
2131 g_source_remove(motion_repeat_timer);
2132#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002134#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 motion_repeat_timer = 0;
2136 }
2137
2138 x = event->x;
2139 y = event->y;
2140
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002141 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142
2143 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
2145 return TRUE;
2146}
2147
2148
2149#ifdef FEAT_DND
2150/****************************************************************************
2151 * Drag aNd Drop support handlers.
2152 */
2153
2154/*
2155 * Count how many items there may be and separate them with a NUL.
2156 * Apparently the items are separated with \r\n. This is not documented,
2157 * thus be careful not to go past the end. Also allow separation with
2158 * NUL characters.
2159 */
2160 static int
2161count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2162{
2163 int i;
2164 char_u *p = out;
2165 int count = 0;
2166
2167 for (i = 0; i < len; ++i)
2168 {
2169 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2170 {
2171 if (p > out && p[-1] != NUL)
2172 {
2173 ++count;
2174 *p++ = NUL;
2175 }
2176 }
2177 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2178 {
2179 *p++ = hexhex2nr(raw + i + 1);
2180 i += 2;
2181 }
2182 else
2183 *p++ = raw[i];
2184 }
2185 if (p > out && p[-1] != NUL)
2186 {
2187 *p = NUL; /* last item didn't have \r or \n */
2188 ++count;
2189 }
2190 return count;
2191}
2192
2193/*
2194 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2195 * this process, URI which protocol is not "file:" are removed. Return
2196 * length of array (less than "max").
2197 */
2198 static int
2199filter_uri_list(char_u **outlist, int max, char_u *src)
2200{
2201 int i, j;
2202
2203 for (i = j = 0; i < max; ++i)
2204 {
2205 outlist[i] = NULL;
2206 if (STRNCMP(src, "file:", 5) == 0)
2207 {
2208 src += 5;
2209 if (STRNCMP(src, "//localhost", 11) == 0)
2210 src += 11;
2211 while (src[0] == '/' && src[1] == '/')
2212 ++src;
2213 outlist[j++] = vim_strsave(src);
2214 }
2215 src += STRLEN(src) + 1;
2216 }
2217 return j;
2218}
2219
2220 static char_u **
2221parse_uri_list(int *count, char_u *data, int len)
2222{
2223 int n = 0;
2224 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002225 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
2227 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2228 {
2229 n = count_and_decode_uri_list(tmp, data, len);
2230 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2231 n = filter_uri_list(array, n, tmp);
2232 }
2233 vim_free(tmp);
2234 *count = n;
2235 return array;
2236}
2237
2238 static void
2239drag_handle_uri_list(GdkDragContext *context,
2240 GtkSelectionData *data,
2241 guint time_,
2242 GdkModifierType state,
2243 gint x,
2244 gint y)
2245{
2246 char_u **fnames;
2247 int nfiles = 0;
2248
Bram Moolenaar98921892016-02-23 17:14:37 +01002249# if GTK_CHECK_VERSION(3,0,0)
2250 fnames = parse_uri_list(&nfiles,
2251 (char_u *)gtk_selection_data_get_data(data),
2252 gtk_selection_data_get_length(data));
2253# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002255# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256
2257 if (fnames != NULL && nfiles > 0)
2258 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002259 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260
2261 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2262
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002263 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2266 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002267 else
2268 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269}
2270
2271 static void
2272drag_handle_text(GdkDragContext *context,
2273 GtkSelectionData *data,
2274 guint time_,
2275 GdkModifierType state)
2276{
2277 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2278 char_u *text;
2279 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
Bram Moolenaar98921892016-02-23 17:14:37 +01002282# if GTK_CHECK_VERSION(3,0,0)
2283 text = (char_u *)gtk_selection_data_get_data(data);
2284 len = gtk_selection_data_get_length(data);
2285# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 text = data->data;
2287 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002288# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289
Bram Moolenaar98921892016-02-23 17:14:37 +01002290# if GTK_CHECK_VERSION(3,0,0)
2291 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2292# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002294# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 if (input_conv.vc_type != CONV_NONE)
2297 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 if (tmpbuf != NULL)
2299 text = tmpbuf;
2300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
2302 dnd_yank_drag_data(text, (long)len);
2303 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002306 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307
2308 if (dropkey[2] != 0)
2309 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2310 else
2311 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312}
2313
2314/*
2315 * DND receiver.
2316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 static void
2318drag_data_received_cb(GtkWidget *widget,
2319 GdkDragContext *context,
2320 gint x,
2321 gint y,
2322 GtkSelectionData *data,
2323 guint info,
2324 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002325 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326{
2327 GdkModifierType state;
2328
2329 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002330# if GTK_CHECK_VERSION(3,0,0)
2331 const guchar * const data_data = gtk_selection_data_get_data(data);
2332 const gint data_length = gtk_selection_data_get_length(data);
2333 const gint data_format = gtk_selection_data_get_format(data);
2334
2335 if (data_data == NULL
2336 || data_length <= 0
2337 || data_format != 8
2338 || data_data[data_length] != '\0')
2339# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 if (data->data == NULL
2341 || data->length <= 0
2342 || data->format != 8
2343 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002344# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 {
2346 gtk_drag_finish(context, FALSE, FALSE, time_);
2347 return;
2348 }
2349
2350 /* Get the current modifier state for proper distinguishment between
2351 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002352#if GTK_CHECK_VERSION(3,0,0)
2353 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2354# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357
2358 /* Not sure about the role of "text/plain" here... */
2359 if (info == (guint)TARGET_TEXT_URI_LIST)
2360 drag_handle_uri_list(context, data, time_, state, x, y);
2361 else
2362 drag_handle_text(context, data, time_, state);
2363
2364}
2365#endif /* FEAT_DND */
2366
2367
2368#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2369/*
2370 * GnomeClient interact callback. Check for unsaved buffers that cannot
2371 * be abandoned and pop up a dialog asking the user for confirmation if
2372 * necessary.
2373 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002375sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002377 GnomeDialogType type UNUSED,
2378 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379{
2380 cmdmod_T save_cmdmod;
2381 gboolean shutdown_cancelled;
2382
2383 save_cmdmod = cmdmod;
2384
2385# ifdef FEAT_BROWSE
2386 cmdmod.browse = TRUE;
2387# endif
2388# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2389 cmdmod.confirm = TRUE;
2390# endif
2391 /*
2392 * If there are changed buffers, present the user with
2393 * a dialog if possible, otherwise give an error message.
2394 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002395 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396
2397 exiting = FALSE;
2398 cmdmod = save_cmdmod;
2399 setcursor(); /* position the cursor */
2400 out_flush();
2401 /*
2402 * If the user hit the [Cancel] button the whole shutdown
2403 * will be cancelled. Wow, quite powerful feature (:
2404 */
2405 gnome_interaction_key_return(key, shutdown_cancelled);
2406}
2407
2408/*
2409 * Generate a script that can be used to restore the current editing session.
2410 * Save the value of v:this_session before running :mksession in order to make
2411 * automagic session save fully transparent. Return TRUE on success.
2412 */
2413 static int
2414write_session_file(char_u *filename)
2415{
2416 char_u *escaped_filename;
2417 char *mksession_cmdline;
2418 unsigned int save_ssop_flags;
2419 int failed;
2420
2421 /*
2422 * Build an ex command line to create a script that restores the current
2423 * session if executed. Escape the filename to avoid nasty surprises.
2424 */
2425 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2426 if (escaped_filename == NULL)
2427 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002428 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2429 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002431
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 /*
2433 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2434 * unpredictable effects when the session is saved automatically. Also,
2435 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2436 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2437 * enormously large if the GNOME session feature is used regularly.
2438 */
2439 save_ssop_flags = ssop_flags;
2440 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002441 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2444 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2445 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002446 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447
2448 ssop_flags = save_ssop_flags;
2449 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002450
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 /*
2452 * Reopen the file and append a command to restore v:this_session,
2453 * as if this save never happened. This is to avoid conflicts with
2454 * the user's own sessions. FIXME: It's probably less hackish to add
2455 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2456 */
2457 if (!failed)
2458 {
2459 FILE *fd;
2460
2461 fd = open_exfile(filename, TRUE, APPENDBIN);
2462
2463 failed = (fd == NULL
2464 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2465 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2466
2467 if (fd != NULL && fclose(fd) != 0)
2468 failed = TRUE;
2469
2470 if (failed)
2471 mch_remove(filename);
2472 }
2473
2474 return !failed;
2475}
2476
2477/*
2478 * "save_yourself" signal handler. Initiate an interaction to ask the user
2479 * for confirmation if necessary. Save the current editing session and tell
2480 * the session manager how to restart Vim.
2481 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 static gboolean
2483sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002484 gint phase UNUSED,
2485 GnomeSaveStyle save_style UNUSED,
2486 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002488 gboolean fast UNUSED,
2489 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490{
2491 static const char suffix[] = "-session.vim";
2492 char *session_file;
2493 unsigned int len;
2494 gboolean success;
2495
2496 /* Always request an interaction if possible. check_changed_any()
2497 * won't actually show a dialog unless any buffers have been modified.
2498 * There doesn't seem to be an obvious way to check that without
2499 * automatically firing the dialog. Anyway, it works just fine. */
2500 if (interact_style == GNOME_INTERACT_ANY)
2501 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2502 &sm_client_check_changed_any,
2503 NULL);
2504 out_flush();
2505 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2506
2507 /* The path is unique for each session save. We do neither know nor care
2508 * which session script will actually be used later. This decision is in
2509 * the domain of the session manager. */
2510 session_file = gnome_config_get_real_path(
2511 gnome_client_get_config_prefix(client));
2512 len = strlen(session_file);
2513
2514 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2515 --len; /* get rid of the superfluous trailing '/' */
2516
2517 session_file = g_renew(char, session_file, len + sizeof(suffix));
2518 memcpy(session_file + len, suffix, sizeof(suffix));
2519
2520 success = write_session_file((char_u *)session_file);
2521
2522 if (success)
2523 {
2524 const char *argv[8];
2525 int i;
2526
2527 /* Tell the session manager how to wipe out the stored session data.
2528 * This isn't as dangerous as it looks, don't worry :) session_file
2529 * is a unique absolute filename. Usually it'll be something like
2530 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2531 i = 0;
2532 argv[i++] = "rm";
2533 argv[i++] = session_file;
2534 argv[i] = NULL;
2535
2536 gnome_client_set_discard_command(client, i, (char **)argv);
2537
2538 /* Tell the session manager how to restore the just saved session.
2539 * This is easily done thanks to Vim's -S option. Pass the -f flag
2540 * since there's no need to fork -- it might even cause confusion.
2541 * Also pass the window role to give the WM something to match on.
2542 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2543 i = 0;
2544 argv[i++] = restart_command;
2545 argv[i++] = "-f";
2546 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 argv[i++] = "--role";
2548 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 argv[i++] = "-S";
2550 argv[i++] = session_file;
2551 argv[i] = NULL;
2552
2553 gnome_client_set_restart_command(client, i, (char **)argv);
2554 gnome_client_set_clone_command(client, 0, NULL);
2555 }
2556
2557 g_free(session_file);
2558
2559 return success;
2560}
2561
2562/*
2563 * Called when the session manager wants us to die. There isn't much to save
2564 * here since "save_yourself" has been emitted before (unless serious trouble
2565 * is happening).
2566 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002568sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569{
2570 /* Don't write messages to the GUI anymore */
2571 full_screen = FALSE;
2572
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002573 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002574 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002575 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 preserve_exit();
2577}
2578
2579/*
2580 * Connect our signal handlers to be notified on session save and shutdown.
2581 */
2582 static void
2583setup_save_yourself(void)
2584{
2585 GnomeClient *client;
2586
2587 client = gnome_master_client();
2588
2589 if (client != NULL)
2590 {
2591 /* Must use the deprecated gtk_signal_connect() for compatibility
2592 * with GNOME 1. Arrgh, zombies! */
2593 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2594 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2595 gtk_signal_connect(GTK_OBJECT(client), "die",
2596 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2597 }
2598}
2599
2600#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2601
2602# ifdef USE_XSMP
2603/*
2604 * GTK tells us that XSMP needs attention
2605 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002607local_xsmp_handle_requests(
2608 GIOChannel *source UNUSED,
2609 GIOCondition condition,
2610 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
2612 if (condition == G_IO_IN)
2613 {
2614 /* Do stuff; maybe close connection */
2615 if (xsmp_handle_requests() == FAIL)
2616 g_io_channel_unref((GIOChannel *)data);
2617 return TRUE;
2618 }
2619 /* Error */
2620 g_io_channel_unref((GIOChannel *)data);
2621 xsmp_close();
2622 return TRUE;
2623}
2624# endif /* USE_XSMP */
2625
2626/*
2627 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2628 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2629 */
2630 static void
2631setup_save_yourself(void)
2632{
2633 Atom *existing_atoms = NULL;
2634 int count = 0;
2635
Bram Moolenaar98921892016-02-23 17:14:37 +01002636# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 if (xsmp_icefd != -1)
2638 {
2639 /*
2640 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2641 * set up GTK IO monitor
2642 */
2643 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2644
2645 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2646 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002647 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 }
2649 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002650# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {
2652 /* Fall back to old method */
2653
2654 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002655# if GTK_CHECK_VERSION(3,0,0)
2656 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2657
2658 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2659 GDK_WINDOW_XID(mainwin_win),
2660 &existing_atoms, &count))
2661# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2663 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2664 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 {
2667 Atom *new_atoms;
2668 Atom save_yourself_xatom;
2669 int i;
2670
2671 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2672
2673 /* check if WM_SAVE_YOURSELF isn't there yet */
2674 for (i = 0; i < count; ++i)
2675 if (existing_atoms[i] == save_yourself_xatom)
2676 break;
2677
2678 if (i == count)
2679 {
2680 /* allocate an Atoms array which is one item longer */
2681 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2682 * sizeof(Atom)));
2683 if (new_atoms != NULL)
2684 {
2685 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2686 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002687# if GTK_CHECK_VERSION(3,0,0)
2688 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2689 GDK_WINDOW_XID(mainwin_win),
2690# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2692 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002693# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 new_atoms, count + 1);
2695 vim_free(new_atoms);
2696 }
2697 }
2698 XFree(existing_atoms);
2699 }
2700 }
2701}
2702
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703/*
2704 * Installing a global event filter seems to be the only way to catch
2705 * client messages of type WM_PROTOCOLS without overriding GDK's own
2706 * client message event filter. Well, that's still better than trying
2707 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 *
2709 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2710 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2711 * I have the nasty feeling modern session managers just don't send this
2712 * deprecated message anymore. Addition: confirmed by several people.
2713 *
2714 * The GNOME session support is much cooler anyway. Unlike this ugly
2715 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2716 * it should work with KDE as well.
2717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002719global_event_filter(GdkXEvent *xev,
2720 GdkEvent *event UNUSED,
2721 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 XEvent *xevent = (XEvent *)xev;
2724
2725 if (xevent != NULL
2726 && xevent->type == ClientMessage
2727 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002728 && (long_u)xevent->xclient.data.l[0]
2729 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 {
2731 out_flush();
2732 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2733 /*
2734 * Set the window's WM_COMMAND property, to let the window manager
2735 * know we are done saving ourselves. We don't want to be
2736 * restarted, thus set argv to NULL.
2737 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002738# if GTK_CHECK_VERSION(3,0,0)
2739 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2740 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2741# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2743 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002744# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 NULL, 0);
2746 return GDK_FILTER_REMOVE;
2747 }
2748
2749 return GDK_FILTER_CONTINUE;
2750}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2752
2753
2754/*
2755 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002758mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760/* If you get an error message here, you still need to unpack the runtime
2761 * archive! */
2762#ifdef magick
2763# undef magick
2764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 /* A bit hackish, but avoids casting later and allows optimization */
2766# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767#define magick vim32x32
2768#include "../runtime/vim32x32.xpm"
2769#undef magick
2770#define magick vim16x16
2771#include "../runtime/vim16x16.xpm"
2772#undef magick
2773#define magick vim48x48
2774#include "../runtime/vim48x48.xpm"
2775#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
Bram Moolenaar98921892016-02-23 17:14:37 +01002778#if GTK_CHECK_VERSION(3,0,0)
2779 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2780#endif
2781
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 /* When started with "--echo-wid" argument, write window ID on stdout. */
2783 if (echo_wid_arg)
2784 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002785#if GTK_CHECK_VERSION(3,0,0)
2786 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2787#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 fflush(stdout);
2791 }
2792
2793 if (vim_strchr(p_go, GO_ICON) != NULL)
2794 {
2795 /*
2796 * Add an icon to the main window. For fun and convenience of the user.
2797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 GList *icons = NULL;
2799
2800 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2801 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2802 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2803
2804 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2805
2806 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2807 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 }
2809
2810#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2811 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813#endif
2814 /* Setup to indicate to the window manager that we want to catch the
2815 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2816 * manager instead. */
2817#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2818 if (using_gnome)
2819#endif
2820 setup_save_yourself();
2821
2822#ifdef FEAT_CLIENTSERVER
2823 if (serverName == NULL && serverDelayedStartName != NULL)
2824 {
2825 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002826# if GTK_CHECK_VERSION(3,0,0)
2827 commWindow = GDK_WINDOW_XID(mainwin_win);
2828
2829 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2830 serverDelayedStartName);
2831# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2833
2834 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2835 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 }
2838 else
2839 {
2840 /*
2841 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2842 * have to change the "server" registration to that of the main window
2843 * If we have not registered a name yet, remember the window
2844 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002845# if GTK_CHECK_VERSION(3,0,0)
2846 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2847 GDK_WINDOW_XID(mainwin_win));
2848# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2850 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 }
2853 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002854# if GTK_CHECK_VERSION(3,0,0)
2855 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2856 G_CALLBACK(property_event), NULL);
2857# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2859 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002860# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861#endif
2862}
2863
2864 static GdkCursor *
2865create_blank_pointer(void)
2866{
2867 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002868#if GTK_CHECK_VERSION(3,0,0)
2869 GdkPixbuf *blank_mask;
2870#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002874#if GTK_CHECK_VERSION(3,0,0)
2875 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2876#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 GdkColor color = { 0, 0, 0, 0 };
2878 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
2881#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002882# if GTK_CHECK_VERSION(3,12,0)
2883 {
2884 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2885 GdkScreen * const scrn = gdk_window_get_screen(win);
2886 root_window = gdk_screen_get_root_window(scrn);
2887 }
2888# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891#endif
2892
2893 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2894 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002895#if GTK_CHECK_VERSION(3,0,0)
2896 {
2897 cairo_surface_t *surf;
2898 cairo_t *cr;
2899
2900 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2901 cr = cairo_create(surf);
2902
Bram Moolenaar36edf062016-07-21 22:10:12 +02002903 cairo_set_source_rgba(cr,
2904 color.red,
2905 color.green,
2906 color.blue,
2907 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002908 cairo_rectangle(cr, 0, 0, 1, 1);
2909 cairo_fill(cr);
2910 cairo_destroy(cr);
2911
2912 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2913 cairo_surface_destroy(surf);
2914
2915 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2916 blank_mask, 0, 0);
2917 g_object_unref(blank_mask);
2918 }
2919#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2921 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2922 &color, &color, 0, 0);
2923 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925
2926 return cursor;
2927}
2928
2929#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 static void
2931mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002932 GdkScreen *previous_screen UNUSED,
2933 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 if (!gtk_widget_has_screen(widget))
2936 return;
2937
2938 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002939 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 */
2941 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002942# if GTK_CHECK_VERSION(3,0,0)
2943 g_object_unref(G_OBJECT(gui.blank_pointer));
2944# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002946# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
2948 gui.blank_pointer = create_blank_pointer();
2949
Bram Moolenaar98921892016-02-23 17:14:37 +01002950# if GTK_CHECK_VERSION(3,0,0)
2951 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2952 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2953 gui.blank_pointer);
2954# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2956 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 /*
2960 * Create a new PangoContext for this screen, and initialize it
2961 * with the current font if necessary.
2962 */
2963 if (gui.text_context != NULL)
2964 g_object_unref(gui.text_context);
2965
2966 gui.text_context = gtk_widget_create_pango_context(widget);
2967 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2968
2969 if (gui.norm_font != NULL)
2970 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002971 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002972 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 }
2974}
2975#endif /* HAVE_GTK_MULTIHEAD */
2976
2977/*
2978 * After the drawing area comes up, we calculate all colors and create the
2979 * dummy blank cursor.
2980 *
2981 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2982 * fact that the main VIM engine doesn't take them into account anywhere.
2983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002985drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986{
2987 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002988#if GTK_CHECK_VERSION(3,0,0)
2989 GtkAllocation allocation;
2990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
2992#ifdef FEAT_XIM
2993 xim_init();
2994#endif
2995 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002996#if GTK_CHECK_VERSION(3,0,0)
2997 gui.surface = gdk_window_create_similar_surface(
2998 gtk_widget_get_window(widget),
2999 CAIRO_CONTENT_COLOR_ALPHA,
3000 gtk_widget_get_allocated_width(widget),
3001 gtk_widget_get_allocated_height(widget));
3002#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01003004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006 gui.blank_pointer = create_blank_pointer();
3007 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01003008#if GTK_CHECK_VERSION(3,0,0)
3009 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
3010#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
3014 /* get the actual size of the scrollbars, if they are realized */
3015 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
3016 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
3017 && firstwin->w_scrollbars[SBAR_RIGHT].id))
3018 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003019#if GTK_CHECK_VERSION(3,0,0)
3020 gtk_widget_get_allocation(sbar, &allocation);
3021 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3022 gui.scrollbar_width = allocation.width;
3023#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3025 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027
3028 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003029#if GTK_CHECK_VERSION(3,0,0)
3030 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3031 gui.scrollbar_height = allocation.height;
3032#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3034 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036}
3037
3038/*
3039 * Properly clean up on shutdown.
3040 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003042drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043{
3044 /* Don't write messages to the GUI anymore */
3045 full_screen = FALSE;
3046
3047#ifdef FEAT_XIM
3048 im_shutdown();
3049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 if (gui.ascii_glyphs != NULL)
3051 {
3052 pango_glyph_string_free(gui.ascii_glyphs);
3053 gui.ascii_glyphs = NULL;
3054 }
3055 if (gui.ascii_font != NULL)
3056 {
3057 g_object_unref(gui.ascii_font);
3058 gui.ascii_font = NULL;
3059 }
3060 g_object_unref(gui.text_context);
3061 gui.text_context = NULL;
3062
Bram Moolenaar98921892016-02-23 17:14:37 +01003063#if GTK_CHECK_VERSION(3,0,0)
3064 if (gui.surface != NULL)
3065 {
3066 cairo_surface_destroy(gui.surface);
3067 gui.surface = NULL;
3068 }
3069#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 g_object_unref(gui.text_gc);
3071 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073
Bram Moolenaar98921892016-02-23 17:14:37 +01003074#if GTK_CHECK_VERSION(3,0,0)
3075 g_object_unref(G_OBJECT(gui.blank_pointer));
3076#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080}
3081
Bram Moolenaara859f042016-11-17 19:11:55 +01003082#if GTK_CHECK_VERSION(3,22,2)
3083 static void
3084drawarea_style_updated_cb(GtkWidget *widget UNUSED,
3085 gpointer data UNUSED)
3086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003088drawarea_style_set_cb(GtkWidget *widget UNUSED,
3089 GtkStyle *previous_style UNUSED,
3090 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01003091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 gui_mch_new_colors();
3094}
3095
Bram Moolenaar98921892016-02-23 17:14:37 +01003096#if GTK_CHECK_VERSION(3,0,0)
3097 static gboolean
3098drawarea_configure_event_cb(GtkWidget *widget,
3099 GdkEventConfigure *event,
3100 gpointer data UNUSED)
3101{
3102 static int cur_width = 0;
3103 static int cur_height = 0;
3104
3105 g_return_val_if_fail(event
3106 && event->width >= 1 && event->height >= 1, TRUE);
3107
Bram Moolenaar182707a2016-11-21 20:55:58 +01003108# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01003109 /* As of 3.22.2, GdkWindows have started distributing configure events to
3110 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
3111 *
3112 * As can be seen from the implementation of move_native_children() and
3113 * configure_native_child() in gdkwindow.c, those functions actually
3114 * propagate configure events to every child, failing to distinguish
3115 * "native" one from non-native one.
3116 *
3117 * Naturally, configure events propagated to here like that are fallacious
3118 * and, as a matter of fact, they trigger a geometric collapse of
3119 * gui.drawarea in fullscreen and miximized modes.
3120 *
3121 * To filter out such nuisance events, we are making use of the fact that
3122 * the field send_event of such GdkEventConfigures is set to FALSE in
3123 * configure_native_child().
3124 *
3125 * Obviously, this is a terrible hack making GVim depend on GTK's
3126 * implementation details. Therefore, watch out any relevant internal
3127 * changes happening in GTK in the feature (sigh).
3128 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01003129 /* Follow-up
3130 * After a few weeks later, the GdkWindow change mentioned above was
3131 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
3132 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01003133 if (event->send_event == FALSE)
3134 return TRUE;
3135# endif
3136
Bram Moolenaar98921892016-02-23 17:14:37 +01003137 if (event->width == cur_width && event->height == cur_height)
3138 return TRUE;
3139
3140 cur_width = event->width;
3141 cur_height = event->height;
3142
3143 if (gui.surface != NULL)
3144 cairo_surface_destroy(gui.surface);
3145
3146 gui.surface = gdk_window_create_similar_surface(
3147 gtk_widget_get_window(widget),
3148 CAIRO_CONTENT_COLOR_ALPHA,
3149 event->width, event->height);
3150
3151 gtk_widget_queue_draw(widget);
3152
3153 return TRUE;
3154}
3155#endif
3156
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157/*
3158 * Callback routine for the "delete_event" signal on the toplevel window.
3159 * Tries to vim gracefully, or refuses to exit with changed buffers.
3160 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003162delete_event_cb(GtkWidget *widget UNUSED,
3163 GdkEventAny *event UNUSED,
3164 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165{
3166 gui_shell_closed();
3167 return TRUE;
3168}
3169
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003170#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3171 static int
3172get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3173{
3174 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3175
Bram Moolenaar98921892016-02-23 17:14:37 +01003176# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003177 if (using_gnome && widget != NULL)
3178 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003179 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003180 BonoboDockItem *dockitem;
3181
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003182 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003183 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3184 {
3185 /* Only menu & toolbar are dock items. Could tabline be?
3186 * Seem to be only the 2 defined in GNOME */
3187 widget = parent;
3188 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003189
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003190 if (dockitem == NULL || dockitem->is_floating)
3191 return 0;
3192 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3193 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003195# endif
3196# if GTK_CHECK_VERSION(3,0,0)
3197 if (widget != NULL
3198 && item_orientation == orientation
3199 && gtk_widget_get_realized(widget)
3200 && gtk_widget_get_visible(widget))
3201# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003202 if (widget != NULL
3203 && item_orientation == orientation
3204 && GTK_WIDGET_REALIZED(widget)
3205 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003206# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003207 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003208# if GTK_CHECK_VERSION(3,0,0)
3209 GtkAllocation allocation;
3210
3211 gtk_widget_get_allocation(widget, &allocation);
3212
3213 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3214 return allocation.height;
3215 else
3216 return allocation.width;
3217# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003218 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3219 return widget->allocation.height;
3220 else
3221 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003222# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003223 }
3224 return 0;
3225}
3226#endif
3227
3228 static int
3229get_menu_tool_width(void)
3230{
3231 int width = 0;
3232
3233#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3234# ifdef FEAT_MENU
3235 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3236# endif
3237# ifdef FEAT_TOOLBAR
3238 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3239# endif
3240# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003241 if (gui.tabline != NULL)
3242 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003243# endif
3244#endif
3245
3246 return width;
3247}
3248
3249 static int
3250get_menu_tool_height(void)
3251{
3252 int height = 0;
3253
3254#ifdef FEAT_MENU
3255 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3256#endif
3257#ifdef FEAT_TOOLBAR
3258 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3259#endif
3260#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003261 if (gui.tabline != NULL)
3262 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003263#endif
3264
3265 return height;
3266}
3267
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003268/* This controls whether we can set the real window hints at
3269 * start-up when in a GtkPlug.
3270 * 0 = normal processing (default)
3271 * 1 = init. hints set, no-one's tried to reset since last check
3272 * 2 = init. hints set, attempt made to change hints
3273 */
3274static int init_window_hints_state = 0;
3275
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003276 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003277update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003278{
3279 static int old_width = 0;
3280 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003281 static int old_min_width = 0;
3282 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003283 static int old_char_width = 0;
3284 static int old_char_height = 0;
3285
3286 int width;
3287 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003288 int min_width;
3289 int min_height;
3290
3291 /* At start-up, don't try to set the hints until the initial
3292 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003293 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003294 */
3295 if (!(force_width && force_height) && init_window_hints_state > 0)
3296 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003297 /* Don't do it! */
3298 init_window_hints_state = 2;
3299 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003300 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003301
3302 /* This also needs to be done when the main window isn't there yet,
3303 * otherwise the hints don't work. */
3304 width = gui_get_base_width();
3305 height = gui_get_base_height();
3306# ifdef FEAT_MENU
3307 height += tabline_height() * gui.char_height;
3308# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003309 width += get_menu_tool_width();
3310 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003311
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003312 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003313 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003314 * 'set columns=' or init. -geom) we briefly set the min. to the size
3315 * we wish to be instead of the legitimate minimum so that we actually
3316 * resize correctly.
3317 */
3318 if (force_width && force_height)
3319 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003320 min_width = force_width;
3321 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003322 }
3323 else
3324 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003325 min_width = width + MIN_COLUMNS * gui.char_width;
3326 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003327 }
3328
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003329 /* Avoid an expose event when the size didn't change. */
3330 if (width != old_width
3331 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003332 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003333 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003334 || gui.char_width != old_char_width
3335 || gui.char_height != old_char_height)
3336 {
3337 GdkGeometry geometry;
3338 GdkWindowHints geometry_mask;
3339
3340 geometry.width_inc = gui.char_width;
3341 geometry.height_inc = gui.char_height;
3342 geometry.base_width = width;
3343 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003344 geometry.min_width = min_width;
3345 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003346 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3347 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003348 /* Using gui.formwin as geometry widget doesn't work as expected
3349 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3350 * in Vim confuse GTK+. */
3351 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3352 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003353 old_width = width;
3354 old_height = height;
3355 old_min_width = min_width;
3356 old_min_height = min_height;
3357 old_char_width = gui.char_width;
3358 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003359 }
3360}
3361
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362#ifdef FEAT_TOOLBAR
3363
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364/*
3365 * This extra effort wouldn't be necessary if we only used stock icons in the
3366 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3367 * shouldn't be treated differently, thus we do need this.
3368 */
3369 static void
3370icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3371{
3372 if (GTK_IS_IMAGE(widget))
3373 {
3374 GtkImage *image = (GtkImage *)widget;
3375
Bram Moolenaar98921892016-02-23 17:14:37 +01003376# if GTK_CHECK_VERSION(3,10,0)
3377 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3378 {
3379 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3380 const gchar *icon_name;
3381
3382 gtk_image_get_icon_name(image, &icon_name, NULL);
3383
3384 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3385 }
3386# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 /* User-defined icons are stored in a GtkIconSet */
3388 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3389 {
3390 GtkIconSet *icon_set;
3391 GtkIconSize icon_size;
3392
3393 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3394 icon_size = (GtkIconSize)(long)user_data;
3395
3396 gtk_icon_set_ref(icon_set);
3397 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3398 gtk_icon_set_unref(icon_set);
3399 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003400# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 }
3402 else if (GTK_IS_CONTAINER(widget))
3403 {
3404 gtk_container_foreach((GtkContainer *)widget,
3405 &icon_size_changed_foreach,
3406 user_data);
3407 }
3408}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409
3410 static void
3411set_toolbar_style(GtkToolbar *toolbar)
3412{
3413 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 GtkIconSize size;
3415 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3418 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3419 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003420 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3422 style = GTK_TOOLBAR_BOTH;
3423 else if (toolbar_flags & TOOLBAR_TEXT)
3424 style = GTK_TOOLBAR_TEXT;
3425 else
3426 style = GTK_TOOLBAR_ICONS;
3427
3428 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003429# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 switch (tbis_flags)
3434 {
3435 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3436 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3437 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3438 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003439 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3440 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 default: size = GTK_ICON_SIZE_INVALID; break;
3442 }
3443 oldsize = gtk_toolbar_get_icon_size(toolbar);
3444
3445 if (size == GTK_ICON_SIZE_INVALID)
3446 {
3447 /* Let global user preferences decide the icon size. */
3448 gtk_toolbar_unset_icon_size(toolbar);
3449 size = gtk_toolbar_get_icon_size(toolbar);
3450 }
3451 if (size != oldsize)
3452 {
3453 gtk_container_foreach(GTK_CONTAINER(toolbar),
3454 &icon_size_changed_foreach,
3455 GINT_TO_POINTER((int)size));
3456 }
3457 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458}
3459
3460#endif /* FEAT_TOOLBAR */
3461
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003462#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3463static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003464static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003465# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003466static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003467# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003468static int clicked_page; /* page clicked in tab line */
3469
3470/*
3471 * Handle selecting an item in the tab line popup menu.
3472 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003473 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003474tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003475{
Bram Moolenaara5621492006-02-25 21:55:24 +00003476 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003477 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003478}
3479
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003480 static void
3481add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3482{
3483 GtkWidget *item;
3484 char_u *utf_text;
3485
3486 utf_text = CONVERT_TO_UTF8(text);
3487 item = gtk_menu_item_new_with_label((const char *)utf_text);
3488 gtk_widget_show(item);
3489 CONVERT_TO_UTF8_FREE(utf_text);
3490
3491 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003492# if GTK_CHECK_VERSION(3,0,0)
3493 g_signal_connect(G_OBJECT(item), "activate",
3494 G_CALLBACK(tabline_menu_handler),
3495 GINT_TO_POINTER(resp));
3496# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003497 gtk_signal_connect(GTK_OBJECT(item), "activate",
3498 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003499 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003500# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003501}
3502
Bram Moolenaara5621492006-02-25 21:55:24 +00003503/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003504 * Create a menu for the tab line.
3505 */
3506 static GtkWidget *
3507create_tabline_menu(void)
3508{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003509 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003510
3511 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003512 if (first_tabpage->tp_next != NULL)
3513 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3514 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003515 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3516 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003517
3518 return menu;
3519}
3520
3521 static gboolean
3522on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3523{
3524 /* Was this button press event ? */
3525 if (event->type == GDK_BUTTON_PRESS)
3526 {
3527 GdkEventButton *bevent = (GdkEventButton *)event;
3528 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003529 int y = bevent->y;
3530 GtkWidget *tabwidget;
3531 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003532
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003533 /* When ignoring events return TRUE so that the selected page doesn't
3534 * change. */
3535 if (hold_gui_events
3536# ifdef FEAT_CMDWIN
3537 || cmdwin_type != 0
3538# endif
3539 )
3540 return TRUE;
3541
Bram Moolenaar98921892016-02-23 17:14:37 +01003542# if GTK_CHECK_VERSION(3,0,0)
3543 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3544# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003545 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003546# endif
3547
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003548 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003549# if GTK_CHECK_VERSION(3,0,0)
3550 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3551 "tab_num"));
3552# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003553 clicked_page = (int)(long)gtk_object_get_user_data(
3554 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003555# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003556
3557 /* If the event was generated for 3rd button popup the menu. */
3558 if (bevent->button == 3)
3559 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003560# if GTK_CHECK_VERSION(3,22,2)
3561 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3562# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003563 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3564 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003565# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003566 /* We handled the event. */
3567 return TRUE;
3568 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003569 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003570 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003571 if (clicked_page == 0)
3572 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003573 /* Click after all tabs moves to next tab page. When "x" is
3574 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003575 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003576 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003577 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003578 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003579
Bram Moolenaara5621492006-02-25 21:55:24 +00003580 /* We didn't handle the event. */
3581 return FALSE;
3582}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003583
3584/*
3585 * Handle selecting one of the tabs.
3586 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003587 static void
3588on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003589 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003590# if GTK_CHECK_VERSION(3,0,0)
3591 gpointer *page UNUSED,
3592# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003593 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003594# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003595 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003596 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003597{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003598 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003599 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003600 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003601 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003602}
3603
3604/*
3605 * Show or hide the tabline.
3606 */
3607 void
3608gui_mch_show_tabline(int showit)
3609{
3610 if (gui.tabline == NULL)
3611 return;
3612
3613 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3614 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003615 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003616 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003617 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003618 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003619# if GTK_CHECK_VERSION(3,0,0)
3620 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3621# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003622 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003623# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003624 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003625
3626 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003627}
3628
3629/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003630 * Return TRUE when tabline is displayed.
3631 */
3632 int
3633gui_mch_showing_tabline(void)
3634{
3635 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003636 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003637}
3638
3639/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003640 * Update the labels of the tabline.
3641 */
3642 void
3643gui_mch_update_tabline(void)
3644{
3645 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003646 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003647 GtkWidget *label;
3648 tabpage_T *tp;
3649 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003650 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003651 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003652 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003653
3654 if (gui.tabline == NULL)
3655 return;
3656
3657 ignore_tabline_evt = TRUE;
3658
3659 /* Add a label for each tab page. They all contain the same text area. */
3660 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3661 {
3662 if (tp == curtab)
3663 curtabidx = nr;
3664
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003665 tab_num = nr + 1;
3666
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003667 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3668 if (page == NULL)
3669 {
3670 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003671# if GTK_CHECK_VERSION(3,2,0)
3672 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3673 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3674# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003675 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003676# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003677 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003678 event_box = gtk_event_box_new();
3679 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003680 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003681# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003682 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003683# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003684 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003685 gtk_widget_show(label);
3686 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3687 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003688 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003689 nr++);
3690 }
3691
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003692 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003693# if GTK_CHECK_VERSION(3,0,0)
3694 g_object_set_data(G_OBJECT(event_box), "tab_num",
3695 GINT_TO_POINTER(tab_num));
3696# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003697 gtk_object_set_user_data(GTK_OBJECT(event_box),
3698 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003699# endif
3700# if GTK_CHECK_VERSION(3,0,0)
3701 label = gtk_bin_get_child(GTK_BIN(event_box));
3702# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003703 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003704# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003705 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003706 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003707 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003708 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003709
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003710 get_tabline_label(tp, TRUE);
3711 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003712# if GTK_CHECK_VERSION(3,0,0)
3713 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3714# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003715 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3716 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003717# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003718 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003719 }
3720
3721 /* Remove any old labels. */
3722 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3723 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3724
Bram Moolenaar98921892016-02-23 17:14:37 +01003725# if GTK_CHECK_VERSION(3,0,0)
3726 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3727 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3728# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003729 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003730 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003731# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003732
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003733 /* Make sure everything is in place before drawing text. */
3734 gui_mch_update();
3735
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003736 ignore_tabline_evt = FALSE;
3737}
3738
3739/*
3740 * Set the current tab to "nr". First tab is 1.
3741 */
3742 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003743gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003744{
3745 if (gui.tabline == NULL)
3746 return;
3747
3748 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003749# if GTK_CHECK_VERSION(3,0,0)
3750 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3751 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3752# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003753 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003754 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003755# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003756 ignore_tabline_evt = FALSE;
3757}
3758
3759#endif /* FEAT_GUI_TABLINE */
3760
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003762 * Add selection targets for PRIMARY and CLIPBOARD selections.
3763 */
3764 void
3765gui_gtk_set_selection_targets(void)
3766{
3767 int i, j = 0;
3768 int n_targets = N_SELECTION_TARGETS;
3769 GtkTargetEntry targets[N_SELECTION_TARGETS];
3770
3771 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3772 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003773 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003774 * return something, instead of trying another target. Therefore only
3775 * offer TARGET_HTML when it works. */
3776 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3777 n_targets--;
3778 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003779 targets[j++] = selection_targets[i];
3780 }
3781
3782 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3783 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3784 gtk_selection_add_targets(gui.drawarea,
3785 (GdkAtom)GDK_SELECTION_PRIMARY,
3786 targets, n_targets);
3787 gtk_selection_add_targets(gui.drawarea,
3788 (GdkAtom)clip_plus.gtk_sel_atom,
3789 targets, n_targets);
3790}
3791
3792/*
3793 * Set up for receiving DND items.
3794 */
3795 void
3796gui_gtk_set_dnd_targets(void)
3797{
3798 int i, j = 0;
3799 int n_targets = N_DND_TARGETS;
3800 GtkTargetEntry targets[N_DND_TARGETS];
3801
3802 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3803 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003804 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003805 n_targets--;
3806 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003807 targets[j++] = dnd_targets[i];
3808 }
3809
3810 gtk_drag_dest_unset(gui.drawarea);
3811 gtk_drag_dest_set(gui.drawarea,
3812 GTK_DEST_DEFAULT_ALL,
3813 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003814 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003815}
3816
3817/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3819 * Returns OK for success, FAIL when the GUI can't be started.
3820 */
3821 int
3822gui_mch_init(void)
3823{
3824 GtkWidget *vbox;
3825
3826#ifdef FEAT_GUI_GNOME
3827 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3828 * exits on failure, but that's a non-issue because we already called
3829 * gtk_init_check() in gui_mch_init_check(). */
3830 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003831 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3833 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003834# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003835 {
3836 char *p = setlocale(LC_NUMERIC, NULL);
3837
3838 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3839 * init may change it. */
3840 if (p == NULL || strcmp(p, "C") != 0)
3841 setlocale(LC_NUMERIC, "C");
3842 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003843# endif
3844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845#endif
3846 vim_free(gui_argv);
3847 gui_argv = NULL;
3848
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. */
3901#ifdef HAVE_GTK_MULTIHEAD
3902 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3903 gtk_socket_id);
3904#else
3905 plug = gtk_plug_new(gtk_socket_id);
3906#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003907#if GTK_CHECK_VERSION(3,0,0)
3908 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3909#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 {
3913 gui.mainwin = plug;
3914 }
3915 else
3916 {
3917 g_warning("Connection to GTK+ socket (ID %u) failed",
3918 (unsigned int)gtk_socket_id);
3919 /* Pretend we never wanted it if it failed (get own window) */
3920 gtk_socket_id = 0;
3921 }
3922 }
3923
3924 if (gtk_socket_id == 0)
3925 {
3926#ifdef FEAT_GUI_GNOME
3927 if (using_gnome)
3928 {
3929 gui.mainwin = gnome_app_new("Vim", NULL);
3930# ifdef USE_XSMP
3931 /* Use the GNOME save-yourself functionality now. */
3932 xsmp_close();
3933# endif
3934 }
3935 else
3936#endif
3937 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3938 }
3939
3940 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3941
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 /* Create the PangoContext used for drawing all text. */
3943 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3944 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945
Bram Moolenaar98921892016-02-23 17:14:37 +01003946#if GTK_CHECK_VERSION(3,0,0)
3947 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3948#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3952
Bram Moolenaar98921892016-02-23 17:14:37 +01003953#if GTK_CHECK_VERSION(3,0,0)
3954 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3955 G_CALLBACK(&delete_event_cb), NULL);
3956
3957 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3958 G_CALLBACK(&mainwin_realize), NULL);
3959#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3961 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3962
3963 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3964 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966#ifdef HAVE_GTK_MULTIHEAD
3967 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3968 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 gui.accel_group = gtk_accel_group_new();
3971 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003973 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003974#if GTK_CHECK_VERSION(3,2,0)
3975 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3976 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3977#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980
3981#ifdef FEAT_GUI_GNOME
3982 if (using_gnome)
3983 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003984# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 /* automagically restore menubar/toolbar placement */
3986 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3987# endif
3988 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3989 }
3990 else
3991#endif
3992 {
3993 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3994 gtk_widget_show(vbox);
3995 }
3996
3997#ifdef FEAT_MENU
3998 /*
3999 * Create the menubar and handle
4000 */
4001 gui.menubar = gtk_menu_bar_new();
4002 gtk_widget_set_name(gui.menubar, "vim-menubar");
4003
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004004 /* Avoid that GTK takes <F10> away from us. */
4005 {
4006 GtkSettings *gtk_settings;
4007
4008 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
4009 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
4010 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004011
4012
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013# ifdef FEAT_GUI_GNOME
4014 if (using_gnome)
4015 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 BonoboDockItem *dockitem;
4017
4018 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
4019 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4020 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00004021 /* We don't want the menu to float. */
4022 bonobo_dock_item_set_behavior(dockitem,
4023 bonobo_dock_item_get_behavior(dockitem)
4024 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 }
4027 else
4028# endif /* FEAT_GUI_GNOME */
4029 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00004030 /* Always show the menubar, otherwise <F10> doesn't work. It may be
4031 * disabled in gui_init() later. */
4032 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
4034 }
4035#endif /* FEAT_MENU */
4036
4037#ifdef FEAT_TOOLBAR
4038 /*
4039 * Create the toolbar and handle
4040 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004042# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004043 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004044 /* N.B. Since the default value of GtkToolbar::button-relief is
4045 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4046# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 gtk_rc_parse_string(
4048 "style \"vim-toolbar-style\" {\n"
4049 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4050 "}\n"
4051 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 gui.toolbar = gtk_toolbar_new();
4054 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4056
4057# ifdef FEAT_GUI_GNOME
4058 if (using_gnome)
4059 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 BonoboDockItem *dockitem;
4061
4062 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4063 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4064 GNOME_APP_TOOLBAR_NAME);
4065 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004066 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004067 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004068 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004069 bonobo_dock_item_get_behavior(dockitem)
4070 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 }
4073 else
4074# endif /* FEAT_GUI_GNOME */
4075 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4077 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4078 gtk_widget_show(gui.toolbar);
4079 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4080 }
4081#endif /* FEAT_TOOLBAR */
4082
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004083#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004084 /*
4085 * Use a Notebook for the tab pages labels. The labels are hidden by
4086 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004087 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004088 gui.tabline = gtk_notebook_new();
4089 gtk_widget_show(gui.tabline);
4090 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4091 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4092 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004093 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004094# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004095 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004096# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004097
Bram Moolenaar98921892016-02-23 17:14:37 +01004098# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004099 tabline_tooltip = gtk_tooltips_new();
4100 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004101# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004102
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004103 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004104 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004105
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004106 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004107# if GTK_CHECK_VERSION(3,2,0)
4108 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4109 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4110# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004111 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004112# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004113 gtk_widget_show(page);
4114 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4115 label = gtk_label_new("-Empty-");
4116 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004117 event_box = gtk_event_box_new();
4118 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004119# if GTK_CHECK_VERSION(3,0,0)
4120 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4121# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004122 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004123# endif
4124# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004125 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004126# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004127 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004128 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004129 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004130
Bram Moolenaar98921892016-02-23 17:14:37 +01004131# if GTK_CHECK_VERSION(3,0,0)
4132 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4133 G_CALLBACK(on_select_tab), NULL);
4134# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004135 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004136 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004137# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004138
4139 /* Create a popup menu for the tab line and connect it. */
4140 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004141# if GTK_CHECK_VERSION(3,0,0)
4142 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4143 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4144# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004145 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004146 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004147# endif
4148#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004149
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004151#if GTK_CHECK_VERSION(3,0,0)
4152 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4153#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004155#endif
4156#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159
4160 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01004161#if GTK_CHECK_VERSION(3,22,2)
4162 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
4163#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004164#if GTK_CHECK_VERSION(3,0,0)
4165 gui.surface = NULL;
4166 gui.by_signal = FALSE;
4167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168
4169 /* Determine which events we will filter. */
4170 gtk_widget_set_events(gui.drawarea,
4171 GDK_EXPOSURE_MASK |
4172 GDK_ENTER_NOTIFY_MASK |
4173 GDK_LEAVE_NOTIFY_MASK |
4174 GDK_BUTTON_PRESS_MASK |
4175 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 GDK_KEY_PRESS_MASK |
4178 GDK_KEY_RELEASE_MASK |
4179 GDK_POINTER_MOTION_MASK |
4180 GDK_POINTER_MOTION_HINT_MASK);
4181
4182 gtk_widget_show(gui.drawarea);
4183 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4184 gtk_widget_show(gui.formwin);
4185 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4186
4187 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4188 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004189#if GTK_CHECK_VERSION(3,0,0)
4190 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4191 : G_OBJECT(gui.drawarea),
4192 "key-press-event",
4193 G_CALLBACK(key_press_event), NULL);
4194#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4196 : GTK_OBJECT(gui.drawarea),
4197 "key_press_event",
4198 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004199#endif
4200#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 /* Also forward key release events for the benefit of GTK+ 2 input
4202 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4203 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4204 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004205 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 G_CALLBACK(&key_release_event), NULL);
4207#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004208#if GTK_CHECK_VERSION(3,0,0)
4209 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4210 G_CALLBACK(drawarea_realize_cb), NULL);
4211 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4212 G_CALLBACK(drawarea_unrealize_cb), NULL);
4213 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4214 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004215# if GTK_CHECK_VERSION(3,22,2)
4216 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
4217 G_CALLBACK(&drawarea_style_updated_cb), NULL);
4218# else
Bram Moolenaar98921892016-02-23 17:14:37 +01004219 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4220 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004221# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004222#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4224 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4225 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4226 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4227
4228 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4229 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004230#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
Bram Moolenaar98921892016-02-23 17:14:37 +01004232#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004234#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235
4236#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4237 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4238 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4239#endif
4240
4241 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004242 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004243#if GTK_CHECK_VERSION(3,0,0)
4244 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4245#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248
4249 /*
4250 * Set clipboard specific atoms
4251 */
4252 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4255 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4256
4257 /*
4258 * Start out by adding the configured border width into the border offset.
4259 */
4260 gui.border_offset = gui.border_width;
4261
Bram Moolenaar98921892016-02-23 17:14:37 +01004262#if GTK_CHECK_VERSION(3,0,0)
4263 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4264 G_CALLBACK(draw_event), NULL);
4265#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4267 GTK_SIGNAL_FUNC(visibility_event), NULL);
4268 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4269 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004270#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271
4272 /*
4273 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4274 * Only needed for some window managers.
4275 */
4276 if (vim_strchr(p_go, GO_POINTER) != NULL)
4277 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004278#if GTK_CHECK_VERSION(3,0,0)
4279 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4280 G_CALLBACK(leave_notify_event), NULL);
4281 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4282 G_CALLBACK(enter_notify_event), NULL);
4283#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4285 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4286 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4287 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 }
4290
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004291 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4292 * only its widgets. Arguably, this could be common code and we not use
4293 * the window focus at all, but let's be safe.
4294 */
4295 if (gtk_socket_id == 0)
4296 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004297#if GTK_CHECK_VERSION(3,0,0)
4298 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4299 G_CALLBACK(focus_out_event), NULL);
4300 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4301 G_CALLBACK(focus_in_event), NULL);
4302#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004303 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4304 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4305 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4306 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004307#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004308 }
4309 else
4310 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004311#if GTK_CHECK_VERSION(3,0,0)
4312 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4313 G_CALLBACK(focus_out_event), NULL);
4314 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4315 G_CALLBACK(focus_in_event), NULL);
4316#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004317 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4318 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4319 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4320 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004321#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004322#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004323# if GTK_CHECK_VERSION(3,0,0)
4324 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4325 G_CALLBACK(focus_out_event), NULL);
4326 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4327 G_CALLBACK(focus_in_event), NULL);
4328# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004329 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4330 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4331 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4332 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004333# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004334#endif /* FEAT_GUI_TABLINE */
4335 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336
Bram Moolenaar98921892016-02-23 17:14:37 +01004337#if GTK_CHECK_VERSION(3,0,0)
4338 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4339 G_CALLBACK(motion_notify_event), NULL);
4340 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4341 G_CALLBACK(button_press_event), NULL);
4342 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4343 G_CALLBACK(button_release_event), NULL);
4344 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4345 G_CALLBACK(&scroll_event), NULL);
4346#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4348 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4349 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4350 GTK_SIGNAL_FUNC(button_press_event), NULL);
4351 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4352 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4354 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004355#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356
4357 /*
4358 * Add selection handler functions.
4359 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004360#if GTK_CHECK_VERSION(3,0,0)
4361 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4362 G_CALLBACK(selection_clear_event), NULL);
4363 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4364 G_CALLBACK(selection_received_cb), NULL);
4365#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4367 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4368 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4369 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004370#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371
Bram Moolenaara76638f2010-06-05 12:49:46 +02004372 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373
Bram Moolenaar98921892016-02-23 17:14:37 +01004374#if GTK_CHECK_VERSION(3,0,0)
4375 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4376 G_CALLBACK(selection_get_cb), NULL);
4377#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4379 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381
4382 /* Pretend we don't have input focus, we will get an event if we do. */
4383 gui.in_focus = FALSE;
4384
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 return OK;
4386}
4387
4388#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4389/*
4390 * This is called from gui_start() after a fork() has been done.
4391 * We have to tell the session manager our new PID.
4392 */
4393 void
4394gui_mch_forked(void)
4395{
4396 if (using_gnome)
4397 {
4398 GnomeClient *client;
4399
4400 client = gnome_master_client();
4401
4402 if (client != NULL)
4403 gnome_client_set_process_id(client, getpid());
4404 }
4405}
4406#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4407
Bram Moolenaar98921892016-02-23 17:14:37 +01004408#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004409 static GdkRGBA
4410color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004411{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004412 GdkRGBA rgba;
4413 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4414 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4415 rgba.blue = ((color & 0xff)) / 255.0;
4416 rgba.alpha = 1.0;
4417 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004418}
4419
4420 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004421set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004422{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004423 const GdkRGBA rgba = color_to_rgba(color);
4424 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004425}
4426#endif /* GTK_CHECK_VERSION(3,0,0) */
4427
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428/*
4429 * Called when the foreground or background color has been changed.
4430 * This used to change the graphics contexts directly but we are
4431 * currently manipulating them where desired.
4432 */
4433 void
4434gui_mch_new_colors(void)
4435{
Bram Moolenaar98921892016-02-23 17:14:37 +01004436#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaara859f042016-11-17 19:11:55 +01004437# if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar98921892016-02-23 17:14:37 +01004438 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaara859f042016-11-17 19:11:55 +01004439# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004440
4441 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4442#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 {
Bram Moolenaara859f042016-11-17 19:11:55 +01004446#if GTK_CHECK_VERSION(3,22,2)
4447 GtkStyleContext * const context
4448 = gtk_widget_get_style_context(gui.drawarea);
4449 GtkCssProvider * const provider = gtk_css_provider_new();
4450 gchar * const css = g_strdup_printf(
4451 "widget#vim-gui-drawarea {\n"
4452 " background-color: #%.2lx%.2lx%.2lx;\n"
4453 "}\n",
4454 (gui.back_pixel >> 16) & 0xff,
4455 (gui.back_pixel >> 8) & 0xff,
4456 gui.back_pixel & 0xff);
4457
4458 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4459 gtk_style_context_add_provider(context,
4460 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4461
4462 g_free(css);
4463 g_object_unref(provider);
4464#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004465 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004466
Bram Moolenaar36edf062016-07-21 22:10:12 +02004467 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004468 {
4469 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004470 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004471 if (pat != NULL)
4472 {
4473 gdk_window_set_background_pattern(da_win, pat);
4474 cairo_pattern_destroy(pat);
4475 }
4476 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004477 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004478 }
4479#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 GdkColor color = { 0, 0, 0, 0 };
4481
4482 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004483# if GTK_CHECK_VERSION(3,0,0)
4484 gdk_window_set_background(da_win, &color);
4485# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004487# endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004488#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 }
4490}
4491
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492/*
4493 * This signal informs us about the need to rearrange our sub-widgets.
4494 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004496form_configure_event(GtkWidget *widget UNUSED,
4497 GdkEventConfigure *event,
4498 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004500 int usable_height = event->height;
4501
Bram Moolenaar182707a2016-11-21 20:55:58 +01004502#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004503 /* As of 3.22.2, GdkWindows have started distributing configure events to
4504 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4505 *
4506 * As can be seen from the implementation of move_native_children() and
4507 * configure_native_child() in gdkwindow.c, those functions actually
4508 * propagate configure events to every child, failing to distinguish
4509 * "native" one from non-native one.
4510 *
4511 * Naturally, configure events propagated to here like that are fallacious
4512 * and, as a matter of fact, they trigger a geometric collapse of
4513 * gui.formwin.
4514 *
4515 * To filter out such fallacious events, check if the given event is the
4516 * one that was sent out to the right place. Ignore it if not.
4517 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004518 /* Follow-up
4519 * After a few weeks later, the GdkWindow change mentioned above was
4520 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4521 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004522 if (event->window != gtk_widget_get_window(gui.formwin))
4523 return TRUE;
4524#endif
4525
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004526 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4527 * no. of char-heights), so we have to manually sanitise them.
4528 * Widths seem to sort themselves out, don't ask me why.
4529 */
4530 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004531 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004532
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004534 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 gtk_form_thaw(GTK_FORM(gui.formwin));
4536
4537 return TRUE;
4538}
4539
4540/*
4541 * Function called when window already closed.
4542 * We can't do much more here than to trying to preserve what had been done,
4543 * since the window is already inevitably going away.
4544 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004545#if GTK_CHECK_VERSION(3,0,0)
4546 static void
4547mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4548#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004550mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552{
4553 /* Don't write messages to the GUI anymore */
4554 full_screen = FALSE;
4555
4556 gui.mainwin = NULL;
4557 gui.drawarea = NULL;
4558
4559 if (!exiting) /* only do anything if the destroy was unexpected */
4560 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004561 vim_strncpy(IObuff,
4562 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4563 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 preserve_exit();
4565 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004566#ifdef USE_GRESOURCE
4567 gui_gtk_unregister_resource();
4568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569}
4570
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004571
4572/*
4573 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4574 * hints (and thus the required size from -geom), but that after that we
4575 * put the hints back to normal (the actual minimum size) so we may
4576 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004577 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004578 * only way we have of making ourselves bigger (by set lines/columns).
4579 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004580 * second after the final attempt to reset the real minimum hints (done by
4581 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004582 * We'll not let the default hints be set while this timer's active.
4583 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004584 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004585check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004586{
4587 if (init_window_hints_state == 1)
4588 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004589 /* Safe to use normal hints now */
4590 init_window_hints_state = 0;
4591 update_window_manager_hints(0, 0);
4592 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004593 }
4594
4595 /* Keep on trying */
4596 init_window_hints_state = 1;
4597 return TRUE;
4598}
4599
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600/*
4601 * Open the GUI window which was created by a call to gui_mch_init().
4602 */
4603 int
4604gui_mch_open(void)
4605{
4606 guicolor_T fg_pixel = INVALCOLOR;
4607 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004608 guint pixel_width;
4609 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 /*
4612 * Allow setting a window role on the command line, or invent one
4613 * if none was specified. This is mainly useful for GNOME session
4614 * support; allowing the WM to restore window placement.
4615 */
4616 if (role_argument != NULL)
4617 {
4618 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4619 }
4620 else
4621 {
4622 char *role;
4623
4624 /* Invent a unique-enough ID string for the role */
4625 role = g_strdup_printf("vim-%u-%u-%u",
4626 (unsigned)mch_get_pid(),
4627 (unsigned)g_random_int(),
4628 (unsigned)time(NULL));
4629
4630 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4631 g_free(role);
4632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
4634 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
4637 /* Determine user specified geometry, if present. */
4638 if (gui.geom != NULL)
4639 {
4640 int mask;
4641 unsigned int w, h;
4642 int x = 0;
4643 int y = 0;
4644
4645 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4646
4647 if (mask & WidthValue)
4648 Columns = w;
4649 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004650 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004651 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004652 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004654 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004655 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004656
4657 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4658 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4659
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004660 pixel_width += get_menu_tool_width();
4661 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004662
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004664 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004665 int ww, hh;
4666 gui_mch_get_screen_dimensions(&ww, &hh);
4667 hh += p_ghr + get_menu_tool_height();
4668 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004669 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004670 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004671 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004672 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 vim_free(gui.geom);
4676 gui.geom = NULL;
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;
4687 g_timeout_add(1000, check_startup_plug_hints, NULL);
4688 }
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 Moolenaar12bc1b52011-08-10 17:44:45 +02004916 * Called when the font changed while the window is maximized. Compute the
4917 * new Rows and Columns. This is like resizing the window.
4918 */
4919 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004920gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004921{
4922 int w, h;
4923
4924 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4925 w -= get_menu_tool_width();
4926 h -= get_menu_tool_height();
4927 gui_resize_shell(w, h);
4928}
4929
4930/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 * Set the windows size.
4932 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 void
4934gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004935 int min_width UNUSED, int min_height UNUSED,
4936 int base_width UNUSED, int base_height UNUSED,
4937 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 /* give GTK+ a chance to put all widget's into place */
4940 gui_mch_update();
4941
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004942 /* this will cause the proper resizement to happen too */
4943 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004944 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004945
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004947 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 * main window instead. */
4949 width += get_menu_tool_width();
4950 height += get_menu_tool_height();
4951
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004952 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004953 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004954 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004955 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956
Bram Moolenaar98921892016-02-23 17:14:37 +01004957# if !GTK_CHECK_VERSION(3,0,0)
4958# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 if (!resize_idle_installed)
4960 {
4961 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4962 &force_shell_resize_idle, NULL, NULL);
4963 resize_idle_installed = TRUE;
4964 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004965# endif
4966# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 /*
4968 * Wait until all events are processed to prevent a crash because the
4969 * real size of the drawing area doesn't reflect Vim's internal ideas.
4970 *
4971 * This is a bit of a hack, since Vim is a terminal application with a GUI
4972 * on top, while the GUI expects to be the boss.
4973 */
4974 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975}
4976
4977
4978/*
4979 * The screen size is used to make sure the initial window doesn't get bigger
4980 * than the screen. This subtracts some room for menubar, toolbar and window
4981 * decorations.
4982 */
4983 void
4984gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4985{
4986#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaara859f042016-11-17 19:11:55 +01004987# if GTK_CHECK_VERSION(3,22,2)
4988 GdkRectangle rect;
4989 GdkMonitor * const mon = gdk_display_get_monitor_at_window(
4990 gtk_widget_get_display(gui.mainwin),
4991 gtk_widget_get_window(gui.mainwin));
4992 gdk_monitor_get_geometry(mon, &rect);
4993
4994 *screen_w = rect.width;
4995 *screen_h = rect.height - p_ghr;
4996# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 GdkScreen* screen;
4998
4999 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
5000 screen = gtk_widget_get_screen(gui.mainwin);
5001 else
5002 screen = gdk_screen_get_default();
5003
5004 *screen_w = gdk_screen_get_width(screen);
5005 *screen_h = gdk_screen_get_height(screen) - p_ghr;
Bram Moolenaara859f042016-11-17 19:11:55 +01005006# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007#else
5008 *screen_w = gdk_screen_width();
5009 /* Subtract 'guiheadroom' from the height to allow some room for the
5010 * window manager (task list and window title bar). */
5011 *screen_h = gdk_screen_height() - p_ghr;
5012#endif
5013
5014 /*
5015 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
5016 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02005017 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 * This should be completely changed later.
5019 */
5020 *screen_w -= get_menu_tool_width();
5021 *screen_h -= get_menu_tool_height();
5022}
5023
5024#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005026gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 if (title != NULL && output_conv.vc_type != CONV_NONE)
5029 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030
5031 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
5032
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 if (output_conv.vc_type != CONV_NONE)
5034 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035}
5036#endif /* FEAT_TITLE */
5037
5038#if defined(FEAT_MENU) || defined(PROTO)
5039 void
5040gui_mch_enable_menu(int showit)
5041{
5042 GtkWidget *widget;
5043
5044# ifdef FEAT_GUI_GNOME
5045 if (using_gnome)
5046 widget = gui.menubar_h;
5047 else
5048# endif
5049 widget = gui.menubar;
5050
Bram Moolenaar18144c82006-04-12 21:52:12 +00005051 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005052# if GTK_CHECK_VERSION(3,0,0)
5053 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
5054# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00005055 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01005056# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 {
5058 if (showit)
5059 gtk_widget_show(widget);
5060 else
5061 gtk_widget_hide(widget);
5062
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005063 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 }
5065}
5066#endif /* FEAT_MENU */
5067
5068#if defined(FEAT_TOOLBAR) || defined(PROTO)
5069 void
5070gui_mch_show_toolbar(int showit)
5071{
5072 GtkWidget *widget;
5073
5074 if (gui.toolbar == NULL)
5075 return;
5076
5077# ifdef FEAT_GUI_GNOME
5078 if (using_gnome)
5079 widget = gui.toolbar_h;
5080 else
5081# endif
5082 widget = gui.toolbar;
5083
5084 if (showit)
5085 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5086
Bram Moolenaar98921892016-02-23 17:14:37 +01005087# if GTK_CHECK_VERSION(3,0,0)
5088 if (!showit != !gtk_widget_get_visible(widget))
5089# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005091# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 {
5093 if (showit)
5094 gtk_widget_show(widget);
5095 else
5096 gtk_widget_hide(widget);
5097
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005098 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 }
5100}
5101#endif /* FEAT_TOOLBAR */
5102
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103/*
5104 * Check if a given font is a CJK font. This is done in a very crude manner. It
5105 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5106 * font. Consequently, this function cannot be used as a general purpose check
5107 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5108 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5109 */
5110 static int
5111is_cjk_font(PangoFontDescription *font_desc)
5112{
5113 static const char * const cjk_langs[] =
5114 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5115
5116 PangoFont *font;
5117 unsigned i;
5118 int is_cjk = FALSE;
5119
5120 font = pango_context_load_font(gui.text_context, font_desc);
5121
5122 if (font == NULL)
5123 return FALSE;
5124
5125 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5126 {
5127 PangoCoverage *coverage;
5128 gunichar uc;
5129
5130 coverage = pango_font_get_coverage(
5131 font, pango_language_from_string(cjk_langs[i]));
5132
5133 if (coverage != NULL)
5134 {
5135 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5136 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5137 pango_coverage_unref(coverage);
5138 }
5139 }
5140
5141 g_object_unref(font);
5142
5143 return is_cjk;
5144}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
Bram Moolenaar231334e2005-07-25 20:46:57 +00005146/*
5147 * Adjust gui.char_height (after 'linespace' was changed).
5148 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005150gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 PangoFontMetrics *metrics;
5153 int ascent;
5154 int descent;
5155
5156 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5157 pango_context_get_language(gui.text_context));
5158 ascent = pango_font_metrics_get_ascent(metrics);
5159 descent = pango_font_metrics_get_descent(metrics);
5160
5161 pango_font_metrics_unref(metrics);
5162
5163 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005164 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005165 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5167
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 /* A not-positive value of char_height may crash Vim. Only happens
5169 * if 'linespace' is negative (which does make sense sometimes). */
5170 gui.char_ascent = MAX(gui.char_ascent, 0);
5171 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5172
5173 return OK;
5174}
5175
Bram Moolenaar98921892016-02-23 17:14:37 +01005176#if GTK_CHECK_VERSION(3,0,0)
5177/* Callback function used in gui_mch_font_dialog() */
5178 static gboolean
5179font_filter(const PangoFontFamily *family,
5180 const PangoFontFace *face UNUSED,
5181 gpointer data UNUSED)
5182{
5183 return pango_font_family_is_monospace((PangoFontFamily *)family);
5184}
5185#endif
5186
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187/*
5188 * Put up a font dialog and return the selected font name in allocated memory.
5189 * "oldval" is the previous value. Return NULL when cancelled.
5190 * This should probably go into gui_gtk.c. Hmm.
5191 * FIXME:
5192 * The GTK2 font selection dialog has no filtering API. So we could either
5193 * a) implement our own (possibly copying the code from somewhere else) or
5194 * b) just live with it.
5195 */
5196 char_u *
5197gui_mch_font_dialog(char_u *oldval)
5198{
5199 GtkWidget *dialog;
5200 int response;
5201 char_u *fontname = NULL;
5202 char_u *oldname;
5203
Bram Moolenaar98921892016-02-23 17:14:37 +01005204#if GTK_CHECK_VERSION(3,2,0)
5205 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5206 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5207 NULL, NULL);
5208#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005210#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211
5212 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5213 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5214
5215 if (oldval != NULL && oldval[0] != NUL)
5216 {
5217 if (output_conv.vc_type != CONV_NONE)
5218 oldname = string_convert(&output_conv, oldval, NULL);
5219 else
5220 oldname = oldval;
5221
5222 /* Annoying bug in GTK (or Pango): if the font name does not include a
5223 * size, zero is used. Use default point size ten. */
5224 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5225 {
5226 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5227
5228 if (p != NULL)
5229 {
5230 STRCPY(p + STRLEN(p), " 10");
5231 if (oldname != oldval)
5232 vim_free(oldname);
5233 oldname = p;
5234 }
5235 }
5236
Bram Moolenaar98921892016-02-23 17:14:37 +01005237#if GTK_CHECK_VERSION(3,2,0)
5238 gtk_font_chooser_set_font(
5239 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5240#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 gtk_font_selection_dialog_set_font_name(
5242 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005243#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244
5245 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005246 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005248 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005249#if GTK_CHECK_VERSION(3,2,0)
5250 gtk_font_chooser_set_font(
5251 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5252#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005253 gtk_font_selection_dialog_set_font_name(
5254 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256
5257 response = gtk_dialog_run(GTK_DIALOG(dialog));
5258
5259 if (response == GTK_RESPONSE_OK)
5260 {
5261 char *name;
5262
Bram Moolenaar98921892016-02-23 17:14:37 +01005263#if GTK_CHECK_VERSION(3,2,0)
5264 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5265#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 name = gtk_font_selection_dialog_get_font_name(
5267 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005268#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 if (name != NULL)
5270 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005271 char_u *p;
5272
5273 /* Apparently some font names include a comma, need to escape
5274 * that, because in 'guifont' it separates names. */
5275 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005277 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005278 {
5279 fontname = string_convert(&input_conv, p, NULL);
5280 vim_free(p);
5281 }
5282 else
5283 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 }
5285 }
5286
5287 if (response != GTK_RESPONSE_NONE)
5288 gtk_widget_destroy(dialog);
5289
5290 return fontname;
5291}
5292
5293/*
5294 * Some monospace fonts don't support a bold weight, and fall back
5295 * silently to the regular weight. But this is no good since our text
5296 * drawing function can emulate bold by overstriking. So let's try
5297 * to detect whether bold weight is actually available and emulate it
5298 * otherwise.
5299 *
5300 * Note that we don't need to check for italic style since Xft can
5301 * emulate italic on its own, provided you have a proper fontconfig
5302 * setup. We wouldn't be able to emulate it in Vim anyway.
5303 */
5304 static void
5305get_styled_font_variants(void)
5306{
5307 PangoFontDescription *bold_font_desc;
5308 PangoFont *plain_font;
5309 PangoFont *bold_font;
5310
5311 gui.font_can_bold = FALSE;
5312
5313 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5314
5315 if (plain_font == NULL)
5316 return;
5317
5318 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5319 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5320
5321 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5322 /*
5323 * The comparison relies on the unique handle nature of a PangoFont*,
5324 * i.e. it's assumed that a different PangoFont* won't refer to the
5325 * same font. Seems to work, and failing here isn't critical anyway.
5326 */
5327 if (bold_font != NULL)
5328 {
5329 gui.font_can_bold = (bold_font != plain_font);
5330 g_object_unref(bold_font);
5331 }
5332
5333 pango_font_description_free(bold_font_desc);
5334 g_object_unref(plain_font);
5335}
5336
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337static PangoEngineShape *default_shape_engine = NULL;
5338
5339/*
5340 * Create a map from ASCII characters in the range [32,126] to glyphs
5341 * of the current font. This is used by gui_gtk2_draw_string() to skip
5342 * the itemize and shaping process for the most common case.
5343 */
5344 static void
5345ascii_glyph_table_init(void)
5346{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005347 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 PangoAttrList *attr_list;
5349 GList *item_list;
5350 int i;
5351
5352 if (gui.ascii_glyphs != NULL)
5353 pango_glyph_string_free(gui.ascii_glyphs);
5354 if (gui.ascii_font != NULL)
5355 g_object_unref(gui.ascii_font);
5356
5357 gui.ascii_glyphs = NULL;
5358 gui.ascii_font = NULL;
5359
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005360 /* For safety, fill in question marks for the control characters.
5361 * Put a space between characters to avoid shaping. */
5362 for (i = 0; i < 128; ++i)
5363 {
5364 if (i >= 32 && i < 127)
5365 ascii_chars[2 * i] = i;
5366 else
5367 ascii_chars[2 * i] = '?';
5368 ascii_chars[2 * i + 1] = ' ';
5369 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370
5371 attr_list = pango_attr_list_new();
5372 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5373 0, sizeof(ascii_chars), attr_list, NULL);
5374
5375 if (item_list != NULL && item_list->next == NULL) /* play safe */
5376 {
5377 PangoItem *item;
5378 int width;
5379
5380 item = (PangoItem *)item_list->data;
5381 width = gui.char_width * PANGO_SCALE;
5382
5383 /* Remember the shape engine used for ASCII. */
5384 default_shape_engine = item->analysis.shape_engine;
5385
5386 gui.ascii_font = item->analysis.font;
5387 g_object_ref(gui.ascii_font);
5388
5389 gui.ascii_glyphs = pango_glyph_string_new();
5390
5391 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5392 &item->analysis, gui.ascii_glyphs);
5393
5394 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5395
5396 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5397 {
5398 PangoGlyphGeometry *geom;
5399
5400 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5401 geom->x_offset += MAX(0, width - geom->width) / 2;
5402 geom->width = width;
5403 }
5404 }
5405
5406 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5407 g_list_free(item_list);
5408 pango_attr_list_unref(attr_list);
5409}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410
5411/*
5412 * Initialize Vim to use the font or fontset with the given name.
5413 * Return FAIL if the font could not be loaded, OK otherwise.
5414 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005416gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 PangoFontDescription *font_desc;
5419 PangoLayout *layout;
5420 int width;
5421
5422 /* If font_name is NULL, this means to use the default, which should
5423 * be present on all proper Pango/fontconfig installations. */
5424 if (font_name == NULL)
5425 font_name = (char_u *)DEFAULT_FONT;
5426
5427 font_desc = gui_mch_get_font(font_name, FALSE);
5428
5429 if (font_desc == NULL)
5430 return FAIL;
5431
5432 gui_mch_free_font(gui.norm_font);
5433 gui.norm_font = font_desc;
5434
5435 pango_context_set_font_description(gui.text_context, font_desc);
5436
5437 layout = pango_layout_new(gui.text_context);
5438 pango_layout_set_text(layout, "MW", 2);
5439 pango_layout_get_size(layout, &width, NULL);
5440 /*
5441 * Set char_width to half the width obtained from pango_layout_get_size()
5442 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5443 * Pango to use the same width for both non-CJK characters (e.g. Latin
5444 * letters and numbers) and CJK characters. This results in 's p a c e d
5445 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5446 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5447 * width for CJK fonts.
5448 *
5449 * For related bugs, see:
5450 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5451 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5452 *
5453 * With this, for all four of the following cases, Vim works fine:
5454 * guifont=CJK_fixed_width_font
5455 * guifont=Non_CJK_fixed_font
5456 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5457 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5458 */
5459 if (is_cjk_font(gui.norm_font))
5460 {
5461 int cjk_width;
5462
5463 /* Measure the text extent of U+4E00 and U+4E8C */
5464 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5465 pango_layout_get_size(layout, &cjk_width, NULL);
5466
5467 if (width == cjk_width) /* Xft not patched */
5468 width /= 2;
5469 }
5470 g_object_unref(layout);
5471
5472 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5473
5474 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5475 if (gui.char_width <= 0)
5476 gui.char_width = 8;
5477
Bram Moolenaar231334e2005-07-25 20:46:57 +00005478 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479
5480 /* Set the fontname, which will be used for information purposes */
5481 hl_set_font_name(font_name);
5482
5483 get_styled_font_variants();
5484 ascii_glyph_table_init();
5485
5486 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5487 if (gui.wide_font != NULL
5488 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5489 {
5490 pango_font_description_free(gui.wide_font);
5491 gui.wide_font = NULL;
5492 }
5493
Bram Moolenaare161c792009-11-03 17:13:59 +00005494 if (gui_mch_maximized())
5495 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005496 /* Update lines and columns in accordance with the new font, keep the
5497 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005498 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005499 }
5500 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005501 {
5502 /* Preserve the logical dimensions of the screen. */
5503 update_window_manager_hints(0, 0);
5504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505
5506 return OK;
5507}
5508
5509/*
5510 * Get a reference to the font "name".
5511 * Return zero for failure.
5512 */
5513 GuiFont
5514gui_mch_get_font(char_u *name, int report_error)
5515{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517
5518 /* can't do this when GUI is not running */
5519 if (!gui.in_use || name == NULL)
5520 return NULL;
5521
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 if (output_conv.vc_type != CONV_NONE)
5523 {
5524 char_u *buf;
5525
5526 buf = string_convert(&output_conv, name, NULL);
5527 if (buf != NULL)
5528 {
5529 font = pango_font_description_from_string((const char *)buf);
5530 vim_free(buf);
5531 }
5532 else
5533 font = NULL;
5534 }
5535 else
5536 font = pango_font_description_from_string((const char *)name);
5537
5538 if (font != NULL)
5539 {
5540 PangoFont *real_font;
5541
5542 /* pango_context_load_font() bails out if no font size is set */
5543 if (pango_font_description_get_size(font) <= 0)
5544 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5545
5546 real_font = pango_context_load_font(gui.text_context, font);
5547
5548 if (real_font == NULL)
5549 {
5550 pango_font_description_free(font);
5551 font = NULL;
5552 }
5553 else
5554 g_object_unref(real_font);
5555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556
5557 if (font == NULL)
5558 {
5559 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005560 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 return NULL;
5562 }
5563
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 return font;
5565}
5566
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005567#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005568/*
5569 * Return the name of font "font" in allocated memory.
5570 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005571 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005572gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005573{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005574 if (font != NOFONT)
5575 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005576 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005577
Bram Moolenaar89d40322006-08-29 15:30:07 +00005578 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005579 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005580 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005581
Bram Moolenaar89d40322006-08-29 15:30:07 +00005582 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005583 return s;
5584 }
5585 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005586 return NULL;
5587}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005588#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005589
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590/*
5591 * If a font is not going to be used, free its structure.
5592 */
5593 void
5594gui_mch_free_font(GuiFont font)
5595{
5596 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598}
5599
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005601 * Return the Pixel value (color) for the given color name.
5602 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 * Return INVALCOLOR for error.
5604 */
5605 guicolor_T
5606gui_mch_get_color(char_u *name)
5607{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 if (!gui.in_use) /* can't do this when GUI not running */
5609 return INVALCOLOR;
5610
Bram Moolenaar98921892016-02-23 17:14:37 +01005611#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005612 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR;
Bram Moolenaar98921892016-02-23 17:14:37 +01005613#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005614 guicolor_T color;
5615 GdkColor gcolor;
5616 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617
Bram Moolenaar36edf062016-07-21 22:10:12 +02005618 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR;
5619 if (color == INVALCOLOR)
5620 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621
Bram Moolenaar36edf062016-07-21 22:10:12 +02005622 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5);
5623 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5);
5624 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625
Bram Moolenaar36edf062016-07-21 22:10:12 +02005626 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5627 &gcolor, FALSE, TRUE);
5628
5629 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5630#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631}
5632
5633/*
5634 * Set the current text foreground color.
5635 */
5636 void
5637gui_mch_set_fg_color(guicolor_T color)
5638{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005639#if GTK_CHECK_VERSION(3,0,0)
5640 *gui.fgcolor = color_to_rgba(color);
5641#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005643#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644}
5645
5646/*
5647 * Set the current text background color.
5648 */
5649 void
5650gui_mch_set_bg_color(guicolor_T color)
5651{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005652#if GTK_CHECK_VERSION(3,0,0)
5653 *gui.bgcolor = color_to_rgba(color);
5654#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657}
5658
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005659/*
5660 * Set the current text special color.
5661 */
5662 void
5663gui_mch_set_sp_color(guicolor_T color)
5664{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005665#if GTK_CHECK_VERSION(3,0,0)
5666 *gui.spcolor = color_to_rgba(color);
5667#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005668 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005669#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005670}
5671
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672/*
5673 * Function-like convenience macro for the sake of efficiency.
5674 */
5675#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5676 G_STMT_START{ \
5677 PangoAttribute *tmp_attr_; \
5678 tmp_attr_ = (Attribute); \
5679 tmp_attr_->start_index = (Start); \
5680 tmp_attr_->end_index = (End); \
5681 pango_attr_list_insert((AttrList), tmp_attr_); \
5682 }G_STMT_END
5683
5684 static void
5685apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5686{
5687 char_u *start = NULL;
5688 char_u *p;
5689 int uc;
5690
5691 for (p = s; p < s + len; p += utf_byte2len(*p))
5692 {
5693 uc = utf_ptr2char(p);
5694
5695 if (start == NULL)
5696 {
5697 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5698 start = p;
5699 }
5700 else if (uc < 0x80 /* optimization shortcut */
5701 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5702 {
5703 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5704 attr_list, start - s, p - s);
5705 start = NULL;
5706 }
5707 }
5708
5709 if (start != NULL)
5710 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5711 attr_list, start - s, len);
5712}
5713
5714 static int
5715count_cluster_cells(char_u *s, PangoItem *item,
5716 PangoGlyphString* glyphs, int i,
5717 int *cluster_width,
5718 int *last_glyph_rbearing)
5719{
5720 char_u *p;
5721 int next; /* glyph start index of next cluster */
5722 int start, end; /* string segment of current cluster */
5723 int width; /* real cluster width in Pango units */
5724 int uc;
5725 int cellcount = 0;
5726
5727 width = glyphs->glyphs[i].geometry.width;
5728
5729 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5730 {
5731 if (glyphs->glyphs[next].attr.is_cluster_start)
5732 break;
5733 else if (glyphs->glyphs[next].geometry.width > width)
5734 width = glyphs->glyphs[next].geometry.width;
5735 }
5736
5737 start = item->offset + glyphs->log_clusters[i];
5738 end = item->offset + ((next < glyphs->num_glyphs) ?
5739 glyphs->log_clusters[next] : item->length);
5740
5741 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5742 {
5743 uc = utf_ptr2char(p);
5744 if (uc < 0x80)
5745 ++cellcount;
5746 else if (!utf_iscomposing(uc))
5747 cellcount += utf_char2cells(uc);
5748 }
5749
5750 if (last_glyph_rbearing != NULL
5751 && cellcount > 0 && next == glyphs->num_glyphs)
5752 {
5753 PangoRectangle ink_rect;
5754 /*
5755 * If a certain combining mark had to be taken from a non-monospace
5756 * font, we have to compensate manually by adapting x_offset according
5757 * to the ink extents of the previous glyph.
5758 */
5759 pango_font_get_glyph_extents(item->analysis.font,
5760 glyphs->glyphs[i].glyph,
5761 &ink_rect, NULL);
5762
5763 if (PANGO_RBEARING(ink_rect) > 0)
5764 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5765 }
5766
5767 if (cellcount > 0)
5768 *cluster_width = width;
5769
5770 return cellcount;
5771}
5772
5773/*
5774 * If there are only combining characters in the cluster, we cannot just
5775 * change the width of the previous glyph since there is none. Therefore
5776 * some guesswork is needed.
5777 *
5778 * If ink_rect.x is negative Pango apparently has taken care of the composing
5779 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5780 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005781 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 *
5783 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5784 * the position of the previous glyph. Apparently this happens only with old
5785 * X fonts which don't provide the special combining information needed by
5786 * Pango.
5787 */
5788 static void
5789setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5790 int last_cellcount, int last_cluster_width,
5791 int last_glyph_rbearing)
5792{
5793 PangoRectangle ink_rect;
5794 PangoRectangle logical_rect;
5795 int width;
5796
5797 width = last_cellcount * gui.char_width * PANGO_SCALE;
5798 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5799 glyph->geometry.width = 0;
5800
5801 pango_font_get_glyph_extents(item->analysis.font,
5802 glyph->glyph,
5803 &ink_rect, &logical_rect);
5804 if (ink_rect.x < 0)
5805 {
5806 glyph->geometry.x_offset += last_glyph_rbearing;
5807 glyph->geometry.y_offset = logical_rect.height
5808 - (gui.char_height - p_linespace) * PANGO_SCALE;
5809 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005810 else
5811 /* If the accent width is smaller than the cluster width, position it
5812 * in the middle. */
5813 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814}
5815
Bram Moolenaar98921892016-02-23 17:14:37 +01005816#if GTK_CHECK_VERSION(3,0,0)
5817 static void
5818draw_glyph_string(int row, int col, int num_cells, int flags,
5819 PangoFont *font, PangoGlyphString *glyphs,
5820 cairo_t *cr)
5821#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 static void
5823draw_glyph_string(int row, int col, int num_cells, int flags,
5824 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005825#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826{
5827 if (!(flags & DRAW_TRANSP))
5828 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005829#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005830 cairo_set_source_rgba(cr,
5831 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5832 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005833 cairo_rectangle(cr,
5834 FILL_X(col), FILL_Y(row),
5835 num_cells * gui.char_width, gui.char_height);
5836 cairo_fill(cr);
5837#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5839
5840 gdk_draw_rectangle(gui.drawarea->window,
5841 gui.text_gc,
5842 TRUE,
5843 FILL_X(col),
5844 FILL_Y(row),
5845 num_cells * gui.char_width,
5846 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 }
5849
Bram Moolenaar98921892016-02-23 17:14:37 +01005850#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005851 cairo_set_source_rgba(cr,
5852 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5853 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005854 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5855 pango_cairo_show_glyph_string(cr, font, glyphs);
5856#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5858
5859 gdk_draw_glyphs(gui.drawarea->window,
5860 gui.text_gc,
5861 font,
5862 TEXT_X(col),
5863 TEXT_Y(row),
5864 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866
5867 /* redraw the contents with an offset of 1 to emulate bold */
5868 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005869#if GTK_CHECK_VERSION(3,0,0)
5870 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005871 cairo_set_source_rgba(cr,
5872 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5873 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005874 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5875 pango_cairo_show_glyph_string(cr, font, glyphs);
5876 }
5877#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 gdk_draw_glyphs(gui.drawarea->window,
5879 gui.text_gc,
5880 font,
5881 TEXT_X(col) + 1,
5882 TEXT_Y(row),
5883 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005884#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885}
5886
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005887/*
5888 * Draw underline and undercurl at the bottom of the character cell.
5889 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005890#if GTK_CHECK_VERSION(3,0,0)
5891 static void
5892draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5893#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005894 static void
5895draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005896#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005897{
5898 int i;
5899 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005900 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005901 int y = FILL_Y(row + 1) - 1;
5902
5903 /* Undercurl: draw curl at the bottom of the character cell. */
5904 if (flags & DRAW_UNDERC)
5905 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005906#if GTK_CHECK_VERSION(3,0,0)
5907 cairo_set_line_width(cr, 1.0);
5908 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005909 cairo_set_source_rgba(cr,
5910 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5911 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005912 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5913 {
5914 offset = val[i % 8];
5915 cairo_line_to(cr, i, y - offset + 0.5);
5916 }
5917 cairo_stroke(cr);
5918#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005919 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5920 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5921 {
5922 offset = val[i % 8];
5923 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5924 }
5925 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005926#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005927 }
5928
5929 /* Underline: draw a line at the bottom of the character cell. */
5930 if (flags & DRAW_UNDERL)
5931 {
5932 /* When p_linespace is 0, overwrite the bottom row of pixels.
5933 * Otherwise put the line just below the character. */
5934 if (p_linespace > 1)
5935 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005936#if GTK_CHECK_VERSION(3,0,0)
5937 {
5938 cairo_set_line_width(cr, 1.0);
5939 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005940 cairo_set_source_rgba(cr,
5941 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5942 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005943 cairo_move_to(cr, FILL_X(col), y + 0.5);
5944 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5945 cairo_stroke(cr);
5946 }
5947#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005948 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5949 FILL_X(col), y,
5950 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005951#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005952 }
5953}
5954
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 int
5956gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5957{
5958 GdkRectangle area; /* area for clip mask */
5959 PangoGlyphString *glyphs; /* glyphs of current item */
5960 int column_offset = 0; /* column offset in cells */
5961 int i;
5962 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5963 char_u *new_conv_buf;
5964 int convlen;
5965 char_u *sp, *bp;
5966 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005967#if GTK_CHECK_VERSION(3,0,0)
5968 cairo_t *cr;
5969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970
Bram Moolenaar98921892016-02-23 17:14:37 +01005971#if GTK_CHECK_VERSION(3,0,0)
5972 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5973#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 return len;
5977
5978 if (output_conv.vc_type != CONV_NONE)
5979 {
5980 /*
5981 * Convert characters from 'encoding' to 'termencoding', which is set
5982 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5983 * prohibits changing this to something else than UTF-8 if the GUI is
5984 * in use.
5985 */
5986 convlen = len;
5987 conv_buf = string_convert(&output_conv, s, &convlen);
5988 g_return_val_if_fail(conv_buf != NULL, len);
5989
5990 /* Correct for differences in char width: some chars are
5991 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5992 * compensate for that. */
5993 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5994 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005995 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5997 {
5998 new_conv_buf = alloc(convlen + 2);
5999 if (new_conv_buf == NULL)
6000 return len;
6001 plen += bp - conv_buf;
6002 mch_memmove(new_conv_buf, conv_buf, plen);
6003 new_conv_buf[plen] = ' ';
6004 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
6005 convlen - plen + 1);
6006 vim_free(conv_buf);
6007 conv_buf = new_conv_buf;
6008 ++convlen;
6009 bp = conv_buf + plen;
6010 plen = 1;
6011 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006012 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 bp += plen;
6014 }
6015 s = conv_buf;
6016 len = convlen;
6017 }
6018
6019 /*
6020 * Restrict all drawing to the current screen line in order to prevent
6021 * fuzzy font lookups from messing up the screen.
6022 */
6023 area.x = gui.border_offset;
6024 area.y = FILL_Y(row);
6025 area.width = gui.num_cols * gui.char_width;
6026 area.height = gui.char_height;
6027
Bram Moolenaar98921892016-02-23 17:14:37 +01006028#if GTK_CHECK_VERSION(3,0,0)
6029 cr = cairo_create(gui.surface);
6030 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
6031 cairo_clip(cr);
6032#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
6034 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01006035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036
6037 glyphs = pango_glyph_string_new();
6038
6039 /*
6040 * Optimization hack: If possible, skip the itemize and shaping process
6041 * for pure ASCII strings. This optimization is particularly effective
6042 * because Vim draws space characters to clear parts of the screen.
6043 */
6044 if (!(flags & DRAW_ITALIC)
6045 && !((flags & DRAW_BOLD) && gui.font_can_bold)
6046 && gui.ascii_glyphs != NULL)
6047 {
6048 char_u *p;
6049
6050 for (p = s; p < s + len; ++p)
6051 if (*p & 0x80)
6052 goto not_ascii;
6053
6054 pango_glyph_string_set_size(glyphs, len);
6055
6056 for (i = 0; i < len; ++i)
6057 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006058 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 glyphs->log_clusters[i] = i;
6060 }
6061
Bram Moolenaar98921892016-02-23 17:14:37 +01006062#if GTK_CHECK_VERSION(3,0,0)
6063 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6064#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006066#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067
6068 column_offset = len;
6069 }
6070 else
6071not_ascii:
6072 {
6073 PangoAttrList *attr_list;
6074 GList *item_list;
6075 int cluster_width;
6076 int last_glyph_rbearing;
6077 int cells = 0; /* cells occupied by current cluster */
6078
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006079 /* Safety check: pango crashes when invoked with invalid utf-8
6080 * characters. */
6081 if (!utf_valid_string(s, s + len))
6082 {
6083 column_offset = len;
6084 goto skipitall;
6085 }
6086
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 /* original width of the current cluster */
6088 cluster_width = PANGO_SCALE * gui.char_width;
6089
6090 /* right bearing of the last non-composing glyph */
6091 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6092
6093 attr_list = pango_attr_list_new();
6094
6095 /* If 'guifontwide' is set then use that for double-width characters.
6096 * Otherwise just go with 'guifont' and let Pango do its thing. */
6097 if (gui.wide_font != NULL)
6098 apply_wide_font_attr(s, len, attr_list);
6099
6100 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6101 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6102 attr_list, 0, len);
6103 if (flags & DRAW_ITALIC)
6104 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6105 attr_list, 0, len);
6106 /*
6107 * Break the text into segments with consistent directional level
6108 * and shaping engine. Pure Latin text needs only a single segment,
6109 * so there's no need to worry about the loop's efficiency. Better
6110 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6111 */
6112 item_list = pango_itemize(gui.text_context,
6113 (const char *)s, 0, len, attr_list, NULL);
6114
6115 while (item_list != NULL)
6116 {
6117 PangoItem *item;
6118 int item_cells = 0; /* item length in cells */
6119
6120 item = (PangoItem *)item_list->data;
6121 item_list = g_list_delete_link(item_list, item_list);
6122 /*
6123 * Increment the bidirectional embedding level by 1 if it is not
6124 * even. An odd number means the output will be RTL, but we don't
6125 * want that since Vim handles right-to-left text on its own. It
6126 * would probably be sufficient to just set level = 0, but you can
6127 * never know :)
6128 *
6129 * Unfortunately we can't take advantage of Pango's ability to
6130 * render both LTR and RTL at the same time. In order to support
6131 * that, Vim's main screen engine would have to make use of Pango
6132 * functionality.
6133 */
6134 item->analysis.level = (item->analysis.level + 1) & (~1U);
6135
6136 /* HACK: Overrule the shape engine, we don't want shaping to be
6137 * done, because drawing the cursor would change the display. */
6138 item->analysis.shape_engine = default_shape_engine;
6139
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006140#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006141 pango_shape_full((const char *)s + item->offset, item->length,
6142 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006143#else
6144 pango_shape((const char *)s + item->offset, item->length,
6145 &item->analysis, glyphs);
6146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 /*
6148 * Fixed-width hack: iterate over the array and assign a fixed
6149 * width to each glyph, thus overriding the choice made by the
6150 * shaping engine. We use utf_char2cells() to determine the
6151 * number of cells needed.
6152 *
6153 * Also perform all kind of dark magic to get composing
6154 * characters right (and pretty too of course).
6155 */
6156 for (i = 0; i < glyphs->num_glyphs; ++i)
6157 {
6158 PangoGlyphInfo *glyph;
6159
6160 glyph = &glyphs->glyphs[i];
6161
6162 if (glyph->attr.is_cluster_start)
6163 {
6164 int cellcount;
6165
6166 cellcount = count_cluster_cells(
6167 s, item, glyphs, i, &cluster_width,
6168 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6169
6170 if (cellcount > 0)
6171 {
6172 int width;
6173
6174 width = cellcount * gui.char_width * PANGO_SCALE;
6175 glyph->geometry.x_offset +=
6176 MAX(0, width - cluster_width) / 2;
6177 glyph->geometry.width = width;
6178 }
6179 else
6180 {
6181 /* If there are only combining characters in the
6182 * cluster, we cannot just change the width of the
6183 * previous glyph since there is none. Therefore
6184 * some guesswork is needed. */
6185 setup_zero_width_cluster(item, glyph, cells,
6186 cluster_width,
6187 last_glyph_rbearing);
6188 }
6189
6190 item_cells += cellcount;
6191 cells = cellcount;
6192 }
6193 else if (i > 0)
6194 {
6195 int width;
6196
6197 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006198 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006199 * In some circumstances Pango uses a positive x_offset,
6200 * then use the width of the previous glyph for this one
6201 * and set the previous width to zero.
6202 * Otherwise we get a negative x_offset, Pango has already
6203 * positioned the combining char, keep the widths as they
6204 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006205 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006206 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006207 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006208 {
6209 glyphs->glyphs[i].geometry.width =
6210 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006211 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006212 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 width = cells * gui.char_width * PANGO_SCALE;
6214 glyph->geometry.x_offset +=
6215 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 }
6217 else /* i == 0 "cannot happen" */
6218 {
6219 glyph->geometry.width = 0;
6220 }
6221 }
6222
6223 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006224#if GTK_CHECK_VERSION(3,0,0)
6225 draw_glyph_string(row, col + column_offset, item_cells,
6226 flags, item->analysis.font, glyphs,
6227 cr);
6228#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 draw_glyph_string(row, col + column_offset, item_cells,
6230 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006231#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232
6233 pango_item_free(item);
6234
6235 column_offset += item_cells;
6236 }
6237
6238 pango_attr_list_unref(attr_list);
6239 }
6240
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006241skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006242 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006243#if GTK_CHECK_VERSION(3,0,0)
6244 draw_under(flags, row, col, column_offset, cr);
6245#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006246 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248
6249 pango_glyph_string_free(glyphs);
6250 vim_free(conv_buf);
6251
Bram Moolenaar98921892016-02-23 17:14:37 +01006252#if GTK_CHECK_VERSION(3,0,0)
6253 cairo_destroy(cr);
6254 if (!gui.by_signal)
6255 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6256 &area, FALSE);
6257#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260
6261 return column_offset;
6262}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263
6264/*
6265 * Return OK if the key with the termcap name "name" is supported.
6266 */
6267 int
6268gui_mch_haskey(char_u *name)
6269{
6270 int i;
6271
6272 for (i = 0; special_keys[i].key_sym != 0; i++)
6273 if (name[0] == special_keys[i].code0
6274 && name[1] == special_keys[i].code1)
6275 return OK;
6276 return FAIL;
6277}
6278
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006279#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280/*
6281 * Return the text window-id and display. Only required for X-based GUI's
6282 */
6283 int
6284gui_get_x11_windis(Window *win, Display **dis)
6285{
Bram Moolenaar98921892016-02-23 17:14:37 +01006286#if GTK_CHECK_VERSION(3,0,0)
6287 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6288#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006292#if GTK_CHECK_VERSION(3,0,0)
6293 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6294 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6295#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6297 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006298#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 return OK;
6300 }
6301
6302 *dis = NULL;
6303 *win = 0;
6304 return FAIL;
6305}
6306#endif
6307
6308#if defined(FEAT_CLIENTSERVER) \
6309 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6310
6311 Display *
6312gui_mch_get_display(void)
6313{
Bram Moolenaar98921892016-02-23 17:14:37 +01006314#if GTK_CHECK_VERSION(3,0,0)
6315 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6316 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6317#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6319 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 else
6322 return NULL;
6323}
6324#endif
6325
6326 void
6327gui_mch_beep(void)
6328{
6329#ifdef HAVE_GTK_MULTIHEAD
6330 GdkDisplay *display;
6331
Bram Moolenaar98921892016-02-23 17:14:37 +01006332# if GTK_CHECK_VERSION(3,0,0)
6333 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6334# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 display = gtk_widget_get_display(gui.mainwin);
6338 else
6339 display = gdk_display_get_default();
6340
6341 if (display != NULL)
6342 gdk_display_beep(display);
6343#else
6344 gdk_beep();
6345#endif
6346}
6347
6348 void
6349gui_mch_flash(int msec)
6350{
Bram Moolenaar98921892016-02-23 17:14:37 +01006351#if GTK_CHECK_VERSION(3,0,0)
6352 /* TODO Replace GdkGC with Cairo */
6353 (void)msec;
6354#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 GdkGCValues values;
6356 GdkGC *invert_gc;
6357
6358 if (gui.drawarea->window == NULL)
6359 return;
6360
6361 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6362 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6363 values.function = GDK_XOR;
6364 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6365 &values,
6366 GDK_GC_FOREGROUND |
6367 GDK_GC_BACKGROUND |
6368 GDK_GC_FUNCTION);
6369 gdk_gc_set_exposures(invert_gc,
6370 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6371 /*
6372 * Do a visual beep by changing back and forth in some undetermined way,
6373 * the foreground and background colors. This is due to the fact that
6374 * there can't be really any prediction about the effects of XOR on
6375 * arbitrary X11 servers. However this seems to be enough for what we
6376 * intend it to do.
6377 */
6378 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6379 TRUE,
6380 0, 0,
6381 FILL_X((int)Columns) + gui.border_offset,
6382 FILL_Y((int)Rows) + gui.border_offset);
6383
6384 gui_mch_flush();
6385 ui_delay((long)msec, TRUE); /* wait so many msec */
6386
6387 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6388 TRUE,
6389 0, 0,
6390 FILL_X((int)Columns) + gui.border_offset,
6391 FILL_Y((int)Rows) + gui.border_offset);
6392
6393 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395}
6396
6397/*
6398 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6399 */
6400 void
6401gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6402{
Bram Moolenaar98921892016-02-23 17:14:37 +01006403#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006404 const GdkRectangle rect = {
6405 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6406 };
6407 cairo_t * const cr = cairo_create(gui.surface);
6408
Bram Moolenaar36edf062016-07-21 22:10:12 +02006409 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006410# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6411 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6412# else
6413 /* Give an implementation for older cairo versions if necessary. */
6414# endif
6415 gdk_cairo_rectangle(cr, &rect);
6416 cairo_fill(cr);
6417
6418 cairo_destroy(cr);
6419
6420 if (!gui.by_signal)
6421 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6422 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006423#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 GdkGCValues values;
6425 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426
6427 if (gui.drawarea->window == NULL)
6428 return;
6429
Bram Moolenaar89d40322006-08-29 15:30:07 +00006430 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6431 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 values.function = GDK_XOR;
6433 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6434 &values,
6435 GDK_GC_FOREGROUND |
6436 GDK_GC_BACKGROUND |
6437 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006438 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6439 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6441 TRUE,
6442 FILL_X(c), FILL_Y(r),
6443 (nc) * gui.char_width, (nr) * gui.char_height);
6444 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446}
6447
6448/*
6449 * Iconify the GUI window.
6450 */
6451 void
6452gui_mch_iconify(void)
6453{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455}
6456
6457#if defined(FEAT_EVAL) || defined(PROTO)
6458/*
6459 * Bring the Vim window to the foreground.
6460 */
6461 void
6462gui_mch_set_foreground(void)
6463{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465}
6466#endif
6467
6468/*
6469 * Draw a cursor without focus.
6470 */
6471 void
6472gui_mch_draw_hollow_cursor(guicolor_T color)
6473{
6474 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006475#if GTK_CHECK_VERSION(3,0,0)
6476 cairo_t *cr;
6477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478
Bram Moolenaar98921892016-02-23 17:14:37 +01006479#if GTK_CHECK_VERSION(3,0,0)
6480 if (gtk_widget_get_window(gui.drawarea) == NULL)
6481#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006483#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 return;
6485
Bram Moolenaar98921892016-02-23 17:14:37 +01006486#if GTK_CHECK_VERSION(3,0,0)
6487 cr = cairo_create(gui.surface);
6488#endif
6489
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 gui_mch_set_fg_color(color);
6491
Bram Moolenaar98921892016-02-23 17:14:37 +01006492#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006493 cairo_set_source_rgba(cr,
6494 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6495 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006496#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 if (mb_lefthalve(gui.row, gui.col))
6500 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006501#if GTK_CHECK_VERSION(3,0,0)
6502 cairo_set_line_width(cr, 1.0);
6503 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6504 cairo_rectangle(cr,
6505 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6506 i * gui.char_width - 1, gui.char_height - 1);
6507 cairo_stroke(cr);
6508 cairo_destroy(cr);
6509#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6511 FALSE,
6512 FILL_X(gui.col), FILL_Y(gui.row),
6513 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515}
6516
6517/*
6518 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6519 * color "color".
6520 */
6521 void
6522gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6523{
Bram Moolenaar98921892016-02-23 17:14:37 +01006524#if GTK_CHECK_VERSION(3,0,0)
6525 if (gtk_widget_get_window(gui.drawarea) == NULL)
6526#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 return;
6530
6531 gui_mch_set_fg_color(color);
6532
Bram Moolenaar98921892016-02-23 17:14:37 +01006533#if GTK_CHECK_VERSION(3,0,0)
6534 {
6535 cairo_t *cr;
6536
6537 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006538 cairo_set_source_rgba(cr,
6539 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6540 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006541 cairo_rectangle(cr,
6542# ifdef FEAT_RIGHTLEFT
6543 /* vertical line should be on the right of current point */
6544 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6545# endif
6546 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6547 w, h);
6548 cairo_fill(cr);
6549 cairo_destroy(cr);
6550 }
6551#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6553 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6554 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006555# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 /* vertical line should be on the right of current point */
6557 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006558# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 FILL_X(gui.col),
6560 FILL_Y(gui.row) + gui.char_height - h,
6561 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006562#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563}
6564
6565
6566/*
6567 * Catch up with any queued X11 events. This may put keyboard input into the
6568 * input buffer, call resize call-backs, trigger timers etc. If there is
6569 * nothing in the X11 event queue (& no timers pending), then we return
6570 * immediately.
6571 */
6572 void
6573gui_mch_update(void)
6574{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006575 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6576 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577}
6578
Bram Moolenaar98921892016-02-23 17:14:37 +01006579#if GTK_CHECK_VERSION(3,0,0)
6580 static gboolean
6581#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584input_timer_cb(gpointer data)
6585{
6586 int *timed_out = (int *) data;
6587
Bram Moolenaar49325942007-05-10 19:19:59 +00006588 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 *timed_out = TRUE;
6590
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 return FALSE; /* don't happen again */
6592}
6593
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594/*
6595 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6596 * from the keyboard.
6597 * wtime == -1 Wait forever.
6598 * wtime == 0 This should never happen.
6599 * wtime > 0 Wait wtime milliseconds for a character.
6600 * Returns OK if a character was found to be available within the given time,
6601 * or FAIL otherwise.
6602 */
6603 int
6604gui_mch_wait_for_chars(long wtime)
6605{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006606 int focus;
6607 guint timer;
6608 static int timed_out;
6609 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610
6611 timed_out = FALSE;
6612
6613 /* this timeout makes sure that we will return if no characters arrived in
6614 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006616#if GTK_CHECK_VERSION(3,0,0)
6617 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6618#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 else
6622 timer = 0;
6623
6624 focus = gui.in_focus;
6625
6626 do
6627 {
6628 /* Stop or start blinking when focus changes */
6629 if (gui.in_focus != focus)
6630 {
6631 if (gui.in_focus)
6632 gui_mch_start_blink();
6633 else
6634 gui_mch_stop_blink();
6635 focus = gui.in_focus;
6636 }
6637
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006638#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006639# ifdef FEAT_TIMERS
6640 did_add_timer = FALSE;
6641# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006642 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006643# ifdef FEAT_TIMERS
6644 if (did_add_timer)
6645 /* Need to recompute the waiting time. */
6646 goto theend;
6647# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006648#endif
6649
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 /*
6651 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006652 * Skip this if input is available anyway (can happen in rare
6653 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006655 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006656 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657
6658 /* Got char, return immediately */
6659 if (input_available())
6660 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006661 retval = OK;
6662 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 }
6664 } while (wtime < 0 || !timed_out);
6665
6666 /*
6667 * Flush all eventually pending (drawing) events.
6668 */
6669 gui_mch_update();
6670
Bram Moolenaar4231da42016-06-02 14:30:04 +02006671theend:
6672 if (timer != 0 && !timed_out)
6673#if GTK_CHECK_VERSION(3,0,0)
6674 g_source_remove(timer);
6675#else
6676 gtk_timeout_remove(timer);
6677#endif
6678
6679 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006680}
6681
6682
6683/****************************************************************************
6684 * Output drawing routines.
6685 ****************************************************************************/
6686
6687
6688/* Flush any output to the screen */
6689 void
6690gui_mch_flush(void)
6691{
6692#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006693# if GTK_CHECK_VERSION(3,0,0)
6694 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6695# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006697# endif
Bram Moolenaarfdadad92016-07-15 17:49:58 +02006698 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699#else
6700 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702}
6703
6704/*
6705 * Clear a rectangular region of the screen from text pos (row1, col1) to
6706 * (row2, col2) inclusive.
6707 */
6708 void
6709gui_mch_clear_block(int row1, int col1, int row2, int col2)
6710{
Bram Moolenaar98921892016-02-23 17:14:37 +01006711#if GTK_CHECK_VERSION(3,0,0)
6712 if (gtk_widget_get_window(gui.drawarea) == NULL)
6713 return;
6714#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715 GdkColor color;
6716
6717 if (gui.drawarea->window == NULL)
6718 return;
6719
6720 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722
Bram Moolenaar98921892016-02-23 17:14:37 +01006723#if GTK_CHECK_VERSION(3,0,0)
6724 {
6725 /* Add one pixel to the far right column in case a double-stroked
6726 * bold glyph may sit there. */
6727 const GdkRectangle rect = {
6728 FILL_X(col1), FILL_Y(row1),
6729 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6730 (row2 - row1 + 1) * gui.char_height
6731 };
6732 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6733 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006734# if GTK_CHECK_VERSION(3,22,2)
6735 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6736# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006737 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6738 if (pat != NULL)
6739 cairo_set_source(cr, pat);
6740 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006741 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006742# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006743 gdk_cairo_rectangle(cr, &rect);
6744 cairo_fill(cr);
6745 cairo_destroy(cr);
6746
6747 if (!gui.by_signal)
6748 gdk_window_invalidate_rect(win, &rect, FALSE);
6749 }
6750#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006751 gdk_gc_set_foreground(gui.text_gc, &color);
6752
6753 /* Clear one extra pixel at the far right, for when bold characters have
6754 * spilled over to the window border. */
6755 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6756 FILL_X(col1), FILL_Y(row1),
6757 (col2 - col1 + 1) * gui.char_width
6758 + (col2 == Columns - 1),
6759 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006760#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761}
6762
Bram Moolenaar98921892016-02-23 17:14:37 +01006763#if GTK_CHECK_VERSION(3,0,0)
6764 static void
6765gui_gtk_window_clear(GdkWindow *win)
6766{
6767 const GdkRectangle rect = {
6768 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6769 };
6770 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006771# if GTK_CHECK_VERSION(3,22,2)
6772 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6773# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006774 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6775 if (pat != NULL)
6776 cairo_set_source(cr, pat);
6777 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006778 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006779# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006780 gdk_cairo_rectangle(cr, &rect);
6781 cairo_fill(cr);
6782 cairo_destroy(cr);
6783
6784 if (!gui.by_signal)
6785 gdk_window_invalidate_rect(win, &rect, FALSE);
6786}
6787#endif
6788
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789 void
6790gui_mch_clear_all(void)
6791{
Bram Moolenaar98921892016-02-23 17:14:37 +01006792#if GTK_CHECK_VERSION(3,0,0)
6793 if (gtk_widget_get_window(gui.drawarea) != NULL)
6794 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6795#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 if (gui.drawarea->window != NULL)
6797 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799}
6800
Bram Moolenaar98921892016-02-23 17:14:37 +01006801#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802/*
6803 * Redraw any text revealed by scrolling up/down.
6804 */
6805 static void
6806check_copy_area(void)
6807{
6808 GdkEvent *event;
6809 int expose_count;
6810
6811 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6812 return;
6813
6814 /* Avoid redrawing the cursor while scrolling or it'll end up where
6815 * we don't want it to be. I'm not sure if it's correct to call
6816 * gui_dont_update_cursor() at this point but it works as a quick
6817 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006818 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819
6820 do
6821 {
6822 /* Wait to check whether the scroll worked or not. */
6823 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6824
6825 if (event == NULL)
6826 break; /* received NoExpose event */
6827
6828 gui_redraw(event->expose.area.x, event->expose.area.y,
6829 event->expose.area.width, event->expose.area.height);
6830
6831 expose_count = event->expose.count;
6832 gdk_event_free(event);
6833 }
6834 while (expose_count > 0); /* more events follow */
6835
6836 gui_can_update_cursor();
6837}
Bram Moolenaar98921892016-02-23 17:14:37 +01006838#endif /* !GTK_CHECK_VERSION(3,0,0) */
6839
6840#if GTK_CHECK_VERSION(3,0,0)
6841 static void
6842gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6843 int src_x, int src_y,
6844 int width, int height)
6845{
6846 cairo_t * const cr = cairo_create(gui.surface);
6847
6848 cairo_rectangle(cr, dest_x, dest_y, width, height);
6849 cairo_clip(cr);
6850 cairo_push_group(cr);
6851 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6852 cairo_paint(cr);
6853 cairo_pop_group_to_source(cr);
6854 cairo_paint(cr);
6855
6856 cairo_destroy(cr);
6857}
6858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859
6860/*
6861 * Delete the given number of lines from the given row, scrolling up any
6862 * text further down within the scroll region.
6863 */
6864 void
6865gui_mch_delete_lines(int row, int num_lines)
6866{
Bram Moolenaar98921892016-02-23 17:14:37 +01006867#if GTK_CHECK_VERSION(3,0,0)
6868 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6869 const int nrows = gui.scroll_region_bot - row + 1;
6870 const int src_nrows = nrows - num_lines;
6871
6872 gui_gtk_surface_copy_rect(
6873 FILL_X(gui.scroll_region_left), FILL_Y(row),
6874 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6875 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6876 gui_clear_block(
6877 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6878 gui.scroll_region_bot, gui.scroll_region_right);
6879 gui_gtk3_redraw(
6880 FILL_X(gui.scroll_region_left), FILL_Y(row),
6881 gui.char_width * ncols + 1, gui.char_height * nrows);
6882 if (!gui.by_signal)
6883 gtk_widget_queue_draw_area(gui.drawarea,
6884 FILL_X(gui.scroll_region_left), FILL_Y(row),
6885 gui.char_width * ncols + 1, gui.char_height * nrows);
6886#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6888 return; /* Can't see the window */
6889
6890 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6891 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6892
6893 /* copy one extra pixel, for when bold has spilled over */
6894 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6895 FILL_X(gui.scroll_region_left), FILL_Y(row),
6896 gui.drawarea->window,
6897 FILL_X(gui.scroll_region_left),
6898 FILL_Y(row + num_lines),
6899 gui.char_width * (gui.scroll_region_right
6900 - gui.scroll_region_left + 1) + 1,
6901 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6902
6903 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6904 gui.scroll_region_left,
6905 gui.scroll_region_bot, gui.scroll_region_right);
6906 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006907#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908}
6909
6910/*
6911 * Insert the given number of lines before the given row, scrolling down any
6912 * following text within the scroll region.
6913 */
6914 void
6915gui_mch_insert_lines(int row, int num_lines)
6916{
Bram Moolenaar98921892016-02-23 17:14:37 +01006917#if GTK_CHECK_VERSION(3,0,0)
6918 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6919 const int nrows = gui.scroll_region_bot - row + 1;
6920 const int src_nrows = nrows - num_lines;
6921
6922 gui_gtk_surface_copy_rect(
6923 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6924 FILL_X(gui.scroll_region_left), FILL_Y(row),
6925 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6926 gui_mch_clear_block(
6927 row, gui.scroll_region_left,
6928 row + num_lines - 1, gui.scroll_region_right);
6929 gui_gtk3_redraw(
6930 FILL_X(gui.scroll_region_left), FILL_Y(row),
6931 gui.char_width * ncols + 1, gui.char_height * nrows);
6932 if (!gui.by_signal)
6933 gtk_widget_queue_draw_area(gui.drawarea,
6934 FILL_X(gui.scroll_region_left), FILL_Y(row),
6935 gui.char_width * ncols + 1, gui.char_height * nrows);
6936#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6938 return; /* Can't see the window */
6939
6940 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6941 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6942
6943 /* copy one extra pixel, for when bold has spilled over */
6944 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6945 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6946 gui.drawarea->window,
6947 FILL_X(gui.scroll_region_left), FILL_Y(row),
6948 gui.char_width * (gui.scroll_region_right
6949 - gui.scroll_region_left + 1) + 1,
6950 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6951
6952 gui_clear_block(row, gui.scroll_region_left,
6953 row + num_lines - 1, gui.scroll_region_right);
6954 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006955#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006956}
6957
6958/*
6959 * X Selection stuff, for cutting and pasting text to other windows.
6960 */
6961 void
6962clip_mch_request_selection(VimClipboard *cbd)
6963{
6964 GdkAtom target;
6965 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006966 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967
6968 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6969 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006970 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6971 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972 received_selection = RS_NONE;
6973 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6974
6975 gtk_selection_convert(gui.drawarea,
6976 cbd->gtk_sel_atom, target,
6977 (guint32)GDK_CURRENT_TIME);
6978
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006979 /* Hack: Wait up to three seconds for the selection. A hang was
6980 * noticed here when using the netrw plugin combined with ":gui"
6981 * during the FocusGained event. */
6982 start = time(NULL);
6983 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006984 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985
6986 if (received_selection != RS_FAIL)
6987 return;
6988 }
6989
6990 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006991#if GTK_CHECK_VERSION(3,0,0)
6992 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6993 cbd);
6994#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006995 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006996#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997}
6998
6999/*
7000 * Disown the selection.
7001 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007003clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007005 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007}
7008
7009/*
7010 * Own the selection and return OK if it worked.
7011 */
7012 int
7013clip_mch_own_selection(VimClipboard *cbd)
7014{
7015 int success;
7016
7017 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02007018 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 gui_mch_update();
7020 return (success) ? OK : FAIL;
7021}
7022
7023/*
7024 * Send the current selection to the clipboard. Do nothing for X because we
7025 * will fill in the selection only when requested by another app.
7026 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007028clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029{
7030}
7031
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007032 int
7033clip_gtk_owner_exists(VimClipboard *cbd)
7034{
7035 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
7036}
7037
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038
7039#if defined(FEAT_MENU) || defined(PROTO)
7040/*
7041 * Make a menu item appear either active or not active (grey or not grey).
7042 */
7043 void
7044gui_mch_menu_grey(vimmenu_T *menu, int grey)
7045{
7046 if (menu->id == NULL)
7047 return;
7048
7049 if (menu_is_separator(menu->name))
7050 grey = TRUE;
7051
7052 gui_mch_menu_hidden(menu, FALSE);
7053 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007054# if GTK_CHECK_VERSION(3,0,0)
7055 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7056# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 {
7060 gtk_widget_set_sensitive(menu->id, !grey);
7061 gui_mch_update();
7062 }
7063}
7064
7065/*
7066 * Make menu item hidden or not hidden.
7067 */
7068 void
7069gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7070{
7071 if (menu->id == 0)
7072 return;
7073
7074 if (hidden)
7075 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007076# if GTK_CHECK_VERSION(3,0,0)
7077 if (gtk_widget_get_visible(menu->id))
7078# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007080# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 {
7082 gtk_widget_hide(menu->id);
7083 gui_mch_update();
7084 }
7085 }
7086 else
7087 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007088# if GTK_CHECK_VERSION(3,0,0)
7089 if (!gtk_widget_get_visible(menu->id))
7090# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007092# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 {
7094 gtk_widget_show(menu->id);
7095 gui_mch_update();
7096 }
7097 }
7098}
7099
7100/*
7101 * This is called after setting all the menus to grey/hidden or not.
7102 */
7103 void
7104gui_mch_draw_menubar(void)
7105{
7106 /* just make sure that the visual changes get effect immediately */
7107 gui_mch_update();
7108}
7109#endif /* FEAT_MENU */
7110
7111/*
7112 * Scrollbar stuff.
7113 */
7114 void
7115gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7116{
7117 if (sb->id == NULL)
7118 return;
7119
Bram Moolenaar98921892016-02-23 17:14:37 +01007120#if GTK_CHECK_VERSION(3,0,0)
7121 gtk_widget_set_visible(sb->id, flag);
7122#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 if (flag)
7124 gtk_widget_show(sb->id);
7125 else
7126 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007129 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130}
7131
7132
7133/*
7134 * Return the RGB value of a pixel as long.
7135 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007136 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137gui_mch_get_rgb(guicolor_T pixel)
7138{
Bram Moolenaar98921892016-02-23 17:14:37 +01007139#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007140 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007141#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007142 GdkColor color;
7143
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7145 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007147 return (guicolor_T)(
7148 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007150 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152}
7153
7154/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007155 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007157 void
7158gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159{
Bram Moolenaar98921892016-02-23 17:14:37 +01007160#if GTK_CHECK_VERSION(3,0,0)
7161 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7162#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007163 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165}
7166
7167 void
7168gui_mch_setmouse(int x, int y)
7169{
7170 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7171 * internal GDK mechanism present to accomplish this. (and for good
7172 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007173#if GTK_CHECK_VERSION(3,0,0)
7174 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7175 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7176 0, 0, 0U, 0U, x, y);
7177#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7179 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7180 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007181#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182}
7183
7184
7185#ifdef FEAT_MOUSESHAPE
7186/* The last set mouse pointer shape is remembered, to be used when it goes
7187 * from hidden to not hidden. */
7188static int last_shape = 0;
7189#endif
7190
7191/*
7192 * Use the blank mouse pointer or not.
7193 *
7194 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7195 */
7196 void
7197gui_mch_mousehide(int hide)
7198{
7199 if (gui.pointer_hidden != hide)
7200 {
7201 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007202#if GTK_CHECK_VERSION(3,0,0)
7203 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7204#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 {
7208 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007209#if GTK_CHECK_VERSION(3,0,0)
7210 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7211 gui.blank_pointer);
7212#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215 else
7216#ifdef FEAT_MOUSESHAPE
7217 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007218#elif GTK_CHECK_VERSION(3,0,0)
7219 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220#else
7221 gdk_window_set_cursor(gui.drawarea->window, NULL);
7222#endif
7223 }
7224 }
7225}
7226
7227#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7228
7229/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7230 * misc2.c! */
7231static const int mshape_ids[] =
7232{
7233 GDK_LEFT_PTR, /* arrow */
7234 GDK_CURSOR_IS_PIXMAP, /* blank */
7235 GDK_XTERM, /* beam */
7236 GDK_SB_V_DOUBLE_ARROW, /* updown */
7237 GDK_SIZING, /* udsizing */
7238 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7239 GDK_SIZING, /* lrsizing */
7240 GDK_WATCH, /* busy */
7241 GDK_X_CURSOR, /* no */
7242 GDK_CROSSHAIR, /* crosshair */
7243 GDK_HAND1, /* hand1 */
7244 GDK_HAND2, /* hand2 */
7245 GDK_PENCIL, /* pencil */
7246 GDK_QUESTION_ARROW, /* question */
7247 GDK_RIGHT_PTR, /* right-arrow */
7248 GDK_CENTER_PTR, /* up-arrow */
7249 GDK_LEFT_PTR /* last one */
7250};
7251
7252 void
7253mch_set_mouse_shape(int shape)
7254{
7255 int id;
7256 GdkCursor *c;
7257
Bram Moolenaar98921892016-02-23 17:14:37 +01007258# if GTK_CHECK_VERSION(3,0,0)
7259 if (gtk_widget_get_window(gui.drawarea) == NULL)
7260# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007262# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 return;
7264
7265 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
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 {
7274 if (shape >= MSHAPE_NUMBERED)
7275 {
7276 id = shape - MSHAPE_NUMBERED;
7277 if (id >= GDK_LAST_CURSOR)
7278 id = GDK_LEFT_PTR;
7279 else
7280 id &= ~1; /* they are always even (why?) */
7281 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007282 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007284 else
7285 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286# ifdef HAVE_GTK_MULTIHEAD
7287 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007288 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007290 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007292# if GTK_CHECK_VERSION(3,0,0)
7293 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7294# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007296# endif
7297# if GTK_CHECK_VERSION(3,0,0)
7298 g_object_unref(G_OBJECT(c));
7299# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007301# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302 }
7303 if (shape != MSHAPE_HIDE)
7304 last_shape = shape;
7305}
7306#endif /* FEAT_MOUSESHAPE */
7307
7308
7309#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7310/*
7311 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7312 * scaled down if the current font is not big enough, or scaled up if the image
7313 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7314 * will be cut off if the current font is not big enough, or centered if it's
7315 * too small.
7316 */
7317# define SIGN_WIDTH (2 * gui.char_width)
7318# define SIGN_HEIGHT (gui.char_height)
7319# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7320
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 void
7322gui_mch_drawsign(int row, int col, int typenr)
7323{
7324 GdkPixbuf *sign;
7325
7326 sign = (GdkPixbuf *)sign_get_image(typenr);
7327
Bram Moolenaar98921892016-02-23 17:14:37 +01007328# if GTK_CHECK_VERSION(3,0,0)
7329 if (sign != NULL && gui.drawarea != NULL
7330 && gtk_widget_get_window(gui.drawarea) != NULL)
7331# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 {
7335 int width;
7336 int height;
7337 int xoffset;
7338 int yoffset;
7339 int need_scale;
7340
7341 width = gdk_pixbuf_get_width(sign);
7342 height = gdk_pixbuf_get_height(sign);
7343 /*
7344 * Decide whether we need to scale. Allow one pixel of border
7345 * width to be cut off, in order to avoid excessive scaling for
7346 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007347 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 */
7349 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007350 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 || (width < 3 * SIGN_WIDTH / 4
7352 && height < 3 * SIGN_HEIGHT / 4));
7353 if (need_scale)
7354 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007355 double aspect;
7356 int w = width;
7357 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358
7359 /* Keep the original aspect ratio */
7360 aspect = (double)height / (double)width;
7361 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7362 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007363 if (((double)(MAX(height, SIGN_HEIGHT)) /
7364 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7365 {
7366 /* Change the aspect ratio by at most 15% to fill the
7367 * available space completly. */
7368 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7369 height = MIN(height, SIGN_HEIGHT);
7370 }
7371 else
7372 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007374 if (w == width && h == height)
7375 {
7376 /* no change in dimensions; don't decrease reference counter
7377 * (below) */
7378 need_scale = FALSE;
7379 }
7380 else
7381 {
7382 /* This doesn't seem to be worth caching, and doing so would
7383 * complicate the code quite a bit. */
7384 sign = gdk_pixbuf_scale_simple(sign, width, height,
7385 GDK_INTERP_BILINEAR);
7386 if (sign == NULL)
7387 return; /* out of memory */
7388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007389 }
7390
7391 /* The origin is the upper-left corner of the pixmap. Therefore
7392 * these offset may become negative if the pixmap is smaller than
7393 * the 2x1 cells reserved for the sign icon. */
7394 xoffset = (width - SIGN_WIDTH) / 2;
7395 yoffset = (height - SIGN_HEIGHT) / 2;
7396
Bram Moolenaar98921892016-02-23 17:14:37 +01007397# if GTK_CHECK_VERSION(3,0,0)
7398 {
7399 cairo_t *cr;
7400 cairo_surface_t *bg_surf;
7401 cairo_t *bg_cr;
7402 cairo_surface_t *sign_surf;
7403 cairo_t *sign_cr;
7404
7405 cr = cairo_create(gui.surface);
7406
7407 bg_surf = cairo_surface_create_similar(gui.surface,
7408 cairo_surface_get_content(gui.surface),
7409 SIGN_WIDTH, SIGN_HEIGHT);
7410 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007411 cairo_set_source_rgba(bg_cr,
7412 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7413 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007414 cairo_paint(bg_cr);
7415
7416 sign_surf = cairo_surface_create_similar(gui.surface,
7417 cairo_surface_get_content(gui.surface),
7418 SIGN_WIDTH, SIGN_HEIGHT);
7419 sign_cr = cairo_create(sign_surf);
7420 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7421 cairo_paint(sign_cr);
7422
7423 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7424 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7425 cairo_paint(sign_cr);
7426
7427 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7428 cairo_paint(cr);
7429
7430 cairo_destroy(sign_cr);
7431 cairo_surface_destroy(sign_surf);
7432 cairo_destroy(bg_cr);
7433 cairo_surface_destroy(bg_surf);
7434 cairo_destroy(cr);
7435
7436 if (!gui.by_signal)
7437 gtk_widget_queue_draw_area(gui.drawarea,
7438 FILL_X(col), FILL_Y(col), width, height);
7439
7440 }
7441# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7443
7444 gdk_draw_rectangle(gui.drawarea->window,
7445 gui.text_gc,
7446 TRUE,
7447 FILL_X(col),
7448 FILL_Y(row),
7449 SIGN_WIDTH,
7450 SIGN_HEIGHT);
7451
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452 gdk_pixbuf_render_to_drawable_alpha(sign,
7453 gui.drawarea->window,
7454 MAX(0, xoffset),
7455 MAX(0, yoffset),
7456 FILL_X(col) - MIN(0, xoffset),
7457 FILL_Y(row) - MIN(0, yoffset),
7458 MIN(width, SIGN_WIDTH),
7459 MIN(height, SIGN_HEIGHT),
7460 GDK_PIXBUF_ALPHA_BILEVEL,
7461 127,
7462 GDK_RGB_DITHER_NORMAL,
7463 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007464# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007465 if (need_scale)
7466 g_object_unref(sign);
7467 }
7468}
7469
7470 void *
7471gui_mch_register_sign(char_u *signfile)
7472{
7473 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7474 {
7475 GdkPixbuf *sign;
7476 GError *error = NULL;
7477 char_u *message;
7478
7479 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7480
7481 if (error == NULL)
7482 return sign;
7483
7484 message = (char_u *)error->message;
7485
7486 if (message != NULL && input_conv.vc_type != CONV_NONE)
7487 message = string_convert(&input_conv, message, NULL);
7488
7489 if (message != NULL)
7490 {
7491 /* The error message is already translated and will be more
7492 * descriptive than anything we could possibly do ourselves. */
7493 EMSG2("E255: %s", message);
7494
7495 if (input_conv.vc_type != CONV_NONE)
7496 vim_free(message);
7497 }
7498 g_error_free(error);
7499 }
7500
7501 return NULL;
7502}
7503
7504 void
7505gui_mch_destroy_sign(void *sign)
7506{
7507 if (sign != NULL)
7508 g_object_unref(sign);
7509}
7510
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511#endif /* FEAT_SIGN_ICONS */