blob: d43191cc3d10190785e8e0e7bd1335f15fcc0446 [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;
620
621static gboolean gui_gtk_is_blink_on(void);
622static gboolean gui_gtk_is_no_blink(void);
623static 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;
639 gui_update_cursor(TRUE, TRUE);
640 gui.by_signal = FALSE;
641 cairo_paint(cr);
642 }
643}
644
645 static gboolean
646gui_gtk3_should_draw_cursor(void)
647{
648 unsigned int cond = 0;
649 cond |= gui_gtk_is_blink_on();
650 cond |= is_key_pressed;
651 cond |= gui.in_focus == FALSE;
652 cond |= gui_gtk_is_no_blink();
653 return cond;
654}
655
656 static gboolean
657draw_event(GtkWidget *widget,
658 cairo_t *cr,
659 gpointer user_data UNUSED)
660{
661 /* Skip this when the GUI isn't set up yet, will redraw later. */
662 if (gui.starting)
663 return FALSE;
664
665 out_flush(); /* make sure all output has been processed */
666 /* for GTK+ 3, may induce other draw events. */
667
668 cairo_set_source_surface(cr, gui.surface, 0, 0);
669
670 /* Draw the window without the cursor. */
671 gui.by_signal = TRUE;
672 {
673 cairo_rectangle_list_t *list = NULL;
674
675 gui_gtk_window_clear(gtk_widget_get_window(widget));
676
677 list = cairo_copy_clip_rectangle_list(cr);
678 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
679 {
680 int i;
681 for (i = 0; i < list->num_rectangles; i++)
682 {
683 const cairo_rectangle_t rect = list->rectangles[i];
684 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
685 }
686 }
687 cairo_rectangle_list_destroy(list);
688
689 cairo_paint(cr);
690 }
691 gui.by_signal = FALSE;
692
693 /* Add the cursor to the window if necessary.*/
694 if (gui_gtk3_should_draw_cursor())
695 gui_gtk3_update_cursor(cr);
696
697 return FALSE;
698}
699#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000701expose_event(GtkWidget *widget UNUSED,
702 GdkEventExpose *event,
703 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704{
705 /* Skip this when the GUI isn't set up yet, will redraw later. */
706 if (gui.starting)
707 return FALSE;
708
709 out_flush(); /* make sure all output has been processed */
710 gui_redraw(event->area.x, event->area.y,
711 event->area.width, event->area.height);
712
713 /* Clear the border areas if needed */
714 if (event->area.x < FILL_X(0))
715 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
716 if (event->area.y < FILL_Y(0))
717 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
718 if (event->area.x > FILL_X(Columns))
719 gdk_window_clear_area(gui.drawarea->window,
720 FILL_X((int)Columns), 0, 0, 0);
721 if (event->area.y > FILL_Y(Rows))
722 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
723
724 return FALSE;
725}
Bram Moolenaar98921892016-02-23 17:14:37 +0100726#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727
728#ifdef FEAT_CLIENTSERVER
729/*
730 * Handle changes to the "Comm" property
731 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000733property_event(GtkWidget *widget,
734 GdkEventProperty *event,
735 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736{
737 if (event->type == GDK_PROPERTY_NOTIFY
738 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100739# if GTK_CHECK_VERSION(3,0,0)
740 && GDK_WINDOW_XID(event->window) == commWindow
741# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100743# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 && GET_X_ATOM(event->atom) == commProperty)
745 {
746 XEvent xev;
747
748 /* Translate to XLib */
749 xev.xproperty.type = PropertyNotify;
750 xev.xproperty.atom = commProperty;
751 xev.xproperty.window = commWindow;
752 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100753# if GTK_CHECK_VERSION(3,0,0)
754 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
755 &xev, 0);
756# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200757 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100758# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 }
760 return FALSE;
761}
Bram Moolenaar98921892016-02-23 17:14:37 +0100762#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763
764
765/****************************************************************************
766 * Focus handlers:
767 */
768
769
770/*
771 * This is a simple state machine:
772 * BLINK_NONE not blinking at all
773 * BLINK_OFF blinking, cursor is not shown
774 * BLINK_ON blinking, cursor is shown
775 */
776
777#define BLINK_NONE 0
778#define BLINK_OFF 1
779#define BLINK_ON 2
780
781static int blink_state = BLINK_NONE;
782static long_u blink_waittime = 700;
783static long_u blink_ontime = 400;
784static long_u blink_offtime = 250;
785static guint blink_timer = 0;
786
Bram Moolenaar98921892016-02-23 17:14:37 +0100787#if GTK_CHECK_VERSION(3,0,0)
788 static gboolean
789gui_gtk_is_blink_on(void)
790{
791 return blink_state == BLINK_ON;
792}
793
794 static gboolean
795gui_gtk_is_no_blink(void)
796{
797 return blink_waittime == 0 || blink_ontime == 0 || blink_offtime == 0;
798}
799#endif
800
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 void
802gui_mch_set_blinking(long waittime, long on, long off)
803{
804 blink_waittime = waittime;
805 blink_ontime = on;
806 blink_offtime = off;
807}
808
809/*
810 * Stop the cursor blinking. Show the cursor if it wasn't shown.
811 */
812 void
813gui_mch_stop_blink(void)
814{
815 if (blink_timer)
816 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100817#if GTK_CHECK_VERSION(3,0,0)
818 g_source_remove(blink_timer);
819#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 blink_timer = 0;
823 }
824 if (blink_state == BLINK_OFF)
825 gui_update_cursor(TRUE, FALSE);
826 blink_state = BLINK_NONE;
827}
828
Bram Moolenaar98921892016-02-23 17:14:37 +0100829#if GTK_CHECK_VERSION(3,0,0)
830 static gboolean
831#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100833#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000834blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
836 if (blink_state == BLINK_ON)
837 {
838 gui_undraw_cursor();
839 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100840#if GTK_CHECK_VERSION(3,0,0)
841 blink_timer = g_timeout_add((guint)blink_offtime,
842 (GSourceFunc) blink_cb, NULL);
843#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 blink_timer = gtk_timeout_add((guint32)blink_offtime,
845 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 }
848 else
849 {
850 gui_update_cursor(TRUE, FALSE);
851 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100852#if GTK_CHECK_VERSION(3,0,0)
853 blink_timer = g_timeout_add((guint)blink_ontime,
854 (GSourceFunc) blink_cb, NULL);
855#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 blink_timer = gtk_timeout_add((guint32)blink_ontime,
857 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 }
860
861 return FALSE; /* don't happen again */
862}
863
864/*
865 * Start the cursor blinking. If it was already blinking, this restarts the
866 * waiting time and shows the cursor.
867 */
868 void
869gui_mch_start_blink(void)
870{
871 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200872 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100873#if GTK_CHECK_VERSION(3,0,0)
874 g_source_remove(blink_timer);
875#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100877#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200878 blink_timer = 0;
879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 /* Only switch blinking on if none of the times is zero */
881 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
882 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100883#if GTK_CHECK_VERSION(3,0,0)
884 blink_timer = g_timeout_add((guint)blink_waittime,
885 (GSourceFunc) blink_cb, NULL);
886#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 blink_timer = gtk_timeout_add((guint32)blink_waittime,
888 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 blink_state = BLINK_ON;
891 gui_update_cursor(TRUE, FALSE);
892 }
893}
894
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000896enter_notify_event(GtkWidget *widget UNUSED,
897 GdkEventCrossing *event UNUSED,
898 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 if (blink_state == BLINK_NONE)
901 gui_mch_start_blink();
902
903 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100904#if GTK_CHECK_VERSION(3,0,0)
905 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
906#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 gtk_widget_grab_focus(gui.drawarea);
910
911 return FALSE;
912}
913
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000915leave_notify_event(GtkWidget *widget UNUSED,
916 GdkEventCrossing *event UNUSED,
917 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
919 if (blink_state != BLINK_NONE)
920 gui_mch_stop_blink();
921
922 return FALSE;
923}
924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000926focus_in_event(GtkWidget *widget,
927 GdkEventFocus *event UNUSED,
928 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{
930 gui_focus_change(TRUE);
931
932 if (blink_state == BLINK_NONE)
933 gui_mch_start_blink();
934
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000935 /* make sure keyboard input goes to the draw area (if this is focus for a
936 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000937 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000938 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939
940 return TRUE;
941}
942
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000944focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200945 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000946 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947{
948 gui_focus_change(FALSE);
949
950 if (blink_state != BLINK_NONE)
951 gui_mch_stop_blink();
952
953 return TRUE;
954}
955
956
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957/*
958 * Translate a GDK key value to UTF-8 independently of the current locale.
959 * The output is written to string, which must have room for at least 6 bytes
960 * plus the NUL terminator. Returns the length in bytes.
961 *
962 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
963 * of GdkEventKey::string instead. But event->string is evil; see here why:
964 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
965 */
966 static int
967keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
968{
969 int len;
970 guint32 uc;
971
972 uc = gdk_keyval_to_unicode(keyval);
973 if (uc != 0)
974 {
975 /* Check for CTRL-foo */
976 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
977 {
978 /* These mappings look arbitrary at the first glance, but in fact
979 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
980 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
981 * more sense and is consistent with usual terminal behaviour). */
982 if (uc >= '@')
983 string[0] = uc & 0x1F;
984 else if (uc == '2')
985 string[0] = NUL;
986 else if (uc >= '3' && uc <= '7')
987 string[0] = uc ^ 0x28;
988 else if (uc == '8')
989 string[0] = BS;
990 else if (uc == '?')
991 string[0] = DEL;
992 else
993 string[0] = uc;
994 len = 1;
995 }
996 else
997 {
998 /* Translate a normal key to UTF-8. This doesn't work for dead
999 * keys of course, you _have_ to use an input method for that. */
1000 len = utf_char2bytes((int)uc, string);
1001 }
1002 }
1003 else
1004 {
1005 /* Translate keys which are represented by ASCII control codes in Vim.
1006 * There are only a few of those; most control keys are translated to
1007 * special terminal-like control sequences. */
1008 len = 1;
1009 switch (keyval)
1010 {
1011 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1012 string[0] = TAB;
1013 break;
1014 case GDK_Linefeed:
1015 string[0] = NL;
1016 break;
1017 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1018 string[0] = CAR;
1019 break;
1020 case GDK_Escape:
1021 string[0] = ESC;
1022 break;
1023 default:
1024 len = 0;
1025 break;
1026 }
1027 }
1028 string[len] = NUL;
1029
1030 return len;
1031}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001033 static int
1034modifiers_gdk2vim(guint state)
1035{
1036 int modifiers = 0;
1037
1038 if (state & GDK_SHIFT_MASK)
1039 modifiers |= MOD_MASK_SHIFT;
1040 if (state & GDK_CONTROL_MASK)
1041 modifiers |= MOD_MASK_CTRL;
1042 if (state & GDK_MOD1_MASK)
1043 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001044#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001045 if (state & GDK_SUPER_MASK)
1046 modifiers |= MOD_MASK_META;
1047#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001048 if (state & GDK_MOD4_MASK)
1049 modifiers |= MOD_MASK_META;
1050
1051 return modifiers;
1052}
1053
1054 static int
1055modifiers_gdk2mouse(guint state)
1056{
1057 int modifiers = 0;
1058
1059 if (state & GDK_SHIFT_MASK)
1060 modifiers |= MOUSE_SHIFT;
1061 if (state & GDK_CONTROL_MASK)
1062 modifiers |= MOUSE_CTRL;
1063 if (state & GDK_MOD1_MASK)
1064 modifiers |= MOUSE_ALT;
1065
1066 return modifiers;
1067}
1068
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069/*
1070 * Main keyboard handler:
1071 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001073key_press_event(GtkWidget *widget UNUSED,
1074 GdkEventKey *event,
1075 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001077 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1079 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 guint key_sym;
1081 int len;
1082 int i;
1083 int modifiers;
1084 int key;
1085 guint state;
1086 char_u *s, *d;
1087
Bram Moolenaar98921892016-02-23 17:14:37 +01001088#if GTK_CHECK_VERSION(3,0,0)
1089 is_key_pressed = TRUE;
1090 gui_mch_stop_blink();
1091#endif
1092
Bram Moolenaar20892c12011-06-26 04:49:00 +02001093 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 key_sym = event->keyval;
1095 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
1097#ifdef FEAT_XIM
1098 if (xim_queue_key_press_event(event, TRUE))
1099 return TRUE;
1100#endif
1101
1102#ifdef FEAT_HANGULIN
1103 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1104 {
1105 hangul_input_state_toggle();
1106 return TRUE;
1107 }
1108#endif
1109
1110#ifdef SunXK_F36
1111 /*
1112 * These keys have bogus lookup strings, and trapping them here is
1113 * easier than trying to XRebindKeysym() on them with every possible
1114 * combination of modifiers.
1115 */
1116 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1117 len = 0;
1118 else
1119#endif
1120 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 len = keyval_to_string(key_sym, state, string2);
1122
1123 /* Careful: convert_input() doesn't handle the NUL character.
1124 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1125 if (len > 1 && input_conv.vc_type != CONV_NONE)
1126 len = convert_input(string2, len, sizeof(string2));
1127
1128 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 d = string;
1130 for (i = 0; i < len; ++i)
1131 {
1132 *d++ = s[i];
1133 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1134 {
1135 /* Turn CSI into K_CSI. */
1136 *d++ = KS_EXTRA;
1137 *d++ = (int)KE_CSI;
1138 }
1139 }
1140 len = d - string;
1141 }
1142
1143 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1144 if (key_sym == GDK_ISO_Left_Tab)
1145 {
1146 key_sym = GDK_Tab;
1147 state |= GDK_SHIFT_MASK;
1148 }
1149
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150#ifdef FEAT_MENU
1151 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1152 * is a menu shortcut, we ignore everything with the ALT modifier. */
1153 if ((state & GDK_MOD1_MASK)
1154 && gui.menu_is_active
1155 && (*p_wak == 'y'
1156 || (*p_wak == 'm'
1157 && len == 1
1158 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 /* For GTK2 we return false to signify that we haven't handled the
1160 * keypress, so that gtk will handle the mnemonic or accelerator. */
1161 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162#endif
1163
1164 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1165 * that already has the 8th bit set.
1166 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1167 * Don't do this for double-byte encodings, it turns the char into a lead
1168 * byte. */
1169 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001170 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001171#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001172 || (state & GDK_SUPER_MASK)
1173#endif
1174 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1176 && (string[0] & 0x80) == 0
1177 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 )
1180 {
1181 string[0] |= 0x80;
1182 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 if (enc_utf8) /* convert to utf-8 */
1184 {
1185 string[1] = string[0] & 0xbf;
1186 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1187 if (string[1] == CSI)
1188 {
1189 string[2] = KS_EXTRA;
1190 string[3] = (int)KE_CSI;
1191 len = 4;
1192 }
1193 else
1194 len = 2;
1195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 }
1197
1198 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1199 * value) to detect backspace, delete and keypad keys. */
1200 if (len == 0 || len == 1)
1201 {
1202 for (i = 0; special_keys[i].key_sym != 0; i++)
1203 {
1204 if (special_keys[i].key_sym == key_sym)
1205 {
1206 string[0] = CSI;
1207 string[1] = special_keys[i].code0;
1208 string[2] = special_keys[i].code1;
1209 len = -3;
1210 break;
1211 }
1212 }
1213 }
1214
1215 if (len == 0) /* Unrecognized key */
1216 return TRUE;
1217
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 /* Special keys (and a few others) may have modifiers. Also when using a
1219 * double-byte encoding (can't set the 8th bit). */
1220 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1221 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1222 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1223 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001224 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001225#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001226 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001228 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001230 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
1232 /*
1233 * For some keys a shift modifier is translated into another key
1234 * code.
1235 */
1236 if (len == -3)
1237 key = TO_SPECIAL(string[1], string[2]);
1238 else
1239 key = string[0];
1240
1241 key = simplify_key(key, &modifiers);
1242 if (key == CSI)
1243 key = K_CSI;
1244 if (IS_SPECIAL(key))
1245 {
1246 string[0] = CSI;
1247 string[1] = K_SECOND(key);
1248 string[2] = K_THIRD(key);
1249 len = 3;
1250 }
1251 else
1252 {
1253 string[0] = key;
1254 len = 1;
1255 }
1256
1257 if (modifiers != 0)
1258 {
1259 string2[0] = CSI;
1260 string2[1] = KS_MODIFIER;
1261 string2[2] = modifiers;
1262 add_to_input_buf(string2, 3);
1263 }
1264 }
1265
1266 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1267 || (string[0] == intr_char && intr_char != Ctrl_C)))
1268 {
1269 trash_input_buf();
1270 got_int = TRUE;
1271 }
1272
1273 add_to_input_buf(string, len);
1274
1275 /* blank out the pointer if necessary */
1276 if (p_mh)
1277 gui_mch_mousehide(TRUE);
1278
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 return TRUE;
1280}
1281
Bram Moolenaar98921892016-02-23 17:14:37 +01001282#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001284key_release_event(GtkWidget *widget UNUSED,
1285 GdkEventKey *event,
1286 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287{
Bram Moolenaar98921892016-02-23 17:14:37 +01001288# if GTK_CHECK_VERSION(3,0,0)
1289 is_key_pressed = FALSE;
1290 gui_mch_start_blink();
1291# endif
1292# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001293 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 /*
1295 * GTK+ 2 input methods may do fancy stuff on key release events too.
1296 * With the default IM for instance, you can enter any UCS code point
1297 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1298 */
1299 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001300# else
1301 return TRUE;
1302# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303}
1304#endif
1305
1306
1307/****************************************************************************
1308 * Selection handlers:
1309 */
1310
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001312selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001314 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315{
1316 if (event->selection == clip_plus.gtk_sel_atom)
1317 clip_lose_selection(&clip_plus);
1318 else
1319 clip_lose_selection(&clip_star);
1320
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 return TRUE;
1322}
1323
1324#define RS_NONE 0 /* selection_received_cb() not called yet */
1325#define RS_OK 1 /* selection_received_cb() called and OK */
1326#define RS_FAIL 2 /* selection_received_cb() called and failed */
1327static int received_selection = RS_NONE;
1328
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001330selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001332 guint time_ UNUSED,
1333 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334{
1335 VimClipboard *cbd;
1336 char_u *text;
1337 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001340 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341
Bram Moolenaar98921892016-02-23 17:14:37 +01001342#if GTK_CHECK_VERSION(3,0,0)
1343 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1344#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 cbd = &clip_plus;
1348 else
1349 cbd = &clip_star;
1350
Bram Moolenaar98921892016-02-23 17:14:37 +01001351#if GTK_CHECK_VERSION(3,0,0)
1352 text = (char_u *)gtk_selection_data_get_data(data);
1353 len = gtk_selection_data_get_length(data);
1354#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 text = (char_u *)data->data;
1356 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001357#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359 if (text == NULL || len <= 0)
1360 {
1361 received_selection = RS_FAIL;
1362 /* clip_free_selection(cbd); ??? */
1363
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 return;
1365 }
1366
Bram Moolenaar98921892016-02-23 17:14:37 +01001367#if GTK_CHECK_VERSION(3,0,0)
1368 if (gtk_selection_data_get_data_type(data) == vim_atom)
1369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 {
1373 motion_type = *text++;
1374 --len;
1375 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001376#if GTK_CHECK_VERSION(3,0,0)
1377 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1378#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 {
1382 char_u *enc;
1383 vimconv_T conv;
1384
1385 motion_type = *text++;
1386 --len;
1387
1388 enc = text;
1389 text += STRLEN(text) + 1;
1390 len -= text - enc;
1391
1392 /* If the encoding of the text is different from 'encoding', attempt
1393 * converting it. */
1394 conv.vc_type = CONV_NONE;
1395 convert_setup(&conv, enc, p_enc);
1396 if (conv.vc_type != CONV_NONE)
1397 {
1398 tmpbuf = string_convert(&conv, text, &len);
1399 if (tmpbuf != NULL)
1400 text = tmpbuf;
1401 convert_setup(&conv, NULL, NULL);
1402 }
1403 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 /* gtk_selection_data_get_text() handles all the nasty details
1406 * and targets and encodings etc. This rocks so hard. */
1407 else
1408 {
1409 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1410 if (tmpbuf_utf8 != NULL)
1411 {
1412 len = STRLEN(tmpbuf_utf8);
1413 if (input_conv.vc_type != CONV_NONE)
1414 {
1415 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1416 if (tmpbuf != NULL)
1417 text = tmpbuf;
1418 }
1419 else
1420 text = tmpbuf_utf8;
1421 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001422 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1423 {
1424 vimconv_T conv;
1425
1426 /* UTF-16, we get this for HTML */
1427 conv.vc_type = CONV_NONE;
1428 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1429
1430 if (conv.vc_type != CONV_NONE)
1431 {
1432 text += 2;
1433 len -= 2;
1434 tmpbuf = string_convert(&conv, text, &len);
1435 convert_setup(&conv, NULL, NULL);
1436 }
1437 if (tmpbuf != NULL)
1438 text = tmpbuf;
1439 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001442 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001443 while (len > 0 && text[len - 1] == NUL)
1444 --len;
1445
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 clip_yank_selection(motion_type, text, (long)len, cbd);
1447 received_selection = RS_OK;
1448 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450}
1451
1452/*
1453 * Prepare our selection data for passing it to the external selection
1454 * client.
1455 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001457selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 GtkSelectionData *selection_data,
1459 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001460 guint time_ UNUSED,
1461 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462{
1463 char_u *string;
1464 char_u *tmpbuf;
1465 long_u tmplen;
1466 int length;
1467 int motion_type;
1468 GdkAtom type;
1469 VimClipboard *cbd;
1470
Bram Moolenaar98921892016-02-23 17:14:37 +01001471#if GTK_CHECK_VERSION(3,0,0)
1472 if (gtk_selection_data_get_selection(selection_data)
1473 == clip_plus.gtk_sel_atom)
1474#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 cbd = &clip_plus;
1478 else
1479 cbd = &clip_star;
1480
1481 if (!cbd->owned)
1482 return; /* Shouldn't ever happen */
1483
1484 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001485 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 && info != (guint)TARGET_UTF8_STRING
1487 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 && info != (guint)TARGET_VIM
1489 && info != (guint)TARGET_COMPOUND_TEXT
1490 && info != (guint)TARGET_TEXT)
1491 return;
1492
1493 /* get the selection from the '*'/'+' register */
1494 clip_get_selection(cbd);
1495
1496 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1497 if (motion_type < 0 || string == NULL)
1498 return;
1499 /* Due to int arguments we can't handle more than G_MAXINT. Also
1500 * reserve one extra byte for NUL or the motion type; just in case.
1501 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1502 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1503
1504 if (info == (guint)TARGET_VIM)
1505 {
1506 tmpbuf = alloc((unsigned)length + 1);
1507 if (tmpbuf != NULL)
1508 {
1509 tmpbuf[0] = motion_type;
1510 mch_memmove(tmpbuf + 1, string, (size_t)length);
1511 }
1512 /* For our own format, the first byte contains the motion type */
1513 ++length;
1514 vim_free(string);
1515 string = tmpbuf;
1516 type = vim_atom;
1517 }
1518
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001519 else if (info == (guint)TARGET_HTML)
1520 {
1521 vimconv_T conv;
1522
1523 /* Since we get utf-16, we probably should set it as well. */
1524 conv.vc_type = CONV_NONE;
1525 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1526 if (conv.vc_type != CONV_NONE)
1527 {
1528 tmpbuf = string_convert(&conv, string, &length);
1529 convert_setup(&conv, NULL, NULL);
1530 vim_free(string);
1531 string = tmpbuf;
1532 }
1533
1534 /* Prepend the BOM: "fffe" */
1535 if (string != NULL)
1536 {
1537 tmpbuf = alloc(length + 2);
1538 tmpbuf[0] = 0xff;
1539 tmpbuf[1] = 0xfe;
1540 mch_memmove(tmpbuf + 2, string, (size_t)length);
1541 vim_free(string);
1542 string = tmpbuf;
1543 length += 2;
1544
Bram Moolenaar98921892016-02-23 17:14:37 +01001545#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001546 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001547 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001548 selection_data->type = selection_data->target;
1549 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001550#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001551 gtk_selection_data_set(selection_data, html_atom, 16,
1552 string, length);
1553 vim_free(string);
1554 }
1555 return;
1556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 else if (info == (guint)TARGET_VIMENC)
1558 {
1559 int l = STRLEN(p_enc);
1560
1561 /* contents: motion_type 'encoding' NUL text */
1562 tmpbuf = alloc((unsigned)length + l + 2);
1563 if (tmpbuf != NULL)
1564 {
1565 tmpbuf[0] = motion_type;
1566 STRCPY(tmpbuf + 1, p_enc);
1567 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1568 }
1569 length += l + 2;
1570 vim_free(string);
1571 string = tmpbuf;
1572 type = vimenc_atom;
1573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 /* gtk_selection_data_set_text() handles everything for us. This is
1576 * so easy and simple and cool, it'd be insane not to use it. */
1577 else
1578 {
1579 if (output_conv.vc_type != CONV_NONE)
1580 {
1581 tmpbuf = string_convert(&output_conv, string, &length);
1582 vim_free(string);
1583 if (tmpbuf == NULL)
1584 return;
1585 string = tmpbuf;
1586 }
1587 /* Validate the string to avoid runtime warnings */
1588 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1589 {
1590 gtk_selection_data_set_text(selection_data,
1591 (const char *)string, length);
1592 }
1593 vim_free(string);
1594 return;
1595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596
1597 if (string != NULL)
1598 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001599#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001600 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001601 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 selection_data->type = selection_data->target;
1603 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001604#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 gtk_selection_data_set(selection_data, type, 8, string, length);
1606 vim_free(string);
1607 }
1608}
1609
1610/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001611 * Check if the GUI can be started. Called before gvimrc is sourced and
1612 * before fork().
1613 * Return OK or FAIL.
1614 */
1615 int
1616gui_mch_early_init_check(void)
1617{
1618 char_u *p;
1619
1620 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1621 p = mch_getenv((char_u *)"DISPLAY");
1622 if (p == NULL || *p == NUL)
1623 {
1624 gui.dying = TRUE;
1625 EMSG(_((char *)e_opendisp));
1626 return FAIL;
1627 }
1628 return OK;
1629}
1630
1631/*
1632 * Check if the GUI can be started. Called before gvimrc is sourced but after
1633 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 * Return OK or FAIL.
1635 */
1636 int
1637gui_mch_init_check(void)
1638{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001639#ifdef USE_GRESOURCE
1640 static int res_registered = FALSE;
1641
1642 if (!res_registered)
1643 {
1644 /* Call this function in the GUI process; otherwise, the resources
1645 * won't be available. Don't call it twice. */
1646 res_registered = TRUE;
1647 gui_gtk_register_resource();
1648 }
1649#endif
1650
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651#ifdef FEAT_GUI_GNOME
1652 if (gtk_socket_id == 0)
1653 using_gnome = 1;
1654#endif
1655
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001656 /* This defaults to argv[0], but we want it to match the name of the
1657 * shipped gvim.desktop so that Vim's windows can be associated with this
1658 * file. */
1659 g_set_prgname("gvim");
1660
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1662 if (!gtk_init_check(&gui_argc, &gui_argv))
1663 {
1664 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001665 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 return FAIL;
1667 }
1668
1669 return OK;
1670}
1671
1672
1673/****************************************************************************
1674 * Mouse handling callbacks
1675 */
1676
1677
1678static guint mouse_click_timer = 0;
1679static int mouse_timed_out = TRUE;
1680
1681/*
1682 * Timer used to recognize multiple clicks of the mouse button
1683 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001684#if GTK_CHECK_VERSION(3,0,0)
1685 static gboolean
1686#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689mouse_click_timer_cb(gpointer data)
1690{
1691 /* we don't use this information currently */
1692 int *timed_out = (int *) data;
1693
1694 *timed_out = TRUE;
1695 return FALSE; /* don't happen again */
1696}
1697
1698static guint motion_repeat_timer = 0;
1699static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001700#ifdef GTK_DEST_DEFAULT_ALL
1701static gboolean motion_repeat_timer_cb(gpointer);
1702#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705
1706 static void
1707process_motion_notify(int x, int y, GdkModifierType state)
1708{
1709 int button;
1710 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001711#if GTK_CHECK_VERSION(3,0,0)
1712 GtkAllocation allocation;
1713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714
1715 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1716 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1717 GDK_BUTTON5_MASK))
1718 ? MOUSE_DRAG : ' ';
1719
1720 /* If our pointer is currently hidden, then we should show it. */
1721 gui_mch_mousehide(FALSE);
1722
1723 /* Just moving the rodent above the drawing area without any button
1724 * being pressed. */
1725 if (button != MOUSE_DRAG)
1726 {
1727 gui_mouse_moved(x, y);
1728 return;
1729 }
1730
1731 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001732 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
Bram Moolenaar49325942007-05-10 19:19:59 +00001734 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1736
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 /*
1738 * Auto repeat timer handling.
1739 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001740#if GTK_CHECK_VERSION(3,0,0)
1741 gtk_widget_get_allocation(gui.drawarea, &allocation);
1742
1743 if (x < 0 || y < 0
1744 || x >= allocation.width
1745 || y >= allocation.height)
1746#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 if (x < 0 || y < 0
1748 || x >= gui.drawarea->allocation.width
1749 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 {
1752
1753 int dx;
1754 int dy;
1755 int offshoot;
1756 int delay = 10;
1757
1758 /* Calculate the maximal distance of the cursor from the drawing area.
1759 * (offshoot can't become negative here!).
1760 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001761#if GTK_CHECK_VERSION(3,0,0)
1762 dx = x < 0 ? -x : x - allocation.width;
1763 dy = y < 0 ? -y : y - allocation.height;
1764#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1766 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001767#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768
1769 offshoot = dx > dy ? dx : dy;
1770
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001771 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 * distance of 127 pixels from the main window.
1773 *
1774 * One could think endlessly about the most ergonomic variant here.
1775 * For example it could make sense to calculate the distance from the
1776 * drags start instead...
1777 *
1778 * Maybe a parabolic interpolation would suite us better here too...
1779 */
1780 if (offshoot > 127)
1781 {
1782 /* 5 appears to be somehow near to my perceptual limits :-). */
1783 delay = 5;
1784 }
1785 else
1786 {
1787 delay = (130 * (127 - offshoot)) / 127 + 5;
1788 }
1789
1790 /* shoot again */
1791 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001792#if GTK_CHECK_VERSION(3,0,0)
1793 motion_repeat_timer = g_timeout_add((guint)delay,
1794 motion_repeat_timer_cb, NULL);
1795#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1797 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 }
1800}
1801
Bram Moolenaar98921892016-02-23 17:14:37 +01001802#if GTK_CHECK_VERSION(3,0,0)
1803 static GdkDevice *
1804gui_gtk_get_pointer_device(GtkWidget *widget)
1805{
1806 GdkWindow * const win = gtk_widget_get_window(widget);
1807 GdkDisplay * const dpy = gdk_window_get_display(win);
1808 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1809 return gdk_device_manager_get_client_pointer(mngr);
1810}
1811
1812 static GdkWindow *
1813gui_gtk_get_pointer(GtkWidget *widget,
1814 gint *x,
1815 gint *y,
1816 GdkModifierType *state)
1817{
1818 GdkWindow * const win = gtk_widget_get_window(widget);
1819 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1820 return gdk_window_get_device_position(win, dev , x, y, state);
1821}
1822
Bram Moolenaar2369c152016-03-04 23:08:25 +01001823# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001824 static GdkWindow *
1825gui_gtk_window_at_position(GtkWidget *widget,
1826 gint *x,
1827 gint *y)
1828{
1829 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1830 return gdk_device_get_window_at_position(dev, x, y);
1831}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001832# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001833#endif
1834
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835/*
1836 * Timer used to recognize multiple clicks of the mouse button.
1837 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001838#if GTK_CHECK_VERSION(3,0,0)
1839 static gboolean
1840#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001842#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001843motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844{
1845 int x;
1846 int y;
1847 GdkModifierType state;
1848
Bram Moolenaar98921892016-02-23 17:14:37 +01001849#if GTK_CHECK_VERSION(3,0,0)
1850 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1851#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854
1855 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1856 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1857 GDK_BUTTON5_MASK)))
1858 {
1859 motion_repeat_timer = 0;
1860 return FALSE;
1861 }
1862
1863 /* If there already is a mouse click in the input buffer, wait another
1864 * time (otherwise we would create a backlog of clicks) */
1865 if (vim_used_in_input_buf() > 10)
1866 return TRUE;
1867
1868 motion_repeat_timer = 0;
1869
1870 /*
1871 * Fake a motion event.
1872 * Trick: Pretend the mouse moved to the next character on every other
1873 * event, otherwise drag events will be discarded, because they are still
1874 * in the same character.
1875 */
1876 if (motion_repeat_offset)
1877 x += gui.char_width;
1878
1879 motion_repeat_offset = !motion_repeat_offset;
1880 process_motion_notify(x, y, state);
1881
1882 /* Don't happen again. We will get reinstalled in the synthetic event
1883 * if needed -- thus repeating should still work. */
1884 return FALSE;
1885}
1886
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001888motion_notify_event(GtkWidget *widget,
1889 GdkEventMotion *event,
1890 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891{
1892 if (event->is_hint)
1893 {
1894 int x;
1895 int y;
1896 GdkModifierType state;
1897
Bram Moolenaar98921892016-02-23 17:14:37 +01001898#if GTK_CHECK_VERSION(3,0,0)
1899 gui_gtk_get_pointer(widget, &x, &y, &state);
1900#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 process_motion_notify(x, y, state);
1904 }
1905 else
1906 {
1907 process_motion_notify((int)event->x, (int)event->y,
1908 (GdkModifierType)event->state);
1909 }
1910
1911 return TRUE; /* handled */
1912}
1913
1914
1915/*
1916 * Mouse button handling. Note please that we are capturing multiple click's
1917 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1918 * This is due to the way the generic VIM code is recognizing multiple clicks.
1919 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001921button_press_event(GtkWidget *widget,
1922 GdkEventButton *event,
1923 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924{
1925 int button;
1926 int repeated_click = FALSE;
1927 int x, y;
1928 int_u vim_modifiers;
1929
Bram Moolenaar20892c12011-06-26 04:49:00 +02001930 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001931
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001933#if GTK_CHECK_VERSION(3,0,0)
1934 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1935#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01001937#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 gtk_widget_grab_focus(widget);
1939
1940 /*
1941 * Don't let additional events about multiple clicks send by GTK to us
1942 * after the initial button press event confuse us.
1943 */
1944 if (event->type != GDK_BUTTON_PRESS)
1945 return FALSE;
1946
1947 x = event->x;
1948 y = event->y;
1949
1950 /* Handle multiple clicks */
1951 if (!mouse_timed_out && mouse_click_timer)
1952 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001953#if GTK_CHECK_VERSION(3,0,0)
1954 g_source_remove(mouse_click_timer);
1955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 mouse_click_timer = 0;
1959 repeated_click = TRUE;
1960 }
1961
1962 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001963#if GTK_CHECK_VERSION(3,0,0)
1964 mouse_click_timer = g_timeout_add((guint)p_mouset,
1965 mouse_click_timer_cb, &mouse_timed_out);
1966#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
1968 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01001969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970
1971 switch (event->button)
1972 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001973 /* Keep in sync with gui_x11.c.
1974 * Buttons 4-7 are handled in scroll_event() */
1975 case 1: button = MOUSE_LEFT; break;
1976 case 2: button = MOUSE_MIDDLE; break;
1977 case 3: button = MOUSE_RIGHT; break;
1978 case 8: button = MOUSE_X1; break;
1979 case 9: button = MOUSE_X2; break;
1980 default:
1981 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983
1984#ifdef FEAT_XIM
1985 /* cancel any preediting */
1986 if (im_is_preediting())
1987 xim_reset();
1988#endif
1989
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001990 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991
1992 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993
1994 return TRUE;
1995}
1996
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001998 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002001scroll_event(GtkWidget *widget,
2002 GdkEventScroll *event,
2003 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004{
2005 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002006 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007
Bram Moolenaar98921892016-02-23 17:14:37 +01002008#if GTK_CHECK_VERSION(3,0,0)
2009 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2010#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 gtk_widget_grab_focus(widget);
2014
2015 switch (event->direction)
2016 {
2017 case GDK_SCROLL_UP:
2018 button = MOUSE_4;
2019 break;
2020 case GDK_SCROLL_DOWN:
2021 button = MOUSE_5;
2022 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002023 case GDK_SCROLL_LEFT:
2024 button = MOUSE_7;
2025 break;
2026 case GDK_SCROLL_RIGHT:
2027 button = MOUSE_6;
2028 break;
2029 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 return FALSE;
2031 }
2032
2033# ifdef FEAT_XIM
2034 /* cancel any preediting */
2035 if (im_is_preediting())
2036 xim_reset();
2037# endif
2038
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002039 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040
2041 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2042 FALSE, vim_modifiers);
2043
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 return TRUE;
2045}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046
2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002049button_release_event(GtkWidget *widget UNUSED,
2050 GdkEventButton *event,
2051 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052{
2053 int x, y;
2054 int_u vim_modifiers;
2055
Bram Moolenaar20892c12011-06-26 04:49:00 +02002056 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002057
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 /* Remove any motion "machine gun" timers used for automatic further
2059 extension of allocation areas if outside of the applications window
2060 area .*/
2061 if (motion_repeat_timer)
2062 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002063#if GTK_CHECK_VERSION(3,0,0)
2064 g_source_remove(motion_repeat_timer);
2065#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002067#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 motion_repeat_timer = 0;
2069 }
2070
2071 x = event->x;
2072 y = event->y;
2073
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002074 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 return TRUE;
2079}
2080
2081
2082#ifdef FEAT_DND
2083/****************************************************************************
2084 * Drag aNd Drop support handlers.
2085 */
2086
2087/*
2088 * Count how many items there may be and separate them with a NUL.
2089 * Apparently the items are separated with \r\n. This is not documented,
2090 * thus be careful not to go past the end. Also allow separation with
2091 * NUL characters.
2092 */
2093 static int
2094count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2095{
2096 int i;
2097 char_u *p = out;
2098 int count = 0;
2099
2100 for (i = 0; i < len; ++i)
2101 {
2102 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2103 {
2104 if (p > out && p[-1] != NUL)
2105 {
2106 ++count;
2107 *p++ = NUL;
2108 }
2109 }
2110 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2111 {
2112 *p++ = hexhex2nr(raw + i + 1);
2113 i += 2;
2114 }
2115 else
2116 *p++ = raw[i];
2117 }
2118 if (p > out && p[-1] != NUL)
2119 {
2120 *p = NUL; /* last item didn't have \r or \n */
2121 ++count;
2122 }
2123 return count;
2124}
2125
2126/*
2127 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2128 * this process, URI which protocol is not "file:" are removed. Return
2129 * length of array (less than "max").
2130 */
2131 static int
2132filter_uri_list(char_u **outlist, int max, char_u *src)
2133{
2134 int i, j;
2135
2136 for (i = j = 0; i < max; ++i)
2137 {
2138 outlist[i] = NULL;
2139 if (STRNCMP(src, "file:", 5) == 0)
2140 {
2141 src += 5;
2142 if (STRNCMP(src, "//localhost", 11) == 0)
2143 src += 11;
2144 while (src[0] == '/' && src[1] == '/')
2145 ++src;
2146 outlist[j++] = vim_strsave(src);
2147 }
2148 src += STRLEN(src) + 1;
2149 }
2150 return j;
2151}
2152
2153 static char_u **
2154parse_uri_list(int *count, char_u *data, int len)
2155{
2156 int n = 0;
2157 char_u *tmp = NULL;
2158 char_u **array = NULL;;
2159
2160 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2161 {
2162 n = count_and_decode_uri_list(tmp, data, len);
2163 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2164 n = filter_uri_list(array, n, tmp);
2165 }
2166 vim_free(tmp);
2167 *count = n;
2168 return array;
2169}
2170
2171 static void
2172drag_handle_uri_list(GdkDragContext *context,
2173 GtkSelectionData *data,
2174 guint time_,
2175 GdkModifierType state,
2176 gint x,
2177 gint y)
2178{
2179 char_u **fnames;
2180 int nfiles = 0;
2181
Bram Moolenaar98921892016-02-23 17:14:37 +01002182# if GTK_CHECK_VERSION(3,0,0)
2183 fnames = parse_uri_list(&nfiles,
2184 (char_u *)gtk_selection_data_get_data(data),
2185 gtk_selection_data_get_length(data));
2186# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189
2190 if (fnames != NULL && nfiles > 0)
2191 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002192 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
2194 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2195
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002196 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2199 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002200 else
2201 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202}
2203
2204 static void
2205drag_handle_text(GdkDragContext *context,
2206 GtkSelectionData *data,
2207 guint time_,
2208 GdkModifierType state)
2209{
2210 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2211 char_u *text;
2212 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214
Bram Moolenaar98921892016-02-23 17:14:37 +01002215# if GTK_CHECK_VERSION(3,0,0)
2216 text = (char_u *)gtk_selection_data_get_data(data);
2217 len = gtk_selection_data_get_length(data);
2218# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 text = data->data;
2220 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002221# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222
Bram Moolenaar98921892016-02-23 17:14:37 +01002223# if GTK_CHECK_VERSION(3,0,0)
2224 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2225# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 if (input_conv.vc_type != CONV_NONE)
2230 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 if (tmpbuf != NULL)
2232 text = tmpbuf;
2233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 dnd_yank_drag_data(text, (long)len);
2236 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002239 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240
2241 if (dropkey[2] != 0)
2242 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2243 else
2244 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245}
2246
2247/*
2248 * DND receiver.
2249 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 static void
2251drag_data_received_cb(GtkWidget *widget,
2252 GdkDragContext *context,
2253 gint x,
2254 gint y,
2255 GtkSelectionData *data,
2256 guint info,
2257 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002258 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259{
2260 GdkModifierType state;
2261
2262 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002263# if GTK_CHECK_VERSION(3,0,0)
2264 const guchar * const data_data = gtk_selection_data_get_data(data);
2265 const gint data_length = gtk_selection_data_get_length(data);
2266 const gint data_format = gtk_selection_data_get_format(data);
2267
2268 if (data_data == NULL
2269 || data_length <= 0
2270 || data_format != 8
2271 || data_data[data_length] != '\0')
2272# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 if (data->data == NULL
2274 || data->length <= 0
2275 || data->format != 8
2276 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 {
2279 gtk_drag_finish(context, FALSE, FALSE, time_);
2280 return;
2281 }
2282
2283 /* Get the current modifier state for proper distinguishment between
2284 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002285#if GTK_CHECK_VERSION(3,0,0)
2286 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2287# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002289# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 /* Not sure about the role of "text/plain" here... */
2292 if (info == (guint)TARGET_TEXT_URI_LIST)
2293 drag_handle_uri_list(context, data, time_, state, x, y);
2294 else
2295 drag_handle_text(context, data, time_, state);
2296
2297}
2298#endif /* FEAT_DND */
2299
2300
2301#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2302/*
2303 * GnomeClient interact callback. Check for unsaved buffers that cannot
2304 * be abandoned and pop up a dialog asking the user for confirmation if
2305 * necessary.
2306 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002308sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002310 GnomeDialogType type UNUSED,
2311 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312{
2313 cmdmod_T save_cmdmod;
2314 gboolean shutdown_cancelled;
2315
2316 save_cmdmod = cmdmod;
2317
2318# ifdef FEAT_BROWSE
2319 cmdmod.browse = TRUE;
2320# endif
2321# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2322 cmdmod.confirm = TRUE;
2323# endif
2324 /*
2325 * If there are changed buffers, present the user with
2326 * a dialog if possible, otherwise give an error message.
2327 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002328 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329
2330 exiting = FALSE;
2331 cmdmod = save_cmdmod;
2332 setcursor(); /* position the cursor */
2333 out_flush();
2334 /*
2335 * If the user hit the [Cancel] button the whole shutdown
2336 * will be cancelled. Wow, quite powerful feature (:
2337 */
2338 gnome_interaction_key_return(key, shutdown_cancelled);
2339}
2340
2341/*
2342 * Generate a script that can be used to restore the current editing session.
2343 * Save the value of v:this_session before running :mksession in order to make
2344 * automagic session save fully transparent. Return TRUE on success.
2345 */
2346 static int
2347write_session_file(char_u *filename)
2348{
2349 char_u *escaped_filename;
2350 char *mksession_cmdline;
2351 unsigned int save_ssop_flags;
2352 int failed;
2353
2354 /*
2355 * Build an ex command line to create a script that restores the current
2356 * session if executed. Escape the filename to avoid nasty surprises.
2357 */
2358 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2359 if (escaped_filename == NULL)
2360 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002361 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2362 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002364
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 /*
2366 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2367 * unpredictable effects when the session is saved automatically. Also,
2368 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2369 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2370 * enormously large if the GNOME session feature is used regularly.
2371 */
2372 save_ssop_flags = ssop_flags;
2373 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002374 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375
2376 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2377 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2378 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002379 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380
2381 ssop_flags = save_ssop_flags;
2382 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002383
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 /*
2385 * Reopen the file and append a command to restore v:this_session,
2386 * as if this save never happened. This is to avoid conflicts with
2387 * the user's own sessions. FIXME: It's probably less hackish to add
2388 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2389 */
2390 if (!failed)
2391 {
2392 FILE *fd;
2393
2394 fd = open_exfile(filename, TRUE, APPENDBIN);
2395
2396 failed = (fd == NULL
2397 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2398 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2399
2400 if (fd != NULL && fclose(fd) != 0)
2401 failed = TRUE;
2402
2403 if (failed)
2404 mch_remove(filename);
2405 }
2406
2407 return !failed;
2408}
2409
2410/*
2411 * "save_yourself" signal handler. Initiate an interaction to ask the user
2412 * for confirmation if necessary. Save the current editing session and tell
2413 * the session manager how to restart Vim.
2414 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 static gboolean
2416sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002417 gint phase UNUSED,
2418 GnomeSaveStyle save_style UNUSED,
2419 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002421 gboolean fast UNUSED,
2422 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
2424 static const char suffix[] = "-session.vim";
2425 char *session_file;
2426 unsigned int len;
2427 gboolean success;
2428
2429 /* Always request an interaction if possible. check_changed_any()
2430 * won't actually show a dialog unless any buffers have been modified.
2431 * There doesn't seem to be an obvious way to check that without
2432 * automatically firing the dialog. Anyway, it works just fine. */
2433 if (interact_style == GNOME_INTERACT_ANY)
2434 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2435 &sm_client_check_changed_any,
2436 NULL);
2437 out_flush();
2438 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2439
2440 /* The path is unique for each session save. We do neither know nor care
2441 * which session script will actually be used later. This decision is in
2442 * the domain of the session manager. */
2443 session_file = gnome_config_get_real_path(
2444 gnome_client_get_config_prefix(client));
2445 len = strlen(session_file);
2446
2447 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2448 --len; /* get rid of the superfluous trailing '/' */
2449
2450 session_file = g_renew(char, session_file, len + sizeof(suffix));
2451 memcpy(session_file + len, suffix, sizeof(suffix));
2452
2453 success = write_session_file((char_u *)session_file);
2454
2455 if (success)
2456 {
2457 const char *argv[8];
2458 int i;
2459
2460 /* Tell the session manager how to wipe out the stored session data.
2461 * This isn't as dangerous as it looks, don't worry :) session_file
2462 * is a unique absolute filename. Usually it'll be something like
2463 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2464 i = 0;
2465 argv[i++] = "rm";
2466 argv[i++] = session_file;
2467 argv[i] = NULL;
2468
2469 gnome_client_set_discard_command(client, i, (char **)argv);
2470
2471 /* Tell the session manager how to restore the just saved session.
2472 * This is easily done thanks to Vim's -S option. Pass the -f flag
2473 * since there's no need to fork -- it might even cause confusion.
2474 * Also pass the window role to give the WM something to match on.
2475 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2476 i = 0;
2477 argv[i++] = restart_command;
2478 argv[i++] = "-f";
2479 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 argv[i++] = "--role";
2481 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 argv[i++] = "-S";
2483 argv[i++] = session_file;
2484 argv[i] = NULL;
2485
2486 gnome_client_set_restart_command(client, i, (char **)argv);
2487 gnome_client_set_clone_command(client, 0, NULL);
2488 }
2489
2490 g_free(session_file);
2491
2492 return success;
2493}
2494
2495/*
2496 * Called when the session manager wants us to die. There isn't much to save
2497 * here since "save_yourself" has been emitted before (unless serious trouble
2498 * is happening).
2499 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002501sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502{
2503 /* Don't write messages to the GUI anymore */
2504 full_screen = FALSE;
2505
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002506 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002507 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002508 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 preserve_exit();
2510}
2511
2512/*
2513 * Connect our signal handlers to be notified on session save and shutdown.
2514 */
2515 static void
2516setup_save_yourself(void)
2517{
2518 GnomeClient *client;
2519
2520 client = gnome_master_client();
2521
2522 if (client != NULL)
2523 {
2524 /* Must use the deprecated gtk_signal_connect() for compatibility
2525 * with GNOME 1. Arrgh, zombies! */
2526 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2527 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2528 gtk_signal_connect(GTK_OBJECT(client), "die",
2529 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2530 }
2531}
2532
2533#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2534
2535# ifdef USE_XSMP
2536/*
2537 * GTK tells us that XSMP needs attention
2538 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002540local_xsmp_handle_requests(
2541 GIOChannel *source UNUSED,
2542 GIOCondition condition,
2543 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544{
2545 if (condition == G_IO_IN)
2546 {
2547 /* Do stuff; maybe close connection */
2548 if (xsmp_handle_requests() == FAIL)
2549 g_io_channel_unref((GIOChannel *)data);
2550 return TRUE;
2551 }
2552 /* Error */
2553 g_io_channel_unref((GIOChannel *)data);
2554 xsmp_close();
2555 return TRUE;
2556}
2557# endif /* USE_XSMP */
2558
2559/*
2560 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2561 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2562 */
2563 static void
2564setup_save_yourself(void)
2565{
2566 Atom *existing_atoms = NULL;
2567 int count = 0;
2568
Bram Moolenaar98921892016-02-23 17:14:37 +01002569# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 if (xsmp_icefd != -1)
2571 {
2572 /*
2573 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2574 * set up GTK IO monitor
2575 */
2576 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2577
2578 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2579 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002580 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 }
2582 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002583# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 {
2585 /* Fall back to old method */
2586
2587 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002588# if GTK_CHECK_VERSION(3,0,0)
2589 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2590
2591 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2592 GDK_WINDOW_XID(mainwin_win),
2593 &existing_atoms, &count))
2594# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2596 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2597 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002598# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 {
2600 Atom *new_atoms;
2601 Atom save_yourself_xatom;
2602 int i;
2603
2604 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2605
2606 /* check if WM_SAVE_YOURSELF isn't there yet */
2607 for (i = 0; i < count; ++i)
2608 if (existing_atoms[i] == save_yourself_xatom)
2609 break;
2610
2611 if (i == count)
2612 {
2613 /* allocate an Atoms array which is one item longer */
2614 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2615 * sizeof(Atom)));
2616 if (new_atoms != NULL)
2617 {
2618 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2619 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002620# if GTK_CHECK_VERSION(3,0,0)
2621 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2622 GDK_WINDOW_XID(mainwin_win),
2623# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2625 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002626# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 new_atoms, count + 1);
2628 vim_free(new_atoms);
2629 }
2630 }
2631 XFree(existing_atoms);
2632 }
2633 }
2634}
2635
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636/*
2637 * Installing a global event filter seems to be the only way to catch
2638 * client messages of type WM_PROTOCOLS without overriding GDK's own
2639 * client message event filter. Well, that's still better than trying
2640 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 *
2642 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2643 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2644 * I have the nasty feeling modern session managers just don't send this
2645 * deprecated message anymore. Addition: confirmed by several people.
2646 *
2647 * The GNOME session support is much cooler anyway. Unlike this ugly
2648 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2649 * it should work with KDE as well.
2650 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002652global_event_filter(GdkXEvent *xev,
2653 GdkEvent *event UNUSED,
2654 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655{
2656 XEvent *xevent = (XEvent *)xev;
2657
2658 if (xevent != NULL
2659 && xevent->type == ClientMessage
2660 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002661 && (long_u)xevent->xclient.data.l[0]
2662 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {
2664 out_flush();
2665 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2666 /*
2667 * Set the window's WM_COMMAND property, to let the window manager
2668 * know we are done saving ourselves. We don't want to be
2669 * restarted, thus set argv to NULL.
2670 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002671# if GTK_CHECK_VERSION(3,0,0)
2672 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2673 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2674# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2676 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 NULL, 0);
2679 return GDK_FILTER_REMOVE;
2680 }
2681
2682 return GDK_FILTER_CONTINUE;
2683}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2685
2686
2687/*
2688 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2689 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002691mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692{
2693/* If you get an error message here, you still need to unpack the runtime
2694 * archive! */
2695#ifdef magick
2696# undef magick
2697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 /* A bit hackish, but avoids casting later and allows optimization */
2699# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700#define magick vim32x32
2701#include "../runtime/vim32x32.xpm"
2702#undef magick
2703#define magick vim16x16
2704#include "../runtime/vim16x16.xpm"
2705#undef magick
2706#define magick vim48x48
2707#include "../runtime/vim48x48.xpm"
2708#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710
Bram Moolenaar98921892016-02-23 17:14:37 +01002711#if GTK_CHECK_VERSION(3,0,0)
2712 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2713#endif
2714
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 /* When started with "--echo-wid" argument, write window ID on stdout. */
2716 if (echo_wid_arg)
2717 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002718#if GTK_CHECK_VERSION(3,0,0)
2719 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2720#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 fflush(stdout);
2724 }
2725
2726 if (vim_strchr(p_go, GO_ICON) != NULL)
2727 {
2728 /*
2729 * Add an icon to the main window. For fun and convenience of the user.
2730 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 GList *icons = NULL;
2732
2733 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2734 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2735 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2736
2737 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2738
2739 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2740 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 }
2742
2743#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2744 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746#endif
2747 /* Setup to indicate to the window manager that we want to catch the
2748 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2749 * manager instead. */
2750#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2751 if (using_gnome)
2752#endif
2753 setup_save_yourself();
2754
2755#ifdef FEAT_CLIENTSERVER
2756 if (serverName == NULL && serverDelayedStartName != NULL)
2757 {
2758 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002759# if GTK_CHECK_VERSION(3,0,0)
2760 commWindow = GDK_WINDOW_XID(mainwin_win);
2761
2762 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2763 serverDelayedStartName);
2764# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2766
2767 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2768 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002769# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 }
2771 else
2772 {
2773 /*
2774 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2775 * have to change the "server" registration to that of the main window
2776 * If we have not registered a name yet, remember the window
2777 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002778# if GTK_CHECK_VERSION(3,0,0)
2779 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2780 GDK_WINDOW_XID(mainwin_win));
2781# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2783 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002784# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 }
2786 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002787# if GTK_CHECK_VERSION(3,0,0)
2788 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2789 G_CALLBACK(property_event), NULL);
2790# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2792 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002793# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794#endif
2795}
2796
2797 static GdkCursor *
2798create_blank_pointer(void)
2799{
2800 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002801#if GTK_CHECK_VERSION(3,0,0)
2802 GdkPixbuf *blank_mask;
2803#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 GdkCursor *cursor;
2807 GdkColor color = { 0, 0, 0, 0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002808#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811
2812#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002813# if GTK_CHECK_VERSION(3,12,0)
2814 {
2815 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2816 GdkScreen * const scrn = gdk_window_get_screen(win);
2817 root_window = gdk_screen_get_root_window(scrn);
2818 }
2819# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002821# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822#endif
2823
2824 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2825 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002826#if GTK_CHECK_VERSION(3,0,0)
2827 {
2828 cairo_surface_t *surf;
2829 cairo_t *cr;
2830
2831 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2832 cr = cairo_create(surf);
2833
2834 cairo_set_source_rgb(cr,
2835 color.red / 65535.0,
2836 color.green / 65535.0,
2837 color.blue / 65535.0);
2838 cairo_rectangle(cr, 0, 0, 1, 1);
2839 cairo_fill(cr);
2840 cairo_destroy(cr);
2841
2842 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2843 cairo_surface_destroy(surf);
2844
2845 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2846 blank_mask, 0, 0);
2847 g_object_unref(blank_mask);
2848 }
2849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2851 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2852 &color, &color, 0, 0);
2853 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
2856 return cursor;
2857}
2858
2859#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 static void
2861mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002862 GdkScreen *previous_screen UNUSED,
2863 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864{
2865 if (!gtk_widget_has_screen(widget))
2866 return;
2867
2868 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002869 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 */
2871 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002872# if GTK_CHECK_VERSION(3,0,0)
2873 g_object_unref(G_OBJECT(gui.blank_pointer));
2874# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002876# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877
2878 gui.blank_pointer = create_blank_pointer();
2879
Bram Moolenaar98921892016-02-23 17:14:37 +01002880# if GTK_CHECK_VERSION(3,0,0)
2881 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2882 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2883 gui.blank_pointer);
2884# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2886 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002887# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889 /*
2890 * Create a new PangoContext for this screen, and initialize it
2891 * with the current font if necessary.
2892 */
2893 if (gui.text_context != NULL)
2894 g_object_unref(gui.text_context);
2895
2896 gui.text_context = gtk_widget_create_pango_context(widget);
2897 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2898
2899 if (gui.norm_font != NULL)
2900 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002901 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002902 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 }
2904}
2905#endif /* HAVE_GTK_MULTIHEAD */
2906
2907/*
2908 * After the drawing area comes up, we calculate all colors and create the
2909 * dummy blank cursor.
2910 *
2911 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2912 * fact that the main VIM engine doesn't take them into account anywhere.
2913 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002915drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916{
2917 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002918#if GTK_CHECK_VERSION(3,0,0)
2919 GtkAllocation allocation;
2920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921
2922#ifdef FEAT_XIM
2923 xim_init();
2924#endif
2925 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002926#if GTK_CHECK_VERSION(3,0,0)
2927 gui.surface = gdk_window_create_similar_surface(
2928 gtk_widget_get_window(widget),
2929 CAIRO_CONTENT_COLOR_ALPHA,
2930 gtk_widget_get_allocated_width(widget),
2931 gtk_widget_get_allocated_height(widget));
2932#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935
2936 gui.blank_pointer = create_blank_pointer();
2937 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002938#if GTK_CHECK_VERSION(3,0,0)
2939 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
2940#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002942#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
2944 /* get the actual size of the scrollbars, if they are realized */
2945 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2946 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2947 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2948 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002949#if GTK_CHECK_VERSION(3,0,0)
2950 gtk_widget_get_allocation(sbar, &allocation);
2951 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2952 gui.scrollbar_width = allocation.width;
2953#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
2955 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957
2958 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002959#if GTK_CHECK_VERSION(3,0,0)
2960 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2961 gui.scrollbar_height = allocation.height;
2962#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
2964 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002965#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966}
2967
2968/*
2969 * Properly clean up on shutdown.
2970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002972drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 /* Don't write messages to the GUI anymore */
2975 full_screen = FALSE;
2976
2977#ifdef FEAT_XIM
2978 im_shutdown();
2979#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 if (gui.ascii_glyphs != NULL)
2981 {
2982 pango_glyph_string_free(gui.ascii_glyphs);
2983 gui.ascii_glyphs = NULL;
2984 }
2985 if (gui.ascii_font != NULL)
2986 {
2987 g_object_unref(gui.ascii_font);
2988 gui.ascii_font = NULL;
2989 }
2990 g_object_unref(gui.text_context);
2991 gui.text_context = NULL;
2992
Bram Moolenaar98921892016-02-23 17:14:37 +01002993#if GTK_CHECK_VERSION(3,0,0)
2994 if (gui.surface != NULL)
2995 {
2996 cairo_surface_destroy(gui.surface);
2997 gui.surface = NULL;
2998 }
2999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 g_object_unref(gui.text_gc);
3001 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003002#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003
Bram Moolenaar98921892016-02-23 17:14:37 +01003004#if GTK_CHECK_VERSION(3,0,0)
3005 g_object_unref(G_OBJECT(gui.blank_pointer));
3006#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010}
3011
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003013drawarea_style_set_cb(GtkWidget *widget UNUSED,
3014 GtkStyle *previous_style UNUSED,
3015 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 gui_mch_new_colors();
3018}
3019
Bram Moolenaar98921892016-02-23 17:14:37 +01003020#if GTK_CHECK_VERSION(3,0,0)
3021 static gboolean
3022drawarea_configure_event_cb(GtkWidget *widget,
3023 GdkEventConfigure *event,
3024 gpointer data UNUSED)
3025{
3026 static int cur_width = 0;
3027 static int cur_height = 0;
3028
3029 g_return_val_if_fail(event
3030 && event->width >= 1 && event->height >= 1, TRUE);
3031
3032 if (event->width == cur_width && event->height == cur_height)
3033 return TRUE;
3034
3035 cur_width = event->width;
3036 cur_height = event->height;
3037
3038 if (gui.surface != NULL)
3039 cairo_surface_destroy(gui.surface);
3040
3041 gui.surface = gdk_window_create_similar_surface(
3042 gtk_widget_get_window(widget),
3043 CAIRO_CONTENT_COLOR_ALPHA,
3044 event->width, event->height);
3045
3046 gtk_widget_queue_draw(widget);
3047
3048 return TRUE;
3049}
3050#endif
3051
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052/*
3053 * Callback routine for the "delete_event" signal on the toplevel window.
3054 * Tries to vim gracefully, or refuses to exit with changed buffers.
3055 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003057delete_event_cb(GtkWidget *widget UNUSED,
3058 GdkEventAny *event UNUSED,
3059 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060{
3061 gui_shell_closed();
3062 return TRUE;
3063}
3064
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003065#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3066 static int
3067get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3068{
3069 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3070
Bram Moolenaar98921892016-02-23 17:14:37 +01003071# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003072 if (using_gnome && widget != NULL)
3073 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003074 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003075 BonoboDockItem *dockitem;
3076
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003077 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003078 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3079 {
3080 /* Only menu & toolbar are dock items. Could tabline be?
3081 * Seem to be only the 2 defined in GNOME */
3082 widget = parent;
3083 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003084
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003085 if (dockitem == NULL || dockitem->is_floating)
3086 return 0;
3087 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3088 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003089 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003090# endif
3091# if GTK_CHECK_VERSION(3,0,0)
3092 if (widget != NULL
3093 && item_orientation == orientation
3094 && gtk_widget_get_realized(widget)
3095 && gtk_widget_get_visible(widget))
3096# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003097 if (widget != NULL
3098 && item_orientation == orientation
3099 && GTK_WIDGET_REALIZED(widget)
3100 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003101# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003102 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003103# if GTK_CHECK_VERSION(3,0,0)
3104 GtkAllocation allocation;
3105
3106 gtk_widget_get_allocation(widget, &allocation);
3107
3108 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3109 return allocation.height;
3110 else
3111 return allocation.width;
3112# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003113 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3114 return widget->allocation.height;
3115 else
3116 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003117# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003118 }
3119 return 0;
3120}
3121#endif
3122
3123 static int
3124get_menu_tool_width(void)
3125{
3126 int width = 0;
3127
3128#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3129# ifdef FEAT_MENU
3130 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3131# endif
3132# ifdef FEAT_TOOLBAR
3133 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3134# endif
3135# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003136 if (gui.tabline != NULL)
3137 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003138# endif
3139#endif
3140
3141 return width;
3142}
3143
3144 static int
3145get_menu_tool_height(void)
3146{
3147 int height = 0;
3148
3149#ifdef FEAT_MENU
3150 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3151#endif
3152#ifdef FEAT_TOOLBAR
3153 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3154#endif
3155#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003156 if (gui.tabline != NULL)
3157 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003158#endif
3159
3160 return height;
3161}
3162
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003163/* This controls whether we can set the real window hints at
3164 * start-up when in a GtkPlug.
3165 * 0 = normal processing (default)
3166 * 1 = init. hints set, no-one's tried to reset since last check
3167 * 2 = init. hints set, attempt made to change hints
3168 */
3169static int init_window_hints_state = 0;
3170
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003171 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003172update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003173{
3174 static int old_width = 0;
3175 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003176 static int old_min_width = 0;
3177 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003178 static int old_char_width = 0;
3179 static int old_char_height = 0;
3180
3181 int width;
3182 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003183 int min_width;
3184 int min_height;
3185
3186 /* At start-up, don't try to set the hints until the initial
3187 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003188 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003189 */
3190 if (!(force_width && force_height) && init_window_hints_state > 0)
3191 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003192 /* Don't do it! */
3193 init_window_hints_state = 2;
3194 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003195 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003196
3197 /* This also needs to be done when the main window isn't there yet,
3198 * otherwise the hints don't work. */
3199 width = gui_get_base_width();
3200 height = gui_get_base_height();
3201# ifdef FEAT_MENU
3202 height += tabline_height() * gui.char_height;
3203# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003204 width += get_menu_tool_width();
3205 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003206
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003207 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003208 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003209 * 'set columns=' or init. -geom) we briefly set the min. to the size
3210 * we wish to be instead of the legitimate minimum so that we actually
3211 * resize correctly.
3212 */
3213 if (force_width && force_height)
3214 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003215 min_width = force_width;
3216 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003217 }
3218 else
3219 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003220 min_width = width + MIN_COLUMNS * gui.char_width;
3221 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003222 }
3223
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003224 /* Avoid an expose event when the size didn't change. */
3225 if (width != old_width
3226 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003227 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003228 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229 || gui.char_width != old_char_width
3230 || gui.char_height != old_char_height)
3231 {
3232 GdkGeometry geometry;
3233 GdkWindowHints geometry_mask;
3234
3235 geometry.width_inc = gui.char_width;
3236 geometry.height_inc = gui.char_height;
3237 geometry.base_width = width;
3238 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003239 geometry.min_width = min_width;
3240 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003241 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3242 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003243 /* Using gui.formwin as geometry widget doesn't work as expected
3244 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3245 * in Vim confuse GTK+. */
3246 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3247 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003248 old_width = width;
3249 old_height = height;
3250 old_min_width = min_width;
3251 old_min_height = min_height;
3252 old_char_width = gui.char_width;
3253 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003254 }
3255}
3256
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257#ifdef FEAT_TOOLBAR
3258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259/*
3260 * This extra effort wouldn't be necessary if we only used stock icons in the
3261 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3262 * shouldn't be treated differently, thus we do need this.
3263 */
3264 static void
3265icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3266{
3267 if (GTK_IS_IMAGE(widget))
3268 {
3269 GtkImage *image = (GtkImage *)widget;
3270
Bram Moolenaar98921892016-02-23 17:14:37 +01003271# if GTK_CHECK_VERSION(3,10,0)
3272 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3273 {
3274 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3275 const gchar *icon_name;
3276
3277 gtk_image_get_icon_name(image, &icon_name, NULL);
3278
3279 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3280 }
3281# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 /* User-defined icons are stored in a GtkIconSet */
3283 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3284 {
3285 GtkIconSet *icon_set;
3286 GtkIconSize icon_size;
3287
3288 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3289 icon_size = (GtkIconSize)(long)user_data;
3290
3291 gtk_icon_set_ref(icon_set);
3292 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3293 gtk_icon_set_unref(icon_set);
3294 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003295# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 }
3297 else if (GTK_IS_CONTAINER(widget))
3298 {
3299 gtk_container_foreach((GtkContainer *)widget,
3300 &icon_size_changed_foreach,
3301 user_data);
3302 }
3303}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304
3305 static void
3306set_toolbar_style(GtkToolbar *toolbar)
3307{
3308 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 GtkIconSize size;
3310 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3313 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3314 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003315 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3317 style = GTK_TOOLBAR_BOTH;
3318 else if (toolbar_flags & TOOLBAR_TEXT)
3319 style = GTK_TOOLBAR_TEXT;
3320 else
3321 style = GTK_TOOLBAR_ICONS;
3322
3323 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003324# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003326# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 switch (tbis_flags)
3329 {
3330 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3331 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3332 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3333 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
3334 default: size = GTK_ICON_SIZE_INVALID; break;
3335 }
3336 oldsize = gtk_toolbar_get_icon_size(toolbar);
3337
3338 if (size == GTK_ICON_SIZE_INVALID)
3339 {
3340 /* Let global user preferences decide the icon size. */
3341 gtk_toolbar_unset_icon_size(toolbar);
3342 size = gtk_toolbar_get_icon_size(toolbar);
3343 }
3344 if (size != oldsize)
3345 {
3346 gtk_container_foreach(GTK_CONTAINER(toolbar),
3347 &icon_size_changed_foreach,
3348 GINT_TO_POINTER((int)size));
3349 }
3350 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351}
3352
3353#endif /* FEAT_TOOLBAR */
3354
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003355#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3356static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003357static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003358# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003359static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003360# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003361static int clicked_page; /* page clicked in tab line */
3362
3363/*
3364 * Handle selecting an item in the tab line popup menu.
3365 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003366 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003367tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003368{
Bram Moolenaara5621492006-02-25 21:55:24 +00003369 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003370 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003371}
3372
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003373 static void
3374add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3375{
3376 GtkWidget *item;
3377 char_u *utf_text;
3378
3379 utf_text = CONVERT_TO_UTF8(text);
3380 item = gtk_menu_item_new_with_label((const char *)utf_text);
3381 gtk_widget_show(item);
3382 CONVERT_TO_UTF8_FREE(utf_text);
3383
3384 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003385# if GTK_CHECK_VERSION(3,0,0)
3386 g_signal_connect(G_OBJECT(item), "activate",
3387 G_CALLBACK(tabline_menu_handler),
3388 GINT_TO_POINTER(resp));
3389# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003390 gtk_signal_connect(GTK_OBJECT(item), "activate",
3391 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003392 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003393# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003394}
3395
Bram Moolenaara5621492006-02-25 21:55:24 +00003396/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003397 * Create a menu for the tab line.
3398 */
3399 static GtkWidget *
3400create_tabline_menu(void)
3401{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003402 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003403
3404 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003405 if (first_tabpage->tp_next != NULL)
3406 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3407 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003408 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3409 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003410
3411 return menu;
3412}
3413
3414 static gboolean
3415on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3416{
3417 /* Was this button press event ? */
3418 if (event->type == GDK_BUTTON_PRESS)
3419 {
3420 GdkEventButton *bevent = (GdkEventButton *)event;
3421 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003422 int y = bevent->y;
3423 GtkWidget *tabwidget;
3424 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003425
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003426 /* When ignoring events return TRUE so that the selected page doesn't
3427 * change. */
3428 if (hold_gui_events
3429# ifdef FEAT_CMDWIN
3430 || cmdwin_type != 0
3431# endif
3432 )
3433 return TRUE;
3434
Bram Moolenaar98921892016-02-23 17:14:37 +01003435# if GTK_CHECK_VERSION(3,0,0)
3436 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3437# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003438 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003439# endif
3440
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003441 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003442# if GTK_CHECK_VERSION(3,0,0)
3443 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3444 "tab_num"));
3445# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003446 clicked_page = (int)(long)gtk_object_get_user_data(
3447 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003448# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003449
3450 /* If the event was generated for 3rd button popup the menu. */
3451 if (bevent->button == 3)
3452 {
3453 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3454 bevent->button, bevent->time);
3455 /* We handled the event. */
3456 return TRUE;
3457 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003458 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003459 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003460 if (clicked_page == 0)
3461 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003462 /* Click after all tabs moves to next tab page. When "x" is
3463 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003464 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003465 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003466 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003467 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003468
Bram Moolenaara5621492006-02-25 21:55:24 +00003469 /* We didn't handle the event. */
3470 return FALSE;
3471}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003472
3473/*
3474 * Handle selecting one of the tabs.
3475 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003476 static void
3477on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003478 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003479# if GTK_CHECK_VERSION(3,0,0)
3480 gpointer *page UNUSED,
3481# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003482 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003483# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003484 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003485 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003486{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003487 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003488 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003489 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003490 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003491}
3492
3493/*
3494 * Show or hide the tabline.
3495 */
3496 void
3497gui_mch_show_tabline(int showit)
3498{
3499 if (gui.tabline == NULL)
3500 return;
3501
3502 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3503 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003504 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003505 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003506 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003507 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003508# if GTK_CHECK_VERSION(3,0,0)
3509 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3510# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003511 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003512# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003513 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003514
3515 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003516}
3517
3518/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003519 * Return TRUE when tabline is displayed.
3520 */
3521 int
3522gui_mch_showing_tabline(void)
3523{
3524 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003525 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003526}
3527
3528/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003529 * Update the labels of the tabline.
3530 */
3531 void
3532gui_mch_update_tabline(void)
3533{
3534 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003535 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003536 GtkWidget *label;
3537 tabpage_T *tp;
3538 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003539 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003540 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003541 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003542
3543 if (gui.tabline == NULL)
3544 return;
3545
3546 ignore_tabline_evt = TRUE;
3547
3548 /* Add a label for each tab page. They all contain the same text area. */
3549 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3550 {
3551 if (tp == curtab)
3552 curtabidx = nr;
3553
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003554 tab_num = nr + 1;
3555
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003556 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3557 if (page == NULL)
3558 {
3559 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003560# if GTK_CHECK_VERSION(3,2,0)
3561 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3562 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3563# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003564 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003565# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003566 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003567 event_box = gtk_event_box_new();
3568 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003569 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003570# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003571 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003572# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003573 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003574 gtk_widget_show(label);
3575 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3576 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003577 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003578 nr++);
3579 }
3580
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003581 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003582# if GTK_CHECK_VERSION(3,0,0)
3583 g_object_set_data(G_OBJECT(event_box), "tab_num",
3584 GINT_TO_POINTER(tab_num));
3585# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003586 gtk_object_set_user_data(GTK_OBJECT(event_box),
3587 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003588# endif
3589# if GTK_CHECK_VERSION(3,0,0)
3590 label = gtk_bin_get_child(GTK_BIN(event_box));
3591# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003592 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003593# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003594 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003595 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003596 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003597 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003598
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003599 get_tabline_label(tp, TRUE);
3600 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003601# if GTK_CHECK_VERSION(3,0,0)
3602 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3603# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003604 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3605 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003606# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003607 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003608 }
3609
3610 /* Remove any old labels. */
3611 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3612 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3613
Bram Moolenaar98921892016-02-23 17:14:37 +01003614# if GTK_CHECK_VERSION(3,0,0)
3615 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3616 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3617# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003618 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003619 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003620# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003621
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003622 /* Make sure everything is in place before drawing text. */
3623 gui_mch_update();
3624
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003625 ignore_tabline_evt = FALSE;
3626}
3627
3628/*
3629 * Set the current tab to "nr". First tab is 1.
3630 */
3631 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003632gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003633{
3634 if (gui.tabline == NULL)
3635 return;
3636
3637 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003638# if GTK_CHECK_VERSION(3,0,0)
3639 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3640 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3641# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003642 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003643 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003644# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003645 ignore_tabline_evt = FALSE;
3646}
3647
3648#endif /* FEAT_GUI_TABLINE */
3649
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003651 * Add selection targets for PRIMARY and CLIPBOARD selections.
3652 */
3653 void
3654gui_gtk_set_selection_targets(void)
3655{
3656 int i, j = 0;
3657 int n_targets = N_SELECTION_TARGETS;
3658 GtkTargetEntry targets[N_SELECTION_TARGETS];
3659
3660 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3661 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003662 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003663 * return something, instead of trying another target. Therefore only
3664 * offer TARGET_HTML when it works. */
3665 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3666 n_targets--;
3667 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003668 targets[j++] = selection_targets[i];
3669 }
3670
3671 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3672 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3673 gtk_selection_add_targets(gui.drawarea,
3674 (GdkAtom)GDK_SELECTION_PRIMARY,
3675 targets, n_targets);
3676 gtk_selection_add_targets(gui.drawarea,
3677 (GdkAtom)clip_plus.gtk_sel_atom,
3678 targets, n_targets);
3679}
3680
3681/*
3682 * Set up for receiving DND items.
3683 */
3684 void
3685gui_gtk_set_dnd_targets(void)
3686{
3687 int i, j = 0;
3688 int n_targets = N_DND_TARGETS;
3689 GtkTargetEntry targets[N_DND_TARGETS];
3690
3691 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3692 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003693 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003694 n_targets--;
3695 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003696 targets[j++] = dnd_targets[i];
3697 }
3698
3699 gtk_drag_dest_unset(gui.drawarea);
3700 gtk_drag_dest_set(gui.drawarea,
3701 GTK_DEST_DEFAULT_ALL,
3702 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003703 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003704}
3705
3706/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3708 * Returns OK for success, FAIL when the GUI can't be started.
3709 */
3710 int
3711gui_mch_init(void)
3712{
3713 GtkWidget *vbox;
3714
3715#ifdef FEAT_GUI_GNOME
3716 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3717 * exits on failure, but that's a non-issue because we already called
3718 * gtk_init_check() in gui_mch_init_check(). */
3719 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003720 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3722 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003723# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003724 {
3725 char *p = setlocale(LC_NUMERIC, NULL);
3726
3727 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3728 * init may change it. */
3729 if (p == NULL || strcmp(p, "C") != 0)
3730 setlocale(LC_NUMERIC, "C");
3731 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003732# endif
3733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734#endif
3735 vim_free(gui_argv);
3736 gui_argv = NULL;
3737
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003738#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 /* Set the human-readable application name */
3740 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 /*
3743 * Force UTF-8 output no matter what the value of 'encoding' is.
3744 * did_set_string_option() in option.c prohibits changing 'termencoding'
3745 * to something else than UTF-8 if the GUI is in use.
3746 */
3747 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3748
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003749#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003751#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3753 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003754#if !GTK_CHECK_VERSION(3,0,0)
3755# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758#endif
3759
3760 /* Initialize values */
3761 gui.border_width = 2;
3762 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3763 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003764 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003766 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003768 /* LINTED: avoid warning: conversion to 'unsigned long' */
3769 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770
3771 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003772 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774
3775 /* Set default foreground and background colors. */
3776 gui.norm_pixel = gui.def_norm_pixel;
3777 gui.back_pixel = gui.def_back_pixel;
3778
3779 if (gtk_socket_id != 0)
3780 {
3781 GtkWidget *plug;
3782
3783 /* Use GtkSocket from another app. */
3784#ifdef HAVE_GTK_MULTIHEAD
3785 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3786 gtk_socket_id);
3787#else
3788 plug = gtk_plug_new(gtk_socket_id);
3789#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003790#if GTK_CHECK_VERSION(3,0,0)
3791 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3792#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003794#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 {
3796 gui.mainwin = plug;
3797 }
3798 else
3799 {
3800 g_warning("Connection to GTK+ socket (ID %u) failed",
3801 (unsigned int)gtk_socket_id);
3802 /* Pretend we never wanted it if it failed (get own window) */
3803 gtk_socket_id = 0;
3804 }
3805 }
3806
3807 if (gtk_socket_id == 0)
3808 {
3809#ifdef FEAT_GUI_GNOME
3810 if (using_gnome)
3811 {
3812 gui.mainwin = gnome_app_new("Vim", NULL);
3813# ifdef USE_XSMP
3814 /* Use the GNOME save-yourself functionality now. */
3815 xsmp_close();
3816# endif
3817 }
3818 else
3819#endif
3820 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3821 }
3822
3823 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3824
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 /* Create the PangoContext used for drawing all text. */
3826 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3827 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
Bram Moolenaar98921892016-02-23 17:14:37 +01003829#if GTK_CHECK_VERSION(3,0,0)
3830 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3831#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3835
Bram Moolenaar98921892016-02-23 17:14:37 +01003836#if GTK_CHECK_VERSION(3,0,0)
3837 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3838 G_CALLBACK(&delete_event_cb), NULL);
3839
3840 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3841 G_CALLBACK(&mainwin_realize), NULL);
3842#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3844 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3845
3846 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3847 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849#ifdef HAVE_GTK_MULTIHEAD
3850 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3851 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 gui.accel_group = gtk_accel_group_new();
3854 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003856 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003857#if GTK_CHECK_VERSION(3,2,0)
3858 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3859 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3860#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863
3864#ifdef FEAT_GUI_GNOME
3865 if (using_gnome)
3866 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003867# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 /* automagically restore menubar/toolbar placement */
3869 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3870# endif
3871 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3872 }
3873 else
3874#endif
3875 {
3876 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3877 gtk_widget_show(vbox);
3878 }
3879
3880#ifdef FEAT_MENU
3881 /*
3882 * Create the menubar and handle
3883 */
3884 gui.menubar = gtk_menu_bar_new();
3885 gtk_widget_set_name(gui.menubar, "vim-menubar");
3886
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003887 /* Avoid that GTK takes <F10> away from us. */
3888 {
3889 GtkSettings *gtk_settings;
3890
3891 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3892 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3893 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003894
3895
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896# ifdef FEAT_GUI_GNOME
3897 if (using_gnome)
3898 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 BonoboDockItem *dockitem;
3900
3901 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3902 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3903 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003904 /* We don't want the menu to float. */
3905 bonobo_dock_item_set_behavior(dockitem,
3906 bonobo_dock_item_get_behavior(dockitem)
3907 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 }
3910 else
3911# endif /* FEAT_GUI_GNOME */
3912 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003913 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3914 * disabled in gui_init() later. */
3915 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3917 }
3918#endif /* FEAT_MENU */
3919
3920#ifdef FEAT_TOOLBAR
3921 /*
3922 * Create the toolbar and handle
3923 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003925# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003926 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003927 /* N.B. Since the default value of GtkToolbar::button-relief is
3928 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3929# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 gtk_rc_parse_string(
3931 "style \"vim-toolbar-style\" {\n"
3932 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3933 "}\n"
3934 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 gui.toolbar = gtk_toolbar_new();
3937 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3939
3940# ifdef FEAT_GUI_GNOME
3941 if (using_gnome)
3942 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 BonoboDockItem *dockitem;
3944
3945 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3946 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3947 GNOME_APP_TOOLBAR_NAME);
3948 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003949 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003950 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003951 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003952 bonobo_dock_item_get_behavior(dockitem)
3953 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 }
3956 else
3957# endif /* FEAT_GUI_GNOME */
3958 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3960 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3961 gtk_widget_show(gui.toolbar);
3962 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3963 }
3964#endif /* FEAT_TOOLBAR */
3965
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003966#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003967 /*
3968 * Use a Notebook for the tab pages labels. The labels are hidden by
3969 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003970 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003971 gui.tabline = gtk_notebook_new();
3972 gtk_widget_show(gui.tabline);
3973 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3974 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3975 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003976 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003977# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003978 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003979# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003980
Bram Moolenaar98921892016-02-23 17:14:37 +01003981# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003982 tabline_tooltip = gtk_tooltips_new();
3983 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003984# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003985
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003986 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003987 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003988
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003989 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003990# if GTK_CHECK_VERSION(3,2,0)
3991 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3992 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3993# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003994 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003995# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003996 gtk_widget_show(page);
3997 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3998 label = gtk_label_new("-Empty-");
3999 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004000 event_box = gtk_event_box_new();
4001 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004002# if GTK_CHECK_VERSION(3,0,0)
4003 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4004# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004005 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004006# endif
4007# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004008 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004009# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004010 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004011 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004012 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004013
Bram Moolenaar98921892016-02-23 17:14:37 +01004014# if GTK_CHECK_VERSION(3,0,0)
4015 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4016 G_CALLBACK(on_select_tab), NULL);
4017# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004018 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004019 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004020# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004021
4022 /* Create a popup menu for the tab line and connect it. */
4023 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004024# if GTK_CHECK_VERSION(3,0,0)
4025 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4026 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4027# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004028 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004029 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004030# endif
4031#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004032
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004034#if GTK_CHECK_VERSION(3,0,0)
4035 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4036#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004038#endif
4039#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
4043 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004044#if GTK_CHECK_VERSION(3,0,0)
4045 gui.surface = NULL;
4046 gui.by_signal = FALSE;
4047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048
4049 /* Determine which events we will filter. */
4050 gtk_widget_set_events(gui.drawarea,
4051 GDK_EXPOSURE_MASK |
4052 GDK_ENTER_NOTIFY_MASK |
4053 GDK_LEAVE_NOTIFY_MASK |
4054 GDK_BUTTON_PRESS_MASK |
4055 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 GDK_KEY_PRESS_MASK |
4058 GDK_KEY_RELEASE_MASK |
4059 GDK_POINTER_MOTION_MASK |
4060 GDK_POINTER_MOTION_HINT_MASK);
4061
4062 gtk_widget_show(gui.drawarea);
4063 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4064 gtk_widget_show(gui.formwin);
4065 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4066
4067 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4068 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004069#if GTK_CHECK_VERSION(3,0,0)
4070 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4071 : G_OBJECT(gui.drawarea),
4072 "key-press-event",
4073 G_CALLBACK(key_press_event), NULL);
4074#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4076 : GTK_OBJECT(gui.drawarea),
4077 "key_press_event",
4078 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004079#endif
4080#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 /* Also forward key release events for the benefit of GTK+ 2 input
4082 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4083 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4084 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004085 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 G_CALLBACK(&key_release_event), NULL);
4087#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004088#if GTK_CHECK_VERSION(3,0,0)
4089 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4090 G_CALLBACK(drawarea_realize_cb), NULL);
4091 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4092 G_CALLBACK(drawarea_unrealize_cb), NULL);
4093 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4094 G_CALLBACK(drawarea_configure_event_cb), NULL);
4095 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4096 G_CALLBACK(&drawarea_style_set_cb), NULL);
4097#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4099 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4100 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4101 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4102
4103 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4104 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106
Bram Moolenaar98921892016-02-23 17:14:37 +01004107#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004109#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110
4111#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4112 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4113 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4114#endif
4115
4116 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004117 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004118#if GTK_CHECK_VERSION(3,0,0)
4119 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4120#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123
4124 /*
4125 * Set clipboard specific atoms
4126 */
4127 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4130 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4131
4132 /*
4133 * Start out by adding the configured border width into the border offset.
4134 */
4135 gui.border_offset = gui.border_width;
4136
Bram Moolenaar98921892016-02-23 17:14:37 +01004137#if GTK_CHECK_VERSION(3,0,0)
4138 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4139 G_CALLBACK(draw_event), NULL);
4140#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4142 GTK_SIGNAL_FUNC(visibility_event), NULL);
4143 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4144 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146
4147 /*
4148 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4149 * Only needed for some window managers.
4150 */
4151 if (vim_strchr(p_go, GO_POINTER) != NULL)
4152 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004153#if GTK_CHECK_VERSION(3,0,0)
4154 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4155 G_CALLBACK(leave_notify_event), NULL);
4156 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4157 G_CALLBACK(enter_notify_event), NULL);
4158#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4160 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4161 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4162 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 }
4165
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004166 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4167 * only its widgets. Arguably, this could be common code and we not use
4168 * the window focus at all, but let's be safe.
4169 */
4170 if (gtk_socket_id == 0)
4171 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004172#if GTK_CHECK_VERSION(3,0,0)
4173 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4174 G_CALLBACK(focus_out_event), NULL);
4175 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4176 G_CALLBACK(focus_in_event), NULL);
4177#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004178 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4179 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4180 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4181 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004182#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004183 }
4184 else
4185 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004186#if GTK_CHECK_VERSION(3,0,0)
4187 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4188 G_CALLBACK(focus_out_event), NULL);
4189 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4190 G_CALLBACK(focus_in_event), NULL);
4191#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004192 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4193 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4194 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4195 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004196#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004197#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004198# if GTK_CHECK_VERSION(3,0,0)
4199 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4200 G_CALLBACK(focus_out_event), NULL);
4201 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4202 G_CALLBACK(focus_in_event), NULL);
4203# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004204 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4205 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4206 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4207 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004208# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004209#endif /* FEAT_GUI_TABLINE */
4210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211
Bram Moolenaar98921892016-02-23 17:14:37 +01004212#if GTK_CHECK_VERSION(3,0,0)
4213 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4214 G_CALLBACK(motion_notify_event), NULL);
4215 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4216 G_CALLBACK(button_press_event), NULL);
4217 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4218 G_CALLBACK(button_release_event), NULL);
4219 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4220 G_CALLBACK(&scroll_event), NULL);
4221#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4223 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4224 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4225 GTK_SIGNAL_FUNC(button_press_event), NULL);
4226 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4227 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4229 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004230#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
4232 /*
4233 * Add selection handler functions.
4234 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004235#if GTK_CHECK_VERSION(3,0,0)
4236 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4237 G_CALLBACK(selection_clear_event), NULL);
4238 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4239 G_CALLBACK(selection_received_cb), NULL);
4240#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4242 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4243 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4244 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004245#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246
Bram Moolenaara76638f2010-06-05 12:49:46 +02004247 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248
Bram Moolenaar98921892016-02-23 17:14:37 +01004249#if GTK_CHECK_VERSION(3,0,0)
4250 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4251 G_CALLBACK(selection_get_cb), NULL);
4252#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4254 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
4257 /* Pretend we don't have input focus, we will get an event if we do. */
4258 gui.in_focus = FALSE;
4259
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 return OK;
4261}
4262
4263#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4264/*
4265 * This is called from gui_start() after a fork() has been done.
4266 * We have to tell the session manager our new PID.
4267 */
4268 void
4269gui_mch_forked(void)
4270{
4271 if (using_gnome)
4272 {
4273 GnomeClient *client;
4274
4275 client = gnome_master_client();
4276
4277 if (client != NULL)
4278 gnome_client_set_process_id(client, getpid());
4279 }
4280}
4281#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4282
Bram Moolenaar98921892016-02-23 17:14:37 +01004283#if GTK_CHECK_VERSION(3,0,0)
4284 static void
4285gui_gtk_get_rgb_from_pixel(guint32 pixel, GdkRGBA *result)
4286{
4287 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4288 guint32 r_mask, g_mask, b_mask;
4289 gint r_shift, g_shift, b_shift;
4290
4291 if (visual == NULL)
4292 {
4293 result->red = 0.0;
4294 result->green = 0.0;
4295 result->blue = 0.0;
4296 result->alpha = 0.0;
4297 return;
4298 }
4299
4300 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4301 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4302 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4303
4304 result->red = ((pixel & r_mask) >> r_shift) / 255.0;
4305 result->green = ((pixel & g_mask) >> g_shift) / 255.0;
4306 result->blue = ((pixel & b_mask) >> b_shift) / 255.0;
4307 result->alpha = 1.0;
4308}
4309
4310/* Convert a GdRGBA into a pixel value using drawarea's visual */
4311 static guint32
4312gui_gtk_get_pixel_from_rgb(const GdkRGBA *rgba)
4313{
4314 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4315 guint32 r_mask, g_mask, b_mask;
4316 gint r_shift, g_shift, b_shift;
4317 guint32 r, g, b;
4318
4319 if (visual == NULL)
4320 return 0;
4321
4322 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4323 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4324 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4325
4326 r = rgba->red * 65535;
4327 g = rgba->green * 65535;
4328 b = rgba->blue * 65535;
4329
4330 return ((r << r_shift) & r_mask) |
4331 ((g << g_shift) & g_mask) |
4332 ((b << b_shift) & b_mask);
4333}
4334
4335 static void
4336set_cairo_source_rgb_from_pixel(cairo_t *cr, guint32 pixel)
4337{
4338 GdkRGBA result;
4339 gui_gtk_get_rgb_from_pixel(pixel, &result);
4340 cairo_set_source_rgb(cr, result.red, result.green, result.blue);
4341}
4342#endif /* GTK_CHECK_VERSION(3,0,0) */
4343
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344/*
4345 * Called when the foreground or background color has been changed.
4346 * This used to change the graphics contexts directly but we are
4347 * currently manipulating them where desired.
4348 */
4349 void
4350gui_mch_new_colors(void)
4351{
Bram Moolenaar98921892016-02-23 17:14:37 +01004352#if GTK_CHECK_VERSION(3,0,0)
4353 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4354
4355 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004360#if GTK_CHECK_VERSION(3,4,0)
4361 GdkRGBA color;
4362
4363 gui_gtk_get_rgb_from_pixel(gui.back_pixel, &color);
4364 {
4365 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
4366 color.red, color.green, color.blue, color.alpha);
4367 if (pat != NULL)
4368 {
4369 gdk_window_set_background_pattern(da_win, pat);
4370 cairo_pattern_destroy(pat);
4371 }
4372 else
4373 gdk_window_set_background_rgba(da_win, &color);
4374 }
4375#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 GdkColor color = { 0, 0, 0, 0 };
4377
4378 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004379# if GTK_CHECK_VERSION(3,0,0)
4380 gdk_window_set_background(da_win, &color);
4381# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004383# endif
4384#endif /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 }
4386}
4387
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388/*
4389 * This signal informs us about the need to rearrange our sub-widgets.
4390 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004392form_configure_event(GtkWidget *widget UNUSED,
4393 GdkEventConfigure *event,
4394 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004396 int usable_height = event->height;
4397
4398 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4399 * no. of char-heights), so we have to manually sanitise them.
4400 * Widths seem to sort themselves out, don't ask me why.
4401 */
4402 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004403 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004404
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004406 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 gtk_form_thaw(GTK_FORM(gui.formwin));
4408
4409 return TRUE;
4410}
4411
4412/*
4413 * Function called when window already closed.
4414 * We can't do much more here than to trying to preserve what had been done,
4415 * since the window is already inevitably going away.
4416 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004417#if GTK_CHECK_VERSION(3,0,0)
4418 static void
4419mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4420#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004422mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004423#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424{
4425 /* Don't write messages to the GUI anymore */
4426 full_screen = FALSE;
4427
4428 gui.mainwin = NULL;
4429 gui.drawarea = NULL;
4430
4431 if (!exiting) /* only do anything if the destroy was unexpected */
4432 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004433 vim_strncpy(IObuff,
4434 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4435 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 preserve_exit();
4437 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004438#ifdef USE_GRESOURCE
4439 gui_gtk_unregister_resource();
4440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441}
4442
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004443
4444/*
4445 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4446 * hints (and thus the required size from -geom), but that after that we
4447 * put the hints back to normal (the actual minimum size) so we may
4448 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004449 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004450 * only way we have of making ourselves bigger (by set lines/columns).
4451 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004452 * second after the final attempt to reset the real minimum hints (done by
4453 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004454 * We'll not let the default hints be set while this timer's active.
4455 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004456 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004457check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004458{
4459 if (init_window_hints_state == 1)
4460 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004461 /* Safe to use normal hints now */
4462 init_window_hints_state = 0;
4463 update_window_manager_hints(0, 0);
4464 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004465 }
4466
4467 /* Keep on trying */
4468 init_window_hints_state = 1;
4469 return TRUE;
4470}
4471
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472/*
4473 * Open the GUI window which was created by a call to gui_mch_init().
4474 */
4475 int
4476gui_mch_open(void)
4477{
4478 guicolor_T fg_pixel = INVALCOLOR;
4479 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004480 guint pixel_width;
4481 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 /*
4484 * Allow setting a window role on the command line, or invent one
4485 * if none was specified. This is mainly useful for GNOME session
4486 * support; allowing the WM to restore window placement.
4487 */
4488 if (role_argument != NULL)
4489 {
4490 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4491 }
4492 else
4493 {
4494 char *role;
4495
4496 /* Invent a unique-enough ID string for the role */
4497 role = g_strdup_printf("vim-%u-%u-%u",
4498 (unsigned)mch_get_pid(),
4499 (unsigned)g_random_int(),
4500 (unsigned)time(NULL));
4501
4502 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4503 g_free(role);
4504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505
4506 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508
4509 /* Determine user specified geometry, if present. */
4510 if (gui.geom != NULL)
4511 {
4512 int mask;
4513 unsigned int w, h;
4514 int x = 0;
4515 int y = 0;
4516
4517 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4518
4519 if (mask & WidthValue)
4520 Columns = w;
4521 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004522 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004523 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004524 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004526 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004527 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004528
4529 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4530 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4531
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004532 pixel_width += get_menu_tool_width();
4533 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004534
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004536 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004537 int ww, hh;
4538 gui_mch_get_screen_dimensions(&ww, &hh);
4539 hh += p_ghr + get_menu_tool_height();
4540 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004541 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004542 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004543 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004544 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 vim_free(gui.geom);
4548 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004549
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004550 /* From now until everyone's stopped trying to set the window hints
4551 * to their correct minimum values, stop them being set as we need
4552 * them to remain at our required size for the parent GtkSocket to
4553 * give us the right initial size.
4554 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004555 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004556 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004557 update_window_manager_hints(pixel_width, pixel_height);
4558 init_window_hints_state = 1;
4559 g_timeout_add(1000, check_startup_plug_hints, NULL);
4560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 }
4562
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004563 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4564 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004565 /* For GTK2 changing the size of the form widget doesn't cause window
4566 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004567 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004568 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004569 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570
4571 if (foreground_argument != NULL)
4572 fg_pixel = gui_get_color((char_u *)foreground_argument);
4573 if (fg_pixel == INVALCOLOR)
4574 fg_pixel = gui_get_color((char_u *)"Black");
4575
4576 if (background_argument != NULL)
4577 bg_pixel = gui_get_color((char_u *)background_argument);
4578 if (bg_pixel == INVALCOLOR)
4579 bg_pixel = gui_get_color((char_u *)"White");
4580
4581 if (found_reverse_arg)
4582 {
4583 gui.def_norm_pixel = bg_pixel;
4584 gui.def_back_pixel = fg_pixel;
4585 }
4586 else
4587 {
4588 gui.def_norm_pixel = fg_pixel;
4589 gui.def_back_pixel = bg_pixel;
4590 }
4591
4592 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4593 * in a vimrc file) */
4594 set_normal_colors();
4595
4596 /* Check that none of the colors are the same as the background color */
4597 gui_check_colors();
4598
4599 /* Get the colors for the highlight groups (gui_check_colors() might have
4600 * changed them). */
4601 highlight_gui_started(); /* re-init colors and fonts */
4602
Bram Moolenaar98921892016-02-23 17:14:37 +01004603#if GTK_CHECK_VERSION(3,0,0)
4604 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4605 G_CALLBACK(mainwin_destroy_cb), NULL);
4606#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4608 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004609#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
4611#ifdef FEAT_HANGULIN
4612 hangul_keyboard_set();
4613#endif
4614
4615 /*
4616 * Notify the fixed area about the need to resize the contents of the
4617 * gui.formwin, which we use for random positioning of the included
4618 * components.
4619 *
4620 * We connect this signal deferred finally after anything is in place,
4621 * since this is intended to handle resizements coming from the window
4622 * manager upon us and should not interfere with what VIM is requesting
4623 * upon startup.
4624 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004625#if GTK_CHECK_VERSION(3,0,0)
4626 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4627 G_CALLBACK(form_configure_event), NULL);
4628#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4630 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632
4633#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004634 /* Set up for receiving DND items. */
4635 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
Bram Moolenaar98921892016-02-23 17:14:37 +01004637# if GTK_CHECK_VERSION(3,0,0)
4638 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4639 G_CALLBACK(drag_data_received_cb), NULL);
4640# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4642 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004643# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644#endif
4645
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004647 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 if (found_iconic_arg && gtk_socket_id == 0)
4649 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650
4651 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004652#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 unsigned long menu_handler = 0;
4654# ifdef FEAT_TOOLBAR
4655 unsigned long tool_handler = 0;
4656# endif
4657 /*
4658 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4659 * show when restoring the saved layout configuration. We can't just
4660 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4661 * a toplevel window and thus will be realized immediately. Instead,
4662 * connect signal handlers to hide the widgets just after they've been
4663 * marked visible, but before the main window is realized.
4664 */
4665 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4666 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4667 G_CALLBACK(&gtk_widget_hide),
4668 NULL);
4669# ifdef FEAT_TOOLBAR
4670 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4671 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4672 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4673 G_CALLBACK(&gtk_widget_hide),
4674 NULL);
4675# endif
4676#endif
4677 gtk_widget_show(gui.mainwin);
4678
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004679#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 if (menu_handler != 0)
4681 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4682# ifdef FEAT_TOOLBAR
4683 if (tool_handler != 0)
4684 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4685# endif
4686#endif
4687 }
4688
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 return OK;
4690}
4691
4692
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004694gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695{
4696 if (gui.mainwin != NULL)
4697 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698}
4699
4700/*
4701 * Get the position of the top left corner of the window.
4702 */
4703 int
4704gui_mch_get_winpos(int *x, int *y)
4705{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 return OK;
4708}
4709
4710/*
4711 * Set the position of the top left corner of the window to the given
4712 * coordinates.
4713 */
4714 void
4715gui_mch_set_winpos(int x, int y)
4716{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718}
4719
Bram Moolenaar98921892016-02-23 17:14:37 +01004720#if !GTK_CHECK_VERSION(3,0,0)
4721# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722static int resize_idle_installed = FALSE;
4723/*
4724 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4725 * the shell size doesn't exceed the window size, i.e. if the window manager
4726 * ignored our size request. Usually this happens if the window is maximized.
4727 *
4728 * FIXME: It'd be nice if we could find a little more orthodox solution.
4729 * See also the remark below in gui_mch_set_shellsize().
4730 *
4731 * DISABLED: When doing ":set lines+=1" this function would first invoke
4732 * gui_resize_shell() with the old size, then the normal callback would
4733 * report the new size through form_configure_event(). That caused the window
4734 * layout to be messed up.
4735 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 static gboolean
4737force_shell_resize_idle(gpointer data)
4738{
4739 if (gui.mainwin != NULL
4740 && GTK_WIDGET_REALIZED(gui.mainwin)
4741 && GTK_WIDGET_VISIBLE(gui.mainwin))
4742 {
4743 int width;
4744 int height;
4745
4746 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4747
4748 width -= get_menu_tool_width();
4749 height -= get_menu_tool_height();
4750
4751 gui_resize_shell(width, height);
4752 }
4753
4754 resize_idle_installed = FALSE;
4755 return FALSE; /* don't call me again */
4756}
Bram Moolenaar98921892016-02-23 17:14:37 +01004757# endif
4758#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759
Bram Moolenaar09736232009-09-23 16:14:49 +00004760/*
4761 * Return TRUE if the main window is maximized.
4762 */
4763 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004764gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004765{
Bram Moolenaar98921892016-02-23 17:14:37 +01004766#if GTK_CHECK_VERSION(3,0,0)
4767 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4768 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4769 & GDK_WINDOW_STATE_MAXIMIZED));
4770#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004771 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4772 && (gdk_window_get_state(gui.mainwin->window)
4773 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004774#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004775}
4776
4777/*
4778 * Unmaximize the main window
4779 */
4780 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004781gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004782{
4783 if (gui.mainwin != NULL)
4784 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4785}
Bram Moolenaar09736232009-09-23 16:14:49 +00004786
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004788 * Called when the font changed while the window is maximized. Compute the
4789 * new Rows and Columns. This is like resizing the window.
4790 */
4791 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004792gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004793{
4794 int w, h;
4795
4796 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4797 w -= get_menu_tool_width();
4798 h -= get_menu_tool_height();
4799 gui_resize_shell(w, h);
4800}
4801
4802/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 * Set the windows size.
4804 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 void
4806gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004807 int min_width UNUSED, int min_height UNUSED,
4808 int base_width UNUSED, int base_height UNUSED,
4809 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 /* give GTK+ a chance to put all widget's into place */
4812 gui_mch_update();
4813
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004814 /* this will cause the proper resizement to happen too */
4815 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004816 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004817
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004819 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 * main window instead. */
4821 width += get_menu_tool_width();
4822 height += get_menu_tool_height();
4823
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004824 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004825 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004826 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004827 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828
Bram Moolenaar98921892016-02-23 17:14:37 +01004829# if !GTK_CHECK_VERSION(3,0,0)
4830# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 if (!resize_idle_installed)
4832 {
4833 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4834 &force_shell_resize_idle, NULL, NULL);
4835 resize_idle_installed = TRUE;
4836 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004837# endif
4838# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 /*
4840 * Wait until all events are processed to prevent a crash because the
4841 * real size of the drawing area doesn't reflect Vim's internal ideas.
4842 *
4843 * This is a bit of a hack, since Vim is a terminal application with a GUI
4844 * on top, while the GUI expects to be the boss.
4845 */
4846 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847}
4848
4849
4850/*
4851 * The screen size is used to make sure the initial window doesn't get bigger
4852 * than the screen. This subtracts some room for menubar, toolbar and window
4853 * decorations.
4854 */
4855 void
4856gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4857{
4858#ifdef HAVE_GTK_MULTIHEAD
4859 GdkScreen* screen;
4860
4861 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4862 screen = gtk_widget_get_screen(gui.mainwin);
4863 else
4864 screen = gdk_screen_get_default();
4865
4866 *screen_w = gdk_screen_get_width(screen);
4867 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4868#else
4869 *screen_w = gdk_screen_width();
4870 /* Subtract 'guiheadroom' from the height to allow some room for the
4871 * window manager (task list and window title bar). */
4872 *screen_h = gdk_screen_height() - p_ghr;
4873#endif
4874
4875 /*
4876 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4877 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004878 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 * This should be completely changed later.
4880 */
4881 *screen_w -= get_menu_tool_width();
4882 *screen_h -= get_menu_tool_height();
4883}
4884
4885#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004887gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 if (title != NULL && output_conv.vc_type != CONV_NONE)
4890 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891
4892 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 if (output_conv.vc_type != CONV_NONE)
4895 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896}
4897#endif /* FEAT_TITLE */
4898
4899#if defined(FEAT_MENU) || defined(PROTO)
4900 void
4901gui_mch_enable_menu(int showit)
4902{
4903 GtkWidget *widget;
4904
4905# ifdef FEAT_GUI_GNOME
4906 if (using_gnome)
4907 widget = gui.menubar_h;
4908 else
4909# endif
4910 widget = gui.menubar;
4911
Bram Moolenaar18144c82006-04-12 21:52:12 +00004912 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004913# if GTK_CHECK_VERSION(3,0,0)
4914 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
4915# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00004916 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01004917# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 {
4919 if (showit)
4920 gtk_widget_show(widget);
4921 else
4922 gtk_widget_hide(widget);
4923
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004924 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 }
4926}
4927#endif /* FEAT_MENU */
4928
4929#if defined(FEAT_TOOLBAR) || defined(PROTO)
4930 void
4931gui_mch_show_toolbar(int showit)
4932{
4933 GtkWidget *widget;
4934
4935 if (gui.toolbar == NULL)
4936 return;
4937
4938# ifdef FEAT_GUI_GNOME
4939 if (using_gnome)
4940 widget = gui.toolbar_h;
4941 else
4942# endif
4943 widget = gui.toolbar;
4944
4945 if (showit)
4946 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4947
Bram Moolenaar98921892016-02-23 17:14:37 +01004948# if GTK_CHECK_VERSION(3,0,0)
4949 if (!showit != !gtk_widget_get_visible(widget))
4950# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01004952# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 {
4954 if (showit)
4955 gtk_widget_show(widget);
4956 else
4957 gtk_widget_hide(widget);
4958
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004959 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 }
4961}
4962#endif /* FEAT_TOOLBAR */
4963
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964/*
4965 * Check if a given font is a CJK font. This is done in a very crude manner. It
4966 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4967 * font. Consequently, this function cannot be used as a general purpose check
4968 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4969 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4970 */
4971 static int
4972is_cjk_font(PangoFontDescription *font_desc)
4973{
4974 static const char * const cjk_langs[] =
4975 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4976
4977 PangoFont *font;
4978 unsigned i;
4979 int is_cjk = FALSE;
4980
4981 font = pango_context_load_font(gui.text_context, font_desc);
4982
4983 if (font == NULL)
4984 return FALSE;
4985
4986 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4987 {
4988 PangoCoverage *coverage;
4989 gunichar uc;
4990
4991 coverage = pango_font_get_coverage(
4992 font, pango_language_from_string(cjk_langs[i]));
4993
4994 if (coverage != NULL)
4995 {
4996 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4997 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4998 pango_coverage_unref(coverage);
4999 }
5000 }
5001
5002 g_object_unref(font);
5003
5004 return is_cjk;
5005}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006
Bram Moolenaar231334e2005-07-25 20:46:57 +00005007/*
5008 * Adjust gui.char_height (after 'linespace' was changed).
5009 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005011gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 PangoFontMetrics *metrics;
5014 int ascent;
5015 int descent;
5016
5017 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5018 pango_context_get_language(gui.text_context));
5019 ascent = pango_font_metrics_get_ascent(metrics);
5020 descent = pango_font_metrics_get_descent(metrics);
5021
5022 pango_font_metrics_unref(metrics);
5023
5024 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005025 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005026 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5028
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 /* A not-positive value of char_height may crash Vim. Only happens
5030 * if 'linespace' is negative (which does make sense sometimes). */
5031 gui.char_ascent = MAX(gui.char_ascent, 0);
5032 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5033
5034 return OK;
5035}
5036
Bram Moolenaar98921892016-02-23 17:14:37 +01005037#if GTK_CHECK_VERSION(3,0,0)
5038/* Callback function used in gui_mch_font_dialog() */
5039 static gboolean
5040font_filter(const PangoFontFamily *family,
5041 const PangoFontFace *face UNUSED,
5042 gpointer data UNUSED)
5043{
5044 return pango_font_family_is_monospace((PangoFontFamily *)family);
5045}
5046#endif
5047
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048/*
5049 * Put up a font dialog and return the selected font name in allocated memory.
5050 * "oldval" is the previous value. Return NULL when cancelled.
5051 * This should probably go into gui_gtk.c. Hmm.
5052 * FIXME:
5053 * The GTK2 font selection dialog has no filtering API. So we could either
5054 * a) implement our own (possibly copying the code from somewhere else) or
5055 * b) just live with it.
5056 */
5057 char_u *
5058gui_mch_font_dialog(char_u *oldval)
5059{
5060 GtkWidget *dialog;
5061 int response;
5062 char_u *fontname = NULL;
5063 char_u *oldname;
5064
Bram Moolenaar98921892016-02-23 17:14:37 +01005065#if GTK_CHECK_VERSION(3,2,0)
5066 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5067 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5068 NULL, NULL);
5069#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
5073 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5074 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5075
5076 if (oldval != NULL && oldval[0] != NUL)
5077 {
5078 if (output_conv.vc_type != CONV_NONE)
5079 oldname = string_convert(&output_conv, oldval, NULL);
5080 else
5081 oldname = oldval;
5082
5083 /* Annoying bug in GTK (or Pango): if the font name does not include a
5084 * size, zero is used. Use default point size ten. */
5085 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5086 {
5087 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5088
5089 if (p != NULL)
5090 {
5091 STRCPY(p + STRLEN(p), " 10");
5092 if (oldname != oldval)
5093 vim_free(oldname);
5094 oldname = p;
5095 }
5096 }
5097
Bram Moolenaar98921892016-02-23 17:14:37 +01005098#if GTK_CHECK_VERSION(3,2,0)
5099 gtk_font_chooser_set_font(
5100 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5101#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 gtk_font_selection_dialog_set_font_name(
5103 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105
5106 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005107 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005109 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005110#if GTK_CHECK_VERSION(3,2,0)
5111 gtk_font_chooser_set_font(
5112 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5113#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005114 gtk_font_selection_dialog_set_font_name(
5115 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117
5118 response = gtk_dialog_run(GTK_DIALOG(dialog));
5119
5120 if (response == GTK_RESPONSE_OK)
5121 {
5122 char *name;
5123
Bram Moolenaar98921892016-02-23 17:14:37 +01005124#if GTK_CHECK_VERSION(3,2,0)
5125 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5126#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 name = gtk_font_selection_dialog_get_font_name(
5128 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 if (name != NULL)
5131 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005132 char_u *p;
5133
5134 /* Apparently some font names include a comma, need to escape
5135 * that, because in 'guifont' it separates names. */
5136 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005138 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005139 {
5140 fontname = string_convert(&input_conv, p, NULL);
5141 vim_free(p);
5142 }
5143 else
5144 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 }
5146 }
5147
5148 if (response != GTK_RESPONSE_NONE)
5149 gtk_widget_destroy(dialog);
5150
5151 return fontname;
5152}
5153
5154/*
5155 * Some monospace fonts don't support a bold weight, and fall back
5156 * silently to the regular weight. But this is no good since our text
5157 * drawing function can emulate bold by overstriking. So let's try
5158 * to detect whether bold weight is actually available and emulate it
5159 * otherwise.
5160 *
5161 * Note that we don't need to check for italic style since Xft can
5162 * emulate italic on its own, provided you have a proper fontconfig
5163 * setup. We wouldn't be able to emulate it in Vim anyway.
5164 */
5165 static void
5166get_styled_font_variants(void)
5167{
5168 PangoFontDescription *bold_font_desc;
5169 PangoFont *plain_font;
5170 PangoFont *bold_font;
5171
5172 gui.font_can_bold = FALSE;
5173
5174 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5175
5176 if (plain_font == NULL)
5177 return;
5178
5179 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5180 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5181
5182 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5183 /*
5184 * The comparison relies on the unique handle nature of a PangoFont*,
5185 * i.e. it's assumed that a different PangoFont* won't refer to the
5186 * same font. Seems to work, and failing here isn't critical anyway.
5187 */
5188 if (bold_font != NULL)
5189 {
5190 gui.font_can_bold = (bold_font != plain_font);
5191 g_object_unref(bold_font);
5192 }
5193
5194 pango_font_description_free(bold_font_desc);
5195 g_object_unref(plain_font);
5196}
5197
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198static PangoEngineShape *default_shape_engine = NULL;
5199
5200/*
5201 * Create a map from ASCII characters in the range [32,126] to glyphs
5202 * of the current font. This is used by gui_gtk2_draw_string() to skip
5203 * the itemize and shaping process for the most common case.
5204 */
5205 static void
5206ascii_glyph_table_init(void)
5207{
5208 char_u ascii_chars[128];
5209 PangoAttrList *attr_list;
5210 GList *item_list;
5211 int i;
5212
5213 if (gui.ascii_glyphs != NULL)
5214 pango_glyph_string_free(gui.ascii_glyphs);
5215 if (gui.ascii_font != NULL)
5216 g_object_unref(gui.ascii_font);
5217
5218 gui.ascii_glyphs = NULL;
5219 gui.ascii_font = NULL;
5220
5221 /* For safety, fill in question marks for the control characters. */
5222 for (i = 0; i < 32; ++i)
5223 ascii_chars[i] = '?';
5224 for (; i < 127; ++i)
5225 ascii_chars[i] = i;
5226 ascii_chars[i] = '?';
5227
5228 attr_list = pango_attr_list_new();
5229 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5230 0, sizeof(ascii_chars), attr_list, NULL);
5231
5232 if (item_list != NULL && item_list->next == NULL) /* play safe */
5233 {
5234 PangoItem *item;
5235 int width;
5236
5237 item = (PangoItem *)item_list->data;
5238 width = gui.char_width * PANGO_SCALE;
5239
5240 /* Remember the shape engine used for ASCII. */
5241 default_shape_engine = item->analysis.shape_engine;
5242
5243 gui.ascii_font = item->analysis.font;
5244 g_object_ref(gui.ascii_font);
5245
5246 gui.ascii_glyphs = pango_glyph_string_new();
5247
5248 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5249 &item->analysis, gui.ascii_glyphs);
5250
5251 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5252
5253 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5254 {
5255 PangoGlyphGeometry *geom;
5256
5257 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5258 geom->x_offset += MAX(0, width - geom->width) / 2;
5259 geom->width = width;
5260 }
5261 }
5262
5263 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5264 g_list_free(item_list);
5265 pango_attr_list_unref(attr_list);
5266}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267
5268/*
5269 * Initialize Vim to use the font or fontset with the given name.
5270 * Return FAIL if the font could not be loaded, OK otherwise.
5271 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005273gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 PangoFontDescription *font_desc;
5276 PangoLayout *layout;
5277 int width;
5278
5279 /* If font_name is NULL, this means to use the default, which should
5280 * be present on all proper Pango/fontconfig installations. */
5281 if (font_name == NULL)
5282 font_name = (char_u *)DEFAULT_FONT;
5283
5284 font_desc = gui_mch_get_font(font_name, FALSE);
5285
5286 if (font_desc == NULL)
5287 return FAIL;
5288
5289 gui_mch_free_font(gui.norm_font);
5290 gui.norm_font = font_desc;
5291
5292 pango_context_set_font_description(gui.text_context, font_desc);
5293
5294 layout = pango_layout_new(gui.text_context);
5295 pango_layout_set_text(layout, "MW", 2);
5296 pango_layout_get_size(layout, &width, NULL);
5297 /*
5298 * Set char_width to half the width obtained from pango_layout_get_size()
5299 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5300 * Pango to use the same width for both non-CJK characters (e.g. Latin
5301 * letters and numbers) and CJK characters. This results in 's p a c e d
5302 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5303 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5304 * width for CJK fonts.
5305 *
5306 * For related bugs, see:
5307 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5308 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5309 *
5310 * With this, for all four of the following cases, Vim works fine:
5311 * guifont=CJK_fixed_width_font
5312 * guifont=Non_CJK_fixed_font
5313 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5314 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5315 */
5316 if (is_cjk_font(gui.norm_font))
5317 {
5318 int cjk_width;
5319
5320 /* Measure the text extent of U+4E00 and U+4E8C */
5321 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5322 pango_layout_get_size(layout, &cjk_width, NULL);
5323
5324 if (width == cjk_width) /* Xft not patched */
5325 width /= 2;
5326 }
5327 g_object_unref(layout);
5328
5329 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5330
5331 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5332 if (gui.char_width <= 0)
5333 gui.char_width = 8;
5334
Bram Moolenaar231334e2005-07-25 20:46:57 +00005335 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336
5337 /* Set the fontname, which will be used for information purposes */
5338 hl_set_font_name(font_name);
5339
5340 get_styled_font_variants();
5341 ascii_glyph_table_init();
5342
5343 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5344 if (gui.wide_font != NULL
5345 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5346 {
5347 pango_font_description_free(gui.wide_font);
5348 gui.wide_font = NULL;
5349 }
5350
Bram Moolenaare161c792009-11-03 17:13:59 +00005351 if (gui_mch_maximized())
5352 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005353 /* Update lines and columns in accordance with the new font, keep the
5354 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005355 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005356 }
5357 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005358 {
5359 /* Preserve the logical dimensions of the screen. */
5360 update_window_manager_hints(0, 0);
5361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362
5363 return OK;
5364}
5365
5366/*
5367 * Get a reference to the font "name".
5368 * Return zero for failure.
5369 */
5370 GuiFont
5371gui_mch_get_font(char_u *name, int report_error)
5372{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374
5375 /* can't do this when GUI is not running */
5376 if (!gui.in_use || name == NULL)
5377 return NULL;
5378
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 if (output_conv.vc_type != CONV_NONE)
5380 {
5381 char_u *buf;
5382
5383 buf = string_convert(&output_conv, name, NULL);
5384 if (buf != NULL)
5385 {
5386 font = pango_font_description_from_string((const char *)buf);
5387 vim_free(buf);
5388 }
5389 else
5390 font = NULL;
5391 }
5392 else
5393 font = pango_font_description_from_string((const char *)name);
5394
5395 if (font != NULL)
5396 {
5397 PangoFont *real_font;
5398
5399 /* pango_context_load_font() bails out if no font size is set */
5400 if (pango_font_description_get_size(font) <= 0)
5401 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5402
5403 real_font = pango_context_load_font(gui.text_context, font);
5404
5405 if (real_font == NULL)
5406 {
5407 pango_font_description_free(font);
5408 font = NULL;
5409 }
5410 else
5411 g_object_unref(real_font);
5412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413
5414 if (font == NULL)
5415 {
5416 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005417 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 return NULL;
5419 }
5420
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 return font;
5422}
5423
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005424#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005425/*
5426 * Return the name of font "font" in allocated memory.
5427 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005428 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005429gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005430{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005431 if (font != NOFONT)
5432 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005433 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005434
Bram Moolenaar89d40322006-08-29 15:30:07 +00005435 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005436 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005437 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005438
Bram Moolenaar89d40322006-08-29 15:30:07 +00005439 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005440 return s;
5441 }
5442 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005443 return NULL;
5444}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005445#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005446
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447/*
5448 * If a font is not going to be used, free its structure.
5449 */
5450 void
5451gui_mch_free_font(GuiFont font)
5452{
5453 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455}
5456
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457/*
5458 * Return the Pixel value (color) for the given color name. This routine was
5459 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5460 * Programmer's Guide.
5461 * Return INVALCOLOR for error.
5462 */
5463 guicolor_T
5464gui_mch_get_color(char_u *name)
5465{
5466 /* A number of colors that some X11 systems don't have */
5467 static const char *const vimnames[][2] =
5468 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00005469 {"LightRed", "#FFBBBB"},
5470 {"LightGreen", "#88FF88"},
5471 {"LightMagenta","#FFBBFF"},
5472 {"DarkCyan", "#008888"},
5473 {"DarkBlue", "#0000BB"},
5474 {"DarkRed", "#BB0000"},
5475 {"DarkMagenta", "#BB00BB"},
5476 {"DarkGrey", "#BBBBBB"},
5477 {"DarkYellow", "#BBBB00"},
5478 {"Gray10", "#1A1A1A"},
5479 {"Grey10", "#1A1A1A"},
5480 {"Gray20", "#333333"},
5481 {"Grey20", "#333333"},
5482 {"Gray30", "#4D4D4D"},
5483 {"Grey30", "#4D4D4D"},
5484 {"Gray40", "#666666"},
5485 {"Grey40", "#666666"},
5486 {"Gray50", "#7F7F7F"},
5487 {"Grey50", "#7F7F7F"},
5488 {"Gray60", "#999999"},
5489 {"Grey60", "#999999"},
5490 {"Gray70", "#B3B3B3"},
5491 {"Grey70", "#B3B3B3"},
5492 {"Gray80", "#CCCCCC"},
5493 {"Grey80", "#CCCCCC"},
5494 {"Gray90", "#E5E5E5"},
5495 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 {NULL, NULL}
5497 };
5498
5499 if (!gui.in_use) /* can't do this when GUI not running */
5500 return INVALCOLOR;
5501
5502 while (name != NULL)
5503 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005504#if GTK_CHECK_VERSION(3,0,0)
5505 GdkRGBA color;
5506#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 int parsed;
5510 int i;
5511
Bram Moolenaar98921892016-02-23 17:14:37 +01005512#if GTK_CHECK_VERSION(3,0,0)
5513 parsed = gdk_rgba_parse(&color, (const gchar *)name);
5514#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 parsed = gdk_color_parse((const char *)name, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01005516#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 if (parsed)
5519 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005520#if GTK_CHECK_VERSION(3,0,0)
5521 return (guicolor_T)gui_gtk_get_pixel_from_rgb(&color);
5522#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5524 &color, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 return (guicolor_T)color.pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01005526#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 }
5528 /* add a few builtin names and try again */
5529 for (i = 0; ; ++i)
5530 {
5531 if (vimnames[i][0] == NULL)
5532 {
5533 name = NULL;
5534 break;
5535 }
5536 if (STRICMP(name, vimnames[i][0]) == 0)
5537 {
5538 name = (char_u *)vimnames[i][1];
5539 break;
5540 }
5541 }
5542 }
5543
5544 return INVALCOLOR;
5545}
5546
5547/*
5548 * Set the current text foreground color.
5549 */
5550 void
5551gui_mch_set_fg_color(guicolor_T color)
5552{
5553 gui.fgcolor->pixel = (unsigned long)color;
5554}
5555
5556/*
5557 * Set the current text background color.
5558 */
5559 void
5560gui_mch_set_bg_color(guicolor_T color)
5561{
5562 gui.bgcolor->pixel = (unsigned long)color;
5563}
5564
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005565/*
5566 * Set the current text special color.
5567 */
5568 void
5569gui_mch_set_sp_color(guicolor_T color)
5570{
5571 gui.spcolor->pixel = (unsigned long)color;
5572}
5573
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574/*
5575 * Function-like convenience macro for the sake of efficiency.
5576 */
5577#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5578 G_STMT_START{ \
5579 PangoAttribute *tmp_attr_; \
5580 tmp_attr_ = (Attribute); \
5581 tmp_attr_->start_index = (Start); \
5582 tmp_attr_->end_index = (End); \
5583 pango_attr_list_insert((AttrList), tmp_attr_); \
5584 }G_STMT_END
5585
5586 static void
5587apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5588{
5589 char_u *start = NULL;
5590 char_u *p;
5591 int uc;
5592
5593 for (p = s; p < s + len; p += utf_byte2len(*p))
5594 {
5595 uc = utf_ptr2char(p);
5596
5597 if (start == NULL)
5598 {
5599 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5600 start = p;
5601 }
5602 else if (uc < 0x80 /* optimization shortcut */
5603 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5604 {
5605 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5606 attr_list, start - s, p - s);
5607 start = NULL;
5608 }
5609 }
5610
5611 if (start != NULL)
5612 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5613 attr_list, start - s, len);
5614}
5615
5616 static int
5617count_cluster_cells(char_u *s, PangoItem *item,
5618 PangoGlyphString* glyphs, int i,
5619 int *cluster_width,
5620 int *last_glyph_rbearing)
5621{
5622 char_u *p;
5623 int next; /* glyph start index of next cluster */
5624 int start, end; /* string segment of current cluster */
5625 int width; /* real cluster width in Pango units */
5626 int uc;
5627 int cellcount = 0;
5628
5629 width = glyphs->glyphs[i].geometry.width;
5630
5631 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5632 {
5633 if (glyphs->glyphs[next].attr.is_cluster_start)
5634 break;
5635 else if (glyphs->glyphs[next].geometry.width > width)
5636 width = glyphs->glyphs[next].geometry.width;
5637 }
5638
5639 start = item->offset + glyphs->log_clusters[i];
5640 end = item->offset + ((next < glyphs->num_glyphs) ?
5641 glyphs->log_clusters[next] : item->length);
5642
5643 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5644 {
5645 uc = utf_ptr2char(p);
5646 if (uc < 0x80)
5647 ++cellcount;
5648 else if (!utf_iscomposing(uc))
5649 cellcount += utf_char2cells(uc);
5650 }
5651
5652 if (last_glyph_rbearing != NULL
5653 && cellcount > 0 && next == glyphs->num_glyphs)
5654 {
5655 PangoRectangle ink_rect;
5656 /*
5657 * If a certain combining mark had to be taken from a non-monospace
5658 * font, we have to compensate manually by adapting x_offset according
5659 * to the ink extents of the previous glyph.
5660 */
5661 pango_font_get_glyph_extents(item->analysis.font,
5662 glyphs->glyphs[i].glyph,
5663 &ink_rect, NULL);
5664
5665 if (PANGO_RBEARING(ink_rect) > 0)
5666 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5667 }
5668
5669 if (cellcount > 0)
5670 *cluster_width = width;
5671
5672 return cellcount;
5673}
5674
5675/*
5676 * If there are only combining characters in the cluster, we cannot just
5677 * change the width of the previous glyph since there is none. Therefore
5678 * some guesswork is needed.
5679 *
5680 * If ink_rect.x is negative Pango apparently has taken care of the composing
5681 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5682 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005683 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 *
5685 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5686 * the position of the previous glyph. Apparently this happens only with old
5687 * X fonts which don't provide the special combining information needed by
5688 * Pango.
5689 */
5690 static void
5691setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5692 int last_cellcount, int last_cluster_width,
5693 int last_glyph_rbearing)
5694{
5695 PangoRectangle ink_rect;
5696 PangoRectangle logical_rect;
5697 int width;
5698
5699 width = last_cellcount * gui.char_width * PANGO_SCALE;
5700 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5701 glyph->geometry.width = 0;
5702
5703 pango_font_get_glyph_extents(item->analysis.font,
5704 glyph->glyph,
5705 &ink_rect, &logical_rect);
5706 if (ink_rect.x < 0)
5707 {
5708 glyph->geometry.x_offset += last_glyph_rbearing;
5709 glyph->geometry.y_offset = logical_rect.height
5710 - (gui.char_height - p_linespace) * PANGO_SCALE;
5711 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005712 else
5713 /* If the accent width is smaller than the cluster width, position it
5714 * in the middle. */
5715 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716}
5717
Bram Moolenaar98921892016-02-23 17:14:37 +01005718#if GTK_CHECK_VERSION(3,0,0)
5719 static void
5720draw_glyph_string(int row, int col, int num_cells, int flags,
5721 PangoFont *font, PangoGlyphString *glyphs,
5722 cairo_t *cr)
5723#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 static void
5725draw_glyph_string(int row, int col, int num_cells, int flags,
5726 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005727#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728{
5729 if (!(flags & DRAW_TRANSP))
5730 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005731#if GTK_CHECK_VERSION(3,0,0)
5732 set_cairo_source_rgb_from_pixel(cr, gui.bgcolor->pixel);
5733 cairo_rectangle(cr,
5734 FILL_X(col), FILL_Y(row),
5735 num_cells * gui.char_width, gui.char_height);
5736 cairo_fill(cr);
5737#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5739
5740 gdk_draw_rectangle(gui.drawarea->window,
5741 gui.text_gc,
5742 TRUE,
5743 FILL_X(col),
5744 FILL_Y(row),
5745 num_cells * gui.char_width,
5746 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 }
5749
Bram Moolenaar98921892016-02-23 17:14:37 +01005750#if GTK_CHECK_VERSION(3,0,0)
5751 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5752 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5753 pango_cairo_show_glyph_string(cr, font, glyphs);
5754#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5756
5757 gdk_draw_glyphs(gui.drawarea->window,
5758 gui.text_gc,
5759 font,
5760 TEXT_X(col),
5761 TEXT_Y(row),
5762 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764
5765 /* redraw the contents with an offset of 1 to emulate bold */
5766 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005767#if GTK_CHECK_VERSION(3,0,0)
5768 {
5769 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5770 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5771 pango_cairo_show_glyph_string(cr, font, glyphs);
5772 }
5773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 gdk_draw_glyphs(gui.drawarea->window,
5775 gui.text_gc,
5776 font,
5777 TEXT_X(col) + 1,
5778 TEXT_Y(row),
5779 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781}
5782
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005783/*
5784 * Draw underline and undercurl at the bottom of the character cell.
5785 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005786#if GTK_CHECK_VERSION(3,0,0)
5787 static void
5788draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5789#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005790 static void
5791draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005792#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005793{
5794 int i;
5795 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005796 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005797 int y = FILL_Y(row + 1) - 1;
5798
5799 /* Undercurl: draw curl at the bottom of the character cell. */
5800 if (flags & DRAW_UNDERC)
5801 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005802#if GTK_CHECK_VERSION(3,0,0)
5803 cairo_set_line_width(cr, 1.0);
5804 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5805 set_cairo_source_rgb_from_pixel(cr, gui.spcolor->pixel);
5806 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5807 {
5808 offset = val[i % 8];
5809 cairo_line_to(cr, i, y - offset + 0.5);
5810 }
5811 cairo_stroke(cr);
5812#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005813 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5814 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5815 {
5816 offset = val[i % 8];
5817 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5818 }
5819 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005820#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005821 }
5822
5823 /* Underline: draw a line at the bottom of the character cell. */
5824 if (flags & DRAW_UNDERL)
5825 {
5826 /* When p_linespace is 0, overwrite the bottom row of pixels.
5827 * Otherwise put the line just below the character. */
5828 if (p_linespace > 1)
5829 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005830#if GTK_CHECK_VERSION(3,0,0)
5831 {
5832 cairo_set_line_width(cr, 1.0);
5833 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5834 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5835 cairo_move_to(cr, FILL_X(col), y + 0.5);
5836 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5837 cairo_stroke(cr);
5838 }
5839#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005840 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5841 FILL_X(col), y,
5842 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005843#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005844 }
5845}
5846
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847 int
5848gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5849{
5850 GdkRectangle area; /* area for clip mask */
5851 PangoGlyphString *glyphs; /* glyphs of current item */
5852 int column_offset = 0; /* column offset in cells */
5853 int i;
5854 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5855 char_u *new_conv_buf;
5856 int convlen;
5857 char_u *sp, *bp;
5858 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005859#if GTK_CHECK_VERSION(3,0,0)
5860 cairo_t *cr;
5861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862
Bram Moolenaar98921892016-02-23 17:14:37 +01005863#if GTK_CHECK_VERSION(3,0,0)
5864 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5865#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005867#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 return len;
5869
5870 if (output_conv.vc_type != CONV_NONE)
5871 {
5872 /*
5873 * Convert characters from 'encoding' to 'termencoding', which is set
5874 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5875 * prohibits changing this to something else than UTF-8 if the GUI is
5876 * in use.
5877 */
5878 convlen = len;
5879 conv_buf = string_convert(&output_conv, s, &convlen);
5880 g_return_val_if_fail(conv_buf != NULL, len);
5881
5882 /* Correct for differences in char width: some chars are
5883 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5884 * compensate for that. */
5885 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5886 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005887 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5889 {
5890 new_conv_buf = alloc(convlen + 2);
5891 if (new_conv_buf == NULL)
5892 return len;
5893 plen += bp - conv_buf;
5894 mch_memmove(new_conv_buf, conv_buf, plen);
5895 new_conv_buf[plen] = ' ';
5896 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5897 convlen - plen + 1);
5898 vim_free(conv_buf);
5899 conv_buf = new_conv_buf;
5900 ++convlen;
5901 bp = conv_buf + plen;
5902 plen = 1;
5903 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005904 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 bp += plen;
5906 }
5907 s = conv_buf;
5908 len = convlen;
5909 }
5910
5911 /*
5912 * Restrict all drawing to the current screen line in order to prevent
5913 * fuzzy font lookups from messing up the screen.
5914 */
5915 area.x = gui.border_offset;
5916 area.y = FILL_Y(row);
5917 area.width = gui.num_cols * gui.char_width;
5918 area.height = gui.char_height;
5919
Bram Moolenaar98921892016-02-23 17:14:37 +01005920#if GTK_CHECK_VERSION(3,0,0)
5921 cr = cairo_create(gui.surface);
5922 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5923 cairo_clip(cr);
5924#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5926 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928
5929 glyphs = pango_glyph_string_new();
5930
5931 /*
5932 * Optimization hack: If possible, skip the itemize and shaping process
5933 * for pure ASCII strings. This optimization is particularly effective
5934 * because Vim draws space characters to clear parts of the screen.
5935 */
5936 if (!(flags & DRAW_ITALIC)
5937 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5938 && gui.ascii_glyphs != NULL)
5939 {
5940 char_u *p;
5941
5942 for (p = s; p < s + len; ++p)
5943 if (*p & 0x80)
5944 goto not_ascii;
5945
5946 pango_glyph_string_set_size(glyphs, len);
5947
5948 for (i = 0; i < len; ++i)
5949 {
5950 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
5951 glyphs->log_clusters[i] = i;
5952 }
5953
Bram Moolenaar98921892016-02-23 17:14:37 +01005954#if GTK_CHECK_VERSION(3,0,0)
5955 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5956#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959
5960 column_offset = len;
5961 }
5962 else
5963not_ascii:
5964 {
5965 PangoAttrList *attr_list;
5966 GList *item_list;
5967 int cluster_width;
5968 int last_glyph_rbearing;
5969 int cells = 0; /* cells occupied by current cluster */
5970
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005971 /* Safety check: pango crashes when invoked with invalid utf-8
5972 * characters. */
5973 if (!utf_valid_string(s, s + len))
5974 {
5975 column_offset = len;
5976 goto skipitall;
5977 }
5978
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 /* original width of the current cluster */
5980 cluster_width = PANGO_SCALE * gui.char_width;
5981
5982 /* right bearing of the last non-composing glyph */
5983 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5984
5985 attr_list = pango_attr_list_new();
5986
5987 /* If 'guifontwide' is set then use that for double-width characters.
5988 * Otherwise just go with 'guifont' and let Pango do its thing. */
5989 if (gui.wide_font != NULL)
5990 apply_wide_font_attr(s, len, attr_list);
5991
5992 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5993 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5994 attr_list, 0, len);
5995 if (flags & DRAW_ITALIC)
5996 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5997 attr_list, 0, len);
5998 /*
5999 * Break the text into segments with consistent directional level
6000 * and shaping engine. Pure Latin text needs only a single segment,
6001 * so there's no need to worry about the loop's efficiency. Better
6002 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6003 */
6004 item_list = pango_itemize(gui.text_context,
6005 (const char *)s, 0, len, attr_list, NULL);
6006
6007 while (item_list != NULL)
6008 {
6009 PangoItem *item;
6010 int item_cells = 0; /* item length in cells */
6011
6012 item = (PangoItem *)item_list->data;
6013 item_list = g_list_delete_link(item_list, item_list);
6014 /*
6015 * Increment the bidirectional embedding level by 1 if it is not
6016 * even. An odd number means the output will be RTL, but we don't
6017 * want that since Vim handles right-to-left text on its own. It
6018 * would probably be sufficient to just set level = 0, but you can
6019 * never know :)
6020 *
6021 * Unfortunately we can't take advantage of Pango's ability to
6022 * render both LTR and RTL at the same time. In order to support
6023 * that, Vim's main screen engine would have to make use of Pango
6024 * functionality.
6025 */
6026 item->analysis.level = (item->analysis.level + 1) & (~1U);
6027
6028 /* HACK: Overrule the shape engine, we don't want shaping to be
6029 * done, because drawing the cursor would change the display. */
6030 item->analysis.shape_engine = default_shape_engine;
6031
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006032#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006033 pango_shape_full((const char *)s + item->offset, item->length,
6034 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006035#else
6036 pango_shape((const char *)s + item->offset, item->length,
6037 &item->analysis, glyphs);
6038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 /*
6040 * Fixed-width hack: iterate over the array and assign a fixed
6041 * width to each glyph, thus overriding the choice made by the
6042 * shaping engine. We use utf_char2cells() to determine the
6043 * number of cells needed.
6044 *
6045 * Also perform all kind of dark magic to get composing
6046 * characters right (and pretty too of course).
6047 */
6048 for (i = 0; i < glyphs->num_glyphs; ++i)
6049 {
6050 PangoGlyphInfo *glyph;
6051
6052 glyph = &glyphs->glyphs[i];
6053
6054 if (glyph->attr.is_cluster_start)
6055 {
6056 int cellcount;
6057
6058 cellcount = count_cluster_cells(
6059 s, item, glyphs, i, &cluster_width,
6060 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6061
6062 if (cellcount > 0)
6063 {
6064 int width;
6065
6066 width = cellcount * gui.char_width * PANGO_SCALE;
6067 glyph->geometry.x_offset +=
6068 MAX(0, width - cluster_width) / 2;
6069 glyph->geometry.width = width;
6070 }
6071 else
6072 {
6073 /* If there are only combining characters in the
6074 * cluster, we cannot just change the width of the
6075 * previous glyph since there is none. Therefore
6076 * some guesswork is needed. */
6077 setup_zero_width_cluster(item, glyph, cells,
6078 cluster_width,
6079 last_glyph_rbearing);
6080 }
6081
6082 item_cells += cellcount;
6083 cells = cellcount;
6084 }
6085 else if (i > 0)
6086 {
6087 int width;
6088
6089 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006090 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006091 * In some circumstances Pango uses a positive x_offset,
6092 * then use the width of the previous glyph for this one
6093 * and set the previous width to zero.
6094 * Otherwise we get a negative x_offset, Pango has already
6095 * positioned the combining char, keep the widths as they
6096 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006097 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006098 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006099 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006100 {
6101 glyphs->glyphs[i].geometry.width =
6102 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006103 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105 width = cells * gui.char_width * PANGO_SCALE;
6106 glyph->geometry.x_offset +=
6107 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108 }
6109 else /* i == 0 "cannot happen" */
6110 {
6111 glyph->geometry.width = 0;
6112 }
6113 }
6114
6115 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006116#if GTK_CHECK_VERSION(3,0,0)
6117 draw_glyph_string(row, col + column_offset, item_cells,
6118 flags, item->analysis.font, glyphs,
6119 cr);
6120#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 draw_glyph_string(row, col + column_offset, item_cells,
6122 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006123#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124
6125 pango_item_free(item);
6126
6127 column_offset += item_cells;
6128 }
6129
6130 pango_attr_list_unref(attr_list);
6131 }
6132
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006133skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006134 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006135#if GTK_CHECK_VERSION(3,0,0)
6136 draw_under(flags, row, col, column_offset, cr);
6137#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006138 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006139#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140
6141 pango_glyph_string_free(glyphs);
6142 vim_free(conv_buf);
6143
Bram Moolenaar98921892016-02-23 17:14:37 +01006144#if GTK_CHECK_VERSION(3,0,0)
6145 cairo_destroy(cr);
6146 if (!gui.by_signal)
6147 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6148 &area, FALSE);
6149#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152
6153 return column_offset;
6154}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155
6156/*
6157 * Return OK if the key with the termcap name "name" is supported.
6158 */
6159 int
6160gui_mch_haskey(char_u *name)
6161{
6162 int i;
6163
6164 for (i = 0; special_keys[i].key_sym != 0; i++)
6165 if (name[0] == special_keys[i].code0
6166 && name[1] == special_keys[i].code1)
6167 return OK;
6168 return FAIL;
6169}
6170
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006171#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172/*
6173 * Return the text window-id and display. Only required for X-based GUI's
6174 */
6175 int
6176gui_get_x11_windis(Window *win, Display **dis)
6177{
Bram Moolenaar98921892016-02-23 17:14:37 +01006178#if GTK_CHECK_VERSION(3,0,0)
6179 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6180#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006182#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006184#if GTK_CHECK_VERSION(3,0,0)
6185 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6186 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6187#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6189 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006190#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 return OK;
6192 }
6193
6194 *dis = NULL;
6195 *win = 0;
6196 return FAIL;
6197}
6198#endif
6199
6200#if defined(FEAT_CLIENTSERVER) \
6201 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6202
6203 Display *
6204gui_mch_get_display(void)
6205{
Bram Moolenaar98921892016-02-23 17:14:37 +01006206#if GTK_CHECK_VERSION(3,0,0)
6207 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6208 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6209#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6211 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006212#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 else
6214 return NULL;
6215}
6216#endif
6217
6218 void
6219gui_mch_beep(void)
6220{
6221#ifdef HAVE_GTK_MULTIHEAD
6222 GdkDisplay *display;
6223
Bram Moolenaar98921892016-02-23 17:14:37 +01006224# if GTK_CHECK_VERSION(3,0,0)
6225 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6226# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 display = gtk_widget_get_display(gui.mainwin);
6230 else
6231 display = gdk_display_get_default();
6232
6233 if (display != NULL)
6234 gdk_display_beep(display);
6235#else
6236 gdk_beep();
6237#endif
6238}
6239
6240 void
6241gui_mch_flash(int msec)
6242{
Bram Moolenaar98921892016-02-23 17:14:37 +01006243#if GTK_CHECK_VERSION(3,0,0)
6244 /* TODO Replace GdkGC with Cairo */
6245 (void)msec;
6246#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 GdkGCValues values;
6248 GdkGC *invert_gc;
6249
6250 if (gui.drawarea->window == NULL)
6251 return;
6252
6253 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6254 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6255 values.function = GDK_XOR;
6256 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6257 &values,
6258 GDK_GC_FOREGROUND |
6259 GDK_GC_BACKGROUND |
6260 GDK_GC_FUNCTION);
6261 gdk_gc_set_exposures(invert_gc,
6262 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6263 /*
6264 * Do a visual beep by changing back and forth in some undetermined way,
6265 * the foreground and background colors. This is due to the fact that
6266 * there can't be really any prediction about the effects of XOR on
6267 * arbitrary X11 servers. However this seems to be enough for what we
6268 * intend it to do.
6269 */
6270 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6271 TRUE,
6272 0, 0,
6273 FILL_X((int)Columns) + gui.border_offset,
6274 FILL_Y((int)Rows) + gui.border_offset);
6275
6276 gui_mch_flush();
6277 ui_delay((long)msec, TRUE); /* wait so many msec */
6278
6279 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6280 TRUE,
6281 0, 0,
6282 FILL_X((int)Columns) + gui.border_offset,
6283 FILL_Y((int)Rows) + gui.border_offset);
6284
6285 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287}
6288
6289/*
6290 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6291 */
6292 void
6293gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6294{
Bram Moolenaar98921892016-02-23 17:14:37 +01006295#if GTK_CHECK_VERSION(3,0,0)
6296 /* TODO Replace GdkGC with Cairo */
6297 (void)r; (void)c; (void)nr; (void)nc;
6298#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 GdkGCValues values;
6300 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301
6302 if (gui.drawarea->window == NULL)
6303 return;
6304
Bram Moolenaar89d40322006-08-29 15:30:07 +00006305 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6306 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 values.function = GDK_XOR;
6308 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6309 &values,
6310 GDK_GC_FOREGROUND |
6311 GDK_GC_BACKGROUND |
6312 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006313 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6314 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6316 TRUE,
6317 FILL_X(c), FILL_Y(r),
6318 (nc) * gui.char_width, (nr) * gui.char_height);
6319 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321}
6322
6323/*
6324 * Iconify the GUI window.
6325 */
6326 void
6327gui_mch_iconify(void)
6328{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330}
6331
6332#if defined(FEAT_EVAL) || defined(PROTO)
6333/*
6334 * Bring the Vim window to the foreground.
6335 */
6336 void
6337gui_mch_set_foreground(void)
6338{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340}
6341#endif
6342
6343/*
6344 * Draw a cursor without focus.
6345 */
6346 void
6347gui_mch_draw_hollow_cursor(guicolor_T color)
6348{
6349 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006350#if GTK_CHECK_VERSION(3,0,0)
6351 cairo_t *cr;
6352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353
Bram Moolenaar98921892016-02-23 17:14:37 +01006354#if GTK_CHECK_VERSION(3,0,0)
6355 if (gtk_widget_get_window(gui.drawarea) == NULL)
6356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 return;
6360
Bram Moolenaar98921892016-02-23 17:14:37 +01006361#if GTK_CHECK_VERSION(3,0,0)
6362 cr = cairo_create(gui.surface);
6363#endif
6364
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 gui_mch_set_fg_color(color);
6366
Bram Moolenaar98921892016-02-23 17:14:37 +01006367#if GTK_CHECK_VERSION(3,0,0)
6368 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 if (mb_lefthalve(gui.row, gui.col))
6373 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006374#if GTK_CHECK_VERSION(3,0,0)
6375 cairo_set_line_width(cr, 1.0);
6376 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6377 cairo_rectangle(cr,
6378 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6379 i * gui.char_width - 1, gui.char_height - 1);
6380 cairo_stroke(cr);
6381 cairo_destroy(cr);
6382#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6384 FALSE,
6385 FILL_X(gui.col), FILL_Y(gui.row),
6386 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388}
6389
6390/*
6391 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6392 * color "color".
6393 */
6394 void
6395gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6396{
Bram Moolenaar98921892016-02-23 17:14:37 +01006397#if GTK_CHECK_VERSION(3,0,0)
6398 if (gtk_widget_get_window(gui.drawarea) == NULL)
6399#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006401#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 return;
6403
6404 gui_mch_set_fg_color(color);
6405
Bram Moolenaar98921892016-02-23 17:14:37 +01006406#if GTK_CHECK_VERSION(3,0,0)
6407 {
6408 cairo_t *cr;
6409
6410 cr = cairo_create(gui.surface);
6411 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6412 cairo_rectangle(cr,
6413# ifdef FEAT_RIGHTLEFT
6414 /* vertical line should be on the right of current point */
6415 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6416# endif
6417 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6418 w, h);
6419 cairo_fill(cr);
6420 cairo_destroy(cr);
6421 }
6422#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6424 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6425 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006426# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 /* vertical line should be on the right of current point */
6428 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006429# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 FILL_X(gui.col),
6431 FILL_Y(gui.row) + gui.char_height - h,
6432 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006433#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434}
6435
6436
6437/*
6438 * Catch up with any queued X11 events. This may put keyboard input into the
6439 * input buffer, call resize call-backs, trigger timers etc. If there is
6440 * nothing in the X11 event queue (& no timers pending), then we return
6441 * immediately.
6442 */
6443 void
6444gui_mch_update(void)
6445{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006446 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6447 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448}
6449
Bram Moolenaar98921892016-02-23 17:14:37 +01006450#if GTK_CHECK_VERSION(3,0,0)
6451 static gboolean
6452#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455input_timer_cb(gpointer data)
6456{
6457 int *timed_out = (int *) data;
6458
Bram Moolenaar49325942007-05-10 19:19:59 +00006459 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 *timed_out = TRUE;
6461
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 return FALSE; /* don't happen again */
6463}
6464
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465/*
6466 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6467 * from the keyboard.
6468 * wtime == -1 Wait forever.
6469 * wtime == 0 This should never happen.
6470 * wtime > 0 Wait wtime milliseconds for a character.
6471 * Returns OK if a character was found to be available within the given time,
6472 * or FAIL otherwise.
6473 */
6474 int
6475gui_mch_wait_for_chars(long wtime)
6476{
6477 int focus;
6478 guint timer;
6479 static int timed_out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480
6481 timed_out = FALSE;
6482
6483 /* this timeout makes sure that we will return if no characters arrived in
6484 * time */
6485
6486 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006487#if GTK_CHECK_VERSION(3,0,0)
6488 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6489#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492 else
6493 timer = 0;
6494
6495 focus = gui.in_focus;
6496
6497 do
6498 {
6499 /* Stop or start blinking when focus changes */
6500 if (gui.in_focus != focus)
6501 {
6502 if (gui.in_focus)
6503 gui_mch_start_blink();
6504 else
6505 gui_mch_stop_blink();
6506 focus = gui.in_focus;
6507 }
6508
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006509#ifdef MESSAGE_QUEUE
6510 parse_queued_messages();
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006511#endif
6512
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 /*
6514 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006515 * Skip this if input is available anyway (can happen in rare
6516 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006518 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006519 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520
6521 /* Got char, return immediately */
6522 if (input_available())
6523 {
6524 if (timer != 0 && !timed_out)
Bram Moolenaar98921892016-02-23 17:14:37 +01006525#if GTK_CHECK_VERSION(3,0,0)
6526 g_source_remove(timer);
6527#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 gtk_timeout_remove(timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01006529#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 return OK;
6531 }
6532 } while (wtime < 0 || !timed_out);
6533
6534 /*
6535 * Flush all eventually pending (drawing) events.
6536 */
6537 gui_mch_update();
6538
6539 return FAIL;
6540}
6541
6542
6543/****************************************************************************
6544 * Output drawing routines.
6545 ****************************************************************************/
6546
6547
6548/* Flush any output to the screen */
6549 void
6550gui_mch_flush(void)
6551{
6552#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006553# if GTK_CHECK_VERSION(3,0,0)
6554 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6555# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006557# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6559#else
6560 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562 /* This happens to actually do what gui_mch_flush() is supposed to do,
6563 * according to the comment above. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006564#if GTK_CHECK_VERSION(3,0,0)
6565 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
6566 gdk_window_process_updates(gtk_widget_get_window(gui.drawarea), FALSE);
6567#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6569 gdk_window_process_updates(gui.drawarea->window, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01006570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571}
6572
6573/*
6574 * Clear a rectangular region of the screen from text pos (row1, col1) to
6575 * (row2, col2) inclusive.
6576 */
6577 void
6578gui_mch_clear_block(int row1, int col1, int row2, int col2)
6579{
Bram Moolenaar98921892016-02-23 17:14:37 +01006580#if GTK_CHECK_VERSION(3,0,0)
6581 if (gtk_widget_get_window(gui.drawarea) == NULL)
6582 return;
6583#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584 GdkColor color;
6585
6586 if (gui.drawarea->window == NULL)
6587 return;
6588
6589 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591
Bram Moolenaar98921892016-02-23 17:14:37 +01006592#if GTK_CHECK_VERSION(3,0,0)
6593 {
6594 /* Add one pixel to the far right column in case a double-stroked
6595 * bold glyph may sit there. */
6596 const GdkRectangle rect = {
6597 FILL_X(col1), FILL_Y(row1),
6598 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6599 (row2 - row1 + 1) * gui.char_height
6600 };
6601 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6602 cairo_t * const cr = cairo_create(gui.surface);
6603 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6604 if (pat != NULL)
6605 cairo_set_source(cr, pat);
6606 else
6607 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6608 gdk_cairo_rectangle(cr, &rect);
6609 cairo_fill(cr);
6610 cairo_destroy(cr);
6611
6612 if (!gui.by_signal)
6613 gdk_window_invalidate_rect(win, &rect, FALSE);
6614 }
6615#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 gdk_gc_set_foreground(gui.text_gc, &color);
6617
6618 /* Clear one extra pixel at the far right, for when bold characters have
6619 * spilled over to the window border. */
6620 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6621 FILL_X(col1), FILL_Y(row1),
6622 (col2 - col1 + 1) * gui.char_width
6623 + (col2 == Columns - 1),
6624 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006625#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626}
6627
Bram Moolenaar98921892016-02-23 17:14:37 +01006628#if GTK_CHECK_VERSION(3,0,0)
6629 static void
6630gui_gtk_window_clear(GdkWindow *win)
6631{
6632 const GdkRectangle rect = {
6633 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6634 };
6635 cairo_t * const cr = cairo_create(gui.surface);
6636 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6637 if (pat != NULL)
6638 cairo_set_source(cr, pat);
6639 else
6640 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6641 gdk_cairo_rectangle(cr, &rect);
6642 cairo_fill(cr);
6643 cairo_destroy(cr);
6644
6645 if (!gui.by_signal)
6646 gdk_window_invalidate_rect(win, &rect, FALSE);
6647}
6648#endif
6649
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 void
6651gui_mch_clear_all(void)
6652{
Bram Moolenaar98921892016-02-23 17:14:37 +01006653#if GTK_CHECK_VERSION(3,0,0)
6654 if (gtk_widget_get_window(gui.drawarea) != NULL)
6655 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6656#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 if (gui.drawarea->window != NULL)
6658 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660}
6661
Bram Moolenaar98921892016-02-23 17:14:37 +01006662#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663/*
6664 * Redraw any text revealed by scrolling up/down.
6665 */
6666 static void
6667check_copy_area(void)
6668{
6669 GdkEvent *event;
6670 int expose_count;
6671
6672 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6673 return;
6674
6675 /* Avoid redrawing the cursor while scrolling or it'll end up where
6676 * we don't want it to be. I'm not sure if it's correct to call
6677 * gui_dont_update_cursor() at this point but it works as a quick
6678 * fix for now. */
6679 gui_dont_update_cursor();
6680
6681 do
6682 {
6683 /* Wait to check whether the scroll worked or not. */
6684 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6685
6686 if (event == NULL)
6687 break; /* received NoExpose event */
6688
6689 gui_redraw(event->expose.area.x, event->expose.area.y,
6690 event->expose.area.width, event->expose.area.height);
6691
6692 expose_count = event->expose.count;
6693 gdk_event_free(event);
6694 }
6695 while (expose_count > 0); /* more events follow */
6696
6697 gui_can_update_cursor();
6698}
Bram Moolenaar98921892016-02-23 17:14:37 +01006699#endif /* !GTK_CHECK_VERSION(3,0,0) */
6700
6701#if GTK_CHECK_VERSION(3,0,0)
6702 static void
6703gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6704 int src_x, int src_y,
6705 int width, int height)
6706{
6707 cairo_t * const cr = cairo_create(gui.surface);
6708
6709 cairo_rectangle(cr, dest_x, dest_y, width, height);
6710 cairo_clip(cr);
6711 cairo_push_group(cr);
6712 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6713 cairo_paint(cr);
6714 cairo_pop_group_to_source(cr);
6715 cairo_paint(cr);
6716
6717 cairo_destroy(cr);
6718}
6719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720
6721/*
6722 * Delete the given number of lines from the given row, scrolling up any
6723 * text further down within the scroll region.
6724 */
6725 void
6726gui_mch_delete_lines(int row, int num_lines)
6727{
Bram Moolenaar98921892016-02-23 17:14:37 +01006728#if GTK_CHECK_VERSION(3,0,0)
6729 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6730 const int nrows = gui.scroll_region_bot - row + 1;
6731 const int src_nrows = nrows - num_lines;
6732
6733 gui_gtk_surface_copy_rect(
6734 FILL_X(gui.scroll_region_left), FILL_Y(row),
6735 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6736 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6737 gui_clear_block(
6738 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6739 gui.scroll_region_bot, gui.scroll_region_right);
6740 gui_gtk3_redraw(
6741 FILL_X(gui.scroll_region_left), FILL_Y(row),
6742 gui.char_width * ncols + 1, gui.char_height * nrows);
6743 if (!gui.by_signal)
6744 gtk_widget_queue_draw_area(gui.drawarea,
6745 FILL_X(gui.scroll_region_left), FILL_Y(row),
6746 gui.char_width * ncols + 1, gui.char_height * nrows);
6747#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6749 return; /* Can't see the window */
6750
6751 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6752 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6753
6754 /* copy one extra pixel, for when bold has spilled over */
6755 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6756 FILL_X(gui.scroll_region_left), FILL_Y(row),
6757 gui.drawarea->window,
6758 FILL_X(gui.scroll_region_left),
6759 FILL_Y(row + num_lines),
6760 gui.char_width * (gui.scroll_region_right
6761 - gui.scroll_region_left + 1) + 1,
6762 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6763
6764 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6765 gui.scroll_region_left,
6766 gui.scroll_region_bot, gui.scroll_region_right);
6767 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006768#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769}
6770
6771/*
6772 * Insert the given number of lines before the given row, scrolling down any
6773 * following text within the scroll region.
6774 */
6775 void
6776gui_mch_insert_lines(int row, int num_lines)
6777{
Bram Moolenaar98921892016-02-23 17:14:37 +01006778#if GTK_CHECK_VERSION(3,0,0)
6779 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6780 const int nrows = gui.scroll_region_bot - row + 1;
6781 const int src_nrows = nrows - num_lines;
6782
6783 gui_gtk_surface_copy_rect(
6784 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6785 FILL_X(gui.scroll_region_left), FILL_Y(row),
6786 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6787 gui_mch_clear_block(
6788 row, gui.scroll_region_left,
6789 row + num_lines - 1, gui.scroll_region_right);
6790 gui_gtk3_redraw(
6791 FILL_X(gui.scroll_region_left), FILL_Y(row),
6792 gui.char_width * ncols + 1, gui.char_height * nrows);
6793 if (!gui.by_signal)
6794 gtk_widget_queue_draw_area(gui.drawarea,
6795 FILL_X(gui.scroll_region_left), FILL_Y(row),
6796 gui.char_width * ncols + 1, gui.char_height * nrows);
6797#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6799 return; /* Can't see the window */
6800
6801 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6802 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6803
6804 /* copy one extra pixel, for when bold has spilled over */
6805 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6806 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6807 gui.drawarea->window,
6808 FILL_X(gui.scroll_region_left), FILL_Y(row),
6809 gui.char_width * (gui.scroll_region_right
6810 - gui.scroll_region_left + 1) + 1,
6811 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6812
6813 gui_clear_block(row, gui.scroll_region_left,
6814 row + num_lines - 1, gui.scroll_region_right);
6815 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006816#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817}
6818
6819/*
6820 * X Selection stuff, for cutting and pasting text to other windows.
6821 */
6822 void
6823clip_mch_request_selection(VimClipboard *cbd)
6824{
6825 GdkAtom target;
6826 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006827 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828
6829 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6830 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006831 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6832 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 received_selection = RS_NONE;
6834 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6835
6836 gtk_selection_convert(gui.drawarea,
6837 cbd->gtk_sel_atom, target,
6838 (guint32)GDK_CURRENT_TIME);
6839
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006840 /* Hack: Wait up to three seconds for the selection. A hang was
6841 * noticed here when using the netrw plugin combined with ":gui"
6842 * during the FocusGained event. */
6843 start = time(NULL);
6844 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006845 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846
6847 if (received_selection != RS_FAIL)
6848 return;
6849 }
6850
6851 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006852#if GTK_CHECK_VERSION(3,0,0)
6853 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6854 cbd);
6855#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006856 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858}
6859
6860/*
6861 * Disown the selection.
6862 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006864clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006866 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868}
6869
6870/*
6871 * Own the selection and return OK if it worked.
6872 */
6873 int
6874clip_mch_own_selection(VimClipboard *cbd)
6875{
6876 int success;
6877
6878 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006879 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880 gui_mch_update();
6881 return (success) ? OK : FAIL;
6882}
6883
6884/*
6885 * Send the current selection to the clipboard. Do nothing for X because we
6886 * will fill in the selection only when requested by another app.
6887 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006889clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890{
6891}
6892
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006893 int
6894clip_gtk_owner_exists(VimClipboard *cbd)
6895{
6896 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6897}
6898
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899
6900#if defined(FEAT_MENU) || defined(PROTO)
6901/*
6902 * Make a menu item appear either active or not active (grey or not grey).
6903 */
6904 void
6905gui_mch_menu_grey(vimmenu_T *menu, int grey)
6906{
6907 if (menu->id == NULL)
6908 return;
6909
6910 if (menu_is_separator(menu->name))
6911 grey = TRUE;
6912
6913 gui_mch_menu_hidden(menu, FALSE);
6914 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006915# if GTK_CHECK_VERSION(3,0,0)
6916 if (!gtk_widget_get_sensitive(menu->id) == !grey)
6917# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01006919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920 {
6921 gtk_widget_set_sensitive(menu->id, !grey);
6922 gui_mch_update();
6923 }
6924}
6925
6926/*
6927 * Make menu item hidden or not hidden.
6928 */
6929 void
6930gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6931{
6932 if (menu->id == 0)
6933 return;
6934
6935 if (hidden)
6936 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006937# if GTK_CHECK_VERSION(3,0,0)
6938 if (gtk_widget_get_visible(menu->id))
6939# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006941# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 {
6943 gtk_widget_hide(menu->id);
6944 gui_mch_update();
6945 }
6946 }
6947 else
6948 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006949# if GTK_CHECK_VERSION(3,0,0)
6950 if (!gtk_widget_get_visible(menu->id))
6951# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006953# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 {
6955 gtk_widget_show(menu->id);
6956 gui_mch_update();
6957 }
6958 }
6959}
6960
6961/*
6962 * This is called after setting all the menus to grey/hidden or not.
6963 */
6964 void
6965gui_mch_draw_menubar(void)
6966{
6967 /* just make sure that the visual changes get effect immediately */
6968 gui_mch_update();
6969}
6970#endif /* FEAT_MENU */
6971
6972/*
6973 * Scrollbar stuff.
6974 */
6975 void
6976gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6977{
6978 if (sb->id == NULL)
6979 return;
6980
Bram Moolenaar98921892016-02-23 17:14:37 +01006981#if GTK_CHECK_VERSION(3,0,0)
6982 gtk_widget_set_visible(sb->id, flag);
6983#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 if (flag)
6985 gtk_widget_show(sb->id);
6986 else
6987 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006990 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991}
6992
6993
6994/*
6995 * Return the RGB value of a pixel as long.
6996 */
6997 long_u
6998gui_mch_get_rgb(guicolor_T pixel)
6999{
7000 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01007001#if GTK_CHECK_VERSION(3,0,0)
7002 GdkRGBA rgba;
7003
7004 gui_gtk_get_rgb_from_pixel(pixel, &rgba);
7005
7006 color.red = rgba.red * 65535;
7007 color.green = rgba.green * 65535;
7008 color.blue = rgba.blue * 65535;
7009#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7011 (unsigned long)pixel, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01007012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013
7014 return (((unsigned)color.red & 0xff00) << 8)
7015 | ((unsigned)color.green & 0xff00)
7016 | (((unsigned)color.blue & 0xff00) >> 8);
7017}
7018
7019/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007020 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007022 void
7023gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024{
Bram Moolenaar98921892016-02-23 17:14:37 +01007025#if GTK_CHECK_VERSION(3,0,0)
7026 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7027#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007028 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030}
7031
7032 void
7033gui_mch_setmouse(int x, int y)
7034{
7035 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7036 * internal GDK mechanism present to accomplish this. (and for good
7037 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007038#if GTK_CHECK_VERSION(3,0,0)
7039 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7040 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7041 0, 0, 0U, 0U, x, y);
7042#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7044 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7045 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047}
7048
7049
7050#ifdef FEAT_MOUSESHAPE
7051/* The last set mouse pointer shape is remembered, to be used when it goes
7052 * from hidden to not hidden. */
7053static int last_shape = 0;
7054#endif
7055
7056/*
7057 * Use the blank mouse pointer or not.
7058 *
7059 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7060 */
7061 void
7062gui_mch_mousehide(int hide)
7063{
7064 if (gui.pointer_hidden != hide)
7065 {
7066 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007067#if GTK_CHECK_VERSION(3,0,0)
7068 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7069#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 {
7073 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007074#if GTK_CHECK_VERSION(3,0,0)
7075 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7076 gui.blank_pointer);
7077#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 else
7081#ifdef FEAT_MOUSESHAPE
7082 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007083#elif GTK_CHECK_VERSION(3,0,0)
7084 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085#else
7086 gdk_window_set_cursor(gui.drawarea->window, NULL);
7087#endif
7088 }
7089 }
7090}
7091
7092#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7093
7094/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7095 * misc2.c! */
7096static const int mshape_ids[] =
7097{
7098 GDK_LEFT_PTR, /* arrow */
7099 GDK_CURSOR_IS_PIXMAP, /* blank */
7100 GDK_XTERM, /* beam */
7101 GDK_SB_V_DOUBLE_ARROW, /* updown */
7102 GDK_SIZING, /* udsizing */
7103 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7104 GDK_SIZING, /* lrsizing */
7105 GDK_WATCH, /* busy */
7106 GDK_X_CURSOR, /* no */
7107 GDK_CROSSHAIR, /* crosshair */
7108 GDK_HAND1, /* hand1 */
7109 GDK_HAND2, /* hand2 */
7110 GDK_PENCIL, /* pencil */
7111 GDK_QUESTION_ARROW, /* question */
7112 GDK_RIGHT_PTR, /* right-arrow */
7113 GDK_CENTER_PTR, /* up-arrow */
7114 GDK_LEFT_PTR /* last one */
7115};
7116
7117 void
7118mch_set_mouse_shape(int shape)
7119{
7120 int id;
7121 GdkCursor *c;
7122
Bram Moolenaar98921892016-02-23 17:14:37 +01007123# if GTK_CHECK_VERSION(3,0,0)
7124 if (gtk_widget_get_window(gui.drawarea) == NULL)
7125# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007127# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128 return;
7129
7130 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007131# if GTK_CHECK_VERSION(3,0,0)
7132 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7133 gui.blank_pointer);
7134# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007136# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 else
7138 {
7139 if (shape >= MSHAPE_NUMBERED)
7140 {
7141 id = shape - MSHAPE_NUMBERED;
7142 if (id >= GDK_LAST_CURSOR)
7143 id = GDK_LEFT_PTR;
7144 else
7145 id &= ~1; /* they are always even (why?) */
7146 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007147 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007149 else
7150 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151# ifdef HAVE_GTK_MULTIHEAD
7152 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007153 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007155 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007157# if GTK_CHECK_VERSION(3,0,0)
7158 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7159# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007161# endif
7162# if GTK_CHECK_VERSION(3,0,0)
7163 g_object_unref(G_OBJECT(c));
7164# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007166# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167 }
7168 if (shape != MSHAPE_HIDE)
7169 last_shape = shape;
7170}
7171#endif /* FEAT_MOUSESHAPE */
7172
7173
7174#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7175/*
7176 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7177 * scaled down if the current font is not big enough, or scaled up if the image
7178 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7179 * will be cut off if the current font is not big enough, or centered if it's
7180 * too small.
7181 */
7182# define SIGN_WIDTH (2 * gui.char_width)
7183# define SIGN_HEIGHT (gui.char_height)
7184# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7185
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 void
7187gui_mch_drawsign(int row, int col, int typenr)
7188{
7189 GdkPixbuf *sign;
7190
7191 sign = (GdkPixbuf *)sign_get_image(typenr);
7192
Bram Moolenaar98921892016-02-23 17:14:37 +01007193# if GTK_CHECK_VERSION(3,0,0)
7194 if (sign != NULL && gui.drawarea != NULL
7195 && gtk_widget_get_window(gui.drawarea) != NULL)
7196# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007198# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 {
7200 int width;
7201 int height;
7202 int xoffset;
7203 int yoffset;
7204 int need_scale;
7205
7206 width = gdk_pixbuf_get_width(sign);
7207 height = gdk_pixbuf_get_height(sign);
7208 /*
7209 * Decide whether we need to scale. Allow one pixel of border
7210 * width to be cut off, in order to avoid excessive scaling for
7211 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007212 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 */
7214 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007215 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 || (width < 3 * SIGN_WIDTH / 4
7217 && height < 3 * SIGN_HEIGHT / 4));
7218 if (need_scale)
7219 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007220 double aspect;
7221 int w = width;
7222 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223
7224 /* Keep the original aspect ratio */
7225 aspect = (double)height / (double)width;
7226 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7227 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007228 if (((double)(MAX(height, SIGN_HEIGHT)) /
7229 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7230 {
7231 /* Change the aspect ratio by at most 15% to fill the
7232 * available space completly. */
7233 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7234 height = MIN(height, SIGN_HEIGHT);
7235 }
7236 else
7237 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007239 if (w == width && h == height)
7240 {
7241 /* no change in dimensions; don't decrease reference counter
7242 * (below) */
7243 need_scale = FALSE;
7244 }
7245 else
7246 {
7247 /* This doesn't seem to be worth caching, and doing so would
7248 * complicate the code quite a bit. */
7249 sign = gdk_pixbuf_scale_simple(sign, width, height,
7250 GDK_INTERP_BILINEAR);
7251 if (sign == NULL)
7252 return; /* out of memory */
7253 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254 }
7255
7256 /* The origin is the upper-left corner of the pixmap. Therefore
7257 * these offset may become negative if the pixmap is smaller than
7258 * the 2x1 cells reserved for the sign icon. */
7259 xoffset = (width - SIGN_WIDTH) / 2;
7260 yoffset = (height - SIGN_HEIGHT) / 2;
7261
Bram Moolenaar98921892016-02-23 17:14:37 +01007262# if GTK_CHECK_VERSION(3,0,0)
7263 {
7264 cairo_t *cr;
7265 cairo_surface_t *bg_surf;
7266 cairo_t *bg_cr;
7267 cairo_surface_t *sign_surf;
7268 cairo_t *sign_cr;
7269
7270 cr = cairo_create(gui.surface);
7271
7272 bg_surf = cairo_surface_create_similar(gui.surface,
7273 cairo_surface_get_content(gui.surface),
7274 SIGN_WIDTH, SIGN_HEIGHT);
7275 bg_cr = cairo_create(bg_surf);
7276 set_cairo_source_rgb_from_pixel(bg_cr, gui.bgcolor->pixel);
7277 cairo_paint(bg_cr);
7278
7279 sign_surf = cairo_surface_create_similar(gui.surface,
7280 cairo_surface_get_content(gui.surface),
7281 SIGN_WIDTH, SIGN_HEIGHT);
7282 sign_cr = cairo_create(sign_surf);
7283 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7284 cairo_paint(sign_cr);
7285
7286 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7287 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7288 cairo_paint(sign_cr);
7289
7290 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7291 cairo_paint(cr);
7292
7293 cairo_destroy(sign_cr);
7294 cairo_surface_destroy(sign_surf);
7295 cairo_destroy(bg_cr);
7296 cairo_surface_destroy(bg_surf);
7297 cairo_destroy(cr);
7298
7299 if (!gui.by_signal)
7300 gtk_widget_queue_draw_area(gui.drawarea,
7301 FILL_X(col), FILL_Y(col), width, height);
7302
7303 }
7304# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007305 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7306
7307 gdk_draw_rectangle(gui.drawarea->window,
7308 gui.text_gc,
7309 TRUE,
7310 FILL_X(col),
7311 FILL_Y(row),
7312 SIGN_WIDTH,
7313 SIGN_HEIGHT);
7314
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 gdk_pixbuf_render_to_drawable_alpha(sign,
7316 gui.drawarea->window,
7317 MAX(0, xoffset),
7318 MAX(0, yoffset),
7319 FILL_X(col) - MIN(0, xoffset),
7320 FILL_Y(row) - MIN(0, yoffset),
7321 MIN(width, SIGN_WIDTH),
7322 MIN(height, SIGN_HEIGHT),
7323 GDK_PIXBUF_ALPHA_BILEVEL,
7324 127,
7325 GDK_RGB_DITHER_NORMAL,
7326 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007327# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 if (need_scale)
7329 g_object_unref(sign);
7330 }
7331}
7332
7333 void *
7334gui_mch_register_sign(char_u *signfile)
7335{
7336 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7337 {
7338 GdkPixbuf *sign;
7339 GError *error = NULL;
7340 char_u *message;
7341
7342 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7343
7344 if (error == NULL)
7345 return sign;
7346
7347 message = (char_u *)error->message;
7348
7349 if (message != NULL && input_conv.vc_type != CONV_NONE)
7350 message = string_convert(&input_conv, message, NULL);
7351
7352 if (message != NULL)
7353 {
7354 /* The error message is already translated and will be more
7355 * descriptive than anything we could possibly do ourselves. */
7356 EMSG2("E255: %s", message);
7357
7358 if (input_conv.vc_type != CONV_NONE)
7359 vim_free(message);
7360 }
7361 g_error_free(error);
7362 }
7363
7364 return NULL;
7365}
7366
7367 void
7368gui_mch_destroy_sign(void *sign)
7369{
7370 if (sign != NULL)
7371 g_object_unref(sign);
7372}
7373
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374#endif /* FEAT_SIGN_ICONS */