blob: 601fafccd2ea94674ef847f2b9e70e208236cfdd [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
89# ifdef WIN3264
90# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
105#ifdef HAVE_GTK_MULTIHEAD
106# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
107 gtk_widget_get_display(gui.mainwin), atom)
108#else
109# define GET_X_ATOM(atom) ((Atom)(atom))
110#endif
111
112/* Selection type distinguishers */
113enum
114{
115 TARGET_TYPE_NONE,
116 TARGET_UTF8_STRING,
117 TARGET_STRING,
118 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000119 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 TARGET_TEXT,
121 TARGET_TEXT_URI_LIST,
122 TARGET_TEXT_PLAIN,
123 TARGET_VIM,
124 TARGET_VIMENC
125};
126
127/*
128 * Table of selection targets supported by Vim.
129 * Note: Order matters, preferred types should come first.
130 */
131static const GtkTargetEntry selection_targets[] =
132{
133 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
134 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000135 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
138 {"TEXT", 0, TARGET_TEXT},
139 {"STRING", 0, TARGET_STRING}
140};
141#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
142
143#ifdef FEAT_DND
144/*
145 * Table of DnD targets supported by Vim.
146 * Note: Order matters, preferred types should come first.
147 */
148static const GtkTargetEntry dnd_targets[] =
149{
150 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000151 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 {"STRING", 0, TARGET_STRING},
154 {"text/plain", 0, TARGET_TEXT_PLAIN}
155};
156# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
157#endif
158
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160/*
161 * "Monospace" is a standard font alias that should be present
162 * on all proper Pango/fontconfig installations.
163 */
164# define DEFAULT_FONT "Monospace 10"
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
167/*
168 * Atoms used to communicate save-yourself from the X11 session manager. There
169 * is no need to move them into the GUI struct, since they should be constant.
170 */
171static GdkAtom wm_protocols_atom = GDK_NONE;
172static GdkAtom save_yourself_atom = GDK_NONE;
173#endif
174
175/*
176 * Atoms used to control/reference X11 selections.
177 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000178static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183/*
184 * Keycodes recognized by vim.
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same
186 * change!
187 */
188static struct special_key
189{
190 guint key_sym;
191 char_u code0;
192 char_u code1;
193}
194const special_keys[] =
195{
196 {GDK_Up, 'k', 'u'},
197 {GDK_Down, 'k', 'd'},
198 {GDK_Left, 'k', 'l'},
199 {GDK_Right, 'k', 'r'},
200 {GDK_F1, 'k', '1'},
201 {GDK_F2, 'k', '2'},
202 {GDK_F3, 'k', '3'},
203 {GDK_F4, 'k', '4'},
204 {GDK_F5, 'k', '5'},
205 {GDK_F6, 'k', '6'},
206 {GDK_F7, 'k', '7'},
207 {GDK_F8, 'k', '8'},
208 {GDK_F9, 'k', '9'},
209 {GDK_F10, 'k', ';'},
210 {GDK_F11, 'F', '1'},
211 {GDK_F12, 'F', '2'},
212 {GDK_F13, 'F', '3'},
213 {GDK_F14, 'F', '4'},
214 {GDK_F15, 'F', '5'},
215 {GDK_F16, 'F', '6'},
216 {GDK_F17, 'F', '7'},
217 {GDK_F18, 'F', '8'},
218 {GDK_F19, 'F', '9'},
219 {GDK_F20, 'F', 'A'},
220 {GDK_F21, 'F', 'B'},
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
222 {GDK_F22, 'F', 'C'},
223 {GDK_F23, 'F', 'D'},
224 {GDK_F24, 'F', 'E'},
225 {GDK_F25, 'F', 'F'},
226 {GDK_F26, 'F', 'G'},
227 {GDK_F27, 'F', 'H'},
228 {GDK_F28, 'F', 'I'},
229 {GDK_F29, 'F', 'J'},
230 {GDK_F30, 'F', 'K'},
231 {GDK_F31, 'F', 'L'},
232 {GDK_F32, 'F', 'M'},
233 {GDK_F33, 'F', 'N'},
234 {GDK_F34, 'F', 'O'},
235 {GDK_F35, 'F', 'P'},
236#ifdef SunXK_F36
237 {SunXK_F36, 'F', 'Q'},
238 {SunXK_F37, 'F', 'R'},
239#endif
240 {GDK_Help, '%', '1'},
241 {GDK_Undo, '&', '8'},
242 {GDK_BackSpace, 'k', 'b'},
243 {GDK_Insert, 'k', 'I'},
244 {GDK_Delete, 'k', 'D'},
245 {GDK_3270_BackTab, 'k', 'B'},
246 {GDK_Clear, 'k', 'C'},
247 {GDK_Home, 'k', 'h'},
248 {GDK_End, '@', '7'},
249 {GDK_Prior, 'k', 'P'},
250 {GDK_Next, 'k', 'N'},
251 {GDK_Print, '%', '9'},
252 /* Keypad keys: */
253 {GDK_KP_Left, 'k', 'l'},
254 {GDK_KP_Right, 'k', 'r'},
255 {GDK_KP_Up, 'k', 'u'},
256 {GDK_KP_Down, 'k', 'd'},
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
259 {GDK_KP_Home, 'K', '1'},
260 {GDK_KP_End, 'K', '4'},
261 {GDK_KP_Prior, 'K', '3'}, /* page up */
262 {GDK_KP_Next, 'K', '5'}, /* page down */
263
264 {GDK_KP_Add, 'K', '6'},
265 {GDK_KP_Subtract, 'K', '7'},
266 {GDK_KP_Divide, 'K', '8'},
267 {GDK_KP_Multiply, 'K', '9'},
268 {GDK_KP_Enter, 'K', 'A'},
269 {GDK_KP_Decimal, 'K', 'B'},
270
271 {GDK_KP_0, 'K', 'C'},
272 {GDK_KP_1, 'K', 'D'},
273 {GDK_KP_2, 'K', 'E'},
274 {GDK_KP_3, 'K', 'F'},
275 {GDK_KP_4, 'K', 'G'},
276 {GDK_KP_5, 'K', 'H'},
277 {GDK_KP_6, 'K', 'I'},
278 {GDK_KP_7, 'K', 'J'},
279 {GDK_KP_8, 'K', 'K'},
280 {GDK_KP_9, 'K', 'L'},
281
282 /* End of list marker: */
283 {0, 0, 0}
284};
285
286/*
287 * Flags for command line options table below.
288 */
289#define ARG_FONT 1
290#define ARG_GEOMETRY 2
291#define ARG_REVERSE 3
292#define ARG_NOREVERSE 4
293#define ARG_BACKGROUND 5
294#define ARG_FOREGROUND 6
295#define ARG_ICONIC 7
296#define ARG_ROLE 8
297#define ARG_NETBEANS 9
298#define ARG_XRM 10 /* ignored */
299#define ARG_MENUFONT 11 /* ignored */
300#define ARG_INDEX_MASK 0x00ff
301#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
302#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
303#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
304#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
305#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
306
307/*
308 * This table holds all the X GUI command line options allowed. This includes
309 * the standard ones so that we can skip them when Vim is started without the
310 * GUI (but the GUI might start up later).
311 *
312 * When changing this, also update doc/gui_x11.txt and the usage message!!!
313 */
314typedef struct
315{
316 const char *name;
317 unsigned int flags;
318}
319cmdline_option_T;
320
321static const cmdline_option_T cmdline_options[] =
322{
323 /* We handle these options ourselves */
324 {"-fn", ARG_FONT|ARG_HAS_VALUE},
325 {"-font", ARG_FONT|ARG_HAS_VALUE},
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
328 {"-rv", ARG_REVERSE},
329 {"-reverse", ARG_REVERSE},
330 {"+rv", ARG_NOREVERSE},
331 {"+reverse", ARG_NOREVERSE},
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
336 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef FEAT_NETBEANS_INTG
339 {"-nb", ARG_NETBEANS}, /* non-standard value format */
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 /* Arguments handled by GTK (and GNOME) internally. */
345 {"--g-fatal-warnings", ARG_FOR_GTK},
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--sync", ARG_FOR_GTK},
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#ifdef FEAT_GUI_GNOME
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
362 {"--sm-disable", ARG_FOR_GTK},
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--oaf-private", ARG_FOR_GTK},
366 {"--enable-sound", ARG_FOR_GTK},
367 {"--disable-sound", ARG_FOR_GTK},
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
372# if 0 /* conflicts with Vim's own --version argument */
373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
374# endif
375 {"--disable-crash-dialog", ARG_FOR_GTK},
376#endif
377 {NULL, 0}
378};
379
380static int gui_argc = 0;
381static char **gui_argv = NULL;
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
385static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000386static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388static int found_iconic_arg = FALSE;
389
390#ifdef FEAT_GUI_GNOME
391/*
392 * Can't use Gnome if --socketid given
393 */
394static int using_gnome = 0;
395#else
396# define using_gnome 0
397#endif
398
399/*
400 * Parse the GUI related command-line arguments. Any arguments used are
401 * deleted from argv, and *argc is decremented accordingly. This is called
402 * when vim is started, whether or not the GUI has been started.
403 */
404 void
405gui_mch_prepare(int *argc, char **argv)
406{
407 const cmdline_option_T *option;
408 int i = 0;
409 int len = 0;
410
411#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
412 /*
413 * Determine the command used to invoke Vim, to be passed as restart
414 * command to the session manager. If argv[0] contains any directory
415 * components try building an absolute path, otherwise leave it as is.
416 */
417 restart_command = argv[0];
418
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
420 {
421 char_u buf[MAXPATHL];
422
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000424 {
425 abs_restart_command = (char *)vim_strsave(buf);
426 restart_command = abs_restart_command;
427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429#endif
430
431 /*
432 * Move all the entries in argv which are relevant to GTK+ and GNOME
433 * into gui_argv. Freed later in gui_mch_init().
434 */
435 gui_argc = 0;
436 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
444 /* Don't waste CPU cycles on non-option arguments. */
445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
451 /* Look for argv[i] in cmdline_options[] table. */
452 for (option = &cmdline_options[0]; option->name != NULL; ++option)
453 {
454 len = strlen(option->name);
455
456 if (strncmp(argv[i], option->name, len) == 0)
457 {
458 if (argv[i][len] == '\0')
459 break;
460 /* allow --foo=bar style */
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
464 /* darn, -nb has non-standard syntax */
465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
467 break;
468#endif
469 }
470 else if ((option->flags & ARG_COMPAT_LONG)
471 && strcmp(argv[i], option->name + 1) == 0)
472 {
473 /* Replace the standard X arguments "-name" and "-display"
474 * with their GNU-style long option counterparts. */
475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
479 if (option->name == NULL) /* no match */
480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
487 /* Move the argument into gui_argv, which
488 * will later be passed to gtk_init_check() */
489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
495 /* Extract the option's value if there is one.
496 * Accept both "--foo bar" and "--foo=bar" style. */
497 if (option->flags & ARG_HAS_VALUE)
498 {
499 if (argv[i][len] == '=')
500 value = &argv[i][len + 1];
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
502 value = argv[i + 1];
503 }
504
505 /* Check for options handled by Vim itself */
506 switch (option->flags & ARG_INDEX_MASK)
507 {
508 case ARG_REVERSE:
509 found_reverse_arg = TRUE;
510 break;
511 case ARG_NOREVERSE:
512 found_reverse_arg = FALSE;
513 break;
514 case ARG_FONT:
515 font_argument = value;
516 break;
517 case ARG_GEOMETRY:
518 if (value != NULL)
519 gui.geom = vim_strsave((char_u *)value);
520 break;
521 case ARG_BACKGROUND:
522 background_argument = value;
523 break;
524 case ARG_FOREGROUND:
525 foreground_argument = value;
526 break;
527 case ARG_ICONIC:
528 found_iconic_arg = TRUE;
529 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 case ARG_ROLE:
531 role_argument = value; /* used later in gui_mch_open() */
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 gui.dofork = FALSE; /* don't fork() when starting GUI */
536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
544 /* These arguments make gnome_program_init() print a message and exit.
545 * Must start the GUI for this, otherwise ":gui" will exit later! */
546 if (option->flags & ARG_NEEDS_GUI)
547 gui.starting = TRUE;
548
549 if (option->flags & ARG_KEEP)
550 ++i;
551 else
552 {
553 /* Remove the flag from the argument vector. */
554 if (--*argc > i)
555 {
556 int n_strip = 1;
557
558 /* Move the argument's value as well, if there is one. */
559 if ((option->flags & ARG_HAS_VALUE)
560 && argv[i][len] != '='
561 && strcmp(argv[i + 1], "--") != 0)
562 {
563 ++n_strip;
564 --*argc;
565 if (option->flags & ARG_FOR_GTK)
566 gui_argv[gui_argc++] = argv[i + 1];
567 }
568
569 if (*argc > i)
570 mch_memmove(&argv[i], &argv[i + n_strip],
571 (*argc - i) * sizeof(char *));
572 }
573 argv[*argc] = NULL;
574 }
575 }
576
577 gui_argv[gui_argc] = NULL;
578}
579
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000580#if defined(EXITFREE) || defined(PROTO)
581 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100582gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000583{
584 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000585#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
586 vim_free(abs_restart_command);
587#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588}
589#endif
590
Bram Moolenaar98921892016-02-23 17:14:37 +0100591#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592/*
593 * This should be maybe completely removed.
594 * Doesn't seem possible, since check_copy_area() relies on
595 * this information. --danielk
596 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000598visibility_event(GtkWidget *widget UNUSED,
599 GdkEventVisibility *event,
600 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601{
602 gui.visibility = event->state;
603 /*
604 * When we do an gdk_window_copy_area(), and the window is partially
605 * obscured, we want to receive an event to tell us whether it worked
606 * or not.
607 */
608 if (gui.text_gc != NULL)
609 gdk_gc_set_exposures(gui.text_gc,
610 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
611 return FALSE;
612}
Bram Moolenaar98921892016-02-23 17:14:37 +0100613#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
615/*
616 * Redraw the corresponding portions of the screen.
617 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100618#if GTK_CHECK_VERSION(3,0,0)
619static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100620static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100621
622static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100623static void gui_gtk_window_clear(GdkWindow *win);
624
625 static void
626gui_gtk3_redraw(int x, int y, int width, int height)
627{
628 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
629 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
630 GUI_MON_NOCLEAR);
631}
632
633 static void
634gui_gtk3_update_cursor(cairo_t *cr)
635{
636 if (gui.row == gui.cursor_row)
637 {
638 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100639 if (State & CMDLINE)
640 gui_update_cursor(TRUE, FALSE);
641 else
642 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100643 gui.by_signal = FALSE;
644 cairo_paint(cr);
645 }
646}
647
648 static gboolean
649gui_gtk3_should_draw_cursor(void)
650{
651 unsigned int cond = 0;
652 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100653 if (gui.cursor_col >= gui.col)
654 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100655 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100656 return cond;
657}
658
659 static gboolean
660draw_event(GtkWidget *widget,
661 cairo_t *cr,
662 gpointer user_data UNUSED)
663{
664 /* Skip this when the GUI isn't set up yet, will redraw later. */
665 if (gui.starting)
666 return FALSE;
667
668 out_flush(); /* make sure all output has been processed */
669 /* for GTK+ 3, may induce other draw events. */
670
671 cairo_set_source_surface(cr, gui.surface, 0, 0);
672
673 /* Draw the window without the cursor. */
674 gui.by_signal = TRUE;
675 {
676 cairo_rectangle_list_t *list = NULL;
677
678 gui_gtk_window_clear(gtk_widget_get_window(widget));
679
680 list = cairo_copy_clip_rectangle_list(cr);
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
682 {
683 int i;
684 for (i = 0; i < list->num_rectangles; i++)
685 {
686 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100687 if (blink_mode)
688 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
689 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100690 {
691 if (get_real_state() & VISUAL)
692 gui_gtk3_redraw(rect.x, rect.y,
693 rect.width, rect.height);
694 else
695 gui_redraw(rect.x, rect.y, rect.width, rect.height);
696 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100697 }
698 }
699 cairo_rectangle_list_destroy(list);
700
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100701 if (get_real_state() & VISUAL)
702 {
703 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
704 gui_update_cursor(TRUE, TRUE);
705 }
706
Bram Moolenaar98921892016-02-23 17:14:37 +0100707 cairo_paint(cr);
708 }
709 gui.by_signal = FALSE;
710
711 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100712 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100713 gui_gtk3_update_cursor(cr);
714
715 return FALSE;
716}
717#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000719expose_event(GtkWidget *widget UNUSED,
720 GdkEventExpose *event,
721 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722{
723 /* Skip this when the GUI isn't set up yet, will redraw later. */
724 if (gui.starting)
725 return FALSE;
726
727 out_flush(); /* make sure all output has been processed */
728 gui_redraw(event->area.x, event->area.y,
729 event->area.width, event->area.height);
730
731 /* Clear the border areas if needed */
732 if (event->area.x < FILL_X(0))
733 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
734 if (event->area.y < FILL_Y(0))
735 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
736 if (event->area.x > FILL_X(Columns))
737 gdk_window_clear_area(gui.drawarea->window,
738 FILL_X((int)Columns), 0, 0, 0);
739 if (event->area.y > FILL_Y(Rows))
740 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
741
742 return FALSE;
743}
Bram Moolenaar98921892016-02-23 17:14:37 +0100744#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745
746#ifdef FEAT_CLIENTSERVER
747/*
748 * Handle changes to the "Comm" property
749 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000751property_event(GtkWidget *widget,
752 GdkEventProperty *event,
753 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754{
755 if (event->type == GDK_PROPERTY_NOTIFY
756 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100757# if GTK_CHECK_VERSION(3,0,0)
758 && GDK_WINDOW_XID(event->window) == commWindow
759# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100761# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 && GET_X_ATOM(event->atom) == commProperty)
763 {
764 XEvent xev;
765
766 /* Translate to XLib */
767 xev.xproperty.type = PropertyNotify;
768 xev.xproperty.atom = commProperty;
769 xev.xproperty.window = commWindow;
770 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100771# if GTK_CHECK_VERSION(3,0,0)
772 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
773 &xev, 0);
774# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200775 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100776# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 }
778 return FALSE;
779}
Bram Moolenaar98921892016-02-23 17:14:37 +0100780#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
782
783/****************************************************************************
784 * Focus handlers:
785 */
786
787
788/*
789 * This is a simple state machine:
790 * BLINK_NONE not blinking at all
791 * BLINK_OFF blinking, cursor is not shown
792 * BLINK_ON blinking, cursor is shown
793 */
794
795#define BLINK_NONE 0
796#define BLINK_OFF 1
797#define BLINK_ON 2
798
799static int blink_state = BLINK_NONE;
800static long_u blink_waittime = 700;
801static long_u blink_ontime = 400;
802static long_u blink_offtime = 250;
803static guint blink_timer = 0;
804
Bram Moolenaar98921892016-02-23 17:14:37 +0100805#if GTK_CHECK_VERSION(3,0,0)
806 static gboolean
807gui_gtk_is_blink_on(void)
808{
809 return blink_state == BLINK_ON;
810}
Bram Moolenaar98921892016-02-23 17:14:37 +0100811#endif
812
Bram Moolenaar703a8042016-06-04 16:24:32 +0200813 int
814gui_mch_is_blinking(void)
815{
816 return blink_state != BLINK_NONE;
817}
818
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 void
820gui_mch_set_blinking(long waittime, long on, long off)
821{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100822#if GTK_CHECK_VERSION(3,0,0)
823 if (waittime == 0 || on == 0 || off == 0)
824 {
825 blink_mode = FALSE;
826
827 blink_waittime = 700;
828 blink_ontime = 400;
829 blink_offtime = 250;
830 }
831 else
832 {
833 blink_mode = TRUE;
834
835 blink_waittime = waittime;
836 blink_ontime = on;
837 blink_offtime = off;
838 }
839#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 blink_waittime = waittime;
841 blink_ontime = on;
842 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100843#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844}
845
846/*
847 * Stop the cursor blinking. Show the cursor if it wasn't shown.
848 */
849 void
850gui_mch_stop_blink(void)
851{
852 if (blink_timer)
853 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100854#if GTK_CHECK_VERSION(3,0,0)
855 g_source_remove(blink_timer);
856#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 blink_timer = 0;
860 }
861 if (blink_state == BLINK_OFF)
862 gui_update_cursor(TRUE, FALSE);
863 blink_state = BLINK_NONE;
864}
865
Bram Moolenaar98921892016-02-23 17:14:37 +0100866#if GTK_CHECK_VERSION(3,0,0)
867 static gboolean
868#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100870#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000871blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872{
873 if (blink_state == BLINK_ON)
874 {
875 gui_undraw_cursor();
876 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100877#if GTK_CHECK_VERSION(3,0,0)
878 blink_timer = g_timeout_add((guint)blink_offtime,
879 (GSourceFunc) blink_cb, NULL);
880#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 blink_timer = gtk_timeout_add((guint32)blink_offtime,
882 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 }
885 else
886 {
887 gui_update_cursor(TRUE, FALSE);
888 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100889#if GTK_CHECK_VERSION(3,0,0)
890 blink_timer = g_timeout_add((guint)blink_ontime,
891 (GSourceFunc) blink_cb, NULL);
892#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 blink_timer = gtk_timeout_add((guint32)blink_ontime,
894 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 }
897
898 return FALSE; /* don't happen again */
899}
900
901/*
902 * Start the cursor blinking. If it was already blinking, this restarts the
903 * waiting time and shows the cursor.
904 */
905 void
906gui_mch_start_blink(void)
907{
908 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200909 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100910#if GTK_CHECK_VERSION(3,0,0)
911 g_source_remove(blink_timer);
912#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100914#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200915 blink_timer = 0;
916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 /* Only switch blinking on if none of the times is zero */
918 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
919 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100920#if GTK_CHECK_VERSION(3,0,0)
921 blink_timer = g_timeout_add((guint)blink_waittime,
922 (GSourceFunc) blink_cb, NULL);
923#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 blink_timer = gtk_timeout_add((guint32)blink_waittime,
925 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 blink_state = BLINK_ON;
928 gui_update_cursor(TRUE, FALSE);
929 }
930}
931
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000933enter_notify_event(GtkWidget *widget UNUSED,
934 GdkEventCrossing *event UNUSED,
935 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936{
937 if (blink_state == BLINK_NONE)
938 gui_mch_start_blink();
939
940 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100941#if GTK_CHECK_VERSION(3,0,0)
942 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
943#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 gtk_widget_grab_focus(gui.drawarea);
947
948 return FALSE;
949}
950
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000952leave_notify_event(GtkWidget *widget UNUSED,
953 GdkEventCrossing *event UNUSED,
954 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955{
956 if (blink_state != BLINK_NONE)
957 gui_mch_stop_blink();
958
959 return FALSE;
960}
961
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000963focus_in_event(GtkWidget *widget,
964 GdkEventFocus *event UNUSED,
965 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966{
967 gui_focus_change(TRUE);
968
969 if (blink_state == BLINK_NONE)
970 gui_mch_start_blink();
971
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000972 /* make sure keyboard input goes to the draw area (if this is focus for a
973 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000974 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000975 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976
977 return TRUE;
978}
979
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000981focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200982 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000983 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
985 gui_focus_change(FALSE);
986
987 if (blink_state != BLINK_NONE)
988 gui_mch_stop_blink();
989
990 return TRUE;
991}
992
993
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994/*
995 * Translate a GDK key value to UTF-8 independently of the current locale.
996 * The output is written to string, which must have room for at least 6 bytes
997 * plus the NUL terminator. Returns the length in bytes.
998 *
999 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1000 * of GdkEventKey::string instead. But event->string is evil; see here why:
1001 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1002 */
1003 static int
1004keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1005{
1006 int len;
1007 guint32 uc;
1008
1009 uc = gdk_keyval_to_unicode(keyval);
1010 if (uc != 0)
1011 {
1012 /* Check for CTRL-foo */
1013 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1014 {
1015 /* These mappings look arbitrary at the first glance, but in fact
1016 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1017 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1018 * more sense and is consistent with usual terminal behaviour). */
1019 if (uc >= '@')
1020 string[0] = uc & 0x1F;
1021 else if (uc == '2')
1022 string[0] = NUL;
1023 else if (uc >= '3' && uc <= '7')
1024 string[0] = uc ^ 0x28;
1025 else if (uc == '8')
1026 string[0] = BS;
1027 else if (uc == '?')
1028 string[0] = DEL;
1029 else
1030 string[0] = uc;
1031 len = 1;
1032 }
1033 else
1034 {
1035 /* Translate a normal key to UTF-8. This doesn't work for dead
1036 * keys of course, you _have_ to use an input method for that. */
1037 len = utf_char2bytes((int)uc, string);
1038 }
1039 }
1040 else
1041 {
1042 /* Translate keys which are represented by ASCII control codes in Vim.
1043 * There are only a few of those; most control keys are translated to
1044 * special terminal-like control sequences. */
1045 len = 1;
1046 switch (keyval)
1047 {
1048 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1049 string[0] = TAB;
1050 break;
1051 case GDK_Linefeed:
1052 string[0] = NL;
1053 break;
1054 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1055 string[0] = CAR;
1056 break;
1057 case GDK_Escape:
1058 string[0] = ESC;
1059 break;
1060 default:
1061 len = 0;
1062 break;
1063 }
1064 }
1065 string[len] = NUL;
1066
1067 return len;
1068}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001070 static int
1071modifiers_gdk2vim(guint state)
1072{
1073 int modifiers = 0;
1074
1075 if (state & GDK_SHIFT_MASK)
1076 modifiers |= MOD_MASK_SHIFT;
1077 if (state & GDK_CONTROL_MASK)
1078 modifiers |= MOD_MASK_CTRL;
1079 if (state & GDK_MOD1_MASK)
1080 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001081#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001082 if (state & GDK_SUPER_MASK)
1083 modifiers |= MOD_MASK_META;
1084#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001085 if (state & GDK_MOD4_MASK)
1086 modifiers |= MOD_MASK_META;
1087
1088 return modifiers;
1089}
1090
1091 static int
1092modifiers_gdk2mouse(guint state)
1093{
1094 int modifiers = 0;
1095
1096 if (state & GDK_SHIFT_MASK)
1097 modifiers |= MOUSE_SHIFT;
1098 if (state & GDK_CONTROL_MASK)
1099 modifiers |= MOUSE_CTRL;
1100 if (state & GDK_MOD1_MASK)
1101 modifiers |= MOUSE_ALT;
1102
1103 return modifiers;
1104}
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106/*
1107 * Main keyboard handler:
1108 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001110key_press_event(GtkWidget *widget UNUSED,
1111 GdkEventKey *event,
1112 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001114 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1116 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 guint key_sym;
1118 int len;
1119 int i;
1120 int modifiers;
1121 int key;
1122 guint state;
1123 char_u *s, *d;
1124
Bram Moolenaar98921892016-02-23 17:14:37 +01001125#if GTK_CHECK_VERSION(3,0,0)
1126 is_key_pressed = TRUE;
1127 gui_mch_stop_blink();
1128#endif
1129
Bram Moolenaar20892c12011-06-26 04:49:00 +02001130 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 key_sym = event->keyval;
1132 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133
1134#ifdef FEAT_XIM
1135 if (xim_queue_key_press_event(event, TRUE))
1136 return TRUE;
1137#endif
1138
1139#ifdef FEAT_HANGULIN
1140 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1141 {
1142 hangul_input_state_toggle();
1143 return TRUE;
1144 }
1145#endif
1146
1147#ifdef SunXK_F36
1148 /*
1149 * These keys have bogus lookup strings, and trapping them here is
1150 * easier than trying to XRebindKeysym() on them with every possible
1151 * combination of modifiers.
1152 */
1153 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1154 len = 0;
1155 else
1156#endif
1157 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 len = keyval_to_string(key_sym, state, string2);
1159
1160 /* Careful: convert_input() doesn't handle the NUL character.
1161 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1162 if (len > 1 && input_conv.vc_type != CONV_NONE)
1163 len = convert_input(string2, len, sizeof(string2));
1164
1165 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 d = string;
1167 for (i = 0; i < len; ++i)
1168 {
1169 *d++ = s[i];
1170 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1171 {
1172 /* Turn CSI into K_CSI. */
1173 *d++ = KS_EXTRA;
1174 *d++ = (int)KE_CSI;
1175 }
1176 }
1177 len = d - string;
1178 }
1179
1180 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1181 if (key_sym == GDK_ISO_Left_Tab)
1182 {
1183 key_sym = GDK_Tab;
1184 state |= GDK_SHIFT_MASK;
1185 }
1186
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187#ifdef FEAT_MENU
1188 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1189 * is a menu shortcut, we ignore everything with the ALT modifier. */
1190 if ((state & GDK_MOD1_MASK)
1191 && gui.menu_is_active
1192 && (*p_wak == 'y'
1193 || (*p_wak == 'm'
1194 && len == 1
1195 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 /* For GTK2 we return false to signify that we haven't handled the
1197 * keypress, so that gtk will handle the mnemonic or accelerator. */
1198 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199#endif
1200
1201 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1202 * that already has the 8th bit set.
1203 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1204 * Don't do this for double-byte encodings, it turns the char into a lead
1205 * byte. */
1206 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001207 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001208#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001209 || (state & GDK_SUPER_MASK)
1210#endif
1211 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1213 && (string[0] & 0x80) == 0
1214 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 )
1217 {
1218 string[0] |= 0x80;
1219 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 if (enc_utf8) /* convert to utf-8 */
1221 {
1222 string[1] = string[0] & 0xbf;
1223 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1224 if (string[1] == CSI)
1225 {
1226 string[2] = KS_EXTRA;
1227 string[3] = (int)KE_CSI;
1228 len = 4;
1229 }
1230 else
1231 len = 2;
1232 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 }
1234
1235 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1236 * value) to detect backspace, delete and keypad keys. */
1237 if (len == 0 || len == 1)
1238 {
1239 for (i = 0; special_keys[i].key_sym != 0; i++)
1240 {
1241 if (special_keys[i].key_sym == key_sym)
1242 {
1243 string[0] = CSI;
1244 string[1] = special_keys[i].code0;
1245 string[2] = special_keys[i].code1;
1246 len = -3;
1247 break;
1248 }
1249 }
1250 }
1251
1252 if (len == 0) /* Unrecognized key */
1253 return TRUE;
1254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 /* Special keys (and a few others) may have modifiers. Also when using a
1256 * double-byte encoding (can't set the 8th bit). */
1257 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1258 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1259 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1260 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001261 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001262#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001263 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001265 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001267 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 /*
1270 * For some keys a shift modifier is translated into another key
1271 * code.
1272 */
1273 if (len == -3)
1274 key = TO_SPECIAL(string[1], string[2]);
1275 else
1276 key = string[0];
1277
1278 key = simplify_key(key, &modifiers);
1279 if (key == CSI)
1280 key = K_CSI;
1281 if (IS_SPECIAL(key))
1282 {
1283 string[0] = CSI;
1284 string[1] = K_SECOND(key);
1285 string[2] = K_THIRD(key);
1286 len = 3;
1287 }
1288 else
1289 {
1290 string[0] = key;
1291 len = 1;
1292 }
1293
1294 if (modifiers != 0)
1295 {
1296 string2[0] = CSI;
1297 string2[1] = KS_MODIFIER;
1298 string2[2] = modifiers;
1299 add_to_input_buf(string2, 3);
1300 }
1301 }
1302
1303 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1304 || (string[0] == intr_char && intr_char != Ctrl_C)))
1305 {
1306 trash_input_buf();
1307 got_int = TRUE;
1308 }
1309
1310 add_to_input_buf(string, len);
1311
1312 /* blank out the pointer if necessary */
1313 if (p_mh)
1314 gui_mch_mousehide(TRUE);
1315
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 return TRUE;
1317}
1318
Bram Moolenaar98921892016-02-23 17:14:37 +01001319#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001321key_release_event(GtkWidget *widget UNUSED,
1322 GdkEventKey *event,
1323 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324{
Bram Moolenaar98921892016-02-23 17:14:37 +01001325# if GTK_CHECK_VERSION(3,0,0)
1326 is_key_pressed = FALSE;
1327 gui_mch_start_blink();
1328# endif
1329# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001330 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 /*
1332 * GTK+ 2 input methods may do fancy stuff on key release events too.
1333 * With the default IM for instance, you can enter any UCS code point
1334 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1335 */
1336 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001337# else
1338 return TRUE;
1339# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340}
1341#endif
1342
1343
1344/****************************************************************************
1345 * Selection handlers:
1346 */
1347
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001349selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001351 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352{
1353 if (event->selection == clip_plus.gtk_sel_atom)
1354 clip_lose_selection(&clip_plus);
1355 else
1356 clip_lose_selection(&clip_star);
1357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 return TRUE;
1359}
1360
1361#define RS_NONE 0 /* selection_received_cb() not called yet */
1362#define RS_OK 1 /* selection_received_cb() called and OK */
1363#define RS_FAIL 2 /* selection_received_cb() called and failed */
1364static int received_selection = RS_NONE;
1365
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001367selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001369 guint time_ UNUSED,
1370 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371{
1372 VimClipboard *cbd;
1373 char_u *text;
1374 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001377 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378
Bram Moolenaar98921892016-02-23 17:14:37 +01001379#if GTK_CHECK_VERSION(3,0,0)
1380 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1381#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 cbd = &clip_plus;
1385 else
1386 cbd = &clip_star;
1387
Bram Moolenaar98921892016-02-23 17:14:37 +01001388#if GTK_CHECK_VERSION(3,0,0)
1389 text = (char_u *)gtk_selection_data_get_data(data);
1390 len = gtk_selection_data_get_length(data);
1391#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 text = (char_u *)data->data;
1393 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395
1396 if (text == NULL || len <= 0)
1397 {
1398 received_selection = RS_FAIL;
1399 /* clip_free_selection(cbd); ??? */
1400
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 return;
1402 }
1403
Bram Moolenaar98921892016-02-23 17:14:37 +01001404#if GTK_CHECK_VERSION(3,0,0)
1405 if (gtk_selection_data_get_data_type(data) == vim_atom)
1406#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 {
1410 motion_type = *text++;
1411 --len;
1412 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001413#if GTK_CHECK_VERSION(3,0,0)
1414 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1415#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001417#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 {
1419 char_u *enc;
1420 vimconv_T conv;
1421
1422 motion_type = *text++;
1423 --len;
1424
1425 enc = text;
1426 text += STRLEN(text) + 1;
1427 len -= text - enc;
1428
1429 /* If the encoding of the text is different from 'encoding', attempt
1430 * converting it. */
1431 conv.vc_type = CONV_NONE;
1432 convert_setup(&conv, enc, p_enc);
1433 if (conv.vc_type != CONV_NONE)
1434 {
1435 tmpbuf = string_convert(&conv, text, &len);
1436 if (tmpbuf != NULL)
1437 text = tmpbuf;
1438 convert_setup(&conv, NULL, NULL);
1439 }
1440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 /* gtk_selection_data_get_text() handles all the nasty details
1443 * and targets and encodings etc. This rocks so hard. */
1444 else
1445 {
1446 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1447 if (tmpbuf_utf8 != NULL)
1448 {
1449 len = STRLEN(tmpbuf_utf8);
1450 if (input_conv.vc_type != CONV_NONE)
1451 {
1452 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1453 if (tmpbuf != NULL)
1454 text = tmpbuf;
1455 }
1456 else
1457 text = tmpbuf_utf8;
1458 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001459 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1460 {
1461 vimconv_T conv;
1462
1463 /* UTF-16, we get this for HTML */
1464 conv.vc_type = CONV_NONE;
1465 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1466
1467 if (conv.vc_type != CONV_NONE)
1468 {
1469 text += 2;
1470 len -= 2;
1471 tmpbuf = string_convert(&conv, text, &len);
1472 convert_setup(&conv, NULL, NULL);
1473 }
1474 if (tmpbuf != NULL)
1475 text = tmpbuf;
1476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001479 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001480 while (len > 0 && text[len - 1] == NUL)
1481 --len;
1482
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 clip_yank_selection(motion_type, text, (long)len, cbd);
1484 received_selection = RS_OK;
1485 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487}
1488
1489/*
1490 * Prepare our selection data for passing it to the external selection
1491 * client.
1492 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001494selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 GtkSelectionData *selection_data,
1496 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001497 guint time_ UNUSED,
1498 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499{
1500 char_u *string;
1501 char_u *tmpbuf;
1502 long_u tmplen;
1503 int length;
1504 int motion_type;
1505 GdkAtom type;
1506 VimClipboard *cbd;
1507
Bram Moolenaar98921892016-02-23 17:14:37 +01001508#if GTK_CHECK_VERSION(3,0,0)
1509 if (gtk_selection_data_get_selection(selection_data)
1510 == clip_plus.gtk_sel_atom)
1511#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 cbd = &clip_plus;
1515 else
1516 cbd = &clip_star;
1517
1518 if (!cbd->owned)
1519 return; /* Shouldn't ever happen */
1520
1521 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001522 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 && info != (guint)TARGET_UTF8_STRING
1524 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 && info != (guint)TARGET_VIM
1526 && info != (guint)TARGET_COMPOUND_TEXT
1527 && info != (guint)TARGET_TEXT)
1528 return;
1529
1530 /* get the selection from the '*'/'+' register */
1531 clip_get_selection(cbd);
1532
1533 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1534 if (motion_type < 0 || string == NULL)
1535 return;
1536 /* Due to int arguments we can't handle more than G_MAXINT. Also
1537 * reserve one extra byte for NUL or the motion type; just in case.
1538 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1539 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1540
1541 if (info == (guint)TARGET_VIM)
1542 {
1543 tmpbuf = alloc((unsigned)length + 1);
1544 if (tmpbuf != NULL)
1545 {
1546 tmpbuf[0] = motion_type;
1547 mch_memmove(tmpbuf + 1, string, (size_t)length);
1548 }
1549 /* For our own format, the first byte contains the motion type */
1550 ++length;
1551 vim_free(string);
1552 string = tmpbuf;
1553 type = vim_atom;
1554 }
1555
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001556 else if (info == (guint)TARGET_HTML)
1557 {
1558 vimconv_T conv;
1559
1560 /* Since we get utf-16, we probably should set it as well. */
1561 conv.vc_type = CONV_NONE;
1562 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1563 if (conv.vc_type != CONV_NONE)
1564 {
1565 tmpbuf = string_convert(&conv, string, &length);
1566 convert_setup(&conv, NULL, NULL);
1567 vim_free(string);
1568 string = tmpbuf;
1569 }
1570
1571 /* Prepend the BOM: "fffe" */
1572 if (string != NULL)
1573 {
1574 tmpbuf = alloc(length + 2);
1575 tmpbuf[0] = 0xff;
1576 tmpbuf[1] = 0xfe;
1577 mch_memmove(tmpbuf + 2, string, (size_t)length);
1578 vim_free(string);
1579 string = tmpbuf;
1580 length += 2;
1581
Bram Moolenaar98921892016-02-23 17:14:37 +01001582#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001583 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001584 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001585 selection_data->type = selection_data->target;
1586 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001587#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001588 gtk_selection_data_set(selection_data, html_atom, 16,
1589 string, length);
1590 vim_free(string);
1591 }
1592 return;
1593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 else if (info == (guint)TARGET_VIMENC)
1595 {
1596 int l = STRLEN(p_enc);
1597
1598 /* contents: motion_type 'encoding' NUL text */
1599 tmpbuf = alloc((unsigned)length + l + 2);
1600 if (tmpbuf != NULL)
1601 {
1602 tmpbuf[0] = motion_type;
1603 STRCPY(tmpbuf + 1, p_enc);
1604 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1605 }
1606 length += l + 2;
1607 vim_free(string);
1608 string = tmpbuf;
1609 type = vimenc_atom;
1610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 /* gtk_selection_data_set_text() handles everything for us. This is
1613 * so easy and simple and cool, it'd be insane not to use it. */
1614 else
1615 {
1616 if (output_conv.vc_type != CONV_NONE)
1617 {
1618 tmpbuf = string_convert(&output_conv, string, &length);
1619 vim_free(string);
1620 if (tmpbuf == NULL)
1621 return;
1622 string = tmpbuf;
1623 }
1624 /* Validate the string to avoid runtime warnings */
1625 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1626 {
1627 gtk_selection_data_set_text(selection_data,
1628 (const char *)string, length);
1629 }
1630 vim_free(string);
1631 return;
1632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
1634 if (string != NULL)
1635 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001636#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001637 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001638 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 selection_data->type = selection_data->target;
1640 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001641#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 gtk_selection_data_set(selection_data, type, 8, string, length);
1643 vim_free(string);
1644 }
1645}
1646
1647/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001648 * Check if the GUI can be started. Called before gvimrc is sourced and
1649 * before fork().
1650 * Return OK or FAIL.
1651 */
1652 int
1653gui_mch_early_init_check(void)
1654{
1655 char_u *p;
1656
1657 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1658 p = mch_getenv((char_u *)"DISPLAY");
1659 if (p == NULL || *p == NUL)
1660 {
1661 gui.dying = TRUE;
1662 EMSG(_((char *)e_opendisp));
1663 return FAIL;
1664 }
1665 return OK;
1666}
1667
1668/*
1669 * Check if the GUI can be started. Called before gvimrc is sourced but after
1670 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 * Return OK or FAIL.
1672 */
1673 int
1674gui_mch_init_check(void)
1675{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001676#ifdef USE_GRESOURCE
1677 static int res_registered = FALSE;
1678
1679 if (!res_registered)
1680 {
1681 /* Call this function in the GUI process; otherwise, the resources
1682 * won't be available. Don't call it twice. */
1683 res_registered = TRUE;
1684 gui_gtk_register_resource();
1685 }
1686#endif
1687
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001688#if GTK_CHECK_VERSION(3,10,0)
1689 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1690 * support for other backends such as Wayland. */
1691 gdk_set_allowed_backends ("x11");
1692#endif
1693
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694#ifdef FEAT_GUI_GNOME
1695 if (gtk_socket_id == 0)
1696 using_gnome = 1;
1697#endif
1698
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001699 /* This defaults to argv[0], but we want it to match the name of the
1700 * shipped gvim.desktop so that Vim's windows can be associated with this
1701 * file. */
1702 g_set_prgname("gvim");
1703
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1705 if (!gtk_init_check(&gui_argc, &gui_argv))
1706 {
1707 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001708 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 return FAIL;
1710 }
1711
1712 return OK;
1713}
1714
1715
1716/****************************************************************************
1717 * Mouse handling callbacks
1718 */
1719
1720
1721static guint mouse_click_timer = 0;
1722static int mouse_timed_out = TRUE;
1723
1724/*
1725 * Timer used to recognize multiple clicks of the mouse button
1726 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001727#if GTK_CHECK_VERSION(3,0,0)
1728 static gboolean
1729#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001731#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732mouse_click_timer_cb(gpointer data)
1733{
1734 /* we don't use this information currently */
1735 int *timed_out = (int *) data;
1736
1737 *timed_out = TRUE;
1738 return FALSE; /* don't happen again */
1739}
1740
1741static guint motion_repeat_timer = 0;
1742static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001743#ifdef GTK_DEST_DEFAULT_ALL
1744static gboolean motion_repeat_timer_cb(gpointer);
1745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
1749 static void
1750process_motion_notify(int x, int y, GdkModifierType state)
1751{
1752 int button;
1753 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001754#if GTK_CHECK_VERSION(3,0,0)
1755 GtkAllocation allocation;
1756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757
1758 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1759 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1760 GDK_BUTTON5_MASK))
1761 ? MOUSE_DRAG : ' ';
1762
1763 /* If our pointer is currently hidden, then we should show it. */
1764 gui_mch_mousehide(FALSE);
1765
1766 /* Just moving the rodent above the drawing area without any button
1767 * being pressed. */
1768 if (button != MOUSE_DRAG)
1769 {
1770 gui_mouse_moved(x, y);
1771 return;
1772 }
1773
1774 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001775 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776
Bram Moolenaar49325942007-05-10 19:19:59 +00001777 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1779
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 /*
1781 * Auto repeat timer handling.
1782 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001783#if GTK_CHECK_VERSION(3,0,0)
1784 gtk_widget_get_allocation(gui.drawarea, &allocation);
1785
1786 if (x < 0 || y < 0
1787 || x >= allocation.width
1788 || y >= allocation.height)
1789#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 if (x < 0 || y < 0
1791 || x >= gui.drawarea->allocation.width
1792 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 {
1795
1796 int dx;
1797 int dy;
1798 int offshoot;
1799 int delay = 10;
1800
1801 /* Calculate the maximal distance of the cursor from the drawing area.
1802 * (offshoot can't become negative here!).
1803 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001804#if GTK_CHECK_VERSION(3,0,0)
1805 dx = x < 0 ? -x : x - allocation.width;
1806 dy = y < 0 ? -y : y - allocation.height;
1807#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1809 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
1812 offshoot = dx > dy ? dx : dy;
1813
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001814 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 * distance of 127 pixels from the main window.
1816 *
1817 * One could think endlessly about the most ergonomic variant here.
1818 * For example it could make sense to calculate the distance from the
1819 * drags start instead...
1820 *
1821 * Maybe a parabolic interpolation would suite us better here too...
1822 */
1823 if (offshoot > 127)
1824 {
1825 /* 5 appears to be somehow near to my perceptual limits :-). */
1826 delay = 5;
1827 }
1828 else
1829 {
1830 delay = (130 * (127 - offshoot)) / 127 + 5;
1831 }
1832
1833 /* shoot again */
1834 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001835#if GTK_CHECK_VERSION(3,0,0)
1836 motion_repeat_timer = g_timeout_add((guint)delay,
1837 motion_repeat_timer_cb, NULL);
1838#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1840 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 }
1843}
1844
Bram Moolenaar98921892016-02-23 17:14:37 +01001845#if GTK_CHECK_VERSION(3,0,0)
1846 static GdkDevice *
1847gui_gtk_get_pointer_device(GtkWidget *widget)
1848{
1849 GdkWindow * const win = gtk_widget_get_window(widget);
1850 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001851# if GTK_CHECK_VERSION(3,20,0)
1852 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1853 return gdk_seat_get_pointer(seat);
1854# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001855 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1856 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001857# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001858}
1859
1860 static GdkWindow *
1861gui_gtk_get_pointer(GtkWidget *widget,
1862 gint *x,
1863 gint *y,
1864 GdkModifierType *state)
1865{
1866 GdkWindow * const win = gtk_widget_get_window(widget);
1867 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1868 return gdk_window_get_device_position(win, dev , x, y, state);
1869}
1870
Bram Moolenaar2369c152016-03-04 23:08:25 +01001871# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001872 static GdkWindow *
1873gui_gtk_window_at_position(GtkWidget *widget,
1874 gint *x,
1875 gint *y)
1876{
1877 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1878 return gdk_device_get_window_at_position(dev, x, y);
1879}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001880# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001881#endif
1882
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883/*
1884 * Timer used to recognize multiple clicks of the mouse button.
1885 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001886#if GTK_CHECK_VERSION(3,0,0)
1887 static gboolean
1888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001890#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001891motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892{
1893 int x;
1894 int y;
1895 GdkModifierType state;
1896
Bram Moolenaar98921892016-02-23 17:14:37 +01001897#if GTK_CHECK_VERSION(3,0,0)
1898 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1899#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902
1903 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1904 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1905 GDK_BUTTON5_MASK)))
1906 {
1907 motion_repeat_timer = 0;
1908 return FALSE;
1909 }
1910
1911 /* If there already is a mouse click in the input buffer, wait another
1912 * time (otherwise we would create a backlog of clicks) */
1913 if (vim_used_in_input_buf() > 10)
1914 return TRUE;
1915
1916 motion_repeat_timer = 0;
1917
1918 /*
1919 * Fake a motion event.
1920 * Trick: Pretend the mouse moved to the next character on every other
1921 * event, otherwise drag events will be discarded, because they are still
1922 * in the same character.
1923 */
1924 if (motion_repeat_offset)
1925 x += gui.char_width;
1926
1927 motion_repeat_offset = !motion_repeat_offset;
1928 process_motion_notify(x, y, state);
1929
1930 /* Don't happen again. We will get reinstalled in the synthetic event
1931 * if needed -- thus repeating should still work. */
1932 return FALSE;
1933}
1934
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001936motion_notify_event(GtkWidget *widget,
1937 GdkEventMotion *event,
1938 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939{
1940 if (event->is_hint)
1941 {
1942 int x;
1943 int y;
1944 GdkModifierType state;
1945
Bram Moolenaar98921892016-02-23 17:14:37 +01001946#if GTK_CHECK_VERSION(3,0,0)
1947 gui_gtk_get_pointer(widget, &x, &y, &state);
1948#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 process_motion_notify(x, y, state);
1952 }
1953 else
1954 {
1955 process_motion_notify((int)event->x, (int)event->y,
1956 (GdkModifierType)event->state);
1957 }
1958
1959 return TRUE; /* handled */
1960}
1961
1962
1963/*
1964 * Mouse button handling. Note please that we are capturing multiple click's
1965 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1966 * This is due to the way the generic VIM code is recognizing multiple clicks.
1967 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001969button_press_event(GtkWidget *widget,
1970 GdkEventButton *event,
1971 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972{
1973 int button;
1974 int repeated_click = FALSE;
1975 int x, y;
1976 int_u vim_modifiers;
1977
Bram Moolenaar20892c12011-06-26 04:49:00 +02001978 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001979
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001981#if GTK_CHECK_VERSION(3,0,0)
1982 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1983#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01001985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 gtk_widget_grab_focus(widget);
1987
1988 /*
1989 * Don't let additional events about multiple clicks send by GTK to us
1990 * after the initial button press event confuse us.
1991 */
1992 if (event->type != GDK_BUTTON_PRESS)
1993 return FALSE;
1994
1995 x = event->x;
1996 y = event->y;
1997
1998 /* Handle multiple clicks */
1999 if (!mouse_timed_out && mouse_click_timer)
2000 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002001#if GTK_CHECK_VERSION(3,0,0)
2002 g_source_remove(mouse_click_timer);
2003#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 mouse_click_timer = 0;
2007 repeated_click = TRUE;
2008 }
2009
2010 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002011#if GTK_CHECK_VERSION(3,0,0)
2012 mouse_click_timer = g_timeout_add((guint)p_mouset,
2013 mouse_click_timer_cb, &mouse_timed_out);
2014#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2016 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002017#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
2019 switch (event->button)
2020 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002021 /* Keep in sync with gui_x11.c.
2022 * Buttons 4-7 are handled in scroll_event() */
2023 case 1: button = MOUSE_LEFT; break;
2024 case 2: button = MOUSE_MIDDLE; break;
2025 case 3: button = MOUSE_RIGHT; break;
2026 case 8: button = MOUSE_X1; break;
2027 case 9: button = MOUSE_X2; break;
2028 default:
2029 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 }
2031
2032#ifdef FEAT_XIM
2033 /* cancel any preediting */
2034 if (im_is_preediting())
2035 xim_reset();
2036#endif
2037
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002038 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039
2040 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041
2042 return TRUE;
2043}
2044
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002046 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002049scroll_event(GtkWidget *widget,
2050 GdkEventScroll *event,
2051 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052{
2053 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002054 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
Bram Moolenaar98921892016-02-23 17:14:37 +01002056#if GTK_CHECK_VERSION(3,0,0)
2057 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2058#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002060#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 gtk_widget_grab_focus(widget);
2062
2063 switch (event->direction)
2064 {
2065 case GDK_SCROLL_UP:
2066 button = MOUSE_4;
2067 break;
2068 case GDK_SCROLL_DOWN:
2069 button = MOUSE_5;
2070 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002071 case GDK_SCROLL_LEFT:
2072 button = MOUSE_7;
2073 break;
2074 case GDK_SCROLL_RIGHT:
2075 button = MOUSE_6;
2076 break;
2077 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 return FALSE;
2079 }
2080
2081# ifdef FEAT_XIM
2082 /* cancel any preediting */
2083 if (im_is_preediting())
2084 xim_reset();
2085# endif
2086
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002087 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088
2089 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2090 FALSE, vim_modifiers);
2091
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 return TRUE;
2093}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094
2095
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002097button_release_event(GtkWidget *widget UNUSED,
2098 GdkEventButton *event,
2099 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100{
2101 int x, y;
2102 int_u vim_modifiers;
2103
Bram Moolenaar20892c12011-06-26 04:49:00 +02002104 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002105
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 /* Remove any motion "machine gun" timers used for automatic further
2107 extension of allocation areas if outside of the applications window
2108 area .*/
2109 if (motion_repeat_timer)
2110 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002111#if GTK_CHECK_VERSION(3,0,0)
2112 g_source_remove(motion_repeat_timer);
2113#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002115#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 motion_repeat_timer = 0;
2117 }
2118
2119 x = event->x;
2120 y = event->y;
2121
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002122 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123
2124 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125
2126 return TRUE;
2127}
2128
2129
2130#ifdef FEAT_DND
2131/****************************************************************************
2132 * Drag aNd Drop support handlers.
2133 */
2134
2135/*
2136 * Count how many items there may be and separate them with a NUL.
2137 * Apparently the items are separated with \r\n. This is not documented,
2138 * thus be careful not to go past the end. Also allow separation with
2139 * NUL characters.
2140 */
2141 static int
2142count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2143{
2144 int i;
2145 char_u *p = out;
2146 int count = 0;
2147
2148 for (i = 0; i < len; ++i)
2149 {
2150 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2151 {
2152 if (p > out && p[-1] != NUL)
2153 {
2154 ++count;
2155 *p++ = NUL;
2156 }
2157 }
2158 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2159 {
2160 *p++ = hexhex2nr(raw + i + 1);
2161 i += 2;
2162 }
2163 else
2164 *p++ = raw[i];
2165 }
2166 if (p > out && p[-1] != NUL)
2167 {
2168 *p = NUL; /* last item didn't have \r or \n */
2169 ++count;
2170 }
2171 return count;
2172}
2173
2174/*
2175 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2176 * this process, URI which protocol is not "file:" are removed. Return
2177 * length of array (less than "max").
2178 */
2179 static int
2180filter_uri_list(char_u **outlist, int max, char_u *src)
2181{
2182 int i, j;
2183
2184 for (i = j = 0; i < max; ++i)
2185 {
2186 outlist[i] = NULL;
2187 if (STRNCMP(src, "file:", 5) == 0)
2188 {
2189 src += 5;
2190 if (STRNCMP(src, "//localhost", 11) == 0)
2191 src += 11;
2192 while (src[0] == '/' && src[1] == '/')
2193 ++src;
2194 outlist[j++] = vim_strsave(src);
2195 }
2196 src += STRLEN(src) + 1;
2197 }
2198 return j;
2199}
2200
2201 static char_u **
2202parse_uri_list(int *count, char_u *data, int len)
2203{
2204 int n = 0;
2205 char_u *tmp = NULL;
2206 char_u **array = NULL;;
2207
2208 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2209 {
2210 n = count_and_decode_uri_list(tmp, data, len);
2211 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2212 n = filter_uri_list(array, n, tmp);
2213 }
2214 vim_free(tmp);
2215 *count = n;
2216 return array;
2217}
2218
2219 static void
2220drag_handle_uri_list(GdkDragContext *context,
2221 GtkSelectionData *data,
2222 guint time_,
2223 GdkModifierType state,
2224 gint x,
2225 gint y)
2226{
2227 char_u **fnames;
2228 int nfiles = 0;
2229
Bram Moolenaar98921892016-02-23 17:14:37 +01002230# if GTK_CHECK_VERSION(3,0,0)
2231 fnames = parse_uri_list(&nfiles,
2232 (char_u *)gtk_selection_data_get_data(data),
2233 gtk_selection_data_get_length(data));
2234# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002236# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
2238 if (fnames != NULL && nfiles > 0)
2239 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002240 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241
2242 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2243
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002244 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245
2246 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2247 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002248 else
2249 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250}
2251
2252 static void
2253drag_handle_text(GdkDragContext *context,
2254 GtkSelectionData *data,
2255 guint time_,
2256 GdkModifierType state)
2257{
2258 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2259 char_u *text;
2260 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262
Bram Moolenaar98921892016-02-23 17:14:37 +01002263# if GTK_CHECK_VERSION(3,0,0)
2264 text = (char_u *)gtk_selection_data_get_data(data);
2265 len = gtk_selection_data_get_length(data);
2266# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 text = data->data;
2268 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002269# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
Bram Moolenaar98921892016-02-23 17:14:37 +01002271# if GTK_CHECK_VERSION(3,0,0)
2272 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2273# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002275# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 if (input_conv.vc_type != CONV_NONE)
2278 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 if (tmpbuf != NULL)
2280 text = tmpbuf;
2281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
2283 dnd_yank_drag_data(text, (long)len);
2284 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002287 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288
2289 if (dropkey[2] != 0)
2290 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2291 else
2292 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293}
2294
2295/*
2296 * DND receiver.
2297 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 static void
2299drag_data_received_cb(GtkWidget *widget,
2300 GdkDragContext *context,
2301 gint x,
2302 gint y,
2303 GtkSelectionData *data,
2304 guint info,
2305 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002306 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307{
2308 GdkModifierType state;
2309
2310 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002311# if GTK_CHECK_VERSION(3,0,0)
2312 const guchar * const data_data = gtk_selection_data_get_data(data);
2313 const gint data_length = gtk_selection_data_get_length(data);
2314 const gint data_format = gtk_selection_data_get_format(data);
2315
2316 if (data_data == NULL
2317 || data_length <= 0
2318 || data_format != 8
2319 || data_data[data_length] != '\0')
2320# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 if (data->data == NULL
2322 || data->length <= 0
2323 || data->format != 8
2324 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002325# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 {
2327 gtk_drag_finish(context, FALSE, FALSE, time_);
2328 return;
2329 }
2330
2331 /* Get the current modifier state for proper distinguishment between
2332 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002333#if GTK_CHECK_VERSION(3,0,0)
2334 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2335# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002337# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338
2339 /* Not sure about the role of "text/plain" here... */
2340 if (info == (guint)TARGET_TEXT_URI_LIST)
2341 drag_handle_uri_list(context, data, time_, state, x, y);
2342 else
2343 drag_handle_text(context, data, time_, state);
2344
2345}
2346#endif /* FEAT_DND */
2347
2348
2349#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2350/*
2351 * GnomeClient interact callback. Check for unsaved buffers that cannot
2352 * be abandoned and pop up a dialog asking the user for confirmation if
2353 * necessary.
2354 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002356sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002358 GnomeDialogType type UNUSED,
2359 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360{
2361 cmdmod_T save_cmdmod;
2362 gboolean shutdown_cancelled;
2363
2364 save_cmdmod = cmdmod;
2365
2366# ifdef FEAT_BROWSE
2367 cmdmod.browse = TRUE;
2368# endif
2369# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2370 cmdmod.confirm = TRUE;
2371# endif
2372 /*
2373 * If there are changed buffers, present the user with
2374 * a dialog if possible, otherwise give an error message.
2375 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002376 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377
2378 exiting = FALSE;
2379 cmdmod = save_cmdmod;
2380 setcursor(); /* position the cursor */
2381 out_flush();
2382 /*
2383 * If the user hit the [Cancel] button the whole shutdown
2384 * will be cancelled. Wow, quite powerful feature (:
2385 */
2386 gnome_interaction_key_return(key, shutdown_cancelled);
2387}
2388
2389/*
2390 * Generate a script that can be used to restore the current editing session.
2391 * Save the value of v:this_session before running :mksession in order to make
2392 * automagic session save fully transparent. Return TRUE on success.
2393 */
2394 static int
2395write_session_file(char_u *filename)
2396{
2397 char_u *escaped_filename;
2398 char *mksession_cmdline;
2399 unsigned int save_ssop_flags;
2400 int failed;
2401
2402 /*
2403 * Build an ex command line to create a script that restores the current
2404 * session if executed. Escape the filename to avoid nasty surprises.
2405 */
2406 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2407 if (escaped_filename == NULL)
2408 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002409 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2410 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002412
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 /*
2414 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2415 * unpredictable effects when the session is saved automatically. Also,
2416 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2417 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2418 * enormously large if the GNOME session feature is used regularly.
2419 */
2420 save_ssop_flags = ssop_flags;
2421 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002422 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
2424 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2425 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2426 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002427 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428
2429 ssop_flags = save_ssop_flags;
2430 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002431
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 /*
2433 * Reopen the file and append a command to restore v:this_session,
2434 * as if this save never happened. This is to avoid conflicts with
2435 * the user's own sessions. FIXME: It's probably less hackish to add
2436 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2437 */
2438 if (!failed)
2439 {
2440 FILE *fd;
2441
2442 fd = open_exfile(filename, TRUE, APPENDBIN);
2443
2444 failed = (fd == NULL
2445 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2446 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2447
2448 if (fd != NULL && fclose(fd) != 0)
2449 failed = TRUE;
2450
2451 if (failed)
2452 mch_remove(filename);
2453 }
2454
2455 return !failed;
2456}
2457
2458/*
2459 * "save_yourself" signal handler. Initiate an interaction to ask the user
2460 * for confirmation if necessary. Save the current editing session and tell
2461 * the session manager how to restart Vim.
2462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 static gboolean
2464sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002465 gint phase UNUSED,
2466 GnomeSaveStyle save_style UNUSED,
2467 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002469 gboolean fast UNUSED,
2470 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471{
2472 static const char suffix[] = "-session.vim";
2473 char *session_file;
2474 unsigned int len;
2475 gboolean success;
2476
2477 /* Always request an interaction if possible. check_changed_any()
2478 * won't actually show a dialog unless any buffers have been modified.
2479 * There doesn't seem to be an obvious way to check that without
2480 * automatically firing the dialog. Anyway, it works just fine. */
2481 if (interact_style == GNOME_INTERACT_ANY)
2482 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2483 &sm_client_check_changed_any,
2484 NULL);
2485 out_flush();
2486 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2487
2488 /* The path is unique for each session save. We do neither know nor care
2489 * which session script will actually be used later. This decision is in
2490 * the domain of the session manager. */
2491 session_file = gnome_config_get_real_path(
2492 gnome_client_get_config_prefix(client));
2493 len = strlen(session_file);
2494
2495 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2496 --len; /* get rid of the superfluous trailing '/' */
2497
2498 session_file = g_renew(char, session_file, len + sizeof(suffix));
2499 memcpy(session_file + len, suffix, sizeof(suffix));
2500
2501 success = write_session_file((char_u *)session_file);
2502
2503 if (success)
2504 {
2505 const char *argv[8];
2506 int i;
2507
2508 /* Tell the session manager how to wipe out the stored session data.
2509 * This isn't as dangerous as it looks, don't worry :) session_file
2510 * is a unique absolute filename. Usually it'll be something like
2511 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2512 i = 0;
2513 argv[i++] = "rm";
2514 argv[i++] = session_file;
2515 argv[i] = NULL;
2516
2517 gnome_client_set_discard_command(client, i, (char **)argv);
2518
2519 /* Tell the session manager how to restore the just saved session.
2520 * This is easily done thanks to Vim's -S option. Pass the -f flag
2521 * since there's no need to fork -- it might even cause confusion.
2522 * Also pass the window role to give the WM something to match on.
2523 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2524 i = 0;
2525 argv[i++] = restart_command;
2526 argv[i++] = "-f";
2527 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 argv[i++] = "--role";
2529 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 argv[i++] = "-S";
2531 argv[i++] = session_file;
2532 argv[i] = NULL;
2533
2534 gnome_client_set_restart_command(client, i, (char **)argv);
2535 gnome_client_set_clone_command(client, 0, NULL);
2536 }
2537
2538 g_free(session_file);
2539
2540 return success;
2541}
2542
2543/*
2544 * Called when the session manager wants us to die. There isn't much to save
2545 * here since "save_yourself" has been emitted before (unless serious trouble
2546 * is happening).
2547 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002549sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551 /* Don't write messages to the GUI anymore */
2552 full_screen = FALSE;
2553
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002554 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002555 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002556 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 preserve_exit();
2558}
2559
2560/*
2561 * Connect our signal handlers to be notified on session save and shutdown.
2562 */
2563 static void
2564setup_save_yourself(void)
2565{
2566 GnomeClient *client;
2567
2568 client = gnome_master_client();
2569
2570 if (client != NULL)
2571 {
2572 /* Must use the deprecated gtk_signal_connect() for compatibility
2573 * with GNOME 1. Arrgh, zombies! */
2574 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2575 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2576 gtk_signal_connect(GTK_OBJECT(client), "die",
2577 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2578 }
2579}
2580
2581#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2582
2583# ifdef USE_XSMP
2584/*
2585 * GTK tells us that XSMP needs attention
2586 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002588local_xsmp_handle_requests(
2589 GIOChannel *source UNUSED,
2590 GIOCondition condition,
2591 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592{
2593 if (condition == G_IO_IN)
2594 {
2595 /* Do stuff; maybe close connection */
2596 if (xsmp_handle_requests() == FAIL)
2597 g_io_channel_unref((GIOChannel *)data);
2598 return TRUE;
2599 }
2600 /* Error */
2601 g_io_channel_unref((GIOChannel *)data);
2602 xsmp_close();
2603 return TRUE;
2604}
2605# endif /* USE_XSMP */
2606
2607/*
2608 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2609 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2610 */
2611 static void
2612setup_save_yourself(void)
2613{
2614 Atom *existing_atoms = NULL;
2615 int count = 0;
2616
Bram Moolenaar98921892016-02-23 17:14:37 +01002617# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 if (xsmp_icefd != -1)
2619 {
2620 /*
2621 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2622 * set up GTK IO monitor
2623 */
2624 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2625
2626 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2627 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002628 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 }
2630 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002631# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 {
2633 /* Fall back to old method */
2634
2635 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002636# if GTK_CHECK_VERSION(3,0,0)
2637 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2638
2639 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2640 GDK_WINDOW_XID(mainwin_win),
2641 &existing_atoms, &count))
2642# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2644 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2645 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002646# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
2648 Atom *new_atoms;
2649 Atom save_yourself_xatom;
2650 int i;
2651
2652 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2653
2654 /* check if WM_SAVE_YOURSELF isn't there yet */
2655 for (i = 0; i < count; ++i)
2656 if (existing_atoms[i] == save_yourself_xatom)
2657 break;
2658
2659 if (i == count)
2660 {
2661 /* allocate an Atoms array which is one item longer */
2662 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2663 * sizeof(Atom)));
2664 if (new_atoms != NULL)
2665 {
2666 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2667 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002668# if GTK_CHECK_VERSION(3,0,0)
2669 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2670 GDK_WINDOW_XID(mainwin_win),
2671# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2673 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002674# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 new_atoms, count + 1);
2676 vim_free(new_atoms);
2677 }
2678 }
2679 XFree(existing_atoms);
2680 }
2681 }
2682}
2683
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684/*
2685 * Installing a global event filter seems to be the only way to catch
2686 * client messages of type WM_PROTOCOLS without overriding GDK's own
2687 * client message event filter. Well, that's still better than trying
2688 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 *
2690 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2691 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2692 * I have the nasty feeling modern session managers just don't send this
2693 * deprecated message anymore. Addition: confirmed by several people.
2694 *
2695 * The GNOME session support is much cooler anyway. Unlike this ugly
2696 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2697 * it should work with KDE as well.
2698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002700global_event_filter(GdkXEvent *xev,
2701 GdkEvent *event UNUSED,
2702 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703{
2704 XEvent *xevent = (XEvent *)xev;
2705
2706 if (xevent != NULL
2707 && xevent->type == ClientMessage
2708 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002709 && (long_u)xevent->xclient.data.l[0]
2710 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 {
2712 out_flush();
2713 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2714 /*
2715 * Set the window's WM_COMMAND property, to let the window manager
2716 * know we are done saving ourselves. We don't want to be
2717 * restarted, thus set argv to NULL.
2718 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002719# if GTK_CHECK_VERSION(3,0,0)
2720 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2721 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2722# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2724 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002725# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 NULL, 0);
2727 return GDK_FILTER_REMOVE;
2728 }
2729
2730 return GDK_FILTER_CONTINUE;
2731}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2733
2734
2735/*
2736 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2737 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002739mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741/* If you get an error message here, you still need to unpack the runtime
2742 * archive! */
2743#ifdef magick
2744# undef magick
2745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 /* A bit hackish, but avoids casting later and allows optimization */
2747# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748#define magick vim32x32
2749#include "../runtime/vim32x32.xpm"
2750#undef magick
2751#define magick vim16x16
2752#include "../runtime/vim16x16.xpm"
2753#undef magick
2754#define magick vim48x48
2755#include "../runtime/vim48x48.xpm"
2756#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758
Bram Moolenaar98921892016-02-23 17:14:37 +01002759#if GTK_CHECK_VERSION(3,0,0)
2760 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2761#endif
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 /* When started with "--echo-wid" argument, write window ID on stdout. */
2764 if (echo_wid_arg)
2765 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002766#if GTK_CHECK_VERSION(3,0,0)
2767 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2768#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002770#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 fflush(stdout);
2772 }
2773
2774 if (vim_strchr(p_go, GO_ICON) != NULL)
2775 {
2776 /*
2777 * Add an icon to the main window. For fun and convenience of the user.
2778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 GList *icons = NULL;
2780
2781 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2782 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2783 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2784
2785 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2786
2787 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2788 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 }
2790
2791#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2792 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794#endif
2795 /* Setup to indicate to the window manager that we want to catch the
2796 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2797 * manager instead. */
2798#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2799 if (using_gnome)
2800#endif
2801 setup_save_yourself();
2802
2803#ifdef FEAT_CLIENTSERVER
2804 if (serverName == NULL && serverDelayedStartName != NULL)
2805 {
2806 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002807# if GTK_CHECK_VERSION(3,0,0)
2808 commWindow = GDK_WINDOW_XID(mainwin_win);
2809
2810 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2811 serverDelayedStartName);
2812# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2814
2815 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2816 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002817# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 }
2819 else
2820 {
2821 /*
2822 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2823 * have to change the "server" registration to that of the main window
2824 * If we have not registered a name yet, remember the window
2825 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002826# if GTK_CHECK_VERSION(3,0,0)
2827 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2828 GDK_WINDOW_XID(mainwin_win));
2829# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2831 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002832# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 }
2834 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002835# if GTK_CHECK_VERSION(3,0,0)
2836 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2837 G_CALLBACK(property_event), NULL);
2838# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2840 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002841# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842#endif
2843}
2844
2845 static GdkCursor *
2846create_blank_pointer(void)
2847{
2848 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002849#if GTK_CHECK_VERSION(3,0,0)
2850 GdkPixbuf *blank_mask;
2851#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 GdkCursor *cursor;
2855 GdkColor color = { 0, 0, 0, 0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002856#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859
2860#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002861# if GTK_CHECK_VERSION(3,12,0)
2862 {
2863 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2864 GdkScreen * const scrn = gdk_window_get_screen(win);
2865 root_window = gdk_screen_get_root_window(scrn);
2866 }
2867# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002869# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870#endif
2871
2872 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2873 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002874#if GTK_CHECK_VERSION(3,0,0)
2875 {
2876 cairo_surface_t *surf;
2877 cairo_t *cr;
2878
2879 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2880 cr = cairo_create(surf);
2881
2882 cairo_set_source_rgb(cr,
2883 color.red / 65535.0,
2884 color.green / 65535.0,
2885 color.blue / 65535.0);
2886 cairo_rectangle(cr, 0, 0, 1, 1);
2887 cairo_fill(cr);
2888 cairo_destroy(cr);
2889
2890 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2891 cairo_surface_destroy(surf);
2892
2893 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2894 blank_mask, 0, 0);
2895 g_object_unref(blank_mask);
2896 }
2897#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2899 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2900 &color, &color, 0, 0);
2901 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
2904 return cursor;
2905}
2906
2907#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 static void
2909mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002910 GdkScreen *previous_screen UNUSED,
2911 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912{
2913 if (!gtk_widget_has_screen(widget))
2914 return;
2915
2916 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002917 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 */
2919 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002920# if GTK_CHECK_VERSION(3,0,0)
2921 g_object_unref(G_OBJECT(gui.blank_pointer));
2922# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925
2926 gui.blank_pointer = create_blank_pointer();
2927
Bram Moolenaar98921892016-02-23 17:14:37 +01002928# if GTK_CHECK_VERSION(3,0,0)
2929 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2930 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2931 gui.blank_pointer);
2932# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2934 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936
2937 /*
2938 * Create a new PangoContext for this screen, and initialize it
2939 * with the current font if necessary.
2940 */
2941 if (gui.text_context != NULL)
2942 g_object_unref(gui.text_context);
2943
2944 gui.text_context = gtk_widget_create_pango_context(widget);
2945 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2946
2947 if (gui.norm_font != NULL)
2948 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002949 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002950 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 }
2952}
2953#endif /* HAVE_GTK_MULTIHEAD */
2954
2955/*
2956 * After the drawing area comes up, we calculate all colors and create the
2957 * dummy blank cursor.
2958 *
2959 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2960 * fact that the main VIM engine doesn't take them into account anywhere.
2961 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002963drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964{
2965 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002966#if GTK_CHECK_VERSION(3,0,0)
2967 GtkAllocation allocation;
2968#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969
2970#ifdef FEAT_XIM
2971 xim_init();
2972#endif
2973 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002974#if GTK_CHECK_VERSION(3,0,0)
2975 gui.surface = gdk_window_create_similar_surface(
2976 gtk_widget_get_window(widget),
2977 CAIRO_CONTENT_COLOR_ALPHA,
2978 gtk_widget_get_allocated_width(widget),
2979 gtk_widget_get_allocated_height(widget));
2980#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983
2984 gui.blank_pointer = create_blank_pointer();
2985 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002986#if GTK_CHECK_VERSION(3,0,0)
2987 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
2988#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
2992 /* get the actual size of the scrollbars, if they are realized */
2993 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2994 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2995 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2996 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002997#if GTK_CHECK_VERSION(3,0,0)
2998 gtk_widget_get_allocation(sbar, &allocation);
2999 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3000 gui.scrollbar_width = allocation.width;
3001#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3003 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003007#if GTK_CHECK_VERSION(3,0,0)
3008 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3009 gui.scrollbar_height = allocation.height;
3010#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3012 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014}
3015
3016/*
3017 * Properly clean up on shutdown.
3018 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003020drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021{
3022 /* Don't write messages to the GUI anymore */
3023 full_screen = FALSE;
3024
3025#ifdef FEAT_XIM
3026 im_shutdown();
3027#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 if (gui.ascii_glyphs != NULL)
3029 {
3030 pango_glyph_string_free(gui.ascii_glyphs);
3031 gui.ascii_glyphs = NULL;
3032 }
3033 if (gui.ascii_font != NULL)
3034 {
3035 g_object_unref(gui.ascii_font);
3036 gui.ascii_font = NULL;
3037 }
3038 g_object_unref(gui.text_context);
3039 gui.text_context = NULL;
3040
Bram Moolenaar98921892016-02-23 17:14:37 +01003041#if GTK_CHECK_VERSION(3,0,0)
3042 if (gui.surface != NULL)
3043 {
3044 cairo_surface_destroy(gui.surface);
3045 gui.surface = NULL;
3046 }
3047#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 g_object_unref(gui.text_gc);
3049 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051
Bram Moolenaar98921892016-02-23 17:14:37 +01003052#if GTK_CHECK_VERSION(3,0,0)
3053 g_object_unref(G_OBJECT(gui.blank_pointer));
3054#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058}
3059
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003061drawarea_style_set_cb(GtkWidget *widget UNUSED,
3062 GtkStyle *previous_style UNUSED,
3063 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064{
3065 gui_mch_new_colors();
3066}
3067
Bram Moolenaar98921892016-02-23 17:14:37 +01003068#if GTK_CHECK_VERSION(3,0,0)
3069 static gboolean
3070drawarea_configure_event_cb(GtkWidget *widget,
3071 GdkEventConfigure *event,
3072 gpointer data UNUSED)
3073{
3074 static int cur_width = 0;
3075 static int cur_height = 0;
3076
3077 g_return_val_if_fail(event
3078 && event->width >= 1 && event->height >= 1, TRUE);
3079
3080 if (event->width == cur_width && event->height == cur_height)
3081 return TRUE;
3082
3083 cur_width = event->width;
3084 cur_height = event->height;
3085
3086 if (gui.surface != NULL)
3087 cairo_surface_destroy(gui.surface);
3088
3089 gui.surface = gdk_window_create_similar_surface(
3090 gtk_widget_get_window(widget),
3091 CAIRO_CONTENT_COLOR_ALPHA,
3092 event->width, event->height);
3093
3094 gtk_widget_queue_draw(widget);
3095
3096 return TRUE;
3097}
3098#endif
3099
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100/*
3101 * Callback routine for the "delete_event" signal on the toplevel window.
3102 * Tries to vim gracefully, or refuses to exit with changed buffers.
3103 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003105delete_event_cb(GtkWidget *widget UNUSED,
3106 GdkEventAny *event UNUSED,
3107 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108{
3109 gui_shell_closed();
3110 return TRUE;
3111}
3112
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003113#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3114 static int
3115get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3116{
3117 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3118
Bram Moolenaar98921892016-02-23 17:14:37 +01003119# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003120 if (using_gnome && widget != NULL)
3121 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003122 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003123 BonoboDockItem *dockitem;
3124
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003125 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003126 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3127 {
3128 /* Only menu & toolbar are dock items. Could tabline be?
3129 * Seem to be only the 2 defined in GNOME */
3130 widget = parent;
3131 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003132
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003133 if (dockitem == NULL || dockitem->is_floating)
3134 return 0;
3135 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3136 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003137 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003138# endif
3139# if GTK_CHECK_VERSION(3,0,0)
3140 if (widget != NULL
3141 && item_orientation == orientation
3142 && gtk_widget_get_realized(widget)
3143 && gtk_widget_get_visible(widget))
3144# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003145 if (widget != NULL
3146 && item_orientation == orientation
3147 && GTK_WIDGET_REALIZED(widget)
3148 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003149# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003150 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003151# if GTK_CHECK_VERSION(3,0,0)
3152 GtkAllocation allocation;
3153
3154 gtk_widget_get_allocation(widget, &allocation);
3155
3156 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3157 return allocation.height;
3158 else
3159 return allocation.width;
3160# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003161 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3162 return widget->allocation.height;
3163 else
3164 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003165# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003166 }
3167 return 0;
3168}
3169#endif
3170
3171 static int
3172get_menu_tool_width(void)
3173{
3174 int width = 0;
3175
3176#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3177# ifdef FEAT_MENU
3178 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3179# endif
3180# ifdef FEAT_TOOLBAR
3181 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3182# endif
3183# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003184 if (gui.tabline != NULL)
3185 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003186# endif
3187#endif
3188
3189 return width;
3190}
3191
3192 static int
3193get_menu_tool_height(void)
3194{
3195 int height = 0;
3196
3197#ifdef FEAT_MENU
3198 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3199#endif
3200#ifdef FEAT_TOOLBAR
3201 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3202#endif
3203#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003204 if (gui.tabline != NULL)
3205 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003206#endif
3207
3208 return height;
3209}
3210
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003211/* This controls whether we can set the real window hints at
3212 * start-up when in a GtkPlug.
3213 * 0 = normal processing (default)
3214 * 1 = init. hints set, no-one's tried to reset since last check
3215 * 2 = init. hints set, attempt made to change hints
3216 */
3217static int init_window_hints_state = 0;
3218
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003219 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003220update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003221{
3222 static int old_width = 0;
3223 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003224 static int old_min_width = 0;
3225 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003226 static int old_char_width = 0;
3227 static int old_char_height = 0;
3228
3229 int width;
3230 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003231 int min_width;
3232 int min_height;
3233
3234 /* At start-up, don't try to set the hints until the initial
3235 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003236 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003237 */
3238 if (!(force_width && force_height) && init_window_hints_state > 0)
3239 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003240 /* Don't do it! */
3241 init_window_hints_state = 2;
3242 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003243 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003244
3245 /* This also needs to be done when the main window isn't there yet,
3246 * otherwise the hints don't work. */
3247 width = gui_get_base_width();
3248 height = gui_get_base_height();
3249# ifdef FEAT_MENU
3250 height += tabline_height() * gui.char_height;
3251# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003252 width += get_menu_tool_width();
3253 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003254
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003255 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003256 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003257 * 'set columns=' or init. -geom) we briefly set the min. to the size
3258 * we wish to be instead of the legitimate minimum so that we actually
3259 * resize correctly.
3260 */
3261 if (force_width && force_height)
3262 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003263 min_width = force_width;
3264 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003265 }
3266 else
3267 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003268 min_width = width + MIN_COLUMNS * gui.char_width;
3269 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003270 }
3271
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003272 /* Avoid an expose event when the size didn't change. */
3273 if (width != old_width
3274 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003275 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003276 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003277 || gui.char_width != old_char_width
3278 || gui.char_height != old_char_height)
3279 {
3280 GdkGeometry geometry;
3281 GdkWindowHints geometry_mask;
3282
3283 geometry.width_inc = gui.char_width;
3284 geometry.height_inc = gui.char_height;
3285 geometry.base_width = width;
3286 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003287 geometry.min_width = min_width;
3288 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003289 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3290 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003291 /* Using gui.formwin as geometry widget doesn't work as expected
3292 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3293 * in Vim confuse GTK+. */
3294 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3295 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003296 old_width = width;
3297 old_height = height;
3298 old_min_width = min_width;
3299 old_min_height = min_height;
3300 old_char_width = gui.char_width;
3301 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003302 }
3303}
3304
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305#ifdef FEAT_TOOLBAR
3306
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307/*
3308 * This extra effort wouldn't be necessary if we only used stock icons in the
3309 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3310 * shouldn't be treated differently, thus we do need this.
3311 */
3312 static void
3313icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3314{
3315 if (GTK_IS_IMAGE(widget))
3316 {
3317 GtkImage *image = (GtkImage *)widget;
3318
Bram Moolenaar98921892016-02-23 17:14:37 +01003319# if GTK_CHECK_VERSION(3,10,0)
3320 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3321 {
3322 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3323 const gchar *icon_name;
3324
3325 gtk_image_get_icon_name(image, &icon_name, NULL);
3326
3327 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3328 }
3329# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 /* User-defined icons are stored in a GtkIconSet */
3331 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3332 {
3333 GtkIconSet *icon_set;
3334 GtkIconSize icon_size;
3335
3336 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3337 icon_size = (GtkIconSize)(long)user_data;
3338
3339 gtk_icon_set_ref(icon_set);
3340 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3341 gtk_icon_set_unref(icon_set);
3342 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003343# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 }
3345 else if (GTK_IS_CONTAINER(widget))
3346 {
3347 gtk_container_foreach((GtkContainer *)widget,
3348 &icon_size_changed_foreach,
3349 user_data);
3350 }
3351}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352
3353 static void
3354set_toolbar_style(GtkToolbar *toolbar)
3355{
3356 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357 GtkIconSize size;
3358 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3361 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3362 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003363 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3365 style = GTK_TOOLBAR_BOTH;
3366 else if (toolbar_flags & TOOLBAR_TEXT)
3367 style = GTK_TOOLBAR_TEXT;
3368 else
3369 style = GTK_TOOLBAR_ICONS;
3370
3371 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003372# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003374# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 switch (tbis_flags)
3377 {
3378 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3379 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3380 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3381 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003382 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3383 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 default: size = GTK_ICON_SIZE_INVALID; break;
3385 }
3386 oldsize = gtk_toolbar_get_icon_size(toolbar);
3387
3388 if (size == GTK_ICON_SIZE_INVALID)
3389 {
3390 /* Let global user preferences decide the icon size. */
3391 gtk_toolbar_unset_icon_size(toolbar);
3392 size = gtk_toolbar_get_icon_size(toolbar);
3393 }
3394 if (size != oldsize)
3395 {
3396 gtk_container_foreach(GTK_CONTAINER(toolbar),
3397 &icon_size_changed_foreach,
3398 GINT_TO_POINTER((int)size));
3399 }
3400 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401}
3402
3403#endif /* FEAT_TOOLBAR */
3404
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003405#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3406static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003407static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003408# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003409static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003410# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003411static int clicked_page; /* page clicked in tab line */
3412
3413/*
3414 * Handle selecting an item in the tab line popup menu.
3415 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003416 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003417tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003418{
Bram Moolenaara5621492006-02-25 21:55:24 +00003419 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003420 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003421}
3422
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003423 static void
3424add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3425{
3426 GtkWidget *item;
3427 char_u *utf_text;
3428
3429 utf_text = CONVERT_TO_UTF8(text);
3430 item = gtk_menu_item_new_with_label((const char *)utf_text);
3431 gtk_widget_show(item);
3432 CONVERT_TO_UTF8_FREE(utf_text);
3433
3434 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003435# if GTK_CHECK_VERSION(3,0,0)
3436 g_signal_connect(G_OBJECT(item), "activate",
3437 G_CALLBACK(tabline_menu_handler),
3438 GINT_TO_POINTER(resp));
3439# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003440 gtk_signal_connect(GTK_OBJECT(item), "activate",
3441 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003442 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003443# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003444}
3445
Bram Moolenaara5621492006-02-25 21:55:24 +00003446/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003447 * Create a menu for the tab line.
3448 */
3449 static GtkWidget *
3450create_tabline_menu(void)
3451{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003452 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003453
3454 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003455 if (first_tabpage->tp_next != NULL)
3456 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3457 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003458 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3459 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003460
3461 return menu;
3462}
3463
3464 static gboolean
3465on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3466{
3467 /* Was this button press event ? */
3468 if (event->type == GDK_BUTTON_PRESS)
3469 {
3470 GdkEventButton *bevent = (GdkEventButton *)event;
3471 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003472 int y = bevent->y;
3473 GtkWidget *tabwidget;
3474 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003475
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003476 /* When ignoring events return TRUE so that the selected page doesn't
3477 * change. */
3478 if (hold_gui_events
3479# ifdef FEAT_CMDWIN
3480 || cmdwin_type != 0
3481# endif
3482 )
3483 return TRUE;
3484
Bram Moolenaar98921892016-02-23 17:14:37 +01003485# if GTK_CHECK_VERSION(3,0,0)
3486 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3487# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003488 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003489# endif
3490
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003491 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003492# if GTK_CHECK_VERSION(3,0,0)
3493 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3494 "tab_num"));
3495# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003496 clicked_page = (int)(long)gtk_object_get_user_data(
3497 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003498# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003499
3500 /* If the event was generated for 3rd button popup the menu. */
3501 if (bevent->button == 3)
3502 {
3503 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3504 bevent->button, bevent->time);
3505 /* We handled the event. */
3506 return TRUE;
3507 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003508 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003509 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003510 if (clicked_page == 0)
3511 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003512 /* Click after all tabs moves to next tab page. When "x" is
3513 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003514 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003515 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003516 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003517 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003518
Bram Moolenaara5621492006-02-25 21:55:24 +00003519 /* We didn't handle the event. */
3520 return FALSE;
3521}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003522
3523/*
3524 * Handle selecting one of the tabs.
3525 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003526 static void
3527on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003528 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003529# if GTK_CHECK_VERSION(3,0,0)
3530 gpointer *page UNUSED,
3531# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003532 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003533# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003534 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003535 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003536{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003537 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003538 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003539 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003540 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003541}
3542
3543/*
3544 * Show or hide the tabline.
3545 */
3546 void
3547gui_mch_show_tabline(int showit)
3548{
3549 if (gui.tabline == NULL)
3550 return;
3551
3552 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3553 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003554 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003555 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003556 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003557 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003558# if GTK_CHECK_VERSION(3,0,0)
3559 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3560# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003561 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003562# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003563 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003564
3565 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003566}
3567
3568/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003569 * Return TRUE when tabline is displayed.
3570 */
3571 int
3572gui_mch_showing_tabline(void)
3573{
3574 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003575 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003576}
3577
3578/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003579 * Update the labels of the tabline.
3580 */
3581 void
3582gui_mch_update_tabline(void)
3583{
3584 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003585 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003586 GtkWidget *label;
3587 tabpage_T *tp;
3588 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003589 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003590 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003591 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003592
3593 if (gui.tabline == NULL)
3594 return;
3595
3596 ignore_tabline_evt = TRUE;
3597
3598 /* Add a label for each tab page. They all contain the same text area. */
3599 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3600 {
3601 if (tp == curtab)
3602 curtabidx = nr;
3603
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003604 tab_num = nr + 1;
3605
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003606 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3607 if (page == NULL)
3608 {
3609 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003610# if GTK_CHECK_VERSION(3,2,0)
3611 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3612 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3613# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003614 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003615# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003616 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003617 event_box = gtk_event_box_new();
3618 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003619 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003620# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003621 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003622# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003623 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003624 gtk_widget_show(label);
3625 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3626 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003627 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003628 nr++);
3629 }
3630
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003631 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003632# if GTK_CHECK_VERSION(3,0,0)
3633 g_object_set_data(G_OBJECT(event_box), "tab_num",
3634 GINT_TO_POINTER(tab_num));
3635# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003636 gtk_object_set_user_data(GTK_OBJECT(event_box),
3637 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003638# endif
3639# if GTK_CHECK_VERSION(3,0,0)
3640 label = gtk_bin_get_child(GTK_BIN(event_box));
3641# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003642 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003643# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003644 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003645 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003646 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003647 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003648
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003649 get_tabline_label(tp, TRUE);
3650 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003651# if GTK_CHECK_VERSION(3,0,0)
3652 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3653# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003654 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3655 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003656# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003657 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003658 }
3659
3660 /* Remove any old labels. */
3661 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3662 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3663
Bram Moolenaar98921892016-02-23 17:14:37 +01003664# if GTK_CHECK_VERSION(3,0,0)
3665 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3666 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3667# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003668 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003669 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003670# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003671
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003672 /* Make sure everything is in place before drawing text. */
3673 gui_mch_update();
3674
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003675 ignore_tabline_evt = FALSE;
3676}
3677
3678/*
3679 * Set the current tab to "nr". First tab is 1.
3680 */
3681 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003682gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003683{
3684 if (gui.tabline == NULL)
3685 return;
3686
3687 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003688# if GTK_CHECK_VERSION(3,0,0)
3689 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3690 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3691# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003692 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003693 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003694# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003695 ignore_tabline_evt = FALSE;
3696}
3697
3698#endif /* FEAT_GUI_TABLINE */
3699
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003701 * Add selection targets for PRIMARY and CLIPBOARD selections.
3702 */
3703 void
3704gui_gtk_set_selection_targets(void)
3705{
3706 int i, j = 0;
3707 int n_targets = N_SELECTION_TARGETS;
3708 GtkTargetEntry targets[N_SELECTION_TARGETS];
3709
3710 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3711 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003712 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003713 * return something, instead of trying another target. Therefore only
3714 * offer TARGET_HTML when it works. */
3715 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3716 n_targets--;
3717 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003718 targets[j++] = selection_targets[i];
3719 }
3720
3721 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3722 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3723 gtk_selection_add_targets(gui.drawarea,
3724 (GdkAtom)GDK_SELECTION_PRIMARY,
3725 targets, n_targets);
3726 gtk_selection_add_targets(gui.drawarea,
3727 (GdkAtom)clip_plus.gtk_sel_atom,
3728 targets, n_targets);
3729}
3730
3731/*
3732 * Set up for receiving DND items.
3733 */
3734 void
3735gui_gtk_set_dnd_targets(void)
3736{
3737 int i, j = 0;
3738 int n_targets = N_DND_TARGETS;
3739 GtkTargetEntry targets[N_DND_TARGETS];
3740
3741 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3742 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003743 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003744 n_targets--;
3745 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003746 targets[j++] = dnd_targets[i];
3747 }
3748
3749 gtk_drag_dest_unset(gui.drawarea);
3750 gtk_drag_dest_set(gui.drawarea,
3751 GTK_DEST_DEFAULT_ALL,
3752 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003753 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003754}
3755
3756/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3758 * Returns OK for success, FAIL when the GUI can't be started.
3759 */
3760 int
3761gui_mch_init(void)
3762{
3763 GtkWidget *vbox;
3764
3765#ifdef FEAT_GUI_GNOME
3766 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3767 * exits on failure, but that's a non-issue because we already called
3768 * gtk_init_check() in gui_mch_init_check(). */
3769 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003770 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3772 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003773# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003774 {
3775 char *p = setlocale(LC_NUMERIC, NULL);
3776
3777 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3778 * init may change it. */
3779 if (p == NULL || strcmp(p, "C") != 0)
3780 setlocale(LC_NUMERIC, "C");
3781 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003782# endif
3783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784#endif
3785 vim_free(gui_argv);
3786 gui_argv = NULL;
3787
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003788#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 /* Set the human-readable application name */
3790 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003791#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 /*
3793 * Force UTF-8 output no matter what the value of 'encoding' is.
3794 * did_set_string_option() in option.c prohibits changing 'termencoding'
3795 * to something else than UTF-8 if the GUI is in use.
3796 */
3797 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3798
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003799#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3803 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003804#if !GTK_CHECK_VERSION(3,0,0)
3805# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003807# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808#endif
3809
3810 /* Initialize values */
3811 gui.border_width = 2;
3812 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3813 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003814 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003816 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003818 /* LINTED: avoid warning: conversion to 'unsigned long' */
3819 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820
3821 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003822 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824
3825 /* Set default foreground and background colors. */
3826 gui.norm_pixel = gui.def_norm_pixel;
3827 gui.back_pixel = gui.def_back_pixel;
3828
3829 if (gtk_socket_id != 0)
3830 {
3831 GtkWidget *plug;
3832
3833 /* Use GtkSocket from another app. */
3834#ifdef HAVE_GTK_MULTIHEAD
3835 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3836 gtk_socket_id);
3837#else
3838 plug = gtk_plug_new(gtk_socket_id);
3839#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003840#if GTK_CHECK_VERSION(3,0,0)
3841 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3842#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 {
3846 gui.mainwin = plug;
3847 }
3848 else
3849 {
3850 g_warning("Connection to GTK+ socket (ID %u) failed",
3851 (unsigned int)gtk_socket_id);
3852 /* Pretend we never wanted it if it failed (get own window) */
3853 gtk_socket_id = 0;
3854 }
3855 }
3856
3857 if (gtk_socket_id == 0)
3858 {
3859#ifdef FEAT_GUI_GNOME
3860 if (using_gnome)
3861 {
3862 gui.mainwin = gnome_app_new("Vim", NULL);
3863# ifdef USE_XSMP
3864 /* Use the GNOME save-yourself functionality now. */
3865 xsmp_close();
3866# endif
3867 }
3868 else
3869#endif
3870 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3871 }
3872
3873 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 /* Create the PangoContext used for drawing all text. */
3876 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3877 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878
Bram Moolenaar98921892016-02-23 17:14:37 +01003879#if GTK_CHECK_VERSION(3,0,0)
3880 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3881#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3885
Bram Moolenaar98921892016-02-23 17:14:37 +01003886#if GTK_CHECK_VERSION(3,0,0)
3887 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3888 G_CALLBACK(&delete_event_cb), NULL);
3889
3890 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3891 G_CALLBACK(&mainwin_realize), NULL);
3892#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3894 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3895
3896 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3897 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003898#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899#ifdef HAVE_GTK_MULTIHEAD
3900 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3901 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 gui.accel_group = gtk_accel_group_new();
3904 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003906 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003907#if GTK_CHECK_VERSION(3,2,0)
3908 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3909 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3910#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003912#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913
3914#ifdef FEAT_GUI_GNOME
3915 if (using_gnome)
3916 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003917# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 /* automagically restore menubar/toolbar placement */
3919 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3920# endif
3921 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3922 }
3923 else
3924#endif
3925 {
3926 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3927 gtk_widget_show(vbox);
3928 }
3929
3930#ifdef FEAT_MENU
3931 /*
3932 * Create the menubar and handle
3933 */
3934 gui.menubar = gtk_menu_bar_new();
3935 gtk_widget_set_name(gui.menubar, "vim-menubar");
3936
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003937 /* Avoid that GTK takes <F10> away from us. */
3938 {
3939 GtkSettings *gtk_settings;
3940
3941 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3942 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3943 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003944
3945
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946# ifdef FEAT_GUI_GNOME
3947 if (using_gnome)
3948 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 BonoboDockItem *dockitem;
3950
3951 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3952 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3953 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003954 /* We don't want the menu to float. */
3955 bonobo_dock_item_set_behavior(dockitem,
3956 bonobo_dock_item_get_behavior(dockitem)
3957 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 }
3960 else
3961# endif /* FEAT_GUI_GNOME */
3962 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003963 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3964 * disabled in gui_init() later. */
3965 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3967 }
3968#endif /* FEAT_MENU */
3969
3970#ifdef FEAT_TOOLBAR
3971 /*
3972 * Create the toolbar and handle
3973 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003975# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003976 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003977 /* N.B. Since the default value of GtkToolbar::button-relief is
3978 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3979# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 gtk_rc_parse_string(
3981 "style \"vim-toolbar-style\" {\n"
3982 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3983 "}\n"
3984 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003985# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 gui.toolbar = gtk_toolbar_new();
3987 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3989
3990# ifdef FEAT_GUI_GNOME
3991 if (using_gnome)
3992 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 BonoboDockItem *dockitem;
3994
3995 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3996 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3997 GNOME_APP_TOOLBAR_NAME);
3998 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003999 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004000 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004001 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004002 bonobo_dock_item_get_behavior(dockitem)
4003 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 }
4006 else
4007# endif /* FEAT_GUI_GNOME */
4008 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4010 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4011 gtk_widget_show(gui.toolbar);
4012 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4013 }
4014#endif /* FEAT_TOOLBAR */
4015
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004016#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004017 /*
4018 * Use a Notebook for the tab pages labels. The labels are hidden by
4019 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004020 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004021 gui.tabline = gtk_notebook_new();
4022 gtk_widget_show(gui.tabline);
4023 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4024 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4025 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004026 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004027# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004028 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004029# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004030
Bram Moolenaar98921892016-02-23 17:14:37 +01004031# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004032 tabline_tooltip = gtk_tooltips_new();
4033 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004034# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004035
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004036 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004037 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004038
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004039 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004040# if GTK_CHECK_VERSION(3,2,0)
4041 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4042 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4043# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004044 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004045# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004046 gtk_widget_show(page);
4047 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4048 label = gtk_label_new("-Empty-");
4049 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004050 event_box = gtk_event_box_new();
4051 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004052# if GTK_CHECK_VERSION(3,0,0)
4053 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4054# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004055 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004056# endif
4057# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004058 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004059# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004060 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004061 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004062 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004063
Bram Moolenaar98921892016-02-23 17:14:37 +01004064# if GTK_CHECK_VERSION(3,0,0)
4065 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4066 G_CALLBACK(on_select_tab), NULL);
4067# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004068 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004069 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004070# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004071
4072 /* Create a popup menu for the tab line and connect it. */
4073 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004074# if GTK_CHECK_VERSION(3,0,0)
4075 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4076 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4077# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004078 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004079 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004080# endif
4081#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004082
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004084#if GTK_CHECK_VERSION(3,0,0)
4085 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004088#endif
4089#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092
4093 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004094#if GTK_CHECK_VERSION(3,0,0)
4095 gui.surface = NULL;
4096 gui.by_signal = FALSE;
4097#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098
4099 /* Determine which events we will filter. */
4100 gtk_widget_set_events(gui.drawarea,
4101 GDK_EXPOSURE_MASK |
4102 GDK_ENTER_NOTIFY_MASK |
4103 GDK_LEAVE_NOTIFY_MASK |
4104 GDK_BUTTON_PRESS_MASK |
4105 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 GDK_KEY_PRESS_MASK |
4108 GDK_KEY_RELEASE_MASK |
4109 GDK_POINTER_MOTION_MASK |
4110 GDK_POINTER_MOTION_HINT_MASK);
4111
4112 gtk_widget_show(gui.drawarea);
4113 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4114 gtk_widget_show(gui.formwin);
4115 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4116
4117 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4118 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004119#if GTK_CHECK_VERSION(3,0,0)
4120 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4121 : G_OBJECT(gui.drawarea),
4122 "key-press-event",
4123 G_CALLBACK(key_press_event), NULL);
4124#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4126 : GTK_OBJECT(gui.drawarea),
4127 "key_press_event",
4128 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004129#endif
4130#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 /* Also forward key release events for the benefit of GTK+ 2 input
4132 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4133 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4134 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004135 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 G_CALLBACK(&key_release_event), NULL);
4137#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004138#if GTK_CHECK_VERSION(3,0,0)
4139 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4140 G_CALLBACK(drawarea_realize_cb), NULL);
4141 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4142 G_CALLBACK(drawarea_unrealize_cb), NULL);
4143 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4144 G_CALLBACK(drawarea_configure_event_cb), NULL);
4145 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4146 G_CALLBACK(&drawarea_style_set_cb), NULL);
4147#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4149 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4150 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4151 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4152
4153 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4154 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156
Bram Moolenaar98921892016-02-23 17:14:37 +01004157#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160
4161#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4162 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4163 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4164#endif
4165
4166 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004167 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004168#if GTK_CHECK_VERSION(3,0,0)
4169 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4170#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173
4174 /*
4175 * Set clipboard specific atoms
4176 */
4177 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4180 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4181
4182 /*
4183 * Start out by adding the configured border width into the border offset.
4184 */
4185 gui.border_offset = gui.border_width;
4186
Bram Moolenaar98921892016-02-23 17:14:37 +01004187#if GTK_CHECK_VERSION(3,0,0)
4188 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4189 G_CALLBACK(draw_event), NULL);
4190#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4192 GTK_SIGNAL_FUNC(visibility_event), NULL);
4193 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4194 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196
4197 /*
4198 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4199 * Only needed for some window managers.
4200 */
4201 if (vim_strchr(p_go, GO_POINTER) != NULL)
4202 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004203#if GTK_CHECK_VERSION(3,0,0)
4204 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4205 G_CALLBACK(leave_notify_event), NULL);
4206 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4207 G_CALLBACK(enter_notify_event), NULL);
4208#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4210 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4211 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4212 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 }
4215
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004216 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4217 * only its widgets. Arguably, this could be common code and we not use
4218 * the window focus at all, but let's be safe.
4219 */
4220 if (gtk_socket_id == 0)
4221 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004222#if GTK_CHECK_VERSION(3,0,0)
4223 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4224 G_CALLBACK(focus_out_event), NULL);
4225 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4226 G_CALLBACK(focus_in_event), NULL);
4227#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004228 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4229 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4230 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4231 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004232#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004233 }
4234 else
4235 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004236#if GTK_CHECK_VERSION(3,0,0)
4237 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4238 G_CALLBACK(focus_out_event), NULL);
4239 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4240 G_CALLBACK(focus_in_event), NULL);
4241#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004242 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4243 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4244 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4245 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004246#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004247#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004248# if GTK_CHECK_VERSION(3,0,0)
4249 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4250 G_CALLBACK(focus_out_event), NULL);
4251 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4252 G_CALLBACK(focus_in_event), NULL);
4253# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004254 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4255 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4256 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4257 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004258# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004259#endif /* FEAT_GUI_TABLINE */
4260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261
Bram Moolenaar98921892016-02-23 17:14:37 +01004262#if GTK_CHECK_VERSION(3,0,0)
4263 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4264 G_CALLBACK(motion_notify_event), NULL);
4265 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4266 G_CALLBACK(button_press_event), NULL);
4267 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4268 G_CALLBACK(button_release_event), NULL);
4269 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4270 G_CALLBACK(&scroll_event), NULL);
4271#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4273 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4274 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4275 GTK_SIGNAL_FUNC(button_press_event), NULL);
4276 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4277 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4279 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004280#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281
4282 /*
4283 * Add selection handler functions.
4284 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004285#if GTK_CHECK_VERSION(3,0,0)
4286 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4287 G_CALLBACK(selection_clear_event), NULL);
4288 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4289 G_CALLBACK(selection_received_cb), NULL);
4290#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4292 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4293 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4294 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296
Bram Moolenaara76638f2010-06-05 12:49:46 +02004297 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298
Bram Moolenaar98921892016-02-23 17:14:37 +01004299#if GTK_CHECK_VERSION(3,0,0)
4300 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4301 G_CALLBACK(selection_get_cb), NULL);
4302#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4304 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 /* Pretend we don't have input focus, we will get an event if we do. */
4308 gui.in_focus = FALSE;
4309
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 return OK;
4311}
4312
4313#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4314/*
4315 * This is called from gui_start() after a fork() has been done.
4316 * We have to tell the session manager our new PID.
4317 */
4318 void
4319gui_mch_forked(void)
4320{
4321 if (using_gnome)
4322 {
4323 GnomeClient *client;
4324
4325 client = gnome_master_client();
4326
4327 if (client != NULL)
4328 gnome_client_set_process_id(client, getpid());
4329 }
4330}
4331#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4332
Bram Moolenaar98921892016-02-23 17:14:37 +01004333#if GTK_CHECK_VERSION(3,0,0)
4334 static void
4335gui_gtk_get_rgb_from_pixel(guint32 pixel, GdkRGBA *result)
4336{
4337 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4338 guint32 r_mask, g_mask, b_mask;
4339 gint r_shift, g_shift, b_shift;
4340
4341 if (visual == NULL)
4342 {
4343 result->red = 0.0;
4344 result->green = 0.0;
4345 result->blue = 0.0;
4346 result->alpha = 0.0;
4347 return;
4348 }
4349
4350 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4351 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4352 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4353
4354 result->red = ((pixel & r_mask) >> r_shift) / 255.0;
4355 result->green = ((pixel & g_mask) >> g_shift) / 255.0;
4356 result->blue = ((pixel & b_mask) >> b_shift) / 255.0;
4357 result->alpha = 1.0;
4358}
4359
4360/* Convert a GdRGBA into a pixel value using drawarea's visual */
4361 static guint32
4362gui_gtk_get_pixel_from_rgb(const GdkRGBA *rgba)
4363{
4364 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4365 guint32 r_mask, g_mask, b_mask;
4366 gint r_shift, g_shift, b_shift;
4367 guint32 r, g, b;
4368
4369 if (visual == NULL)
4370 return 0;
4371
4372 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4373 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4374 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4375
4376 r = rgba->red * 65535;
4377 g = rgba->green * 65535;
4378 b = rgba->blue * 65535;
4379
4380 return ((r << r_shift) & r_mask) |
4381 ((g << g_shift) & g_mask) |
4382 ((b << b_shift) & b_mask);
4383}
4384
4385 static void
4386set_cairo_source_rgb_from_pixel(cairo_t *cr, guint32 pixel)
4387{
4388 GdkRGBA result;
4389 gui_gtk_get_rgb_from_pixel(pixel, &result);
4390 cairo_set_source_rgb(cr, result.red, result.green, result.blue);
4391}
4392#endif /* GTK_CHECK_VERSION(3,0,0) */
4393
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394/*
4395 * Called when the foreground or background color has been changed.
4396 * This used to change the graphics contexts directly but we are
4397 * currently manipulating them where desired.
4398 */
4399 void
4400gui_mch_new_colors(void)
4401{
Bram Moolenaar98921892016-02-23 17:14:37 +01004402#if GTK_CHECK_VERSION(3,0,0)
4403 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4404
4405 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4406#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004410#if GTK_CHECK_VERSION(3,4,0)
4411 GdkRGBA color;
4412
4413 gui_gtk_get_rgb_from_pixel(gui.back_pixel, &color);
4414 {
4415 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
4416 color.red, color.green, color.blue, color.alpha);
4417 if (pat != NULL)
4418 {
4419 gdk_window_set_background_pattern(da_win, pat);
4420 cairo_pattern_destroy(pat);
4421 }
4422 else
4423 gdk_window_set_background_rgba(da_win, &color);
4424 }
4425#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 GdkColor color = { 0, 0, 0, 0 };
4427
4428 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004429# if GTK_CHECK_VERSION(3,0,0)
4430 gdk_window_set_background(da_win, &color);
4431# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004433# endif
4434#endif /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 }
4436}
4437
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438/*
4439 * This signal informs us about the need to rearrange our sub-widgets.
4440 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004442form_configure_event(GtkWidget *widget UNUSED,
4443 GdkEventConfigure *event,
4444 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004446 int usable_height = event->height;
4447
4448 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4449 * no. of char-heights), so we have to manually sanitise them.
4450 * Widths seem to sort themselves out, don't ask me why.
4451 */
4452 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004453 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004454
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004456 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 gtk_form_thaw(GTK_FORM(gui.formwin));
4458
4459 return TRUE;
4460}
4461
4462/*
4463 * Function called when window already closed.
4464 * We can't do much more here than to trying to preserve what had been done,
4465 * since the window is already inevitably going away.
4466 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004467#if GTK_CHECK_VERSION(3,0,0)
4468 static void
4469mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4470#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004472mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474{
4475 /* Don't write messages to the GUI anymore */
4476 full_screen = FALSE;
4477
4478 gui.mainwin = NULL;
4479 gui.drawarea = NULL;
4480
4481 if (!exiting) /* only do anything if the destroy was unexpected */
4482 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004483 vim_strncpy(IObuff,
4484 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4485 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 preserve_exit();
4487 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004488#ifdef USE_GRESOURCE
4489 gui_gtk_unregister_resource();
4490#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491}
4492
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004493
4494/*
4495 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4496 * hints (and thus the required size from -geom), but that after that we
4497 * put the hints back to normal (the actual minimum size) so we may
4498 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004499 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004500 * only way we have of making ourselves bigger (by set lines/columns).
4501 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004502 * second after the final attempt to reset the real minimum hints (done by
4503 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004504 * We'll not let the default hints be set while this timer's active.
4505 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004506 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004507check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004508{
4509 if (init_window_hints_state == 1)
4510 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004511 /* Safe to use normal hints now */
4512 init_window_hints_state = 0;
4513 update_window_manager_hints(0, 0);
4514 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004515 }
4516
4517 /* Keep on trying */
4518 init_window_hints_state = 1;
4519 return TRUE;
4520}
4521
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522/*
4523 * Open the GUI window which was created by a call to gui_mch_init().
4524 */
4525 int
4526gui_mch_open(void)
4527{
4528 guicolor_T fg_pixel = INVALCOLOR;
4529 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004530 guint pixel_width;
4531 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 /*
4534 * Allow setting a window role on the command line, or invent one
4535 * if none was specified. This is mainly useful for GNOME session
4536 * support; allowing the WM to restore window placement.
4537 */
4538 if (role_argument != NULL)
4539 {
4540 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4541 }
4542 else
4543 {
4544 char *role;
4545
4546 /* Invent a unique-enough ID string for the role */
4547 role = g_strdup_printf("vim-%u-%u-%u",
4548 (unsigned)mch_get_pid(),
4549 (unsigned)g_random_int(),
4550 (unsigned)time(NULL));
4551
4552 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4553 g_free(role);
4554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555
4556 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558
4559 /* Determine user specified geometry, if present. */
4560 if (gui.geom != NULL)
4561 {
4562 int mask;
4563 unsigned int w, h;
4564 int x = 0;
4565 int y = 0;
4566
4567 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4568
4569 if (mask & WidthValue)
4570 Columns = w;
4571 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004572 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004573 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004574 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004576 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004577 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004578
4579 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4580 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4581
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004582 pixel_width += get_menu_tool_width();
4583 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004584
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004586 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004587 int ww, hh;
4588 gui_mch_get_screen_dimensions(&ww, &hh);
4589 hh += p_ghr + get_menu_tool_height();
4590 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004591 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004592 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004593 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004594 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004596 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 vim_free(gui.geom);
4598 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004599
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004600 /* From now until everyone's stopped trying to set the window hints
4601 * to their correct minimum values, stop them being set as we need
4602 * them to remain at our required size for the parent GtkSocket to
4603 * give us the right initial size.
4604 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004605 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004606 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004607 update_window_manager_hints(pixel_width, pixel_height);
4608 init_window_hints_state = 1;
4609 g_timeout_add(1000, check_startup_plug_hints, NULL);
4610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 }
4612
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004613 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4614 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004615 /* For GTK2 changing the size of the form widget doesn't cause window
4616 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004617 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004618 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004619 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620
4621 if (foreground_argument != NULL)
4622 fg_pixel = gui_get_color((char_u *)foreground_argument);
4623 if (fg_pixel == INVALCOLOR)
4624 fg_pixel = gui_get_color((char_u *)"Black");
4625
4626 if (background_argument != NULL)
4627 bg_pixel = gui_get_color((char_u *)background_argument);
4628 if (bg_pixel == INVALCOLOR)
4629 bg_pixel = gui_get_color((char_u *)"White");
4630
4631 if (found_reverse_arg)
4632 {
4633 gui.def_norm_pixel = bg_pixel;
4634 gui.def_back_pixel = fg_pixel;
4635 }
4636 else
4637 {
4638 gui.def_norm_pixel = fg_pixel;
4639 gui.def_back_pixel = bg_pixel;
4640 }
4641
4642 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4643 * in a vimrc file) */
4644 set_normal_colors();
4645
4646 /* Check that none of the colors are the same as the background color */
4647 gui_check_colors();
4648
4649 /* Get the colors for the highlight groups (gui_check_colors() might have
4650 * changed them). */
4651 highlight_gui_started(); /* re-init colors and fonts */
4652
Bram Moolenaar98921892016-02-23 17:14:37 +01004653#if GTK_CHECK_VERSION(3,0,0)
4654 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4655 G_CALLBACK(mainwin_destroy_cb), NULL);
4656#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4658 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660
4661#ifdef FEAT_HANGULIN
4662 hangul_keyboard_set();
4663#endif
4664
4665 /*
4666 * Notify the fixed area about the need to resize the contents of the
4667 * gui.formwin, which we use for random positioning of the included
4668 * components.
4669 *
4670 * We connect this signal deferred finally after anything is in place,
4671 * since this is intended to handle resizements coming from the window
4672 * manager upon us and should not interfere with what VIM is requesting
4673 * upon startup.
4674 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004675#if GTK_CHECK_VERSION(3,0,0)
4676 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4677 G_CALLBACK(form_configure_event), NULL);
4678#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4680 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004681#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682
4683#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004684 /* Set up for receiving DND items. */
4685 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686
Bram Moolenaar98921892016-02-23 17:14:37 +01004687# if GTK_CHECK_VERSION(3,0,0)
4688 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4689 G_CALLBACK(drag_data_received_cb), NULL);
4690# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4692 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004693# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694#endif
4695
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004697 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 if (found_iconic_arg && gtk_socket_id == 0)
4699 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700
4701 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004702#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 unsigned long menu_handler = 0;
4704# ifdef FEAT_TOOLBAR
4705 unsigned long tool_handler = 0;
4706# endif
4707 /*
4708 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4709 * show when restoring the saved layout configuration. We can't just
4710 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4711 * a toplevel window and thus will be realized immediately. Instead,
4712 * connect signal handlers to hide the widgets just after they've been
4713 * marked visible, but before the main window is realized.
4714 */
4715 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4716 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4717 G_CALLBACK(&gtk_widget_hide),
4718 NULL);
4719# ifdef FEAT_TOOLBAR
4720 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4721 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4722 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4723 G_CALLBACK(&gtk_widget_hide),
4724 NULL);
4725# endif
4726#endif
4727 gtk_widget_show(gui.mainwin);
4728
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004729#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 if (menu_handler != 0)
4731 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4732# ifdef FEAT_TOOLBAR
4733 if (tool_handler != 0)
4734 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4735# endif
4736#endif
4737 }
4738
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 return OK;
4740}
4741
4742
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004744gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745{
4746 if (gui.mainwin != NULL)
4747 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748}
4749
4750/*
4751 * Get the position of the top left corner of the window.
4752 */
4753 int
4754gui_mch_get_winpos(int *x, int *y)
4755{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 return OK;
4758}
4759
4760/*
4761 * Set the position of the top left corner of the window to the given
4762 * coordinates.
4763 */
4764 void
4765gui_mch_set_winpos(int x, int y)
4766{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768}
4769
Bram Moolenaar98921892016-02-23 17:14:37 +01004770#if !GTK_CHECK_VERSION(3,0,0)
4771# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772static int resize_idle_installed = FALSE;
4773/*
4774 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4775 * the shell size doesn't exceed the window size, i.e. if the window manager
4776 * ignored our size request. Usually this happens if the window is maximized.
4777 *
4778 * FIXME: It'd be nice if we could find a little more orthodox solution.
4779 * See also the remark below in gui_mch_set_shellsize().
4780 *
4781 * DISABLED: When doing ":set lines+=1" this function would first invoke
4782 * gui_resize_shell() with the old size, then the normal callback would
4783 * report the new size through form_configure_event(). That caused the window
4784 * layout to be messed up.
4785 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 static gboolean
4787force_shell_resize_idle(gpointer data)
4788{
4789 if (gui.mainwin != NULL
4790 && GTK_WIDGET_REALIZED(gui.mainwin)
4791 && GTK_WIDGET_VISIBLE(gui.mainwin))
4792 {
4793 int width;
4794 int height;
4795
4796 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4797
4798 width -= get_menu_tool_width();
4799 height -= get_menu_tool_height();
4800
4801 gui_resize_shell(width, height);
4802 }
4803
4804 resize_idle_installed = FALSE;
4805 return FALSE; /* don't call me again */
4806}
Bram Moolenaar98921892016-02-23 17:14:37 +01004807# endif
4808#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809
Bram Moolenaar09736232009-09-23 16:14:49 +00004810/*
4811 * Return TRUE if the main window is maximized.
4812 */
4813 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004814gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004815{
Bram Moolenaar98921892016-02-23 17:14:37 +01004816#if GTK_CHECK_VERSION(3,0,0)
4817 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4818 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4819 & GDK_WINDOW_STATE_MAXIMIZED));
4820#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004821 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4822 && (gdk_window_get_state(gui.mainwin->window)
4823 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004824#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004825}
4826
4827/*
4828 * Unmaximize the main window
4829 */
4830 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004831gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004832{
4833 if (gui.mainwin != NULL)
4834 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4835}
Bram Moolenaar09736232009-09-23 16:14:49 +00004836
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004838 * Called when the font changed while the window is maximized. Compute the
4839 * new Rows and Columns. This is like resizing the window.
4840 */
4841 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004842gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004843{
4844 int w, h;
4845
4846 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4847 w -= get_menu_tool_width();
4848 h -= get_menu_tool_height();
4849 gui_resize_shell(w, h);
4850}
4851
4852/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 * Set the windows size.
4854 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 void
4856gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004857 int min_width UNUSED, int min_height UNUSED,
4858 int base_width UNUSED, int base_height UNUSED,
4859 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 /* give GTK+ a chance to put all widget's into place */
4862 gui_mch_update();
4863
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004864 /* this will cause the proper resizement to happen too */
4865 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004866 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004867
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004869 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 * main window instead. */
4871 width += get_menu_tool_width();
4872 height += get_menu_tool_height();
4873
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004874 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004875 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004876 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004877 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878
Bram Moolenaar98921892016-02-23 17:14:37 +01004879# if !GTK_CHECK_VERSION(3,0,0)
4880# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 if (!resize_idle_installed)
4882 {
4883 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4884 &force_shell_resize_idle, NULL, NULL);
4885 resize_idle_installed = TRUE;
4886 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004887# endif
4888# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 /*
4890 * Wait until all events are processed to prevent a crash because the
4891 * real size of the drawing area doesn't reflect Vim's internal ideas.
4892 *
4893 * This is a bit of a hack, since Vim is a terminal application with a GUI
4894 * on top, while the GUI expects to be the boss.
4895 */
4896 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897}
4898
4899
4900/*
4901 * The screen size is used to make sure the initial window doesn't get bigger
4902 * than the screen. This subtracts some room for menubar, toolbar and window
4903 * decorations.
4904 */
4905 void
4906gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4907{
4908#ifdef HAVE_GTK_MULTIHEAD
4909 GdkScreen* screen;
4910
4911 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4912 screen = gtk_widget_get_screen(gui.mainwin);
4913 else
4914 screen = gdk_screen_get_default();
4915
4916 *screen_w = gdk_screen_get_width(screen);
4917 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4918#else
4919 *screen_w = gdk_screen_width();
4920 /* Subtract 'guiheadroom' from the height to allow some room for the
4921 * window manager (task list and window title bar). */
4922 *screen_h = gdk_screen_height() - p_ghr;
4923#endif
4924
4925 /*
4926 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4927 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004928 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 * This should be completely changed later.
4930 */
4931 *screen_w -= get_menu_tool_width();
4932 *screen_h -= get_menu_tool_height();
4933}
4934
4935#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004937gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 if (title != NULL && output_conv.vc_type != CONV_NONE)
4940 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941
4942 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4943
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 if (output_conv.vc_type != CONV_NONE)
4945 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946}
4947#endif /* FEAT_TITLE */
4948
4949#if defined(FEAT_MENU) || defined(PROTO)
4950 void
4951gui_mch_enable_menu(int showit)
4952{
4953 GtkWidget *widget;
4954
4955# ifdef FEAT_GUI_GNOME
4956 if (using_gnome)
4957 widget = gui.menubar_h;
4958 else
4959# endif
4960 widget = gui.menubar;
4961
Bram Moolenaar18144c82006-04-12 21:52:12 +00004962 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004963# if GTK_CHECK_VERSION(3,0,0)
4964 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
4965# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00004966 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01004967# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 {
4969 if (showit)
4970 gtk_widget_show(widget);
4971 else
4972 gtk_widget_hide(widget);
4973
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004974 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976}
4977#endif /* FEAT_MENU */
4978
4979#if defined(FEAT_TOOLBAR) || defined(PROTO)
4980 void
4981gui_mch_show_toolbar(int showit)
4982{
4983 GtkWidget *widget;
4984
4985 if (gui.toolbar == NULL)
4986 return;
4987
4988# ifdef FEAT_GUI_GNOME
4989 if (using_gnome)
4990 widget = gui.toolbar_h;
4991 else
4992# endif
4993 widget = gui.toolbar;
4994
4995 if (showit)
4996 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4997
Bram Moolenaar98921892016-02-23 17:14:37 +01004998# if GTK_CHECK_VERSION(3,0,0)
4999 if (!showit != !gtk_widget_get_visible(widget))
5000# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005002# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 {
5004 if (showit)
5005 gtk_widget_show(widget);
5006 else
5007 gtk_widget_hide(widget);
5008
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005009 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011}
5012#endif /* FEAT_TOOLBAR */
5013
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014/*
5015 * Check if a given font is a CJK font. This is done in a very crude manner. It
5016 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5017 * font. Consequently, this function cannot be used as a general purpose check
5018 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5019 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5020 */
5021 static int
5022is_cjk_font(PangoFontDescription *font_desc)
5023{
5024 static const char * const cjk_langs[] =
5025 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5026
5027 PangoFont *font;
5028 unsigned i;
5029 int is_cjk = FALSE;
5030
5031 font = pango_context_load_font(gui.text_context, font_desc);
5032
5033 if (font == NULL)
5034 return FALSE;
5035
5036 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5037 {
5038 PangoCoverage *coverage;
5039 gunichar uc;
5040
5041 coverage = pango_font_get_coverage(
5042 font, pango_language_from_string(cjk_langs[i]));
5043
5044 if (coverage != NULL)
5045 {
5046 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5047 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5048 pango_coverage_unref(coverage);
5049 }
5050 }
5051
5052 g_object_unref(font);
5053
5054 return is_cjk;
5055}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056
Bram Moolenaar231334e2005-07-25 20:46:57 +00005057/*
5058 * Adjust gui.char_height (after 'linespace' was changed).
5059 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005061gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 PangoFontMetrics *metrics;
5064 int ascent;
5065 int descent;
5066
5067 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5068 pango_context_get_language(gui.text_context));
5069 ascent = pango_font_metrics_get_ascent(metrics);
5070 descent = pango_font_metrics_get_descent(metrics);
5071
5072 pango_font_metrics_unref(metrics);
5073
5074 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005075 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005076 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5078
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 /* A not-positive value of char_height may crash Vim. Only happens
5080 * if 'linespace' is negative (which does make sense sometimes). */
5081 gui.char_ascent = MAX(gui.char_ascent, 0);
5082 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5083
5084 return OK;
5085}
5086
Bram Moolenaar98921892016-02-23 17:14:37 +01005087#if GTK_CHECK_VERSION(3,0,0)
5088/* Callback function used in gui_mch_font_dialog() */
5089 static gboolean
5090font_filter(const PangoFontFamily *family,
5091 const PangoFontFace *face UNUSED,
5092 gpointer data UNUSED)
5093{
5094 return pango_font_family_is_monospace((PangoFontFamily *)family);
5095}
5096#endif
5097
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098/*
5099 * Put up a font dialog and return the selected font name in allocated memory.
5100 * "oldval" is the previous value. Return NULL when cancelled.
5101 * This should probably go into gui_gtk.c. Hmm.
5102 * FIXME:
5103 * The GTK2 font selection dialog has no filtering API. So we could either
5104 * a) implement our own (possibly copying the code from somewhere else) or
5105 * b) just live with it.
5106 */
5107 char_u *
5108gui_mch_font_dialog(char_u *oldval)
5109{
5110 GtkWidget *dialog;
5111 int response;
5112 char_u *fontname = NULL;
5113 char_u *oldname;
5114
Bram Moolenaar98921892016-02-23 17:14:37 +01005115#if GTK_CHECK_VERSION(3,2,0)
5116 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5117 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5118 NULL, NULL);
5119#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005121#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122
5123 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5124 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5125
5126 if (oldval != NULL && oldval[0] != NUL)
5127 {
5128 if (output_conv.vc_type != CONV_NONE)
5129 oldname = string_convert(&output_conv, oldval, NULL);
5130 else
5131 oldname = oldval;
5132
5133 /* Annoying bug in GTK (or Pango): if the font name does not include a
5134 * size, zero is used. Use default point size ten. */
5135 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5136 {
5137 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5138
5139 if (p != NULL)
5140 {
5141 STRCPY(p + STRLEN(p), " 10");
5142 if (oldname != oldval)
5143 vim_free(oldname);
5144 oldname = p;
5145 }
5146 }
5147
Bram Moolenaar98921892016-02-23 17:14:37 +01005148#if GTK_CHECK_VERSION(3,2,0)
5149 gtk_font_chooser_set_font(
5150 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5151#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 gtk_font_selection_dialog_set_font_name(
5153 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155
5156 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005157 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005159 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005160#if GTK_CHECK_VERSION(3,2,0)
5161 gtk_font_chooser_set_font(
5162 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5163#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005164 gtk_font_selection_dialog_set_font_name(
5165 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
5168 response = gtk_dialog_run(GTK_DIALOG(dialog));
5169
5170 if (response == GTK_RESPONSE_OK)
5171 {
5172 char *name;
5173
Bram Moolenaar98921892016-02-23 17:14:37 +01005174#if GTK_CHECK_VERSION(3,2,0)
5175 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5176#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 name = gtk_font_selection_dialog_get_font_name(
5178 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 if (name != NULL)
5181 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005182 char_u *p;
5183
5184 /* Apparently some font names include a comma, need to escape
5185 * that, because in 'guifont' it separates names. */
5186 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005188 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005189 {
5190 fontname = string_convert(&input_conv, p, NULL);
5191 vim_free(p);
5192 }
5193 else
5194 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 }
5196 }
5197
5198 if (response != GTK_RESPONSE_NONE)
5199 gtk_widget_destroy(dialog);
5200
5201 return fontname;
5202}
5203
5204/*
5205 * Some monospace fonts don't support a bold weight, and fall back
5206 * silently to the regular weight. But this is no good since our text
5207 * drawing function can emulate bold by overstriking. So let's try
5208 * to detect whether bold weight is actually available and emulate it
5209 * otherwise.
5210 *
5211 * Note that we don't need to check for italic style since Xft can
5212 * emulate italic on its own, provided you have a proper fontconfig
5213 * setup. We wouldn't be able to emulate it in Vim anyway.
5214 */
5215 static void
5216get_styled_font_variants(void)
5217{
5218 PangoFontDescription *bold_font_desc;
5219 PangoFont *plain_font;
5220 PangoFont *bold_font;
5221
5222 gui.font_can_bold = FALSE;
5223
5224 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5225
5226 if (plain_font == NULL)
5227 return;
5228
5229 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5230 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5231
5232 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5233 /*
5234 * The comparison relies on the unique handle nature of a PangoFont*,
5235 * i.e. it's assumed that a different PangoFont* won't refer to the
5236 * same font. Seems to work, and failing here isn't critical anyway.
5237 */
5238 if (bold_font != NULL)
5239 {
5240 gui.font_can_bold = (bold_font != plain_font);
5241 g_object_unref(bold_font);
5242 }
5243
5244 pango_font_description_free(bold_font_desc);
5245 g_object_unref(plain_font);
5246}
5247
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248static PangoEngineShape *default_shape_engine = NULL;
5249
5250/*
5251 * Create a map from ASCII characters in the range [32,126] to glyphs
5252 * of the current font. This is used by gui_gtk2_draw_string() to skip
5253 * the itemize and shaping process for the most common case.
5254 */
5255 static void
5256ascii_glyph_table_init(void)
5257{
5258 char_u ascii_chars[128];
5259 PangoAttrList *attr_list;
5260 GList *item_list;
5261 int i;
5262
5263 if (gui.ascii_glyphs != NULL)
5264 pango_glyph_string_free(gui.ascii_glyphs);
5265 if (gui.ascii_font != NULL)
5266 g_object_unref(gui.ascii_font);
5267
5268 gui.ascii_glyphs = NULL;
5269 gui.ascii_font = NULL;
5270
5271 /* For safety, fill in question marks for the control characters. */
5272 for (i = 0; i < 32; ++i)
5273 ascii_chars[i] = '?';
5274 for (; i < 127; ++i)
5275 ascii_chars[i] = i;
5276 ascii_chars[i] = '?';
5277
5278 attr_list = pango_attr_list_new();
5279 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5280 0, sizeof(ascii_chars), attr_list, NULL);
5281
5282 if (item_list != NULL && item_list->next == NULL) /* play safe */
5283 {
5284 PangoItem *item;
5285 int width;
5286
5287 item = (PangoItem *)item_list->data;
5288 width = gui.char_width * PANGO_SCALE;
5289
5290 /* Remember the shape engine used for ASCII. */
5291 default_shape_engine = item->analysis.shape_engine;
5292
5293 gui.ascii_font = item->analysis.font;
5294 g_object_ref(gui.ascii_font);
5295
5296 gui.ascii_glyphs = pango_glyph_string_new();
5297
5298 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5299 &item->analysis, gui.ascii_glyphs);
5300
5301 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5302
5303 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5304 {
5305 PangoGlyphGeometry *geom;
5306
5307 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5308 geom->x_offset += MAX(0, width - geom->width) / 2;
5309 geom->width = width;
5310 }
5311 }
5312
5313 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5314 g_list_free(item_list);
5315 pango_attr_list_unref(attr_list);
5316}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317
5318/*
5319 * Initialize Vim to use the font or fontset with the given name.
5320 * Return FAIL if the font could not be loaded, OK otherwise.
5321 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005323gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 PangoFontDescription *font_desc;
5326 PangoLayout *layout;
5327 int width;
5328
5329 /* If font_name is NULL, this means to use the default, which should
5330 * be present on all proper Pango/fontconfig installations. */
5331 if (font_name == NULL)
5332 font_name = (char_u *)DEFAULT_FONT;
5333
5334 font_desc = gui_mch_get_font(font_name, FALSE);
5335
5336 if (font_desc == NULL)
5337 return FAIL;
5338
5339 gui_mch_free_font(gui.norm_font);
5340 gui.norm_font = font_desc;
5341
5342 pango_context_set_font_description(gui.text_context, font_desc);
5343
5344 layout = pango_layout_new(gui.text_context);
5345 pango_layout_set_text(layout, "MW", 2);
5346 pango_layout_get_size(layout, &width, NULL);
5347 /*
5348 * Set char_width to half the width obtained from pango_layout_get_size()
5349 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5350 * Pango to use the same width for both non-CJK characters (e.g. Latin
5351 * letters and numbers) and CJK characters. This results in 's p a c e d
5352 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5353 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5354 * width for CJK fonts.
5355 *
5356 * For related bugs, see:
5357 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5358 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5359 *
5360 * With this, for all four of the following cases, Vim works fine:
5361 * guifont=CJK_fixed_width_font
5362 * guifont=Non_CJK_fixed_font
5363 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5364 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5365 */
5366 if (is_cjk_font(gui.norm_font))
5367 {
5368 int cjk_width;
5369
5370 /* Measure the text extent of U+4E00 and U+4E8C */
5371 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5372 pango_layout_get_size(layout, &cjk_width, NULL);
5373
5374 if (width == cjk_width) /* Xft not patched */
5375 width /= 2;
5376 }
5377 g_object_unref(layout);
5378
5379 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5380
5381 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5382 if (gui.char_width <= 0)
5383 gui.char_width = 8;
5384
Bram Moolenaar231334e2005-07-25 20:46:57 +00005385 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386
5387 /* Set the fontname, which will be used for information purposes */
5388 hl_set_font_name(font_name);
5389
5390 get_styled_font_variants();
5391 ascii_glyph_table_init();
5392
5393 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5394 if (gui.wide_font != NULL
5395 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5396 {
5397 pango_font_description_free(gui.wide_font);
5398 gui.wide_font = NULL;
5399 }
5400
Bram Moolenaare161c792009-11-03 17:13:59 +00005401 if (gui_mch_maximized())
5402 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005403 /* Update lines and columns in accordance with the new font, keep the
5404 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005405 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005406 }
5407 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005408 {
5409 /* Preserve the logical dimensions of the screen. */
5410 update_window_manager_hints(0, 0);
5411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412
5413 return OK;
5414}
5415
5416/*
5417 * Get a reference to the font "name".
5418 * Return zero for failure.
5419 */
5420 GuiFont
5421gui_mch_get_font(char_u *name, int report_error)
5422{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424
5425 /* can't do this when GUI is not running */
5426 if (!gui.in_use || name == NULL)
5427 return NULL;
5428
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 if (output_conv.vc_type != CONV_NONE)
5430 {
5431 char_u *buf;
5432
5433 buf = string_convert(&output_conv, name, NULL);
5434 if (buf != NULL)
5435 {
5436 font = pango_font_description_from_string((const char *)buf);
5437 vim_free(buf);
5438 }
5439 else
5440 font = NULL;
5441 }
5442 else
5443 font = pango_font_description_from_string((const char *)name);
5444
5445 if (font != NULL)
5446 {
5447 PangoFont *real_font;
5448
5449 /* pango_context_load_font() bails out if no font size is set */
5450 if (pango_font_description_get_size(font) <= 0)
5451 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5452
5453 real_font = pango_context_load_font(gui.text_context, font);
5454
5455 if (real_font == NULL)
5456 {
5457 pango_font_description_free(font);
5458 font = NULL;
5459 }
5460 else
5461 g_object_unref(real_font);
5462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463
5464 if (font == NULL)
5465 {
5466 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005467 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 return NULL;
5469 }
5470
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 return font;
5472}
5473
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005474#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005475/*
5476 * Return the name of font "font" in allocated memory.
5477 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005478 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005479gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005480{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005481 if (font != NOFONT)
5482 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005483 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005484
Bram Moolenaar89d40322006-08-29 15:30:07 +00005485 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005486 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005487 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005488
Bram Moolenaar89d40322006-08-29 15:30:07 +00005489 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005490 return s;
5491 }
5492 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005493 return NULL;
5494}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005495#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005496
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497/*
5498 * If a font is not going to be used, free its structure.
5499 */
5500 void
5501gui_mch_free_font(GuiFont font)
5502{
5503 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505}
5506
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507/*
5508 * Return the Pixel value (color) for the given color name. This routine was
5509 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5510 * Programmer's Guide.
5511 * Return INVALCOLOR for error.
5512 */
5513 guicolor_T
5514gui_mch_get_color(char_u *name)
5515{
5516 /* A number of colors that some X11 systems don't have */
5517 static const char *const vimnames[][2] =
5518 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00005519 {"LightRed", "#FFBBBB"},
5520 {"LightGreen", "#88FF88"},
5521 {"LightMagenta","#FFBBFF"},
5522 {"DarkCyan", "#008888"},
5523 {"DarkBlue", "#0000BB"},
5524 {"DarkRed", "#BB0000"},
5525 {"DarkMagenta", "#BB00BB"},
5526 {"DarkGrey", "#BBBBBB"},
5527 {"DarkYellow", "#BBBB00"},
5528 {"Gray10", "#1A1A1A"},
5529 {"Grey10", "#1A1A1A"},
5530 {"Gray20", "#333333"},
5531 {"Grey20", "#333333"},
5532 {"Gray30", "#4D4D4D"},
5533 {"Grey30", "#4D4D4D"},
5534 {"Gray40", "#666666"},
5535 {"Grey40", "#666666"},
5536 {"Gray50", "#7F7F7F"},
5537 {"Grey50", "#7F7F7F"},
5538 {"Gray60", "#999999"},
5539 {"Grey60", "#999999"},
5540 {"Gray70", "#B3B3B3"},
5541 {"Grey70", "#B3B3B3"},
5542 {"Gray80", "#CCCCCC"},
5543 {"Grey80", "#CCCCCC"},
5544 {"Gray90", "#E5E5E5"},
5545 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 {NULL, NULL}
5547 };
5548
5549 if (!gui.in_use) /* can't do this when GUI not running */
5550 return INVALCOLOR;
5551
5552 while (name != NULL)
5553 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005554#if GTK_CHECK_VERSION(3,0,0)
5555 GdkRGBA color;
5556#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 int parsed;
5560 int i;
5561
Bram Moolenaar98921892016-02-23 17:14:37 +01005562#if GTK_CHECK_VERSION(3,0,0)
5563 parsed = gdk_rgba_parse(&color, (const gchar *)name);
5564#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 parsed = gdk_color_parse((const char *)name, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01005566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 if (parsed)
5569 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005570#if GTK_CHECK_VERSION(3,0,0)
5571 return (guicolor_T)gui_gtk_get_pixel_from_rgb(&color);
5572#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5574 &color, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 return (guicolor_T)color.pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01005576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 }
5578 /* add a few builtin names and try again */
5579 for (i = 0; ; ++i)
5580 {
5581 if (vimnames[i][0] == NULL)
5582 {
5583 name = NULL;
5584 break;
5585 }
5586 if (STRICMP(name, vimnames[i][0]) == 0)
5587 {
5588 name = (char_u *)vimnames[i][1];
5589 break;
5590 }
5591 }
5592 }
5593
5594 return INVALCOLOR;
5595}
5596
5597/*
5598 * Set the current text foreground color.
5599 */
5600 void
5601gui_mch_set_fg_color(guicolor_T color)
5602{
5603 gui.fgcolor->pixel = (unsigned long)color;
5604}
5605
5606/*
5607 * Set the current text background color.
5608 */
5609 void
5610gui_mch_set_bg_color(guicolor_T color)
5611{
5612 gui.bgcolor->pixel = (unsigned long)color;
5613}
5614
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005615/*
5616 * Set the current text special color.
5617 */
5618 void
5619gui_mch_set_sp_color(guicolor_T color)
5620{
5621 gui.spcolor->pixel = (unsigned long)color;
5622}
5623
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624/*
5625 * Function-like convenience macro for the sake of efficiency.
5626 */
5627#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5628 G_STMT_START{ \
5629 PangoAttribute *tmp_attr_; \
5630 tmp_attr_ = (Attribute); \
5631 tmp_attr_->start_index = (Start); \
5632 tmp_attr_->end_index = (End); \
5633 pango_attr_list_insert((AttrList), tmp_attr_); \
5634 }G_STMT_END
5635
5636 static void
5637apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5638{
5639 char_u *start = NULL;
5640 char_u *p;
5641 int uc;
5642
5643 for (p = s; p < s + len; p += utf_byte2len(*p))
5644 {
5645 uc = utf_ptr2char(p);
5646
5647 if (start == NULL)
5648 {
5649 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5650 start = p;
5651 }
5652 else if (uc < 0x80 /* optimization shortcut */
5653 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5654 {
5655 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5656 attr_list, start - s, p - s);
5657 start = NULL;
5658 }
5659 }
5660
5661 if (start != NULL)
5662 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5663 attr_list, start - s, len);
5664}
5665
5666 static int
5667count_cluster_cells(char_u *s, PangoItem *item,
5668 PangoGlyphString* glyphs, int i,
5669 int *cluster_width,
5670 int *last_glyph_rbearing)
5671{
5672 char_u *p;
5673 int next; /* glyph start index of next cluster */
5674 int start, end; /* string segment of current cluster */
5675 int width; /* real cluster width in Pango units */
5676 int uc;
5677 int cellcount = 0;
5678
5679 width = glyphs->glyphs[i].geometry.width;
5680
5681 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5682 {
5683 if (glyphs->glyphs[next].attr.is_cluster_start)
5684 break;
5685 else if (glyphs->glyphs[next].geometry.width > width)
5686 width = glyphs->glyphs[next].geometry.width;
5687 }
5688
5689 start = item->offset + glyphs->log_clusters[i];
5690 end = item->offset + ((next < glyphs->num_glyphs) ?
5691 glyphs->log_clusters[next] : item->length);
5692
5693 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5694 {
5695 uc = utf_ptr2char(p);
5696 if (uc < 0x80)
5697 ++cellcount;
5698 else if (!utf_iscomposing(uc))
5699 cellcount += utf_char2cells(uc);
5700 }
5701
5702 if (last_glyph_rbearing != NULL
5703 && cellcount > 0 && next == glyphs->num_glyphs)
5704 {
5705 PangoRectangle ink_rect;
5706 /*
5707 * If a certain combining mark had to be taken from a non-monospace
5708 * font, we have to compensate manually by adapting x_offset according
5709 * to the ink extents of the previous glyph.
5710 */
5711 pango_font_get_glyph_extents(item->analysis.font,
5712 glyphs->glyphs[i].glyph,
5713 &ink_rect, NULL);
5714
5715 if (PANGO_RBEARING(ink_rect) > 0)
5716 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5717 }
5718
5719 if (cellcount > 0)
5720 *cluster_width = width;
5721
5722 return cellcount;
5723}
5724
5725/*
5726 * If there are only combining characters in the cluster, we cannot just
5727 * change the width of the previous glyph since there is none. Therefore
5728 * some guesswork is needed.
5729 *
5730 * If ink_rect.x is negative Pango apparently has taken care of the composing
5731 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5732 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005733 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 *
5735 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5736 * the position of the previous glyph. Apparently this happens only with old
5737 * X fonts which don't provide the special combining information needed by
5738 * Pango.
5739 */
5740 static void
5741setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5742 int last_cellcount, int last_cluster_width,
5743 int last_glyph_rbearing)
5744{
5745 PangoRectangle ink_rect;
5746 PangoRectangle logical_rect;
5747 int width;
5748
5749 width = last_cellcount * gui.char_width * PANGO_SCALE;
5750 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5751 glyph->geometry.width = 0;
5752
5753 pango_font_get_glyph_extents(item->analysis.font,
5754 glyph->glyph,
5755 &ink_rect, &logical_rect);
5756 if (ink_rect.x < 0)
5757 {
5758 glyph->geometry.x_offset += last_glyph_rbearing;
5759 glyph->geometry.y_offset = logical_rect.height
5760 - (gui.char_height - p_linespace) * PANGO_SCALE;
5761 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005762 else
5763 /* If the accent width is smaller than the cluster width, position it
5764 * in the middle. */
5765 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766}
5767
Bram Moolenaar98921892016-02-23 17:14:37 +01005768#if GTK_CHECK_VERSION(3,0,0)
5769 static void
5770draw_glyph_string(int row, int col, int num_cells, int flags,
5771 PangoFont *font, PangoGlyphString *glyphs,
5772 cairo_t *cr)
5773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 static void
5775draw_glyph_string(int row, int col, int num_cells, int flags,
5776 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778{
5779 if (!(flags & DRAW_TRANSP))
5780 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005781#if GTK_CHECK_VERSION(3,0,0)
5782 set_cairo_source_rgb_from_pixel(cr, gui.bgcolor->pixel);
5783 cairo_rectangle(cr,
5784 FILL_X(col), FILL_Y(row),
5785 num_cells * gui.char_width, gui.char_height);
5786 cairo_fill(cr);
5787#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5789
5790 gdk_draw_rectangle(gui.drawarea->window,
5791 gui.text_gc,
5792 TRUE,
5793 FILL_X(col),
5794 FILL_Y(row),
5795 num_cells * gui.char_width,
5796 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 }
5799
Bram Moolenaar98921892016-02-23 17:14:37 +01005800#if GTK_CHECK_VERSION(3,0,0)
5801 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5802 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5803 pango_cairo_show_glyph_string(cr, font, glyphs);
5804#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5806
5807 gdk_draw_glyphs(gui.drawarea->window,
5808 gui.text_gc,
5809 font,
5810 TEXT_X(col),
5811 TEXT_Y(row),
5812 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005813#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814
5815 /* redraw the contents with an offset of 1 to emulate bold */
5816 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005817#if GTK_CHECK_VERSION(3,0,0)
5818 {
5819 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5820 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5821 pango_cairo_show_glyph_string(cr, font, glyphs);
5822 }
5823#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824 gdk_draw_glyphs(gui.drawarea->window,
5825 gui.text_gc,
5826 font,
5827 TEXT_X(col) + 1,
5828 TEXT_Y(row),
5829 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831}
5832
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005833/*
5834 * Draw underline and undercurl at the bottom of the character cell.
5835 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005836#if GTK_CHECK_VERSION(3,0,0)
5837 static void
5838draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5839#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005840 static void
5841draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005842#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005843{
5844 int i;
5845 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005846 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005847 int y = FILL_Y(row + 1) - 1;
5848
5849 /* Undercurl: draw curl at the bottom of the character cell. */
5850 if (flags & DRAW_UNDERC)
5851 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005852#if GTK_CHECK_VERSION(3,0,0)
5853 cairo_set_line_width(cr, 1.0);
5854 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5855 set_cairo_source_rgb_from_pixel(cr, gui.spcolor->pixel);
5856 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5857 {
5858 offset = val[i % 8];
5859 cairo_line_to(cr, i, y - offset + 0.5);
5860 }
5861 cairo_stroke(cr);
5862#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005863 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5864 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5865 {
5866 offset = val[i % 8];
5867 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5868 }
5869 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005870#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005871 }
5872
5873 /* Underline: draw a line at the bottom of the character cell. */
5874 if (flags & DRAW_UNDERL)
5875 {
5876 /* When p_linespace is 0, overwrite the bottom row of pixels.
5877 * Otherwise put the line just below the character. */
5878 if (p_linespace > 1)
5879 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005880#if GTK_CHECK_VERSION(3,0,0)
5881 {
5882 cairo_set_line_width(cr, 1.0);
5883 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5884 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5885 cairo_move_to(cr, FILL_X(col), y + 0.5);
5886 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5887 cairo_stroke(cr);
5888 }
5889#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005890 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5891 FILL_X(col), y,
5892 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005893#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005894 }
5895}
5896
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 int
5898gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5899{
5900 GdkRectangle area; /* area for clip mask */
5901 PangoGlyphString *glyphs; /* glyphs of current item */
5902 int column_offset = 0; /* column offset in cells */
5903 int i;
5904 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5905 char_u *new_conv_buf;
5906 int convlen;
5907 char_u *sp, *bp;
5908 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005909#if GTK_CHECK_VERSION(3,0,0)
5910 cairo_t *cr;
5911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912
Bram Moolenaar98921892016-02-23 17:14:37 +01005913#if GTK_CHECK_VERSION(3,0,0)
5914 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 return len;
5919
5920 if (output_conv.vc_type != CONV_NONE)
5921 {
5922 /*
5923 * Convert characters from 'encoding' to 'termencoding', which is set
5924 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5925 * prohibits changing this to something else than UTF-8 if the GUI is
5926 * in use.
5927 */
5928 convlen = len;
5929 conv_buf = string_convert(&output_conv, s, &convlen);
5930 g_return_val_if_fail(conv_buf != NULL, len);
5931
5932 /* Correct for differences in char width: some chars are
5933 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5934 * compensate for that. */
5935 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5936 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005937 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5939 {
5940 new_conv_buf = alloc(convlen + 2);
5941 if (new_conv_buf == NULL)
5942 return len;
5943 plen += bp - conv_buf;
5944 mch_memmove(new_conv_buf, conv_buf, plen);
5945 new_conv_buf[plen] = ' ';
5946 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5947 convlen - plen + 1);
5948 vim_free(conv_buf);
5949 conv_buf = new_conv_buf;
5950 ++convlen;
5951 bp = conv_buf + plen;
5952 plen = 1;
5953 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005954 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 bp += plen;
5956 }
5957 s = conv_buf;
5958 len = convlen;
5959 }
5960
5961 /*
5962 * Restrict all drawing to the current screen line in order to prevent
5963 * fuzzy font lookups from messing up the screen.
5964 */
5965 area.x = gui.border_offset;
5966 area.y = FILL_Y(row);
5967 area.width = gui.num_cols * gui.char_width;
5968 area.height = gui.char_height;
5969
Bram Moolenaar98921892016-02-23 17:14:37 +01005970#if GTK_CHECK_VERSION(3,0,0)
5971 cr = cairo_create(gui.surface);
5972 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5973 cairo_clip(cr);
5974#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5976 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978
5979 glyphs = pango_glyph_string_new();
5980
5981 /*
5982 * Optimization hack: If possible, skip the itemize and shaping process
5983 * for pure ASCII strings. This optimization is particularly effective
5984 * because Vim draws space characters to clear parts of the screen.
5985 */
5986 if (!(flags & DRAW_ITALIC)
5987 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5988 && gui.ascii_glyphs != NULL)
5989 {
5990 char_u *p;
5991
5992 for (p = s; p < s + len; ++p)
5993 if (*p & 0x80)
5994 goto not_ascii;
5995
5996 pango_glyph_string_set_size(glyphs, len);
5997
5998 for (i = 0; i < len; ++i)
5999 {
6000 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
6001 glyphs->log_clusters[i] = i;
6002 }
6003
Bram Moolenaar98921892016-02-23 17:14:37 +01006004#if GTK_CHECK_VERSION(3,0,0)
6005 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6006#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009
6010 column_offset = len;
6011 }
6012 else
6013not_ascii:
6014 {
6015 PangoAttrList *attr_list;
6016 GList *item_list;
6017 int cluster_width;
6018 int last_glyph_rbearing;
6019 int cells = 0; /* cells occupied by current cluster */
6020
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006021 /* Safety check: pango crashes when invoked with invalid utf-8
6022 * characters. */
6023 if (!utf_valid_string(s, s + len))
6024 {
6025 column_offset = len;
6026 goto skipitall;
6027 }
6028
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 /* original width of the current cluster */
6030 cluster_width = PANGO_SCALE * gui.char_width;
6031
6032 /* right bearing of the last non-composing glyph */
6033 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6034
6035 attr_list = pango_attr_list_new();
6036
6037 /* If 'guifontwide' is set then use that for double-width characters.
6038 * Otherwise just go with 'guifont' and let Pango do its thing. */
6039 if (gui.wide_font != NULL)
6040 apply_wide_font_attr(s, len, attr_list);
6041
6042 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6043 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6044 attr_list, 0, len);
6045 if (flags & DRAW_ITALIC)
6046 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6047 attr_list, 0, len);
6048 /*
6049 * Break the text into segments with consistent directional level
6050 * and shaping engine. Pure Latin text needs only a single segment,
6051 * so there's no need to worry about the loop's efficiency. Better
6052 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6053 */
6054 item_list = pango_itemize(gui.text_context,
6055 (const char *)s, 0, len, attr_list, NULL);
6056
6057 while (item_list != NULL)
6058 {
6059 PangoItem *item;
6060 int item_cells = 0; /* item length in cells */
6061
6062 item = (PangoItem *)item_list->data;
6063 item_list = g_list_delete_link(item_list, item_list);
6064 /*
6065 * Increment the bidirectional embedding level by 1 if it is not
6066 * even. An odd number means the output will be RTL, but we don't
6067 * want that since Vim handles right-to-left text on its own. It
6068 * would probably be sufficient to just set level = 0, but you can
6069 * never know :)
6070 *
6071 * Unfortunately we can't take advantage of Pango's ability to
6072 * render both LTR and RTL at the same time. In order to support
6073 * that, Vim's main screen engine would have to make use of Pango
6074 * functionality.
6075 */
6076 item->analysis.level = (item->analysis.level + 1) & (~1U);
6077
6078 /* HACK: Overrule the shape engine, we don't want shaping to be
6079 * done, because drawing the cursor would change the display. */
6080 item->analysis.shape_engine = default_shape_engine;
6081
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006082#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006083 pango_shape_full((const char *)s + item->offset, item->length,
6084 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006085#else
6086 pango_shape((const char *)s + item->offset, item->length,
6087 &item->analysis, glyphs);
6088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 /*
6090 * Fixed-width hack: iterate over the array and assign a fixed
6091 * width to each glyph, thus overriding the choice made by the
6092 * shaping engine. We use utf_char2cells() to determine the
6093 * number of cells needed.
6094 *
6095 * Also perform all kind of dark magic to get composing
6096 * characters right (and pretty too of course).
6097 */
6098 for (i = 0; i < glyphs->num_glyphs; ++i)
6099 {
6100 PangoGlyphInfo *glyph;
6101
6102 glyph = &glyphs->glyphs[i];
6103
6104 if (glyph->attr.is_cluster_start)
6105 {
6106 int cellcount;
6107
6108 cellcount = count_cluster_cells(
6109 s, item, glyphs, i, &cluster_width,
6110 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6111
6112 if (cellcount > 0)
6113 {
6114 int width;
6115
6116 width = cellcount * gui.char_width * PANGO_SCALE;
6117 glyph->geometry.x_offset +=
6118 MAX(0, width - cluster_width) / 2;
6119 glyph->geometry.width = width;
6120 }
6121 else
6122 {
6123 /* If there are only combining characters in the
6124 * cluster, we cannot just change the width of the
6125 * previous glyph since there is none. Therefore
6126 * some guesswork is needed. */
6127 setup_zero_width_cluster(item, glyph, cells,
6128 cluster_width,
6129 last_glyph_rbearing);
6130 }
6131
6132 item_cells += cellcount;
6133 cells = cellcount;
6134 }
6135 else if (i > 0)
6136 {
6137 int width;
6138
6139 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006140 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006141 * In some circumstances Pango uses a positive x_offset,
6142 * then use the width of the previous glyph for this one
6143 * and set the previous width to zero.
6144 * Otherwise we get a negative x_offset, Pango has already
6145 * positioned the combining char, keep the widths as they
6146 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006147 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006148 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006149 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006150 {
6151 glyphs->glyphs[i].geometry.width =
6152 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006153 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 width = cells * gui.char_width * PANGO_SCALE;
6156 glyph->geometry.x_offset +=
6157 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158 }
6159 else /* i == 0 "cannot happen" */
6160 {
6161 glyph->geometry.width = 0;
6162 }
6163 }
6164
6165 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006166#if GTK_CHECK_VERSION(3,0,0)
6167 draw_glyph_string(row, col + column_offset, item_cells,
6168 flags, item->analysis.font, glyphs,
6169 cr);
6170#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 draw_glyph_string(row, col + column_offset, item_cells,
6172 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174
6175 pango_item_free(item);
6176
6177 column_offset += item_cells;
6178 }
6179
6180 pango_attr_list_unref(attr_list);
6181 }
6182
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006183skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006184 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006185#if GTK_CHECK_VERSION(3,0,0)
6186 draw_under(flags, row, col, column_offset, cr);
6187#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006188 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190
6191 pango_glyph_string_free(glyphs);
6192 vim_free(conv_buf);
6193
Bram Moolenaar98921892016-02-23 17:14:37 +01006194#if GTK_CHECK_VERSION(3,0,0)
6195 cairo_destroy(cr);
6196 if (!gui.by_signal)
6197 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6198 &area, FALSE);
6199#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006201#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202
6203 return column_offset;
6204}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206/*
6207 * Return OK if the key with the termcap name "name" is supported.
6208 */
6209 int
6210gui_mch_haskey(char_u *name)
6211{
6212 int i;
6213
6214 for (i = 0; special_keys[i].key_sym != 0; i++)
6215 if (name[0] == special_keys[i].code0
6216 && name[1] == special_keys[i].code1)
6217 return OK;
6218 return FAIL;
6219}
6220
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006221#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222/*
6223 * Return the text window-id and display. Only required for X-based GUI's
6224 */
6225 int
6226gui_get_x11_windis(Window *win, Display **dis)
6227{
Bram Moolenaar98921892016-02-23 17:14:37 +01006228#if GTK_CHECK_VERSION(3,0,0)
6229 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6230#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006234#if GTK_CHECK_VERSION(3,0,0)
6235 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6236 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6237#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6239 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 return OK;
6242 }
6243
6244 *dis = NULL;
6245 *win = 0;
6246 return FAIL;
6247}
6248#endif
6249
6250#if defined(FEAT_CLIENTSERVER) \
6251 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6252
6253 Display *
6254gui_mch_get_display(void)
6255{
Bram Moolenaar98921892016-02-23 17:14:37 +01006256#if GTK_CHECK_VERSION(3,0,0)
6257 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6258 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6259#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6261 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 else
6264 return NULL;
6265}
6266#endif
6267
6268 void
6269gui_mch_beep(void)
6270{
6271#ifdef HAVE_GTK_MULTIHEAD
6272 GdkDisplay *display;
6273
Bram Moolenaar98921892016-02-23 17:14:37 +01006274# if GTK_CHECK_VERSION(3,0,0)
6275 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6276# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006278# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 display = gtk_widget_get_display(gui.mainwin);
6280 else
6281 display = gdk_display_get_default();
6282
6283 if (display != NULL)
6284 gdk_display_beep(display);
6285#else
6286 gdk_beep();
6287#endif
6288}
6289
6290 void
6291gui_mch_flash(int msec)
6292{
Bram Moolenaar98921892016-02-23 17:14:37 +01006293#if GTK_CHECK_VERSION(3,0,0)
6294 /* TODO Replace GdkGC with Cairo */
6295 (void)msec;
6296#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 GdkGCValues values;
6298 GdkGC *invert_gc;
6299
6300 if (gui.drawarea->window == NULL)
6301 return;
6302
6303 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6304 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6305 values.function = GDK_XOR;
6306 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6307 &values,
6308 GDK_GC_FOREGROUND |
6309 GDK_GC_BACKGROUND |
6310 GDK_GC_FUNCTION);
6311 gdk_gc_set_exposures(invert_gc,
6312 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6313 /*
6314 * Do a visual beep by changing back and forth in some undetermined way,
6315 * the foreground and background colors. This is due to the fact that
6316 * there can't be really any prediction about the effects of XOR on
6317 * arbitrary X11 servers. However this seems to be enough for what we
6318 * intend it to do.
6319 */
6320 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6321 TRUE,
6322 0, 0,
6323 FILL_X((int)Columns) + gui.border_offset,
6324 FILL_Y((int)Rows) + gui.border_offset);
6325
6326 gui_mch_flush();
6327 ui_delay((long)msec, TRUE); /* wait so many msec */
6328
6329 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6330 TRUE,
6331 0, 0,
6332 FILL_X((int)Columns) + gui.border_offset,
6333 FILL_Y((int)Rows) + gui.border_offset);
6334
6335 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337}
6338
6339/*
6340 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6341 */
6342 void
6343gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6344{
Bram Moolenaar98921892016-02-23 17:14:37 +01006345#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006346 const GdkRectangle rect = {
6347 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6348 };
6349 cairo_t * const cr = cairo_create(gui.surface);
6350
6351 set_cairo_source_rgb_from_pixel(cr, gui.norm_pixel ^ gui.back_pixel);
6352# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6353 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6354# else
6355 /* Give an implementation for older cairo versions if necessary. */
6356# endif
6357 gdk_cairo_rectangle(cr, &rect);
6358 cairo_fill(cr);
6359
6360 cairo_destroy(cr);
6361
6362 if (!gui.by_signal)
6363 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6364 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006365#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 GdkGCValues values;
6367 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368
6369 if (gui.drawarea->window == NULL)
6370 return;
6371
Bram Moolenaar89d40322006-08-29 15:30:07 +00006372 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6373 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 values.function = GDK_XOR;
6375 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6376 &values,
6377 GDK_GC_FOREGROUND |
6378 GDK_GC_BACKGROUND |
6379 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006380 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6381 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6383 TRUE,
6384 FILL_X(c), FILL_Y(r),
6385 (nc) * gui.char_width, (nr) * gui.char_height);
6386 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388}
6389
6390/*
6391 * Iconify the GUI window.
6392 */
6393 void
6394gui_mch_iconify(void)
6395{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397}
6398
6399#if defined(FEAT_EVAL) || defined(PROTO)
6400/*
6401 * Bring the Vim window to the foreground.
6402 */
6403 void
6404gui_mch_set_foreground(void)
6405{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407}
6408#endif
6409
6410/*
6411 * Draw a cursor without focus.
6412 */
6413 void
6414gui_mch_draw_hollow_cursor(guicolor_T color)
6415{
6416 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006417#if GTK_CHECK_VERSION(3,0,0)
6418 cairo_t *cr;
6419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420
Bram Moolenaar98921892016-02-23 17:14:37 +01006421#if GTK_CHECK_VERSION(3,0,0)
6422 if (gtk_widget_get_window(gui.drawarea) == NULL)
6423#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006425#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 return;
6427
Bram Moolenaar98921892016-02-23 17:14:37 +01006428#if GTK_CHECK_VERSION(3,0,0)
6429 cr = cairo_create(gui.surface);
6430#endif
6431
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 gui_mch_set_fg_color(color);
6433
Bram Moolenaar98921892016-02-23 17:14:37 +01006434#if GTK_CHECK_VERSION(3,0,0)
6435 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6436#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 if (mb_lefthalve(gui.row, gui.col))
6440 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006441#if GTK_CHECK_VERSION(3,0,0)
6442 cairo_set_line_width(cr, 1.0);
6443 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6444 cairo_rectangle(cr,
6445 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6446 i * gui.char_width - 1, gui.char_height - 1);
6447 cairo_stroke(cr);
6448 cairo_destroy(cr);
6449#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6451 FALSE,
6452 FILL_X(gui.col), FILL_Y(gui.row),
6453 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455}
6456
6457/*
6458 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6459 * color "color".
6460 */
6461 void
6462gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6463{
Bram Moolenaar98921892016-02-23 17:14:37 +01006464#if GTK_CHECK_VERSION(3,0,0)
6465 if (gtk_widget_get_window(gui.drawarea) == NULL)
6466#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 return;
6470
6471 gui_mch_set_fg_color(color);
6472
Bram Moolenaar98921892016-02-23 17:14:37 +01006473#if GTK_CHECK_VERSION(3,0,0)
6474 {
6475 cairo_t *cr;
6476
6477 cr = cairo_create(gui.surface);
6478 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6479 cairo_rectangle(cr,
6480# ifdef FEAT_RIGHTLEFT
6481 /* vertical line should be on the right of current point */
6482 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6483# endif
6484 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6485 w, h);
6486 cairo_fill(cr);
6487 cairo_destroy(cr);
6488 }
6489#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6491 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6492 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006493# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 /* vertical line should be on the right of current point */
6495 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006496# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 FILL_X(gui.col),
6498 FILL_Y(gui.row) + gui.char_height - h,
6499 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006500#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501}
6502
6503
6504/*
6505 * Catch up with any queued X11 events. This may put keyboard input into the
6506 * input buffer, call resize call-backs, trigger timers etc. If there is
6507 * nothing in the X11 event queue (& no timers pending), then we return
6508 * immediately.
6509 */
6510 void
6511gui_mch_update(void)
6512{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006513 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6514 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515}
6516
Bram Moolenaar98921892016-02-23 17:14:37 +01006517#if GTK_CHECK_VERSION(3,0,0)
6518 static gboolean
6519#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522input_timer_cb(gpointer data)
6523{
6524 int *timed_out = (int *) data;
6525
Bram Moolenaar49325942007-05-10 19:19:59 +00006526 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 *timed_out = TRUE;
6528
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 return FALSE; /* don't happen again */
6530}
6531
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532/*
6533 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6534 * from the keyboard.
6535 * wtime == -1 Wait forever.
6536 * wtime == 0 This should never happen.
6537 * wtime > 0 Wait wtime milliseconds for a character.
6538 * Returns OK if a character was found to be available within the given time,
6539 * or FAIL otherwise.
6540 */
6541 int
6542gui_mch_wait_for_chars(long wtime)
6543{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006544 int focus;
6545 guint timer;
6546 static int timed_out;
6547 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548
6549 timed_out = FALSE;
6550
6551 /* this timeout makes sure that we will return if no characters arrived in
6552 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006554#if GTK_CHECK_VERSION(3,0,0)
6555 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6556#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 else
6560 timer = 0;
6561
6562 focus = gui.in_focus;
6563
6564 do
6565 {
6566 /* Stop or start blinking when focus changes */
6567 if (gui.in_focus != focus)
6568 {
6569 if (gui.in_focus)
6570 gui_mch_start_blink();
6571 else
6572 gui_mch_stop_blink();
6573 focus = gui.in_focus;
6574 }
6575
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006576#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006577# ifdef FEAT_TIMERS
6578 did_add_timer = FALSE;
6579# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006580 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006581# ifdef FEAT_TIMERS
6582 if (did_add_timer)
6583 /* Need to recompute the waiting time. */
6584 goto theend;
6585# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006586#endif
6587
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 /*
6589 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006590 * Skip this if input is available anyway (can happen in rare
6591 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006593 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006594 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595
6596 /* Got char, return immediately */
6597 if (input_available())
6598 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006599 retval = OK;
6600 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601 }
6602 } while (wtime < 0 || !timed_out);
6603
6604 /*
6605 * Flush all eventually pending (drawing) events.
6606 */
6607 gui_mch_update();
6608
Bram Moolenaar4231da42016-06-02 14:30:04 +02006609theend:
6610 if (timer != 0 && !timed_out)
6611#if GTK_CHECK_VERSION(3,0,0)
6612 g_source_remove(timer);
6613#else
6614 gtk_timeout_remove(timer);
6615#endif
6616
6617 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618}
6619
6620
6621/****************************************************************************
6622 * Output drawing routines.
6623 ****************************************************************************/
6624
6625
6626/* Flush any output to the screen */
6627 void
6628gui_mch_flush(void)
6629{
6630#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006631# if GTK_CHECK_VERSION(3,0,0)
6632 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6633# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006635# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006636 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6637#else
6638 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640 /* This happens to actually do what gui_mch_flush() is supposed to do,
6641 * according to the comment above. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006642#if GTK_CHECK_VERSION(3,0,0)
6643 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
6644 gdk_window_process_updates(gtk_widget_get_window(gui.drawarea), FALSE);
6645#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6647 gdk_window_process_updates(gui.drawarea->window, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01006648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649}
6650
6651/*
6652 * Clear a rectangular region of the screen from text pos (row1, col1) to
6653 * (row2, col2) inclusive.
6654 */
6655 void
6656gui_mch_clear_block(int row1, int col1, int row2, int col2)
6657{
Bram Moolenaar98921892016-02-23 17:14:37 +01006658#if GTK_CHECK_VERSION(3,0,0)
6659 if (gtk_widget_get_window(gui.drawarea) == NULL)
6660 return;
6661#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662 GdkColor color;
6663
6664 if (gui.drawarea->window == NULL)
6665 return;
6666
6667 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669
Bram Moolenaar98921892016-02-23 17:14:37 +01006670#if GTK_CHECK_VERSION(3,0,0)
6671 {
6672 /* Add one pixel to the far right column in case a double-stroked
6673 * bold glyph may sit there. */
6674 const GdkRectangle rect = {
6675 FILL_X(col1), FILL_Y(row1),
6676 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6677 (row2 - row1 + 1) * gui.char_height
6678 };
6679 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6680 cairo_t * const cr = cairo_create(gui.surface);
6681 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6682 if (pat != NULL)
6683 cairo_set_source(cr, pat);
6684 else
6685 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6686 gdk_cairo_rectangle(cr, &rect);
6687 cairo_fill(cr);
6688 cairo_destroy(cr);
6689
6690 if (!gui.by_signal)
6691 gdk_window_invalidate_rect(win, &rect, FALSE);
6692 }
6693#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 gdk_gc_set_foreground(gui.text_gc, &color);
6695
6696 /* Clear one extra pixel at the far right, for when bold characters have
6697 * spilled over to the window border. */
6698 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6699 FILL_X(col1), FILL_Y(row1),
6700 (col2 - col1 + 1) * gui.char_width
6701 + (col2 == Columns - 1),
6702 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006703#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704}
6705
Bram Moolenaar98921892016-02-23 17:14:37 +01006706#if GTK_CHECK_VERSION(3,0,0)
6707 static void
6708gui_gtk_window_clear(GdkWindow *win)
6709{
6710 const GdkRectangle rect = {
6711 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6712 };
6713 cairo_t * const cr = cairo_create(gui.surface);
6714 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6715 if (pat != NULL)
6716 cairo_set_source(cr, pat);
6717 else
6718 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6719 gdk_cairo_rectangle(cr, &rect);
6720 cairo_fill(cr);
6721 cairo_destroy(cr);
6722
6723 if (!gui.by_signal)
6724 gdk_window_invalidate_rect(win, &rect, FALSE);
6725}
6726#endif
6727
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 void
6729gui_mch_clear_all(void)
6730{
Bram Moolenaar98921892016-02-23 17:14:37 +01006731#if GTK_CHECK_VERSION(3,0,0)
6732 if (gtk_widget_get_window(gui.drawarea) != NULL)
6733 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6734#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 if (gui.drawarea->window != NULL)
6736 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738}
6739
Bram Moolenaar98921892016-02-23 17:14:37 +01006740#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741/*
6742 * Redraw any text revealed by scrolling up/down.
6743 */
6744 static void
6745check_copy_area(void)
6746{
6747 GdkEvent *event;
6748 int expose_count;
6749
6750 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6751 return;
6752
6753 /* Avoid redrawing the cursor while scrolling or it'll end up where
6754 * we don't want it to be. I'm not sure if it's correct to call
6755 * gui_dont_update_cursor() at this point but it works as a quick
6756 * fix for now. */
6757 gui_dont_update_cursor();
6758
6759 do
6760 {
6761 /* Wait to check whether the scroll worked or not. */
6762 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6763
6764 if (event == NULL)
6765 break; /* received NoExpose event */
6766
6767 gui_redraw(event->expose.area.x, event->expose.area.y,
6768 event->expose.area.width, event->expose.area.height);
6769
6770 expose_count = event->expose.count;
6771 gdk_event_free(event);
6772 }
6773 while (expose_count > 0); /* more events follow */
6774
6775 gui_can_update_cursor();
6776}
Bram Moolenaar98921892016-02-23 17:14:37 +01006777#endif /* !GTK_CHECK_VERSION(3,0,0) */
6778
6779#if GTK_CHECK_VERSION(3,0,0)
6780 static void
6781gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6782 int src_x, int src_y,
6783 int width, int height)
6784{
6785 cairo_t * const cr = cairo_create(gui.surface);
6786
6787 cairo_rectangle(cr, dest_x, dest_y, width, height);
6788 cairo_clip(cr);
6789 cairo_push_group(cr);
6790 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6791 cairo_paint(cr);
6792 cairo_pop_group_to_source(cr);
6793 cairo_paint(cr);
6794
6795 cairo_destroy(cr);
6796}
6797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798
6799/*
6800 * Delete the given number of lines from the given row, scrolling up any
6801 * text further down within the scroll region.
6802 */
6803 void
6804gui_mch_delete_lines(int row, int num_lines)
6805{
Bram Moolenaar98921892016-02-23 17:14:37 +01006806#if GTK_CHECK_VERSION(3,0,0)
6807 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6808 const int nrows = gui.scroll_region_bot - row + 1;
6809 const int src_nrows = nrows - num_lines;
6810
6811 gui_gtk_surface_copy_rect(
6812 FILL_X(gui.scroll_region_left), FILL_Y(row),
6813 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6814 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6815 gui_clear_block(
6816 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6817 gui.scroll_region_bot, gui.scroll_region_right);
6818 gui_gtk3_redraw(
6819 FILL_X(gui.scroll_region_left), FILL_Y(row),
6820 gui.char_width * ncols + 1, gui.char_height * nrows);
6821 if (!gui.by_signal)
6822 gtk_widget_queue_draw_area(gui.drawarea,
6823 FILL_X(gui.scroll_region_left), FILL_Y(row),
6824 gui.char_width * ncols + 1, gui.char_height * nrows);
6825#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6827 return; /* Can't see the window */
6828
6829 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6830 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6831
6832 /* copy one extra pixel, for when bold has spilled over */
6833 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6834 FILL_X(gui.scroll_region_left), FILL_Y(row),
6835 gui.drawarea->window,
6836 FILL_X(gui.scroll_region_left),
6837 FILL_Y(row + num_lines),
6838 gui.char_width * (gui.scroll_region_right
6839 - gui.scroll_region_left + 1) + 1,
6840 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6841
6842 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6843 gui.scroll_region_left,
6844 gui.scroll_region_bot, gui.scroll_region_right);
6845 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006846#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847}
6848
6849/*
6850 * Insert the given number of lines before the given row, scrolling down any
6851 * following text within the scroll region.
6852 */
6853 void
6854gui_mch_insert_lines(int row, int num_lines)
6855{
Bram Moolenaar98921892016-02-23 17:14:37 +01006856#if GTK_CHECK_VERSION(3,0,0)
6857 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6858 const int nrows = gui.scroll_region_bot - row + 1;
6859 const int src_nrows = nrows - num_lines;
6860
6861 gui_gtk_surface_copy_rect(
6862 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6863 FILL_X(gui.scroll_region_left), FILL_Y(row),
6864 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6865 gui_mch_clear_block(
6866 row, gui.scroll_region_left,
6867 row + num_lines - 1, gui.scroll_region_right);
6868 gui_gtk3_redraw(
6869 FILL_X(gui.scroll_region_left), FILL_Y(row),
6870 gui.char_width * ncols + 1, gui.char_height * nrows);
6871 if (!gui.by_signal)
6872 gtk_widget_queue_draw_area(gui.drawarea,
6873 FILL_X(gui.scroll_region_left), FILL_Y(row),
6874 gui.char_width * ncols + 1, gui.char_height * nrows);
6875#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6877 return; /* Can't see the window */
6878
6879 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6880 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6881
6882 /* copy one extra pixel, for when bold has spilled over */
6883 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6884 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6885 gui.drawarea->window,
6886 FILL_X(gui.scroll_region_left), FILL_Y(row),
6887 gui.char_width * (gui.scroll_region_right
6888 - gui.scroll_region_left + 1) + 1,
6889 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6890
6891 gui_clear_block(row, gui.scroll_region_left,
6892 row + num_lines - 1, gui.scroll_region_right);
6893 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006894#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895}
6896
6897/*
6898 * X Selection stuff, for cutting and pasting text to other windows.
6899 */
6900 void
6901clip_mch_request_selection(VimClipboard *cbd)
6902{
6903 GdkAtom target;
6904 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006905 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006906
6907 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6908 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006909 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6910 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911 received_selection = RS_NONE;
6912 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6913
6914 gtk_selection_convert(gui.drawarea,
6915 cbd->gtk_sel_atom, target,
6916 (guint32)GDK_CURRENT_TIME);
6917
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006918 /* Hack: Wait up to three seconds for the selection. A hang was
6919 * noticed here when using the netrw plugin combined with ":gui"
6920 * during the FocusGained event. */
6921 start = time(NULL);
6922 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006923 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
6925 if (received_selection != RS_FAIL)
6926 return;
6927 }
6928
6929 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006930#if GTK_CHECK_VERSION(3,0,0)
6931 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6932 cbd);
6933#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006934 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006935#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936}
6937
6938/*
6939 * Disown the selection.
6940 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006942clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006944 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946}
6947
6948/*
6949 * Own the selection and return OK if it worked.
6950 */
6951 int
6952clip_mch_own_selection(VimClipboard *cbd)
6953{
6954 int success;
6955
6956 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006957 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 gui_mch_update();
6959 return (success) ? OK : FAIL;
6960}
6961
6962/*
6963 * Send the current selection to the clipboard. Do nothing for X because we
6964 * will fill in the selection only when requested by another app.
6965 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006967clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968{
6969}
6970
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006971 int
6972clip_gtk_owner_exists(VimClipboard *cbd)
6973{
6974 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6975}
6976
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977
6978#if defined(FEAT_MENU) || defined(PROTO)
6979/*
6980 * Make a menu item appear either active or not active (grey or not grey).
6981 */
6982 void
6983gui_mch_menu_grey(vimmenu_T *menu, int grey)
6984{
6985 if (menu->id == NULL)
6986 return;
6987
6988 if (menu_is_separator(menu->name))
6989 grey = TRUE;
6990
6991 gui_mch_menu_hidden(menu, FALSE);
6992 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006993# if GTK_CHECK_VERSION(3,0,0)
6994 if (!gtk_widget_get_sensitive(menu->id) == !grey)
6995# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01006997# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998 {
6999 gtk_widget_set_sensitive(menu->id, !grey);
7000 gui_mch_update();
7001 }
7002}
7003
7004/*
7005 * Make menu item hidden or not hidden.
7006 */
7007 void
7008gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7009{
7010 if (menu->id == 0)
7011 return;
7012
7013 if (hidden)
7014 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007015# if GTK_CHECK_VERSION(3,0,0)
7016 if (gtk_widget_get_visible(menu->id))
7017# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020 {
7021 gtk_widget_hide(menu->id);
7022 gui_mch_update();
7023 }
7024 }
7025 else
7026 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007027# if GTK_CHECK_VERSION(3,0,0)
7028 if (!gtk_widget_get_visible(menu->id))
7029# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007031# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 {
7033 gtk_widget_show(menu->id);
7034 gui_mch_update();
7035 }
7036 }
7037}
7038
7039/*
7040 * This is called after setting all the menus to grey/hidden or not.
7041 */
7042 void
7043gui_mch_draw_menubar(void)
7044{
7045 /* just make sure that the visual changes get effect immediately */
7046 gui_mch_update();
7047}
7048#endif /* FEAT_MENU */
7049
7050/*
7051 * Scrollbar stuff.
7052 */
7053 void
7054gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7055{
7056 if (sb->id == NULL)
7057 return;
7058
Bram Moolenaar98921892016-02-23 17:14:37 +01007059#if GTK_CHECK_VERSION(3,0,0)
7060 gtk_widget_set_visible(sb->id, flag);
7061#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 if (flag)
7063 gtk_widget_show(sb->id);
7064 else
7065 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007066#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007068 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069}
7070
7071
7072/*
7073 * Return the RGB value of a pixel as long.
7074 */
7075 long_u
7076gui_mch_get_rgb(guicolor_T pixel)
7077{
7078 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01007079#if GTK_CHECK_VERSION(3,0,0)
7080 GdkRGBA rgba;
7081
7082 gui_gtk_get_rgb_from_pixel(pixel, &rgba);
7083
7084 color.red = rgba.red * 65535;
7085 color.green = rgba.green * 65535;
7086 color.blue = rgba.blue * 65535;
7087#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7089 (unsigned long)pixel, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01007090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091
7092 return (((unsigned)color.red & 0xff00) << 8)
7093 | ((unsigned)color.green & 0xff00)
7094 | (((unsigned)color.blue & 0xff00) >> 8);
7095}
7096
7097/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007098 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007100 void
7101gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102{
Bram Moolenaar98921892016-02-23 17:14:37 +01007103#if GTK_CHECK_VERSION(3,0,0)
7104 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7105#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007106 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007107#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108}
7109
7110 void
7111gui_mch_setmouse(int x, int y)
7112{
7113 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7114 * internal GDK mechanism present to accomplish this. (and for good
7115 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007116#if GTK_CHECK_VERSION(3,0,0)
7117 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7118 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7119 0, 0, 0U, 0U, x, y);
7120#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7122 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7123 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125}
7126
7127
7128#ifdef FEAT_MOUSESHAPE
7129/* The last set mouse pointer shape is remembered, to be used when it goes
7130 * from hidden to not hidden. */
7131static int last_shape = 0;
7132#endif
7133
7134/*
7135 * Use the blank mouse pointer or not.
7136 *
7137 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7138 */
7139 void
7140gui_mch_mousehide(int hide)
7141{
7142 if (gui.pointer_hidden != hide)
7143 {
7144 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007145#if GTK_CHECK_VERSION(3,0,0)
7146 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7147#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007149#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 {
7151 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007152#if GTK_CHECK_VERSION(3,0,0)
7153 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7154 gui.blank_pointer);
7155#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007157#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 else
7159#ifdef FEAT_MOUSESHAPE
7160 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007161#elif GTK_CHECK_VERSION(3,0,0)
7162 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163#else
7164 gdk_window_set_cursor(gui.drawarea->window, NULL);
7165#endif
7166 }
7167 }
7168}
7169
7170#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7171
7172/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7173 * misc2.c! */
7174static const int mshape_ids[] =
7175{
7176 GDK_LEFT_PTR, /* arrow */
7177 GDK_CURSOR_IS_PIXMAP, /* blank */
7178 GDK_XTERM, /* beam */
7179 GDK_SB_V_DOUBLE_ARROW, /* updown */
7180 GDK_SIZING, /* udsizing */
7181 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7182 GDK_SIZING, /* lrsizing */
7183 GDK_WATCH, /* busy */
7184 GDK_X_CURSOR, /* no */
7185 GDK_CROSSHAIR, /* crosshair */
7186 GDK_HAND1, /* hand1 */
7187 GDK_HAND2, /* hand2 */
7188 GDK_PENCIL, /* pencil */
7189 GDK_QUESTION_ARROW, /* question */
7190 GDK_RIGHT_PTR, /* right-arrow */
7191 GDK_CENTER_PTR, /* up-arrow */
7192 GDK_LEFT_PTR /* last one */
7193};
7194
7195 void
7196mch_set_mouse_shape(int shape)
7197{
7198 int id;
7199 GdkCursor *c;
7200
Bram Moolenaar98921892016-02-23 17:14:37 +01007201# if GTK_CHECK_VERSION(3,0,0)
7202 if (gtk_widget_get_window(gui.drawarea) == NULL)
7203# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007205# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 return;
7207
7208 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
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 {
7217 if (shape >= MSHAPE_NUMBERED)
7218 {
7219 id = shape - MSHAPE_NUMBERED;
7220 if (id >= GDK_LAST_CURSOR)
7221 id = GDK_LEFT_PTR;
7222 else
7223 id &= ~1; /* they are always even (why?) */
7224 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007225 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007226 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007227 else
7228 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229# ifdef HAVE_GTK_MULTIHEAD
7230 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007231 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007233 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007235# if GTK_CHECK_VERSION(3,0,0)
7236 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7237# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007239# endif
7240# if GTK_CHECK_VERSION(3,0,0)
7241 g_object_unref(G_OBJECT(c));
7242# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 }
7246 if (shape != MSHAPE_HIDE)
7247 last_shape = shape;
7248}
7249#endif /* FEAT_MOUSESHAPE */
7250
7251
7252#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7253/*
7254 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7255 * scaled down if the current font is not big enough, or scaled up if the image
7256 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7257 * will be cut off if the current font is not big enough, or centered if it's
7258 * too small.
7259 */
7260# define SIGN_WIDTH (2 * gui.char_width)
7261# define SIGN_HEIGHT (gui.char_height)
7262# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7263
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 void
7265gui_mch_drawsign(int row, int col, int typenr)
7266{
7267 GdkPixbuf *sign;
7268
7269 sign = (GdkPixbuf *)sign_get_image(typenr);
7270
Bram Moolenaar98921892016-02-23 17:14:37 +01007271# if GTK_CHECK_VERSION(3,0,0)
7272 if (sign != NULL && gui.drawarea != NULL
7273 && gtk_widget_get_window(gui.drawarea) != NULL)
7274# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007276# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277 {
7278 int width;
7279 int height;
7280 int xoffset;
7281 int yoffset;
7282 int need_scale;
7283
7284 width = gdk_pixbuf_get_width(sign);
7285 height = gdk_pixbuf_get_height(sign);
7286 /*
7287 * Decide whether we need to scale. Allow one pixel of border
7288 * width to be cut off, in order to avoid excessive scaling for
7289 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007290 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 */
7292 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007293 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 || (width < 3 * SIGN_WIDTH / 4
7295 && height < 3 * SIGN_HEIGHT / 4));
7296 if (need_scale)
7297 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007298 double aspect;
7299 int w = width;
7300 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007301
7302 /* Keep the original aspect ratio */
7303 aspect = (double)height / (double)width;
7304 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7305 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007306 if (((double)(MAX(height, SIGN_HEIGHT)) /
7307 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7308 {
7309 /* Change the aspect ratio by at most 15% to fill the
7310 * available space completly. */
7311 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7312 height = MIN(height, SIGN_HEIGHT);
7313 }
7314 else
7315 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007317 if (w == width && h == height)
7318 {
7319 /* no change in dimensions; don't decrease reference counter
7320 * (below) */
7321 need_scale = FALSE;
7322 }
7323 else
7324 {
7325 /* This doesn't seem to be worth caching, and doing so would
7326 * complicate the code quite a bit. */
7327 sign = gdk_pixbuf_scale_simple(sign, width, height,
7328 GDK_INTERP_BILINEAR);
7329 if (sign == NULL)
7330 return; /* out of memory */
7331 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 }
7333
7334 /* The origin is the upper-left corner of the pixmap. Therefore
7335 * these offset may become negative if the pixmap is smaller than
7336 * the 2x1 cells reserved for the sign icon. */
7337 xoffset = (width - SIGN_WIDTH) / 2;
7338 yoffset = (height - SIGN_HEIGHT) / 2;
7339
Bram Moolenaar98921892016-02-23 17:14:37 +01007340# if GTK_CHECK_VERSION(3,0,0)
7341 {
7342 cairo_t *cr;
7343 cairo_surface_t *bg_surf;
7344 cairo_t *bg_cr;
7345 cairo_surface_t *sign_surf;
7346 cairo_t *sign_cr;
7347
7348 cr = cairo_create(gui.surface);
7349
7350 bg_surf = cairo_surface_create_similar(gui.surface,
7351 cairo_surface_get_content(gui.surface),
7352 SIGN_WIDTH, SIGN_HEIGHT);
7353 bg_cr = cairo_create(bg_surf);
7354 set_cairo_source_rgb_from_pixel(bg_cr, gui.bgcolor->pixel);
7355 cairo_paint(bg_cr);
7356
7357 sign_surf = cairo_surface_create_similar(gui.surface,
7358 cairo_surface_get_content(gui.surface),
7359 SIGN_WIDTH, SIGN_HEIGHT);
7360 sign_cr = cairo_create(sign_surf);
7361 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7362 cairo_paint(sign_cr);
7363
7364 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7365 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7366 cairo_paint(sign_cr);
7367
7368 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7369 cairo_paint(cr);
7370
7371 cairo_destroy(sign_cr);
7372 cairo_surface_destroy(sign_surf);
7373 cairo_destroy(bg_cr);
7374 cairo_surface_destroy(bg_surf);
7375 cairo_destroy(cr);
7376
7377 if (!gui.by_signal)
7378 gtk_widget_queue_draw_area(gui.drawarea,
7379 FILL_X(col), FILL_Y(col), width, height);
7380
7381 }
7382# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007383 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7384
7385 gdk_draw_rectangle(gui.drawarea->window,
7386 gui.text_gc,
7387 TRUE,
7388 FILL_X(col),
7389 FILL_Y(row),
7390 SIGN_WIDTH,
7391 SIGN_HEIGHT);
7392
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 gdk_pixbuf_render_to_drawable_alpha(sign,
7394 gui.drawarea->window,
7395 MAX(0, xoffset),
7396 MAX(0, yoffset),
7397 FILL_X(col) - MIN(0, xoffset),
7398 FILL_Y(row) - MIN(0, yoffset),
7399 MIN(width, SIGN_WIDTH),
7400 MIN(height, SIGN_HEIGHT),
7401 GDK_PIXBUF_ALPHA_BILEVEL,
7402 127,
7403 GDK_RGB_DITHER_NORMAL,
7404 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007405# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 if (need_scale)
7407 g_object_unref(sign);
7408 }
7409}
7410
7411 void *
7412gui_mch_register_sign(char_u *signfile)
7413{
7414 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7415 {
7416 GdkPixbuf *sign;
7417 GError *error = NULL;
7418 char_u *message;
7419
7420 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7421
7422 if (error == NULL)
7423 return sign;
7424
7425 message = (char_u *)error->message;
7426
7427 if (message != NULL && input_conv.vc_type != CONV_NONE)
7428 message = string_convert(&input_conv, message, NULL);
7429
7430 if (message != NULL)
7431 {
7432 /* The error message is already translated and will be more
7433 * descriptive than anything we could possibly do ourselves. */
7434 EMSG2("E255: %s", message);
7435
7436 if (input_conv.vc_type != CONV_NONE)
7437 vim_free(message);
7438 }
7439 g_error_free(error);
7440 }
7441
7442 return NULL;
7443}
7444
7445 void
7446gui_mch_destroy_sign(void *sign)
7447{
7448 if (sign != NULL)
7449 g_object_unref(sign);
7450}
7451
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452#endif /* FEAT_SIGN_ICONS */