blob: 359bf64fe9add279fa1d6a0e149c964c44f8ea86 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
89# ifdef WIN3264
90# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
105#ifdef HAVE_GTK_MULTIHEAD
106# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
107 gtk_widget_get_display(gui.mainwin), atom)
108#else
109# define GET_X_ATOM(atom) ((Atom)(atom))
110#endif
111
112/* Selection type distinguishers */
113enum
114{
115 TARGET_TYPE_NONE,
116 TARGET_UTF8_STRING,
117 TARGET_STRING,
118 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000119 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 TARGET_TEXT,
121 TARGET_TEXT_URI_LIST,
122 TARGET_TEXT_PLAIN,
123 TARGET_VIM,
124 TARGET_VIMENC
125};
126
127/*
128 * Table of selection targets supported by Vim.
129 * Note: Order matters, preferred types should come first.
130 */
131static const GtkTargetEntry selection_targets[] =
132{
133 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
134 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000135 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
138 {"TEXT", 0, TARGET_TEXT},
139 {"STRING", 0, TARGET_STRING}
140};
141#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
142
143#ifdef FEAT_DND
144/*
145 * Table of DnD targets supported by Vim.
146 * Note: Order matters, preferred types should come first.
147 */
148static const GtkTargetEntry dnd_targets[] =
149{
150 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000151 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 {"STRING", 0, TARGET_STRING},
154 {"text/plain", 0, TARGET_TEXT_PLAIN}
155};
156# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
157#endif
158
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160/*
161 * "Monospace" is a standard font alias that should be present
162 * on all proper Pango/fontconfig installations.
163 */
164# define DEFAULT_FONT "Monospace 10"
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
167/*
168 * Atoms used to communicate save-yourself from the X11 session manager. There
169 * is no need to move them into the GUI struct, since they should be constant.
170 */
171static GdkAtom wm_protocols_atom = GDK_NONE;
172static GdkAtom save_yourself_atom = GDK_NONE;
173#endif
174
175/*
176 * Atoms used to control/reference X11 selections.
177 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000178static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183/*
184 * Keycodes recognized by vim.
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same
186 * change!
187 */
188static struct special_key
189{
190 guint key_sym;
191 char_u code0;
192 char_u code1;
193}
194const special_keys[] =
195{
196 {GDK_Up, 'k', 'u'},
197 {GDK_Down, 'k', 'd'},
198 {GDK_Left, 'k', 'l'},
199 {GDK_Right, 'k', 'r'},
200 {GDK_F1, 'k', '1'},
201 {GDK_F2, 'k', '2'},
202 {GDK_F3, 'k', '3'},
203 {GDK_F4, 'k', '4'},
204 {GDK_F5, 'k', '5'},
205 {GDK_F6, 'k', '6'},
206 {GDK_F7, 'k', '7'},
207 {GDK_F8, 'k', '8'},
208 {GDK_F9, 'k', '9'},
209 {GDK_F10, 'k', ';'},
210 {GDK_F11, 'F', '1'},
211 {GDK_F12, 'F', '2'},
212 {GDK_F13, 'F', '3'},
213 {GDK_F14, 'F', '4'},
214 {GDK_F15, 'F', '5'},
215 {GDK_F16, 'F', '6'},
216 {GDK_F17, 'F', '7'},
217 {GDK_F18, 'F', '8'},
218 {GDK_F19, 'F', '9'},
219 {GDK_F20, 'F', 'A'},
220 {GDK_F21, 'F', 'B'},
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
222 {GDK_F22, 'F', 'C'},
223 {GDK_F23, 'F', 'D'},
224 {GDK_F24, 'F', 'E'},
225 {GDK_F25, 'F', 'F'},
226 {GDK_F26, 'F', 'G'},
227 {GDK_F27, 'F', 'H'},
228 {GDK_F28, 'F', 'I'},
229 {GDK_F29, 'F', 'J'},
230 {GDK_F30, 'F', 'K'},
231 {GDK_F31, 'F', 'L'},
232 {GDK_F32, 'F', 'M'},
233 {GDK_F33, 'F', 'N'},
234 {GDK_F34, 'F', 'O'},
235 {GDK_F35, 'F', 'P'},
236#ifdef SunXK_F36
237 {SunXK_F36, 'F', 'Q'},
238 {SunXK_F37, 'F', 'R'},
239#endif
240 {GDK_Help, '%', '1'},
241 {GDK_Undo, '&', '8'},
242 {GDK_BackSpace, 'k', 'b'},
243 {GDK_Insert, 'k', 'I'},
244 {GDK_Delete, 'k', 'D'},
245 {GDK_3270_BackTab, 'k', 'B'},
246 {GDK_Clear, 'k', 'C'},
247 {GDK_Home, 'k', 'h'},
248 {GDK_End, '@', '7'},
249 {GDK_Prior, 'k', 'P'},
250 {GDK_Next, 'k', 'N'},
251 {GDK_Print, '%', '9'},
252 /* Keypad keys: */
253 {GDK_KP_Left, 'k', 'l'},
254 {GDK_KP_Right, 'k', 'r'},
255 {GDK_KP_Up, 'k', 'u'},
256 {GDK_KP_Down, 'k', 'd'},
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
259 {GDK_KP_Home, 'K', '1'},
260 {GDK_KP_End, 'K', '4'},
261 {GDK_KP_Prior, 'K', '3'}, /* page up */
262 {GDK_KP_Next, 'K', '5'}, /* page down */
263
264 {GDK_KP_Add, 'K', '6'},
265 {GDK_KP_Subtract, 'K', '7'},
266 {GDK_KP_Divide, 'K', '8'},
267 {GDK_KP_Multiply, 'K', '9'},
268 {GDK_KP_Enter, 'K', 'A'},
269 {GDK_KP_Decimal, 'K', 'B'},
270
271 {GDK_KP_0, 'K', 'C'},
272 {GDK_KP_1, 'K', 'D'},
273 {GDK_KP_2, 'K', 'E'},
274 {GDK_KP_3, 'K', 'F'},
275 {GDK_KP_4, 'K', 'G'},
276 {GDK_KP_5, 'K', 'H'},
277 {GDK_KP_6, 'K', 'I'},
278 {GDK_KP_7, 'K', 'J'},
279 {GDK_KP_8, 'K', 'K'},
280 {GDK_KP_9, 'K', 'L'},
281
282 /* End of list marker: */
283 {0, 0, 0}
284};
285
286/*
287 * Flags for command line options table below.
288 */
289#define ARG_FONT 1
290#define ARG_GEOMETRY 2
291#define ARG_REVERSE 3
292#define ARG_NOREVERSE 4
293#define ARG_BACKGROUND 5
294#define ARG_FOREGROUND 6
295#define ARG_ICONIC 7
296#define ARG_ROLE 8
297#define ARG_NETBEANS 9
298#define ARG_XRM 10 /* ignored */
299#define ARG_MENUFONT 11 /* ignored */
300#define ARG_INDEX_MASK 0x00ff
301#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
302#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
303#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
304#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
305#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
306
307/*
308 * This table holds all the X GUI command line options allowed. This includes
309 * the standard ones so that we can skip them when Vim is started without the
310 * GUI (but the GUI might start up later).
311 *
312 * When changing this, also update doc/gui_x11.txt and the usage message!!!
313 */
314typedef struct
315{
316 const char *name;
317 unsigned int flags;
318}
319cmdline_option_T;
320
321static const cmdline_option_T cmdline_options[] =
322{
323 /* We handle these options ourselves */
324 {"-fn", ARG_FONT|ARG_HAS_VALUE},
325 {"-font", ARG_FONT|ARG_HAS_VALUE},
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
328 {"-rv", ARG_REVERSE},
329 {"-reverse", ARG_REVERSE},
330 {"+rv", ARG_NOREVERSE},
331 {"+reverse", ARG_NOREVERSE},
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
336 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef FEAT_NETBEANS_INTG
339 {"-nb", ARG_NETBEANS}, /* non-standard value format */
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 /* Arguments handled by GTK (and GNOME) internally. */
345 {"--g-fatal-warnings", ARG_FOR_GTK},
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--sync", ARG_FOR_GTK},
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#ifdef FEAT_GUI_GNOME
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
362 {"--sm-disable", ARG_FOR_GTK},
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--oaf-private", ARG_FOR_GTK},
366 {"--enable-sound", ARG_FOR_GTK},
367 {"--disable-sound", ARG_FOR_GTK},
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
372# if 0 /* conflicts with Vim's own --version argument */
373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
374# endif
375 {"--disable-crash-dialog", ARG_FOR_GTK},
376#endif
377 {NULL, 0}
378};
379
380static int gui_argc = 0;
381static char **gui_argv = NULL;
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
385static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000386static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388static int found_iconic_arg = FALSE;
389
390#ifdef FEAT_GUI_GNOME
391/*
392 * Can't use Gnome if --socketid given
393 */
394static int using_gnome = 0;
395#else
396# define using_gnome 0
397#endif
398
399/*
400 * Parse the GUI related command-line arguments. Any arguments used are
401 * deleted from argv, and *argc is decremented accordingly. This is called
402 * when vim is started, whether or not the GUI has been started.
403 */
404 void
405gui_mch_prepare(int *argc, char **argv)
406{
407 const cmdline_option_T *option;
408 int i = 0;
409 int len = 0;
410
411#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
412 /*
413 * Determine the command used to invoke Vim, to be passed as restart
414 * command to the session manager. If argv[0] contains any directory
415 * components try building an absolute path, otherwise leave it as is.
416 */
417 restart_command = argv[0];
418
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
420 {
421 char_u buf[MAXPATHL];
422
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000424 {
425 abs_restart_command = (char *)vim_strsave(buf);
426 restart_command = abs_restart_command;
427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429#endif
430
431 /*
432 * Move all the entries in argv which are relevant to GTK+ and GNOME
433 * into gui_argv. Freed later in gui_mch_init().
434 */
435 gui_argc = 0;
436 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
444 /* Don't waste CPU cycles on non-option arguments. */
445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
451 /* Look for argv[i] in cmdline_options[] table. */
452 for (option = &cmdline_options[0]; option->name != NULL; ++option)
453 {
454 len = strlen(option->name);
455
456 if (strncmp(argv[i], option->name, len) == 0)
457 {
458 if (argv[i][len] == '\0')
459 break;
460 /* allow --foo=bar style */
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
464 /* darn, -nb has non-standard syntax */
465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
467 break;
468#endif
469 }
470 else if ((option->flags & ARG_COMPAT_LONG)
471 && strcmp(argv[i], option->name + 1) == 0)
472 {
473 /* Replace the standard X arguments "-name" and "-display"
474 * with their GNU-style long option counterparts. */
475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
479 if (option->name == NULL) /* no match */
480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
487 /* Move the argument into gui_argv, which
488 * will later be passed to gtk_init_check() */
489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
495 /* Extract the option's value if there is one.
496 * Accept both "--foo bar" and "--foo=bar" style. */
497 if (option->flags & ARG_HAS_VALUE)
498 {
499 if (argv[i][len] == '=')
500 value = &argv[i][len + 1];
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
502 value = argv[i + 1];
503 }
504
505 /* Check for options handled by Vim itself */
506 switch (option->flags & ARG_INDEX_MASK)
507 {
508 case ARG_REVERSE:
509 found_reverse_arg = TRUE;
510 break;
511 case ARG_NOREVERSE:
512 found_reverse_arg = FALSE;
513 break;
514 case ARG_FONT:
515 font_argument = value;
516 break;
517 case ARG_GEOMETRY:
518 if (value != NULL)
519 gui.geom = vim_strsave((char_u *)value);
520 break;
521 case ARG_BACKGROUND:
522 background_argument = value;
523 break;
524 case ARG_FOREGROUND:
525 foreground_argument = value;
526 break;
527 case ARG_ICONIC:
528 found_iconic_arg = TRUE;
529 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 case ARG_ROLE:
531 role_argument = value; /* used later in gui_mch_open() */
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 gui.dofork = FALSE; /* don't fork() when starting GUI */
536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
544 /* These arguments make gnome_program_init() print a message and exit.
545 * Must start the GUI for this, otherwise ":gui" will exit later! */
546 if (option->flags & ARG_NEEDS_GUI)
547 gui.starting = TRUE;
548
549 if (option->flags & ARG_KEEP)
550 ++i;
551 else
552 {
553 /* Remove the flag from the argument vector. */
554 if (--*argc > i)
555 {
556 int n_strip = 1;
557
558 /* Move the argument's value as well, if there is one. */
559 if ((option->flags & ARG_HAS_VALUE)
560 && argv[i][len] != '='
561 && strcmp(argv[i + 1], "--") != 0)
562 {
563 ++n_strip;
564 --*argc;
565 if (option->flags & ARG_FOR_GTK)
566 gui_argv[gui_argc++] = argv[i + 1];
567 }
568
569 if (*argc > i)
570 mch_memmove(&argv[i], &argv[i + n_strip],
571 (*argc - i) * sizeof(char *));
572 }
573 argv[*argc] = NULL;
574 }
575 }
576
577 gui_argv[gui_argc] = NULL;
578}
579
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000580#if defined(EXITFREE) || defined(PROTO)
581 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100582gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000583{
584 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000585#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
586 vim_free(abs_restart_command);
587#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588}
589#endif
590
Bram Moolenaar98921892016-02-23 17:14:37 +0100591#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592/*
593 * This should be maybe completely removed.
594 * Doesn't seem possible, since check_copy_area() relies on
595 * this information. --danielk
596 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000598visibility_event(GtkWidget *widget UNUSED,
599 GdkEventVisibility *event,
600 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601{
602 gui.visibility = event->state;
603 /*
604 * When we do an gdk_window_copy_area(), and the window is partially
605 * obscured, we want to receive an event to tell us whether it worked
606 * or not.
607 */
608 if (gui.text_gc != NULL)
609 gdk_gc_set_exposures(gui.text_gc,
610 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
611 return FALSE;
612}
Bram Moolenaar98921892016-02-23 17:14:37 +0100613#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
615/*
616 * Redraw the corresponding portions of the screen.
617 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100618#if GTK_CHECK_VERSION(3,0,0)
619static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100620static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100621
622static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100623static void gui_gtk_window_clear(GdkWindow *win);
624
625 static void
626gui_gtk3_redraw(int x, int y, int width, int height)
627{
628 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
629 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
630 GUI_MON_NOCLEAR);
631}
632
633 static void
634gui_gtk3_update_cursor(cairo_t *cr)
635{
636 if (gui.row == gui.cursor_row)
637 {
638 gui.by_signal = TRUE;
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;
Bram Moolenaar98921892016-02-23 17:14:37 +0100652 return cond;
653}
654
655 static gboolean
656draw_event(GtkWidget *widget,
657 cairo_t *cr,
658 gpointer user_data UNUSED)
659{
660 /* Skip this when the GUI isn't set up yet, will redraw later. */
661 if (gui.starting)
662 return FALSE;
663
664 out_flush(); /* make sure all output has been processed */
665 /* for GTK+ 3, may induce other draw events. */
666
667 cairo_set_source_surface(cr, gui.surface, 0, 0);
668
669 /* Draw the window without the cursor. */
670 gui.by_signal = TRUE;
671 {
672 cairo_rectangle_list_t *list = NULL;
673
674 gui_gtk_window_clear(gtk_widget_get_window(widget));
675
676 list = cairo_copy_clip_rectangle_list(cr);
677 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
678 {
679 int i;
680 for (i = 0; i < list->num_rectangles; i++)
681 {
682 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100683 if (blink_mode)
684 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
685 else
686 gui_redraw(rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +0100687 }
688 }
689 cairo_rectangle_list_destroy(list);
690
691 cairo_paint(cr);
692 }
693 gui.by_signal = FALSE;
694
695 /* Add the cursor to the window if necessary.*/
696 if (gui_gtk3_should_draw_cursor())
697 gui_gtk3_update_cursor(cr);
698
699 return FALSE;
700}
701#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000703expose_event(GtkWidget *widget UNUSED,
704 GdkEventExpose *event,
705 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706{
707 /* Skip this when the GUI isn't set up yet, will redraw later. */
708 if (gui.starting)
709 return FALSE;
710
711 out_flush(); /* make sure all output has been processed */
712 gui_redraw(event->area.x, event->area.y,
713 event->area.width, event->area.height);
714
715 /* Clear the border areas if needed */
716 if (event->area.x < FILL_X(0))
717 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
718 if (event->area.y < FILL_Y(0))
719 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
720 if (event->area.x > FILL_X(Columns))
721 gdk_window_clear_area(gui.drawarea->window,
722 FILL_X((int)Columns), 0, 0, 0);
723 if (event->area.y > FILL_Y(Rows))
724 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
725
726 return FALSE;
727}
Bram Moolenaar98921892016-02-23 17:14:37 +0100728#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729
730#ifdef FEAT_CLIENTSERVER
731/*
732 * Handle changes to the "Comm" property
733 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000735property_event(GtkWidget *widget,
736 GdkEventProperty *event,
737 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738{
739 if (event->type == GDK_PROPERTY_NOTIFY
740 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100741# if GTK_CHECK_VERSION(3,0,0)
742 && GDK_WINDOW_XID(event->window) == commWindow
743# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100745# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 && GET_X_ATOM(event->atom) == commProperty)
747 {
748 XEvent xev;
749
750 /* Translate to XLib */
751 xev.xproperty.type = PropertyNotify;
752 xev.xproperty.atom = commProperty;
753 xev.xproperty.window = commWindow;
754 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100755# if GTK_CHECK_VERSION(3,0,0)
756 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
757 &xev, 0);
758# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200759 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100760# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 }
762 return FALSE;
763}
Bram Moolenaar98921892016-02-23 17:14:37 +0100764#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765
766
767/****************************************************************************
768 * Focus handlers:
769 */
770
771
772/*
773 * This is a simple state machine:
774 * BLINK_NONE not blinking at all
775 * BLINK_OFF blinking, cursor is not shown
776 * BLINK_ON blinking, cursor is shown
777 */
778
779#define BLINK_NONE 0
780#define BLINK_OFF 1
781#define BLINK_ON 2
782
783static int blink_state = BLINK_NONE;
784static long_u blink_waittime = 700;
785static long_u blink_ontime = 400;
786static long_u blink_offtime = 250;
787static guint blink_timer = 0;
788
Bram Moolenaar98921892016-02-23 17:14:37 +0100789#if GTK_CHECK_VERSION(3,0,0)
790 static gboolean
791gui_gtk_is_blink_on(void)
792{
793 return blink_state == BLINK_ON;
794}
Bram Moolenaar98921892016-02-23 17:14:37 +0100795#endif
796
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 void
798gui_mch_set_blinking(long waittime, long on, long off)
799{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100800#if GTK_CHECK_VERSION(3,0,0)
801 if (waittime == 0 || on == 0 || off == 0)
802 {
803 blink_mode = FALSE;
804
805 blink_waittime = 700;
806 blink_ontime = 400;
807 blink_offtime = 250;
808 }
809 else
810 {
811 blink_mode = TRUE;
812
813 blink_waittime = waittime;
814 blink_ontime = on;
815 blink_offtime = off;
816 }
817#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 blink_waittime = waittime;
819 blink_ontime = on;
820 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822}
823
824/*
825 * Stop the cursor blinking. Show the cursor if it wasn't shown.
826 */
827 void
828gui_mch_stop_blink(void)
829{
830 if (blink_timer)
831 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100832#if GTK_CHECK_VERSION(3,0,0)
833 g_source_remove(blink_timer);
834#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 blink_timer = 0;
838 }
839 if (blink_state == BLINK_OFF)
840 gui_update_cursor(TRUE, FALSE);
841 blink_state = BLINK_NONE;
842}
843
Bram Moolenaar98921892016-02-23 17:14:37 +0100844#if GTK_CHECK_VERSION(3,0,0)
845 static gboolean
846#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100848#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000849blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850{
851 if (blink_state == BLINK_ON)
852 {
853 gui_undraw_cursor();
854 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100855#if GTK_CHECK_VERSION(3,0,0)
856 blink_timer = g_timeout_add((guint)blink_offtime,
857 (GSourceFunc) blink_cb, NULL);
858#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 blink_timer = gtk_timeout_add((guint32)blink_offtime,
860 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 }
863 else
864 {
865 gui_update_cursor(TRUE, FALSE);
866 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100867#if GTK_CHECK_VERSION(3,0,0)
868 blink_timer = g_timeout_add((guint)blink_ontime,
869 (GSourceFunc) blink_cb, NULL);
870#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 blink_timer = gtk_timeout_add((guint32)blink_ontime,
872 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 }
875
876 return FALSE; /* don't happen again */
877}
878
879/*
880 * Start the cursor blinking. If it was already blinking, this restarts the
881 * waiting time and shows the cursor.
882 */
883 void
884gui_mch_start_blink(void)
885{
886 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200887 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100888#if GTK_CHECK_VERSION(3,0,0)
889 g_source_remove(blink_timer);
890#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100892#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200893 blink_timer = 0;
894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 /* Only switch blinking on if none of the times is zero */
896 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
897 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100898#if GTK_CHECK_VERSION(3,0,0)
899 blink_timer = g_timeout_add((guint)blink_waittime,
900 (GSourceFunc) blink_cb, NULL);
901#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 blink_timer = gtk_timeout_add((guint32)blink_waittime,
903 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100904#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 blink_state = BLINK_ON;
906 gui_update_cursor(TRUE, FALSE);
907 }
908}
909
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000911enter_notify_event(GtkWidget *widget UNUSED,
912 GdkEventCrossing *event UNUSED,
913 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914{
915 if (blink_state == BLINK_NONE)
916 gui_mch_start_blink();
917
918 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100919#if GTK_CHECK_VERSION(3,0,0)
920 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
921#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 gtk_widget_grab_focus(gui.drawarea);
925
926 return FALSE;
927}
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000930leave_notify_event(GtkWidget *widget UNUSED,
931 GdkEventCrossing *event UNUSED,
932 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933{
934 if (blink_state != BLINK_NONE)
935 gui_mch_stop_blink();
936
937 return FALSE;
938}
939
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000941focus_in_event(GtkWidget *widget,
942 GdkEventFocus *event UNUSED,
943 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944{
945 gui_focus_change(TRUE);
946
947 if (blink_state == BLINK_NONE)
948 gui_mch_start_blink();
949
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000950 /* make sure keyboard input goes to the draw area (if this is focus for a
951 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000952 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000953 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954
955 return TRUE;
956}
957
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000959focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200960 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000961 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962{
963 gui_focus_change(FALSE);
964
965 if (blink_state != BLINK_NONE)
966 gui_mch_stop_blink();
967
968 return TRUE;
969}
970
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972/*
973 * Translate a GDK key value to UTF-8 independently of the current locale.
974 * The output is written to string, which must have room for at least 6 bytes
975 * plus the NUL terminator. Returns the length in bytes.
976 *
977 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
978 * of GdkEventKey::string instead. But event->string is evil; see here why:
979 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
980 */
981 static int
982keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
983{
984 int len;
985 guint32 uc;
986
987 uc = gdk_keyval_to_unicode(keyval);
988 if (uc != 0)
989 {
990 /* Check for CTRL-foo */
991 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
992 {
993 /* These mappings look arbitrary at the first glance, but in fact
994 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
995 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
996 * more sense and is consistent with usual terminal behaviour). */
997 if (uc >= '@')
998 string[0] = uc & 0x1F;
999 else if (uc == '2')
1000 string[0] = NUL;
1001 else if (uc >= '3' && uc <= '7')
1002 string[0] = uc ^ 0x28;
1003 else if (uc == '8')
1004 string[0] = BS;
1005 else if (uc == '?')
1006 string[0] = DEL;
1007 else
1008 string[0] = uc;
1009 len = 1;
1010 }
1011 else
1012 {
1013 /* Translate a normal key to UTF-8. This doesn't work for dead
1014 * keys of course, you _have_ to use an input method for that. */
1015 len = utf_char2bytes((int)uc, string);
1016 }
1017 }
1018 else
1019 {
1020 /* Translate keys which are represented by ASCII control codes in Vim.
1021 * There are only a few of those; most control keys are translated to
1022 * special terminal-like control sequences. */
1023 len = 1;
1024 switch (keyval)
1025 {
1026 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1027 string[0] = TAB;
1028 break;
1029 case GDK_Linefeed:
1030 string[0] = NL;
1031 break;
1032 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1033 string[0] = CAR;
1034 break;
1035 case GDK_Escape:
1036 string[0] = ESC;
1037 break;
1038 default:
1039 len = 0;
1040 break;
1041 }
1042 }
1043 string[len] = NUL;
1044
1045 return len;
1046}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001048 static int
1049modifiers_gdk2vim(guint state)
1050{
1051 int modifiers = 0;
1052
1053 if (state & GDK_SHIFT_MASK)
1054 modifiers |= MOD_MASK_SHIFT;
1055 if (state & GDK_CONTROL_MASK)
1056 modifiers |= MOD_MASK_CTRL;
1057 if (state & GDK_MOD1_MASK)
1058 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001059#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001060 if (state & GDK_SUPER_MASK)
1061 modifiers |= MOD_MASK_META;
1062#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001063 if (state & GDK_MOD4_MASK)
1064 modifiers |= MOD_MASK_META;
1065
1066 return modifiers;
1067}
1068
1069 static int
1070modifiers_gdk2mouse(guint state)
1071{
1072 int modifiers = 0;
1073
1074 if (state & GDK_SHIFT_MASK)
1075 modifiers |= MOUSE_SHIFT;
1076 if (state & GDK_CONTROL_MASK)
1077 modifiers |= MOUSE_CTRL;
1078 if (state & GDK_MOD1_MASK)
1079 modifiers |= MOUSE_ALT;
1080
1081 return modifiers;
1082}
1083
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084/*
1085 * Main keyboard handler:
1086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001088key_press_event(GtkWidget *widget UNUSED,
1089 GdkEventKey *event,
1090 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001092 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1094 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 guint key_sym;
1096 int len;
1097 int i;
1098 int modifiers;
1099 int key;
1100 guint state;
1101 char_u *s, *d;
1102
Bram Moolenaar98921892016-02-23 17:14:37 +01001103#if GTK_CHECK_VERSION(3,0,0)
1104 is_key_pressed = TRUE;
1105 gui_mch_stop_blink();
1106#endif
1107
Bram Moolenaar20892c12011-06-26 04:49:00 +02001108 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 key_sym = event->keyval;
1110 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111
1112#ifdef FEAT_XIM
1113 if (xim_queue_key_press_event(event, TRUE))
1114 return TRUE;
1115#endif
1116
1117#ifdef FEAT_HANGULIN
1118 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1119 {
1120 hangul_input_state_toggle();
1121 return TRUE;
1122 }
1123#endif
1124
1125#ifdef SunXK_F36
1126 /*
1127 * These keys have bogus lookup strings, and trapping them here is
1128 * easier than trying to XRebindKeysym() on them with every possible
1129 * combination of modifiers.
1130 */
1131 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1132 len = 0;
1133 else
1134#endif
1135 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 len = keyval_to_string(key_sym, state, string2);
1137
1138 /* Careful: convert_input() doesn't handle the NUL character.
1139 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1140 if (len > 1 && input_conv.vc_type != CONV_NONE)
1141 len = convert_input(string2, len, sizeof(string2));
1142
1143 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 d = string;
1145 for (i = 0; i < len; ++i)
1146 {
1147 *d++ = s[i];
1148 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1149 {
1150 /* Turn CSI into K_CSI. */
1151 *d++ = KS_EXTRA;
1152 *d++ = (int)KE_CSI;
1153 }
1154 }
1155 len = d - string;
1156 }
1157
1158 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1159 if (key_sym == GDK_ISO_Left_Tab)
1160 {
1161 key_sym = GDK_Tab;
1162 state |= GDK_SHIFT_MASK;
1163 }
1164
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165#ifdef FEAT_MENU
1166 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1167 * is a menu shortcut, we ignore everything with the ALT modifier. */
1168 if ((state & GDK_MOD1_MASK)
1169 && gui.menu_is_active
1170 && (*p_wak == 'y'
1171 || (*p_wak == 'm'
1172 && len == 1
1173 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 /* For GTK2 we return false to signify that we haven't handled the
1175 * keypress, so that gtk will handle the mnemonic or accelerator. */
1176 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177#endif
1178
1179 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1180 * that already has the 8th bit set.
1181 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1182 * Don't do this for double-byte encodings, it turns the char into a lead
1183 * byte. */
1184 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001185 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001186#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001187 || (state & GDK_SUPER_MASK)
1188#endif
1189 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1191 && (string[0] & 0x80) == 0
1192 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 )
1195 {
1196 string[0] |= 0x80;
1197 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (enc_utf8) /* convert to utf-8 */
1199 {
1200 string[1] = string[0] & 0xbf;
1201 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1202 if (string[1] == CSI)
1203 {
1204 string[2] = KS_EXTRA;
1205 string[3] = (int)KE_CSI;
1206 len = 4;
1207 }
1208 else
1209 len = 2;
1210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 }
1212
1213 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1214 * value) to detect backspace, delete and keypad keys. */
1215 if (len == 0 || len == 1)
1216 {
1217 for (i = 0; special_keys[i].key_sym != 0; i++)
1218 {
1219 if (special_keys[i].key_sym == key_sym)
1220 {
1221 string[0] = CSI;
1222 string[1] = special_keys[i].code0;
1223 string[2] = special_keys[i].code1;
1224 len = -3;
1225 break;
1226 }
1227 }
1228 }
1229
1230 if (len == 0) /* Unrecognized key */
1231 return TRUE;
1232
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 /* Special keys (and a few others) may have modifiers. Also when using a
1234 * double-byte encoding (can't set the 8th bit). */
1235 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1236 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1237 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1238 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001239 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001240#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001241 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001243 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001245 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246
1247 /*
1248 * For some keys a shift modifier is translated into another key
1249 * code.
1250 */
1251 if (len == -3)
1252 key = TO_SPECIAL(string[1], string[2]);
1253 else
1254 key = string[0];
1255
1256 key = simplify_key(key, &modifiers);
1257 if (key == CSI)
1258 key = K_CSI;
1259 if (IS_SPECIAL(key))
1260 {
1261 string[0] = CSI;
1262 string[1] = K_SECOND(key);
1263 string[2] = K_THIRD(key);
1264 len = 3;
1265 }
1266 else
1267 {
1268 string[0] = key;
1269 len = 1;
1270 }
1271
1272 if (modifiers != 0)
1273 {
1274 string2[0] = CSI;
1275 string2[1] = KS_MODIFIER;
1276 string2[2] = modifiers;
1277 add_to_input_buf(string2, 3);
1278 }
1279 }
1280
1281 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1282 || (string[0] == intr_char && intr_char != Ctrl_C)))
1283 {
1284 trash_input_buf();
1285 got_int = TRUE;
1286 }
1287
1288 add_to_input_buf(string, len);
1289
1290 /* blank out the pointer if necessary */
1291 if (p_mh)
1292 gui_mch_mousehide(TRUE);
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 return TRUE;
1295}
1296
Bram Moolenaar98921892016-02-23 17:14:37 +01001297#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001299key_release_event(GtkWidget *widget UNUSED,
1300 GdkEventKey *event,
1301 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302{
Bram Moolenaar98921892016-02-23 17:14:37 +01001303# if GTK_CHECK_VERSION(3,0,0)
1304 is_key_pressed = FALSE;
1305 gui_mch_start_blink();
1306# endif
1307# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001308 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 /*
1310 * GTK+ 2 input methods may do fancy stuff on key release events too.
1311 * With the default IM for instance, you can enter any UCS code point
1312 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1313 */
1314 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001315# else
1316 return TRUE;
1317# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318}
1319#endif
1320
1321
1322/****************************************************************************
1323 * Selection handlers:
1324 */
1325
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001327selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001329 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330{
1331 if (event->selection == clip_plus.gtk_sel_atom)
1332 clip_lose_selection(&clip_plus);
1333 else
1334 clip_lose_selection(&clip_star);
1335
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 return TRUE;
1337}
1338
1339#define RS_NONE 0 /* selection_received_cb() not called yet */
1340#define RS_OK 1 /* selection_received_cb() called and OK */
1341#define RS_FAIL 2 /* selection_received_cb() called and failed */
1342static int received_selection = RS_NONE;
1343
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001345selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001347 guint time_ UNUSED,
1348 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349{
1350 VimClipboard *cbd;
1351 char_u *text;
1352 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001355 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356
Bram Moolenaar98921892016-02-23 17:14:37 +01001357#if GTK_CHECK_VERSION(3,0,0)
1358 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1359#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 cbd = &clip_plus;
1363 else
1364 cbd = &clip_star;
1365
Bram Moolenaar98921892016-02-23 17:14:37 +01001366#if GTK_CHECK_VERSION(3,0,0)
1367 text = (char_u *)gtk_selection_data_get_data(data);
1368 len = gtk_selection_data_get_length(data);
1369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 text = (char_u *)data->data;
1371 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373
1374 if (text == NULL || len <= 0)
1375 {
1376 received_selection = RS_FAIL;
1377 /* clip_free_selection(cbd); ??? */
1378
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 return;
1380 }
1381
Bram Moolenaar98921892016-02-23 17:14:37 +01001382#if GTK_CHECK_VERSION(3,0,0)
1383 if (gtk_selection_data_get_data_type(data) == vim_atom)
1384#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 {
1388 motion_type = *text++;
1389 --len;
1390 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001391#if GTK_CHECK_VERSION(3,0,0)
1392 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1393#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 {
1397 char_u *enc;
1398 vimconv_T conv;
1399
1400 motion_type = *text++;
1401 --len;
1402
1403 enc = text;
1404 text += STRLEN(text) + 1;
1405 len -= text - enc;
1406
1407 /* If the encoding of the text is different from 'encoding', attempt
1408 * converting it. */
1409 conv.vc_type = CONV_NONE;
1410 convert_setup(&conv, enc, p_enc);
1411 if (conv.vc_type != CONV_NONE)
1412 {
1413 tmpbuf = string_convert(&conv, text, &len);
1414 if (tmpbuf != NULL)
1415 text = tmpbuf;
1416 convert_setup(&conv, NULL, NULL);
1417 }
1418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 /* gtk_selection_data_get_text() handles all the nasty details
1421 * and targets and encodings etc. This rocks so hard. */
1422 else
1423 {
1424 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1425 if (tmpbuf_utf8 != NULL)
1426 {
1427 len = STRLEN(tmpbuf_utf8);
1428 if (input_conv.vc_type != CONV_NONE)
1429 {
1430 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1431 if (tmpbuf != NULL)
1432 text = tmpbuf;
1433 }
1434 else
1435 text = tmpbuf_utf8;
1436 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001437 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1438 {
1439 vimconv_T conv;
1440
1441 /* UTF-16, we get this for HTML */
1442 conv.vc_type = CONV_NONE;
1443 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1444
1445 if (conv.vc_type != CONV_NONE)
1446 {
1447 text += 2;
1448 len -= 2;
1449 tmpbuf = string_convert(&conv, text, &len);
1450 convert_setup(&conv, NULL, NULL);
1451 }
1452 if (tmpbuf != NULL)
1453 text = tmpbuf;
1454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001457 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001458 while (len > 0 && text[len - 1] == NUL)
1459 --len;
1460
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 clip_yank_selection(motion_type, text, (long)len, cbd);
1462 received_selection = RS_OK;
1463 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465}
1466
1467/*
1468 * Prepare our selection data for passing it to the external selection
1469 * client.
1470 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001472selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 GtkSelectionData *selection_data,
1474 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001475 guint time_ UNUSED,
1476 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477{
1478 char_u *string;
1479 char_u *tmpbuf;
1480 long_u tmplen;
1481 int length;
1482 int motion_type;
1483 GdkAtom type;
1484 VimClipboard *cbd;
1485
Bram Moolenaar98921892016-02-23 17:14:37 +01001486#if GTK_CHECK_VERSION(3,0,0)
1487 if (gtk_selection_data_get_selection(selection_data)
1488 == clip_plus.gtk_sel_atom)
1489#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 cbd = &clip_plus;
1493 else
1494 cbd = &clip_star;
1495
1496 if (!cbd->owned)
1497 return; /* Shouldn't ever happen */
1498
1499 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001500 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 && info != (guint)TARGET_UTF8_STRING
1502 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 && info != (guint)TARGET_VIM
1504 && info != (guint)TARGET_COMPOUND_TEXT
1505 && info != (guint)TARGET_TEXT)
1506 return;
1507
1508 /* get the selection from the '*'/'+' register */
1509 clip_get_selection(cbd);
1510
1511 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1512 if (motion_type < 0 || string == NULL)
1513 return;
1514 /* Due to int arguments we can't handle more than G_MAXINT. Also
1515 * reserve one extra byte for NUL or the motion type; just in case.
1516 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1517 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1518
1519 if (info == (guint)TARGET_VIM)
1520 {
1521 tmpbuf = alloc((unsigned)length + 1);
1522 if (tmpbuf != NULL)
1523 {
1524 tmpbuf[0] = motion_type;
1525 mch_memmove(tmpbuf + 1, string, (size_t)length);
1526 }
1527 /* For our own format, the first byte contains the motion type */
1528 ++length;
1529 vim_free(string);
1530 string = tmpbuf;
1531 type = vim_atom;
1532 }
1533
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001534 else if (info == (guint)TARGET_HTML)
1535 {
1536 vimconv_T conv;
1537
1538 /* Since we get utf-16, we probably should set it as well. */
1539 conv.vc_type = CONV_NONE;
1540 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1541 if (conv.vc_type != CONV_NONE)
1542 {
1543 tmpbuf = string_convert(&conv, string, &length);
1544 convert_setup(&conv, NULL, NULL);
1545 vim_free(string);
1546 string = tmpbuf;
1547 }
1548
1549 /* Prepend the BOM: "fffe" */
1550 if (string != NULL)
1551 {
1552 tmpbuf = alloc(length + 2);
1553 tmpbuf[0] = 0xff;
1554 tmpbuf[1] = 0xfe;
1555 mch_memmove(tmpbuf + 2, string, (size_t)length);
1556 vim_free(string);
1557 string = tmpbuf;
1558 length += 2;
1559
Bram Moolenaar98921892016-02-23 17:14:37 +01001560#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001561 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001562 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001563 selection_data->type = selection_data->target;
1564 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001565#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001566 gtk_selection_data_set(selection_data, html_atom, 16,
1567 string, length);
1568 vim_free(string);
1569 }
1570 return;
1571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 else if (info == (guint)TARGET_VIMENC)
1573 {
1574 int l = STRLEN(p_enc);
1575
1576 /* contents: motion_type 'encoding' NUL text */
1577 tmpbuf = alloc((unsigned)length + l + 2);
1578 if (tmpbuf != NULL)
1579 {
1580 tmpbuf[0] = motion_type;
1581 STRCPY(tmpbuf + 1, p_enc);
1582 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1583 }
1584 length += l + 2;
1585 vim_free(string);
1586 string = tmpbuf;
1587 type = vimenc_atom;
1588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 /* gtk_selection_data_set_text() handles everything for us. This is
1591 * so easy and simple and cool, it'd be insane not to use it. */
1592 else
1593 {
1594 if (output_conv.vc_type != CONV_NONE)
1595 {
1596 tmpbuf = string_convert(&output_conv, string, &length);
1597 vim_free(string);
1598 if (tmpbuf == NULL)
1599 return;
1600 string = tmpbuf;
1601 }
1602 /* Validate the string to avoid runtime warnings */
1603 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1604 {
1605 gtk_selection_data_set_text(selection_data,
1606 (const char *)string, length);
1607 }
1608 vim_free(string);
1609 return;
1610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611
1612 if (string != NULL)
1613 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001614#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001615 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001616 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 selection_data->type = selection_data->target;
1618 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 gtk_selection_data_set(selection_data, type, 8, string, length);
1621 vim_free(string);
1622 }
1623}
1624
1625/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001626 * Check if the GUI can be started. Called before gvimrc is sourced and
1627 * before fork().
1628 * Return OK or FAIL.
1629 */
1630 int
1631gui_mch_early_init_check(void)
1632{
1633 char_u *p;
1634
1635 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1636 p = mch_getenv((char_u *)"DISPLAY");
1637 if (p == NULL || *p == NUL)
1638 {
1639 gui.dying = TRUE;
1640 EMSG(_((char *)e_opendisp));
1641 return FAIL;
1642 }
1643 return OK;
1644}
1645
1646/*
1647 * Check if the GUI can be started. Called before gvimrc is sourced but after
1648 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 * Return OK or FAIL.
1650 */
1651 int
1652gui_mch_init_check(void)
1653{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001654#ifdef USE_GRESOURCE
1655 static int res_registered = FALSE;
1656
1657 if (!res_registered)
1658 {
1659 /* Call this function in the GUI process; otherwise, the resources
1660 * won't be available. Don't call it twice. */
1661 res_registered = TRUE;
1662 gui_gtk_register_resource();
1663 }
1664#endif
1665
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666#ifdef FEAT_GUI_GNOME
1667 if (gtk_socket_id == 0)
1668 using_gnome = 1;
1669#endif
1670
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001671 /* This defaults to argv[0], but we want it to match the name of the
1672 * shipped gvim.desktop so that Vim's windows can be associated with this
1673 * file. */
1674 g_set_prgname("gvim");
1675
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1677 if (!gtk_init_check(&gui_argc, &gui_argv))
1678 {
1679 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001680 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 return FAIL;
1682 }
1683
1684 return OK;
1685}
1686
1687
1688/****************************************************************************
1689 * Mouse handling callbacks
1690 */
1691
1692
1693static guint mouse_click_timer = 0;
1694static int mouse_timed_out = TRUE;
1695
1696/*
1697 * Timer used to recognize multiple clicks of the mouse button
1698 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001699#if GTK_CHECK_VERSION(3,0,0)
1700 static gboolean
1701#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704mouse_click_timer_cb(gpointer data)
1705{
1706 /* we don't use this information currently */
1707 int *timed_out = (int *) data;
1708
1709 *timed_out = TRUE;
1710 return FALSE; /* don't happen again */
1711}
1712
1713static guint motion_repeat_timer = 0;
1714static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001715#ifdef GTK_DEST_DEFAULT_ALL
1716static gboolean motion_repeat_timer_cb(gpointer);
1717#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720
1721 static void
1722process_motion_notify(int x, int y, GdkModifierType state)
1723{
1724 int button;
1725 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001726#if GTK_CHECK_VERSION(3,0,0)
1727 GtkAllocation allocation;
1728#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729
1730 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1731 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1732 GDK_BUTTON5_MASK))
1733 ? MOUSE_DRAG : ' ';
1734
1735 /* If our pointer is currently hidden, then we should show it. */
1736 gui_mch_mousehide(FALSE);
1737
1738 /* Just moving the rodent above the drawing area without any button
1739 * being pressed. */
1740 if (button != MOUSE_DRAG)
1741 {
1742 gui_mouse_moved(x, y);
1743 return;
1744 }
1745
1746 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001747 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
Bram Moolenaar49325942007-05-10 19:19:59 +00001749 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1751
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 /*
1753 * Auto repeat timer handling.
1754 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001755#if GTK_CHECK_VERSION(3,0,0)
1756 gtk_widget_get_allocation(gui.drawarea, &allocation);
1757
1758 if (x < 0 || y < 0
1759 || x >= allocation.width
1760 || y >= allocation.height)
1761#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 if (x < 0 || y < 0
1763 || x >= gui.drawarea->allocation.width
1764 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001765#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 {
1767
1768 int dx;
1769 int dy;
1770 int offshoot;
1771 int delay = 10;
1772
1773 /* Calculate the maximal distance of the cursor from the drawing area.
1774 * (offshoot can't become negative here!).
1775 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001776#if GTK_CHECK_VERSION(3,0,0)
1777 dx = x < 0 ? -x : x - allocation.width;
1778 dy = y < 0 ? -y : y - allocation.height;
1779#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1781 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
1784 offshoot = dx > dy ? dx : dy;
1785
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001786 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 * distance of 127 pixels from the main window.
1788 *
1789 * One could think endlessly about the most ergonomic variant here.
1790 * For example it could make sense to calculate the distance from the
1791 * drags start instead...
1792 *
1793 * Maybe a parabolic interpolation would suite us better here too...
1794 */
1795 if (offshoot > 127)
1796 {
1797 /* 5 appears to be somehow near to my perceptual limits :-). */
1798 delay = 5;
1799 }
1800 else
1801 {
1802 delay = (130 * (127 - offshoot)) / 127 + 5;
1803 }
1804
1805 /* shoot again */
1806 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001807#if GTK_CHECK_VERSION(3,0,0)
1808 motion_repeat_timer = g_timeout_add((guint)delay,
1809 motion_repeat_timer_cb, NULL);
1810#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1812 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001813#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 }
1815}
1816
Bram Moolenaar98921892016-02-23 17:14:37 +01001817#if GTK_CHECK_VERSION(3,0,0)
1818 static GdkDevice *
1819gui_gtk_get_pointer_device(GtkWidget *widget)
1820{
1821 GdkWindow * const win = gtk_widget_get_window(widget);
1822 GdkDisplay * const dpy = gdk_window_get_display(win);
1823 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1824 return gdk_device_manager_get_client_pointer(mngr);
1825}
1826
1827 static GdkWindow *
1828gui_gtk_get_pointer(GtkWidget *widget,
1829 gint *x,
1830 gint *y,
1831 GdkModifierType *state)
1832{
1833 GdkWindow * const win = gtk_widget_get_window(widget);
1834 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1835 return gdk_window_get_device_position(win, dev , x, y, state);
1836}
1837
Bram Moolenaar2369c152016-03-04 23:08:25 +01001838# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001839 static GdkWindow *
1840gui_gtk_window_at_position(GtkWidget *widget,
1841 gint *x,
1842 gint *y)
1843{
1844 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1845 return gdk_device_get_window_at_position(dev, x, y);
1846}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001847# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001848#endif
1849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850/*
1851 * Timer used to recognize multiple clicks of the mouse button.
1852 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001853#if GTK_CHECK_VERSION(3,0,0)
1854 static gboolean
1855#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001857#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001858motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859{
1860 int x;
1861 int y;
1862 GdkModifierType state;
1863
Bram Moolenaar98921892016-02-23 17:14:37 +01001864#if GTK_CHECK_VERSION(3,0,0)
1865 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1866#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869
1870 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1871 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1872 GDK_BUTTON5_MASK)))
1873 {
1874 motion_repeat_timer = 0;
1875 return FALSE;
1876 }
1877
1878 /* If there already is a mouse click in the input buffer, wait another
1879 * time (otherwise we would create a backlog of clicks) */
1880 if (vim_used_in_input_buf() > 10)
1881 return TRUE;
1882
1883 motion_repeat_timer = 0;
1884
1885 /*
1886 * Fake a motion event.
1887 * Trick: Pretend the mouse moved to the next character on every other
1888 * event, otherwise drag events will be discarded, because they are still
1889 * in the same character.
1890 */
1891 if (motion_repeat_offset)
1892 x += gui.char_width;
1893
1894 motion_repeat_offset = !motion_repeat_offset;
1895 process_motion_notify(x, y, state);
1896
1897 /* Don't happen again. We will get reinstalled in the synthetic event
1898 * if needed -- thus repeating should still work. */
1899 return FALSE;
1900}
1901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001903motion_notify_event(GtkWidget *widget,
1904 GdkEventMotion *event,
1905 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906{
1907 if (event->is_hint)
1908 {
1909 int x;
1910 int y;
1911 GdkModifierType state;
1912
Bram Moolenaar98921892016-02-23 17:14:37 +01001913#if GTK_CHECK_VERSION(3,0,0)
1914 gui_gtk_get_pointer(widget, &x, &y, &state);
1915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 process_motion_notify(x, y, state);
1919 }
1920 else
1921 {
1922 process_motion_notify((int)event->x, (int)event->y,
1923 (GdkModifierType)event->state);
1924 }
1925
1926 return TRUE; /* handled */
1927}
1928
1929
1930/*
1931 * Mouse button handling. Note please that we are capturing multiple click's
1932 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1933 * This is due to the way the generic VIM code is recognizing multiple clicks.
1934 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001936button_press_event(GtkWidget *widget,
1937 GdkEventButton *event,
1938 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939{
1940 int button;
1941 int repeated_click = FALSE;
1942 int x, y;
1943 int_u vim_modifiers;
1944
Bram Moolenaar20892c12011-06-26 04:49:00 +02001945 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001946
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001948#if GTK_CHECK_VERSION(3,0,0)
1949 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1950#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01001952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 gtk_widget_grab_focus(widget);
1954
1955 /*
1956 * Don't let additional events about multiple clicks send by GTK to us
1957 * after the initial button press event confuse us.
1958 */
1959 if (event->type != GDK_BUTTON_PRESS)
1960 return FALSE;
1961
1962 x = event->x;
1963 y = event->y;
1964
1965 /* Handle multiple clicks */
1966 if (!mouse_timed_out && mouse_click_timer)
1967 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001968#if GTK_CHECK_VERSION(3,0,0)
1969 g_source_remove(mouse_click_timer);
1970#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 mouse_click_timer = 0;
1974 repeated_click = TRUE;
1975 }
1976
1977 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001978#if GTK_CHECK_VERSION(3,0,0)
1979 mouse_click_timer = g_timeout_add((guint)p_mouset,
1980 mouse_click_timer_cb, &mouse_timed_out);
1981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
1983 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01001984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985
1986 switch (event->button)
1987 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001988 /* Keep in sync with gui_x11.c.
1989 * Buttons 4-7 are handled in scroll_event() */
1990 case 1: button = MOUSE_LEFT; break;
1991 case 2: button = MOUSE_MIDDLE; break;
1992 case 3: button = MOUSE_RIGHT; break;
1993 case 8: button = MOUSE_X1; break;
1994 case 9: button = MOUSE_X2; break;
1995 default:
1996 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 }
1998
1999#ifdef FEAT_XIM
2000 /* cancel any preediting */
2001 if (im_is_preediting())
2002 xim_reset();
2003#endif
2004
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002005 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008
2009 return TRUE;
2010}
2011
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002013 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002016scroll_event(GtkWidget *widget,
2017 GdkEventScroll *event,
2018 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002021 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022
Bram Moolenaar98921892016-02-23 17:14:37 +01002023#if GTK_CHECK_VERSION(3,0,0)
2024 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2025#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002027#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 gtk_widget_grab_focus(widget);
2029
2030 switch (event->direction)
2031 {
2032 case GDK_SCROLL_UP:
2033 button = MOUSE_4;
2034 break;
2035 case GDK_SCROLL_DOWN:
2036 button = MOUSE_5;
2037 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002038 case GDK_SCROLL_LEFT:
2039 button = MOUSE_7;
2040 break;
2041 case GDK_SCROLL_RIGHT:
2042 button = MOUSE_6;
2043 break;
2044 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 return FALSE;
2046 }
2047
2048# ifdef FEAT_XIM
2049 /* cancel any preediting */
2050 if (im_is_preediting())
2051 xim_reset();
2052# endif
2053
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002054 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
2056 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2057 FALSE, vim_modifiers);
2058
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 return TRUE;
2060}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061
2062
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002064button_release_event(GtkWidget *widget UNUSED,
2065 GdkEventButton *event,
2066 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067{
2068 int x, y;
2069 int_u vim_modifiers;
2070
Bram Moolenaar20892c12011-06-26 04:49:00 +02002071 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002072
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 /* Remove any motion "machine gun" timers used for automatic further
2074 extension of allocation areas if outside of the applications window
2075 area .*/
2076 if (motion_repeat_timer)
2077 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002078#if GTK_CHECK_VERSION(3,0,0)
2079 g_source_remove(motion_repeat_timer);
2080#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002082#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 motion_repeat_timer = 0;
2084 }
2085
2086 x = event->x;
2087 y = event->y;
2088
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002089 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090
2091 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092
2093 return TRUE;
2094}
2095
2096
2097#ifdef FEAT_DND
2098/****************************************************************************
2099 * Drag aNd Drop support handlers.
2100 */
2101
2102/*
2103 * Count how many items there may be and separate them with a NUL.
2104 * Apparently the items are separated with \r\n. This is not documented,
2105 * thus be careful not to go past the end. Also allow separation with
2106 * NUL characters.
2107 */
2108 static int
2109count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2110{
2111 int i;
2112 char_u *p = out;
2113 int count = 0;
2114
2115 for (i = 0; i < len; ++i)
2116 {
2117 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2118 {
2119 if (p > out && p[-1] != NUL)
2120 {
2121 ++count;
2122 *p++ = NUL;
2123 }
2124 }
2125 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2126 {
2127 *p++ = hexhex2nr(raw + i + 1);
2128 i += 2;
2129 }
2130 else
2131 *p++ = raw[i];
2132 }
2133 if (p > out && p[-1] != NUL)
2134 {
2135 *p = NUL; /* last item didn't have \r or \n */
2136 ++count;
2137 }
2138 return count;
2139}
2140
2141/*
2142 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2143 * this process, URI which protocol is not "file:" are removed. Return
2144 * length of array (less than "max").
2145 */
2146 static int
2147filter_uri_list(char_u **outlist, int max, char_u *src)
2148{
2149 int i, j;
2150
2151 for (i = j = 0; i < max; ++i)
2152 {
2153 outlist[i] = NULL;
2154 if (STRNCMP(src, "file:", 5) == 0)
2155 {
2156 src += 5;
2157 if (STRNCMP(src, "//localhost", 11) == 0)
2158 src += 11;
2159 while (src[0] == '/' && src[1] == '/')
2160 ++src;
2161 outlist[j++] = vim_strsave(src);
2162 }
2163 src += STRLEN(src) + 1;
2164 }
2165 return j;
2166}
2167
2168 static char_u **
2169parse_uri_list(int *count, char_u *data, int len)
2170{
2171 int n = 0;
2172 char_u *tmp = NULL;
2173 char_u **array = NULL;;
2174
2175 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2176 {
2177 n = count_and_decode_uri_list(tmp, data, len);
2178 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2179 n = filter_uri_list(array, n, tmp);
2180 }
2181 vim_free(tmp);
2182 *count = n;
2183 return array;
2184}
2185
2186 static void
2187drag_handle_uri_list(GdkDragContext *context,
2188 GtkSelectionData *data,
2189 guint time_,
2190 GdkModifierType state,
2191 gint x,
2192 gint y)
2193{
2194 char_u **fnames;
2195 int nfiles = 0;
2196
Bram Moolenaar98921892016-02-23 17:14:37 +01002197# if GTK_CHECK_VERSION(3,0,0)
2198 fnames = parse_uri_list(&nfiles,
2199 (char_u *)gtk_selection_data_get_data(data),
2200 gtk_selection_data_get_length(data));
2201# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002203# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204
2205 if (fnames != NULL && nfiles > 0)
2206 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002207 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
2209 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2210
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002211 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212
2213 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2214 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002215 else
2216 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217}
2218
2219 static void
2220drag_handle_text(GdkDragContext *context,
2221 GtkSelectionData *data,
2222 guint time_,
2223 GdkModifierType state)
2224{
2225 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2226 char_u *text;
2227 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229
Bram Moolenaar98921892016-02-23 17:14:37 +01002230# if GTK_CHECK_VERSION(3,0,0)
2231 text = (char_u *)gtk_selection_data_get_data(data);
2232 len = gtk_selection_data_get_length(data);
2233# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 text = data->data;
2235 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002236# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
Bram Moolenaar98921892016-02-23 17:14:37 +01002238# if GTK_CHECK_VERSION(3,0,0)
2239 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2240# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002242# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 if (input_conv.vc_type != CONV_NONE)
2245 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 if (tmpbuf != NULL)
2247 text = tmpbuf;
2248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249
2250 dnd_yank_drag_data(text, (long)len);
2251 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002254 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255
2256 if (dropkey[2] != 0)
2257 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2258 else
2259 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260}
2261
2262/*
2263 * DND receiver.
2264 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 static void
2266drag_data_received_cb(GtkWidget *widget,
2267 GdkDragContext *context,
2268 gint x,
2269 gint y,
2270 GtkSelectionData *data,
2271 guint info,
2272 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002273 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274{
2275 GdkModifierType state;
2276
2277 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002278# if GTK_CHECK_VERSION(3,0,0)
2279 const guchar * const data_data = gtk_selection_data_get_data(data);
2280 const gint data_length = gtk_selection_data_get_length(data);
2281 const gint data_format = gtk_selection_data_get_format(data);
2282
2283 if (data_data == NULL
2284 || data_length <= 0
2285 || data_format != 8
2286 || data_data[data_length] != '\0')
2287# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 if (data->data == NULL
2289 || data->length <= 0
2290 || data->format != 8
2291 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002292# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
2294 gtk_drag_finish(context, FALSE, FALSE, time_);
2295 return;
2296 }
2297
2298 /* Get the current modifier state for proper distinguishment between
2299 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002300#if GTK_CHECK_VERSION(3,0,0)
2301 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2302# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
2306 /* Not sure about the role of "text/plain" here... */
2307 if (info == (guint)TARGET_TEXT_URI_LIST)
2308 drag_handle_uri_list(context, data, time_, state, x, y);
2309 else
2310 drag_handle_text(context, data, time_, state);
2311
2312}
2313#endif /* FEAT_DND */
2314
2315
2316#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2317/*
2318 * GnomeClient interact callback. Check for unsaved buffers that cannot
2319 * be abandoned and pop up a dialog asking the user for confirmation if
2320 * necessary.
2321 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002323sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002325 GnomeDialogType type UNUSED,
2326 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327{
2328 cmdmod_T save_cmdmod;
2329 gboolean shutdown_cancelled;
2330
2331 save_cmdmod = cmdmod;
2332
2333# ifdef FEAT_BROWSE
2334 cmdmod.browse = TRUE;
2335# endif
2336# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2337 cmdmod.confirm = TRUE;
2338# endif
2339 /*
2340 * If there are changed buffers, present the user with
2341 * a dialog if possible, otherwise give an error message.
2342 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002343 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344
2345 exiting = FALSE;
2346 cmdmod = save_cmdmod;
2347 setcursor(); /* position the cursor */
2348 out_flush();
2349 /*
2350 * If the user hit the [Cancel] button the whole shutdown
2351 * will be cancelled. Wow, quite powerful feature (:
2352 */
2353 gnome_interaction_key_return(key, shutdown_cancelled);
2354}
2355
2356/*
2357 * Generate a script that can be used to restore the current editing session.
2358 * Save the value of v:this_session before running :mksession in order to make
2359 * automagic session save fully transparent. Return TRUE on success.
2360 */
2361 static int
2362write_session_file(char_u *filename)
2363{
2364 char_u *escaped_filename;
2365 char *mksession_cmdline;
2366 unsigned int save_ssop_flags;
2367 int failed;
2368
2369 /*
2370 * Build an ex command line to create a script that restores the current
2371 * session if executed. Escape the filename to avoid nasty surprises.
2372 */
2373 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2374 if (escaped_filename == NULL)
2375 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002376 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2377 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002379
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 /*
2381 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2382 * unpredictable effects when the session is saved automatically. Also,
2383 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2384 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2385 * enormously large if the GNOME session feature is used regularly.
2386 */
2387 save_ssop_flags = ssop_flags;
2388 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002389 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
2391 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2392 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2393 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002394 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395
2396 ssop_flags = save_ssop_flags;
2397 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002398
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 /*
2400 * Reopen the file and append a command to restore v:this_session,
2401 * as if this save never happened. This is to avoid conflicts with
2402 * the user's own sessions. FIXME: It's probably less hackish to add
2403 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2404 */
2405 if (!failed)
2406 {
2407 FILE *fd;
2408
2409 fd = open_exfile(filename, TRUE, APPENDBIN);
2410
2411 failed = (fd == NULL
2412 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2413 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2414
2415 if (fd != NULL && fclose(fd) != 0)
2416 failed = TRUE;
2417
2418 if (failed)
2419 mch_remove(filename);
2420 }
2421
2422 return !failed;
2423}
2424
2425/*
2426 * "save_yourself" signal handler. Initiate an interaction to ask the user
2427 * for confirmation if necessary. Save the current editing session and tell
2428 * the session manager how to restart Vim.
2429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 static gboolean
2431sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002432 gint phase UNUSED,
2433 GnomeSaveStyle save_style UNUSED,
2434 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002436 gboolean fast UNUSED,
2437 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438{
2439 static const char suffix[] = "-session.vim";
2440 char *session_file;
2441 unsigned int len;
2442 gboolean success;
2443
2444 /* Always request an interaction if possible. check_changed_any()
2445 * won't actually show a dialog unless any buffers have been modified.
2446 * There doesn't seem to be an obvious way to check that without
2447 * automatically firing the dialog. Anyway, it works just fine. */
2448 if (interact_style == GNOME_INTERACT_ANY)
2449 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2450 &sm_client_check_changed_any,
2451 NULL);
2452 out_flush();
2453 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2454
2455 /* The path is unique for each session save. We do neither know nor care
2456 * which session script will actually be used later. This decision is in
2457 * the domain of the session manager. */
2458 session_file = gnome_config_get_real_path(
2459 gnome_client_get_config_prefix(client));
2460 len = strlen(session_file);
2461
2462 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2463 --len; /* get rid of the superfluous trailing '/' */
2464
2465 session_file = g_renew(char, session_file, len + sizeof(suffix));
2466 memcpy(session_file + len, suffix, sizeof(suffix));
2467
2468 success = write_session_file((char_u *)session_file);
2469
2470 if (success)
2471 {
2472 const char *argv[8];
2473 int i;
2474
2475 /* Tell the session manager how to wipe out the stored session data.
2476 * This isn't as dangerous as it looks, don't worry :) session_file
2477 * is a unique absolute filename. Usually it'll be something like
2478 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2479 i = 0;
2480 argv[i++] = "rm";
2481 argv[i++] = session_file;
2482 argv[i] = NULL;
2483
2484 gnome_client_set_discard_command(client, i, (char **)argv);
2485
2486 /* Tell the session manager how to restore the just saved session.
2487 * This is easily done thanks to Vim's -S option. Pass the -f flag
2488 * since there's no need to fork -- it might even cause confusion.
2489 * Also pass the window role to give the WM something to match on.
2490 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2491 i = 0;
2492 argv[i++] = restart_command;
2493 argv[i++] = "-f";
2494 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 argv[i++] = "--role";
2496 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 argv[i++] = "-S";
2498 argv[i++] = session_file;
2499 argv[i] = NULL;
2500
2501 gnome_client_set_restart_command(client, i, (char **)argv);
2502 gnome_client_set_clone_command(client, 0, NULL);
2503 }
2504
2505 g_free(session_file);
2506
2507 return success;
2508}
2509
2510/*
2511 * Called when the session manager wants us to die. There isn't much to save
2512 * here since "save_yourself" has been emitted before (unless serious trouble
2513 * is happening).
2514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002516sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517{
2518 /* Don't write messages to the GUI anymore */
2519 full_screen = FALSE;
2520
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002521 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002522 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002523 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 preserve_exit();
2525}
2526
2527/*
2528 * Connect our signal handlers to be notified on session save and shutdown.
2529 */
2530 static void
2531setup_save_yourself(void)
2532{
2533 GnomeClient *client;
2534
2535 client = gnome_master_client();
2536
2537 if (client != NULL)
2538 {
2539 /* Must use the deprecated gtk_signal_connect() for compatibility
2540 * with GNOME 1. Arrgh, zombies! */
2541 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2542 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2543 gtk_signal_connect(GTK_OBJECT(client), "die",
2544 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2545 }
2546}
2547
2548#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2549
2550# ifdef USE_XSMP
2551/*
2552 * GTK tells us that XSMP needs attention
2553 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002555local_xsmp_handle_requests(
2556 GIOChannel *source UNUSED,
2557 GIOCondition condition,
2558 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559{
2560 if (condition == G_IO_IN)
2561 {
2562 /* Do stuff; maybe close connection */
2563 if (xsmp_handle_requests() == FAIL)
2564 g_io_channel_unref((GIOChannel *)data);
2565 return TRUE;
2566 }
2567 /* Error */
2568 g_io_channel_unref((GIOChannel *)data);
2569 xsmp_close();
2570 return TRUE;
2571}
2572# endif /* USE_XSMP */
2573
2574/*
2575 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2576 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2577 */
2578 static void
2579setup_save_yourself(void)
2580{
2581 Atom *existing_atoms = NULL;
2582 int count = 0;
2583
Bram Moolenaar98921892016-02-23 17:14:37 +01002584# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (xsmp_icefd != -1)
2586 {
2587 /*
2588 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2589 * set up GTK IO monitor
2590 */
2591 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2592
2593 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2594 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002595 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 }
2597 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002598# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 {
2600 /* Fall back to old method */
2601
2602 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002603# if GTK_CHECK_VERSION(3,0,0)
2604 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2605
2606 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2607 GDK_WINDOW_XID(mainwin_win),
2608 &existing_atoms, &count))
2609# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2611 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2612 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002613# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 {
2615 Atom *new_atoms;
2616 Atom save_yourself_xatom;
2617 int i;
2618
2619 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2620
2621 /* check if WM_SAVE_YOURSELF isn't there yet */
2622 for (i = 0; i < count; ++i)
2623 if (existing_atoms[i] == save_yourself_xatom)
2624 break;
2625
2626 if (i == count)
2627 {
2628 /* allocate an Atoms array which is one item longer */
2629 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2630 * sizeof(Atom)));
2631 if (new_atoms != NULL)
2632 {
2633 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2634 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002635# if GTK_CHECK_VERSION(3,0,0)
2636 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2637 GDK_WINDOW_XID(mainwin_win),
2638# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2640 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002641# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 new_atoms, count + 1);
2643 vim_free(new_atoms);
2644 }
2645 }
2646 XFree(existing_atoms);
2647 }
2648 }
2649}
2650
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651/*
2652 * Installing a global event filter seems to be the only way to catch
2653 * client messages of type WM_PROTOCOLS without overriding GDK's own
2654 * client message event filter. Well, that's still better than trying
2655 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 *
2657 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2658 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2659 * I have the nasty feeling modern session managers just don't send this
2660 * deprecated message anymore. Addition: confirmed by several people.
2661 *
2662 * The GNOME session support is much cooler anyway. Unlike this ugly
2663 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2664 * it should work with KDE as well.
2665 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002667global_event_filter(GdkXEvent *xev,
2668 GdkEvent *event UNUSED,
2669 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670{
2671 XEvent *xevent = (XEvent *)xev;
2672
2673 if (xevent != NULL
2674 && xevent->type == ClientMessage
2675 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002676 && (long_u)xevent->xclient.data.l[0]
2677 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 {
2679 out_flush();
2680 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2681 /*
2682 * Set the window's WM_COMMAND property, to let the window manager
2683 * know we are done saving ourselves. We don't want to be
2684 * restarted, thus set argv to NULL.
2685 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002686# if GTK_CHECK_VERSION(3,0,0)
2687 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2688 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2689# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2691 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002692# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 NULL, 0);
2694 return GDK_FILTER_REMOVE;
2695 }
2696
2697 return GDK_FILTER_CONTINUE;
2698}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2700
2701
2702/*
2703 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2704 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002706mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707{
2708/* If you get an error message here, you still need to unpack the runtime
2709 * archive! */
2710#ifdef magick
2711# undef magick
2712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 /* A bit hackish, but avoids casting later and allows optimization */
2714# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715#define magick vim32x32
2716#include "../runtime/vim32x32.xpm"
2717#undef magick
2718#define magick vim16x16
2719#include "../runtime/vim16x16.xpm"
2720#undef magick
2721#define magick vim48x48
2722#include "../runtime/vim48x48.xpm"
2723#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
Bram Moolenaar98921892016-02-23 17:14:37 +01002726#if GTK_CHECK_VERSION(3,0,0)
2727 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2728#endif
2729
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 /* When started with "--echo-wid" argument, write window ID on stdout. */
2731 if (echo_wid_arg)
2732 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002733#if GTK_CHECK_VERSION(3,0,0)
2734 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2735#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 fflush(stdout);
2739 }
2740
2741 if (vim_strchr(p_go, GO_ICON) != NULL)
2742 {
2743 /*
2744 * Add an icon to the main window. For fun and convenience of the user.
2745 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 GList *icons = NULL;
2747
2748 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2749 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2750 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2751
2752 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2753
2754 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2755 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 }
2757
2758#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2759 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761#endif
2762 /* Setup to indicate to the window manager that we want to catch the
2763 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2764 * manager instead. */
2765#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2766 if (using_gnome)
2767#endif
2768 setup_save_yourself();
2769
2770#ifdef FEAT_CLIENTSERVER
2771 if (serverName == NULL && serverDelayedStartName != NULL)
2772 {
2773 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002774# if GTK_CHECK_VERSION(3,0,0)
2775 commWindow = GDK_WINDOW_XID(mainwin_win);
2776
2777 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2778 serverDelayedStartName);
2779# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2781
2782 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2783 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002784# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 }
2786 else
2787 {
2788 /*
2789 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2790 * have to change the "server" registration to that of the main window
2791 * If we have not registered a name yet, remember the window
2792 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002793# if GTK_CHECK_VERSION(3,0,0)
2794 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2795 GDK_WINDOW_XID(mainwin_win));
2796# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2798 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002799# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 }
2801 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002802# if GTK_CHECK_VERSION(3,0,0)
2803 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2804 G_CALLBACK(property_event), NULL);
2805# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2807 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002808# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809#endif
2810}
2811
2812 static GdkCursor *
2813create_blank_pointer(void)
2814{
2815 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002816#if GTK_CHECK_VERSION(3,0,0)
2817 GdkPixbuf *blank_mask;
2818#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 GdkCursor *cursor;
2822 GdkColor color = { 0, 0, 0, 0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002823#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002825#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826
2827#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002828# if GTK_CHECK_VERSION(3,12,0)
2829 {
2830 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2831 GdkScreen * const scrn = gdk_window_get_screen(win);
2832 root_window = gdk_screen_get_root_window(scrn);
2833 }
2834# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837#endif
2838
2839 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2840 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002841#if GTK_CHECK_VERSION(3,0,0)
2842 {
2843 cairo_surface_t *surf;
2844 cairo_t *cr;
2845
2846 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2847 cr = cairo_create(surf);
2848
2849 cairo_set_source_rgb(cr,
2850 color.red / 65535.0,
2851 color.green / 65535.0,
2852 color.blue / 65535.0);
2853 cairo_rectangle(cr, 0, 0, 1, 1);
2854 cairo_fill(cr);
2855 cairo_destroy(cr);
2856
2857 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2858 cairo_surface_destroy(surf);
2859
2860 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2861 blank_mask, 0, 0);
2862 g_object_unref(blank_mask);
2863 }
2864#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2866 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2867 &color, &color, 0, 0);
2868 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870
2871 return cursor;
2872}
2873
2874#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 static void
2876mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002877 GdkScreen *previous_screen UNUSED,
2878 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879{
2880 if (!gtk_widget_has_screen(widget))
2881 return;
2882
2883 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002884 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 */
2886 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002887# if GTK_CHECK_VERSION(3,0,0)
2888 g_object_unref(G_OBJECT(gui.blank_pointer));
2889# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002891# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892
2893 gui.blank_pointer = create_blank_pointer();
2894
Bram Moolenaar98921892016-02-23 17:14:37 +01002895# if GTK_CHECK_VERSION(3,0,0)
2896 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2897 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2898 gui.blank_pointer);
2899# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2901 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002902# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
2904 /*
2905 * Create a new PangoContext for this screen, and initialize it
2906 * with the current font if necessary.
2907 */
2908 if (gui.text_context != NULL)
2909 g_object_unref(gui.text_context);
2910
2911 gui.text_context = gtk_widget_create_pango_context(widget);
2912 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2913
2914 if (gui.norm_font != NULL)
2915 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002916 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002917 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 }
2919}
2920#endif /* HAVE_GTK_MULTIHEAD */
2921
2922/*
2923 * After the drawing area comes up, we calculate all colors and create the
2924 * dummy blank cursor.
2925 *
2926 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2927 * fact that the main VIM engine doesn't take them into account anywhere.
2928 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002930drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931{
2932 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002933#if GTK_CHECK_VERSION(3,0,0)
2934 GtkAllocation allocation;
2935#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936
2937#ifdef FEAT_XIM
2938 xim_init();
2939#endif
2940 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002941#if GTK_CHECK_VERSION(3,0,0)
2942 gui.surface = gdk_window_create_similar_surface(
2943 gtk_widget_get_window(widget),
2944 CAIRO_CONTENT_COLOR_ALPHA,
2945 gtk_widget_get_allocated_width(widget),
2946 gtk_widget_get_allocated_height(widget));
2947#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950
2951 gui.blank_pointer = create_blank_pointer();
2952 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002953#if GTK_CHECK_VERSION(3,0,0)
2954 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
2955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 /* get the actual size of the scrollbars, if they are realized */
2960 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2961 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2962 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2963 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002964#if GTK_CHECK_VERSION(3,0,0)
2965 gtk_widget_get_allocation(sbar, &allocation);
2966 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2967 gui.scrollbar_width = allocation.width;
2968#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
2970 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972
2973 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002974#if GTK_CHECK_VERSION(3,0,0)
2975 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2976 gui.scrollbar_height = allocation.height;
2977#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
2979 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981}
2982
2983/*
2984 * Properly clean up on shutdown.
2985 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002987drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988{
2989 /* Don't write messages to the GUI anymore */
2990 full_screen = FALSE;
2991
2992#ifdef FEAT_XIM
2993 im_shutdown();
2994#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 if (gui.ascii_glyphs != NULL)
2996 {
2997 pango_glyph_string_free(gui.ascii_glyphs);
2998 gui.ascii_glyphs = NULL;
2999 }
3000 if (gui.ascii_font != NULL)
3001 {
3002 g_object_unref(gui.ascii_font);
3003 gui.ascii_font = NULL;
3004 }
3005 g_object_unref(gui.text_context);
3006 gui.text_context = NULL;
3007
Bram Moolenaar98921892016-02-23 17:14:37 +01003008#if GTK_CHECK_VERSION(3,0,0)
3009 if (gui.surface != NULL)
3010 {
3011 cairo_surface_destroy(gui.surface);
3012 gui.surface = NULL;
3013 }
3014#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 g_object_unref(gui.text_gc);
3016 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003017#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018
Bram Moolenaar98921892016-02-23 17:14:37 +01003019#if GTK_CHECK_VERSION(3,0,0)
3020 g_object_unref(G_OBJECT(gui.blank_pointer));
3021#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025}
3026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003028drawarea_style_set_cb(GtkWidget *widget UNUSED,
3029 GtkStyle *previous_style UNUSED,
3030 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031{
3032 gui_mch_new_colors();
3033}
3034
Bram Moolenaar98921892016-02-23 17:14:37 +01003035#if GTK_CHECK_VERSION(3,0,0)
3036 static gboolean
3037drawarea_configure_event_cb(GtkWidget *widget,
3038 GdkEventConfigure *event,
3039 gpointer data UNUSED)
3040{
3041 static int cur_width = 0;
3042 static int cur_height = 0;
3043
3044 g_return_val_if_fail(event
3045 && event->width >= 1 && event->height >= 1, TRUE);
3046
3047 if (event->width == cur_width && event->height == cur_height)
3048 return TRUE;
3049
3050 cur_width = event->width;
3051 cur_height = event->height;
3052
3053 if (gui.surface != NULL)
3054 cairo_surface_destroy(gui.surface);
3055
3056 gui.surface = gdk_window_create_similar_surface(
3057 gtk_widget_get_window(widget),
3058 CAIRO_CONTENT_COLOR_ALPHA,
3059 event->width, event->height);
3060
3061 gtk_widget_queue_draw(widget);
3062
3063 return TRUE;
3064}
3065#endif
3066
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067/*
3068 * Callback routine for the "delete_event" signal on the toplevel window.
3069 * Tries to vim gracefully, or refuses to exit with changed buffers.
3070 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003072delete_event_cb(GtkWidget *widget UNUSED,
3073 GdkEventAny *event UNUSED,
3074 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 gui_shell_closed();
3077 return TRUE;
3078}
3079
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003080#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3081 static int
3082get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3083{
3084 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3085
Bram Moolenaar98921892016-02-23 17:14:37 +01003086# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003087 if (using_gnome && widget != NULL)
3088 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003089 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003090 BonoboDockItem *dockitem;
3091
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003092 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003093 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3094 {
3095 /* Only menu & toolbar are dock items. Could tabline be?
3096 * Seem to be only the 2 defined in GNOME */
3097 widget = parent;
3098 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003099
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003100 if (dockitem == NULL || dockitem->is_floating)
3101 return 0;
3102 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3103 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003104 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003105# endif
3106# if GTK_CHECK_VERSION(3,0,0)
3107 if (widget != NULL
3108 && item_orientation == orientation
3109 && gtk_widget_get_realized(widget)
3110 && gtk_widget_get_visible(widget))
3111# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003112 if (widget != NULL
3113 && item_orientation == orientation
3114 && GTK_WIDGET_REALIZED(widget)
3115 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003116# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003117 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003118# if GTK_CHECK_VERSION(3,0,0)
3119 GtkAllocation allocation;
3120
3121 gtk_widget_get_allocation(widget, &allocation);
3122
3123 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3124 return allocation.height;
3125 else
3126 return allocation.width;
3127# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003128 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3129 return widget->allocation.height;
3130 else
3131 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003132# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003133 }
3134 return 0;
3135}
3136#endif
3137
3138 static int
3139get_menu_tool_width(void)
3140{
3141 int width = 0;
3142
3143#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3144# ifdef FEAT_MENU
3145 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3146# endif
3147# ifdef FEAT_TOOLBAR
3148 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3149# endif
3150# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003151 if (gui.tabline != NULL)
3152 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003153# endif
3154#endif
3155
3156 return width;
3157}
3158
3159 static int
3160get_menu_tool_height(void)
3161{
3162 int height = 0;
3163
3164#ifdef FEAT_MENU
3165 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3166#endif
3167#ifdef FEAT_TOOLBAR
3168 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3169#endif
3170#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003171 if (gui.tabline != NULL)
3172 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003173#endif
3174
3175 return height;
3176}
3177
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003178/* This controls whether we can set the real window hints at
3179 * start-up when in a GtkPlug.
3180 * 0 = normal processing (default)
3181 * 1 = init. hints set, no-one's tried to reset since last check
3182 * 2 = init. hints set, attempt made to change hints
3183 */
3184static int init_window_hints_state = 0;
3185
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003186 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003187update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003188{
3189 static int old_width = 0;
3190 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003191 static int old_min_width = 0;
3192 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003193 static int old_char_width = 0;
3194 static int old_char_height = 0;
3195
3196 int width;
3197 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003198 int min_width;
3199 int min_height;
3200
3201 /* At start-up, don't try to set the hints until the initial
3202 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003203 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003204 */
3205 if (!(force_width && force_height) && init_window_hints_state > 0)
3206 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003207 /* Don't do it! */
3208 init_window_hints_state = 2;
3209 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003210 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003211
3212 /* This also needs to be done when the main window isn't there yet,
3213 * otherwise the hints don't work. */
3214 width = gui_get_base_width();
3215 height = gui_get_base_height();
3216# ifdef FEAT_MENU
3217 height += tabline_height() * gui.char_height;
3218# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003219 width += get_menu_tool_width();
3220 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003221
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003222 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003223 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003224 * 'set columns=' or init. -geom) we briefly set the min. to the size
3225 * we wish to be instead of the legitimate minimum so that we actually
3226 * resize correctly.
3227 */
3228 if (force_width && force_height)
3229 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003230 min_width = force_width;
3231 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003232 }
3233 else
3234 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003235 min_width = width + MIN_COLUMNS * gui.char_width;
3236 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003237 }
3238
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003239 /* Avoid an expose event when the size didn't change. */
3240 if (width != old_width
3241 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003242 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003243 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003244 || gui.char_width != old_char_width
3245 || gui.char_height != old_char_height)
3246 {
3247 GdkGeometry geometry;
3248 GdkWindowHints geometry_mask;
3249
3250 geometry.width_inc = gui.char_width;
3251 geometry.height_inc = gui.char_height;
3252 geometry.base_width = width;
3253 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003254 geometry.min_width = min_width;
3255 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003256 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3257 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003258 /* Using gui.formwin as geometry widget doesn't work as expected
3259 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3260 * in Vim confuse GTK+. */
3261 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3262 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003263 old_width = width;
3264 old_height = height;
3265 old_min_width = min_width;
3266 old_min_height = min_height;
3267 old_char_width = gui.char_width;
3268 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003269 }
3270}
3271
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272#ifdef FEAT_TOOLBAR
3273
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274/*
3275 * This extra effort wouldn't be necessary if we only used stock icons in the
3276 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3277 * shouldn't be treated differently, thus we do need this.
3278 */
3279 static void
3280icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3281{
3282 if (GTK_IS_IMAGE(widget))
3283 {
3284 GtkImage *image = (GtkImage *)widget;
3285
Bram Moolenaar98921892016-02-23 17:14:37 +01003286# if GTK_CHECK_VERSION(3,10,0)
3287 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3288 {
3289 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3290 const gchar *icon_name;
3291
3292 gtk_image_get_icon_name(image, &icon_name, NULL);
3293
3294 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3295 }
3296# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 /* User-defined icons are stored in a GtkIconSet */
3298 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3299 {
3300 GtkIconSet *icon_set;
3301 GtkIconSize icon_size;
3302
3303 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3304 icon_size = (GtkIconSize)(long)user_data;
3305
3306 gtk_icon_set_ref(icon_set);
3307 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3308 gtk_icon_set_unref(icon_set);
3309 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003310# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 }
3312 else if (GTK_IS_CONTAINER(widget))
3313 {
3314 gtk_container_foreach((GtkContainer *)widget,
3315 &icon_size_changed_foreach,
3316 user_data);
3317 }
3318}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
3320 static void
3321set_toolbar_style(GtkToolbar *toolbar)
3322{
3323 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 GtkIconSize size;
3325 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3328 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3329 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003330 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3332 style = GTK_TOOLBAR_BOTH;
3333 else if (toolbar_flags & TOOLBAR_TEXT)
3334 style = GTK_TOOLBAR_TEXT;
3335 else
3336 style = GTK_TOOLBAR_ICONS;
3337
3338 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003339# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003341# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 switch (tbis_flags)
3344 {
3345 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3346 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3347 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3348 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003349 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3350 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 default: size = GTK_ICON_SIZE_INVALID; break;
3352 }
3353 oldsize = gtk_toolbar_get_icon_size(toolbar);
3354
3355 if (size == GTK_ICON_SIZE_INVALID)
3356 {
3357 /* Let global user preferences decide the icon size. */
3358 gtk_toolbar_unset_icon_size(toolbar);
3359 size = gtk_toolbar_get_icon_size(toolbar);
3360 }
3361 if (size != oldsize)
3362 {
3363 gtk_container_foreach(GTK_CONTAINER(toolbar),
3364 &icon_size_changed_foreach,
3365 GINT_TO_POINTER((int)size));
3366 }
3367 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368}
3369
3370#endif /* FEAT_TOOLBAR */
3371
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003372#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3373static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003374static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003375# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003376static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003377# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003378static int clicked_page; /* page clicked in tab line */
3379
3380/*
3381 * Handle selecting an item in the tab line popup menu.
3382 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003383 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003384tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003385{
Bram Moolenaara5621492006-02-25 21:55:24 +00003386 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003387 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003388}
3389
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003390 static void
3391add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3392{
3393 GtkWidget *item;
3394 char_u *utf_text;
3395
3396 utf_text = CONVERT_TO_UTF8(text);
3397 item = gtk_menu_item_new_with_label((const char *)utf_text);
3398 gtk_widget_show(item);
3399 CONVERT_TO_UTF8_FREE(utf_text);
3400
3401 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003402# if GTK_CHECK_VERSION(3,0,0)
3403 g_signal_connect(G_OBJECT(item), "activate",
3404 G_CALLBACK(tabline_menu_handler),
3405 GINT_TO_POINTER(resp));
3406# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003407 gtk_signal_connect(GTK_OBJECT(item), "activate",
3408 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003409 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003410# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003411}
3412
Bram Moolenaara5621492006-02-25 21:55:24 +00003413/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003414 * Create a menu for the tab line.
3415 */
3416 static GtkWidget *
3417create_tabline_menu(void)
3418{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003419 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003420
3421 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003422 if (first_tabpage->tp_next != NULL)
3423 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3424 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003425 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3426 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003427
3428 return menu;
3429}
3430
3431 static gboolean
3432on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3433{
3434 /* Was this button press event ? */
3435 if (event->type == GDK_BUTTON_PRESS)
3436 {
3437 GdkEventButton *bevent = (GdkEventButton *)event;
3438 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003439 int y = bevent->y;
3440 GtkWidget *tabwidget;
3441 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003442
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003443 /* When ignoring events return TRUE so that the selected page doesn't
3444 * change. */
3445 if (hold_gui_events
3446# ifdef FEAT_CMDWIN
3447 || cmdwin_type != 0
3448# endif
3449 )
3450 return TRUE;
3451
Bram Moolenaar98921892016-02-23 17:14:37 +01003452# if GTK_CHECK_VERSION(3,0,0)
3453 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3454# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003455 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003456# endif
3457
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003458 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003459# if GTK_CHECK_VERSION(3,0,0)
3460 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3461 "tab_num"));
3462# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003463 clicked_page = (int)(long)gtk_object_get_user_data(
3464 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003465# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003466
3467 /* If the event was generated for 3rd button popup the menu. */
3468 if (bevent->button == 3)
3469 {
3470 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3471 bevent->button, bevent->time);
3472 /* We handled the event. */
3473 return TRUE;
3474 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003475 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003476 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003477 if (clicked_page == 0)
3478 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003479 /* Click after all tabs moves to next tab page. When "x" is
3480 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003481 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003482 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003483 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003484 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003485
Bram Moolenaara5621492006-02-25 21:55:24 +00003486 /* We didn't handle the event. */
3487 return FALSE;
3488}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003489
3490/*
3491 * Handle selecting one of the tabs.
3492 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003493 static void
3494on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003495 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003496# if GTK_CHECK_VERSION(3,0,0)
3497 gpointer *page UNUSED,
3498# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003499 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003500# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003501 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003502 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003503{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003504 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003505 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003506 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003507 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003508}
3509
3510/*
3511 * Show or hide the tabline.
3512 */
3513 void
3514gui_mch_show_tabline(int showit)
3515{
3516 if (gui.tabline == NULL)
3517 return;
3518
3519 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3520 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003521 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003522 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003523 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003524 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003525# if GTK_CHECK_VERSION(3,0,0)
3526 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3527# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003528 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003529# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003530 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003531
3532 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003533}
3534
3535/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003536 * Return TRUE when tabline is displayed.
3537 */
3538 int
3539gui_mch_showing_tabline(void)
3540{
3541 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003542 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003543}
3544
3545/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003546 * Update the labels of the tabline.
3547 */
3548 void
3549gui_mch_update_tabline(void)
3550{
3551 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003552 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003553 GtkWidget *label;
3554 tabpage_T *tp;
3555 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003556 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003557 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003558 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003559
3560 if (gui.tabline == NULL)
3561 return;
3562
3563 ignore_tabline_evt = TRUE;
3564
3565 /* Add a label for each tab page. They all contain the same text area. */
3566 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3567 {
3568 if (tp == curtab)
3569 curtabidx = nr;
3570
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003571 tab_num = nr + 1;
3572
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003573 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3574 if (page == NULL)
3575 {
3576 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003577# if GTK_CHECK_VERSION(3,2,0)
3578 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3579 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3580# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003581 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003582# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003583 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003584 event_box = gtk_event_box_new();
3585 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003586 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003587# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003588 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003589# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003590 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003591 gtk_widget_show(label);
3592 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3593 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003594 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003595 nr++);
3596 }
3597
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003598 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003599# if GTK_CHECK_VERSION(3,0,0)
3600 g_object_set_data(G_OBJECT(event_box), "tab_num",
3601 GINT_TO_POINTER(tab_num));
3602# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003603 gtk_object_set_user_data(GTK_OBJECT(event_box),
3604 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003605# endif
3606# if GTK_CHECK_VERSION(3,0,0)
3607 label = gtk_bin_get_child(GTK_BIN(event_box));
3608# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003609 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003610# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003611 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003612 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003613 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003614 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003615
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003616 get_tabline_label(tp, TRUE);
3617 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003618# if GTK_CHECK_VERSION(3,0,0)
3619 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3620# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003621 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3622 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003623# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003624 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003625 }
3626
3627 /* Remove any old labels. */
3628 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3629 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3630
Bram Moolenaar98921892016-02-23 17:14:37 +01003631# if GTK_CHECK_VERSION(3,0,0)
3632 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3633 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3634# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003635 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003636 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003637# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003638
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003639 /* Make sure everything is in place before drawing text. */
3640 gui_mch_update();
3641
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003642 ignore_tabline_evt = FALSE;
3643}
3644
3645/*
3646 * Set the current tab to "nr". First tab is 1.
3647 */
3648 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003649gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003650{
3651 if (gui.tabline == NULL)
3652 return;
3653
3654 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003655# if GTK_CHECK_VERSION(3,0,0)
3656 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3657 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3658# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003659 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003660 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003661# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003662 ignore_tabline_evt = FALSE;
3663}
3664
3665#endif /* FEAT_GUI_TABLINE */
3666
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003668 * Add selection targets for PRIMARY and CLIPBOARD selections.
3669 */
3670 void
3671gui_gtk_set_selection_targets(void)
3672{
3673 int i, j = 0;
3674 int n_targets = N_SELECTION_TARGETS;
3675 GtkTargetEntry targets[N_SELECTION_TARGETS];
3676
3677 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3678 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003679 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003680 * return something, instead of trying another target. Therefore only
3681 * offer TARGET_HTML when it works. */
3682 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3683 n_targets--;
3684 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003685 targets[j++] = selection_targets[i];
3686 }
3687
3688 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3689 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3690 gtk_selection_add_targets(gui.drawarea,
3691 (GdkAtom)GDK_SELECTION_PRIMARY,
3692 targets, n_targets);
3693 gtk_selection_add_targets(gui.drawarea,
3694 (GdkAtom)clip_plus.gtk_sel_atom,
3695 targets, n_targets);
3696}
3697
3698/*
3699 * Set up for receiving DND items.
3700 */
3701 void
3702gui_gtk_set_dnd_targets(void)
3703{
3704 int i, j = 0;
3705 int n_targets = N_DND_TARGETS;
3706 GtkTargetEntry targets[N_DND_TARGETS];
3707
3708 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3709 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003710 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003711 n_targets--;
3712 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003713 targets[j++] = dnd_targets[i];
3714 }
3715
3716 gtk_drag_dest_unset(gui.drawarea);
3717 gtk_drag_dest_set(gui.drawarea,
3718 GTK_DEST_DEFAULT_ALL,
3719 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003720 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003721}
3722
3723/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3725 * Returns OK for success, FAIL when the GUI can't be started.
3726 */
3727 int
3728gui_mch_init(void)
3729{
3730 GtkWidget *vbox;
3731
3732#ifdef FEAT_GUI_GNOME
3733 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3734 * exits on failure, but that's a non-issue because we already called
3735 * gtk_init_check() in gui_mch_init_check(). */
3736 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003737 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3739 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003740# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003741 {
3742 char *p = setlocale(LC_NUMERIC, NULL);
3743
3744 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3745 * init may change it. */
3746 if (p == NULL || strcmp(p, "C") != 0)
3747 setlocale(LC_NUMERIC, "C");
3748 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003749# endif
3750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751#endif
3752 vim_free(gui_argv);
3753 gui_argv = NULL;
3754
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003755#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 /* Set the human-readable application name */
3757 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 /*
3760 * Force UTF-8 output no matter what the value of 'encoding' is.
3761 * did_set_string_option() in option.c prohibits changing 'termencoding'
3762 * to something else than UTF-8 if the GUI is in use.
3763 */
3764 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3765
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003766#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003768#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3770 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003771#if !GTK_CHECK_VERSION(3,0,0)
3772# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003774# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775#endif
3776
3777 /* Initialize values */
3778 gui.border_width = 2;
3779 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3780 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003781 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003783 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003785 /* LINTED: avoid warning: conversion to 'unsigned long' */
3786 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787
3788 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003789 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791
3792 /* Set default foreground and background colors. */
3793 gui.norm_pixel = gui.def_norm_pixel;
3794 gui.back_pixel = gui.def_back_pixel;
3795
3796 if (gtk_socket_id != 0)
3797 {
3798 GtkWidget *plug;
3799
3800 /* Use GtkSocket from another app. */
3801#ifdef HAVE_GTK_MULTIHEAD
3802 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3803 gtk_socket_id);
3804#else
3805 plug = gtk_plug_new(gtk_socket_id);
3806#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003807#if GTK_CHECK_VERSION(3,0,0)
3808 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3809#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 {
3813 gui.mainwin = plug;
3814 }
3815 else
3816 {
3817 g_warning("Connection to GTK+ socket (ID %u) failed",
3818 (unsigned int)gtk_socket_id);
3819 /* Pretend we never wanted it if it failed (get own window) */
3820 gtk_socket_id = 0;
3821 }
3822 }
3823
3824 if (gtk_socket_id == 0)
3825 {
3826#ifdef FEAT_GUI_GNOME
3827 if (using_gnome)
3828 {
3829 gui.mainwin = gnome_app_new("Vim", NULL);
3830# ifdef USE_XSMP
3831 /* Use the GNOME save-yourself functionality now. */
3832 xsmp_close();
3833# endif
3834 }
3835 else
3836#endif
3837 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3838 }
3839
3840 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3841
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 /* Create the PangoContext used for drawing all text. */
3843 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3844 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845
Bram Moolenaar98921892016-02-23 17:14:37 +01003846#if GTK_CHECK_VERSION(3,0,0)
3847 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3852
Bram Moolenaar98921892016-02-23 17:14:37 +01003853#if GTK_CHECK_VERSION(3,0,0)
3854 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3855 G_CALLBACK(&delete_event_cb), NULL);
3856
3857 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3858 G_CALLBACK(&mainwin_realize), NULL);
3859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3861 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3862
3863 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3864 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866#ifdef HAVE_GTK_MULTIHEAD
3867 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3868 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 gui.accel_group = gtk_accel_group_new();
3871 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003873 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003874#if GTK_CHECK_VERSION(3,2,0)
3875 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3876 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3877#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
3881#ifdef FEAT_GUI_GNOME
3882 if (using_gnome)
3883 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003884# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 /* automagically restore menubar/toolbar placement */
3886 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3887# endif
3888 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3889 }
3890 else
3891#endif
3892 {
3893 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3894 gtk_widget_show(vbox);
3895 }
3896
3897#ifdef FEAT_MENU
3898 /*
3899 * Create the menubar and handle
3900 */
3901 gui.menubar = gtk_menu_bar_new();
3902 gtk_widget_set_name(gui.menubar, "vim-menubar");
3903
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003904 /* Avoid that GTK takes <F10> away from us. */
3905 {
3906 GtkSettings *gtk_settings;
3907
3908 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3909 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3910 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003911
3912
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913# ifdef FEAT_GUI_GNOME
3914 if (using_gnome)
3915 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 BonoboDockItem *dockitem;
3917
3918 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3919 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3920 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003921 /* We don't want the menu to float. */
3922 bonobo_dock_item_set_behavior(dockitem,
3923 bonobo_dock_item_get_behavior(dockitem)
3924 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 }
3927 else
3928# endif /* FEAT_GUI_GNOME */
3929 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003930 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3931 * disabled in gui_init() later. */
3932 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3934 }
3935#endif /* FEAT_MENU */
3936
3937#ifdef FEAT_TOOLBAR
3938 /*
3939 * Create the toolbar and handle
3940 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003942# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003943 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003944 /* N.B. Since the default value of GtkToolbar::button-relief is
3945 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3946# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 gtk_rc_parse_string(
3948 "style \"vim-toolbar-style\" {\n"
3949 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3950 "}\n"
3951 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003952# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 gui.toolbar = gtk_toolbar_new();
3954 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3956
3957# ifdef FEAT_GUI_GNOME
3958 if (using_gnome)
3959 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 BonoboDockItem *dockitem;
3961
3962 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3963 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3964 GNOME_APP_TOOLBAR_NAME);
3965 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003966 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003967 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003968 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003969 bonobo_dock_item_get_behavior(dockitem)
3970 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 }
3973 else
3974# endif /* FEAT_GUI_GNOME */
3975 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3977 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3978 gtk_widget_show(gui.toolbar);
3979 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3980 }
3981#endif /* FEAT_TOOLBAR */
3982
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003983#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003984 /*
3985 * Use a Notebook for the tab pages labels. The labels are hidden by
3986 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003987 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003988 gui.tabline = gtk_notebook_new();
3989 gtk_widget_show(gui.tabline);
3990 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3991 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3992 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003993 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003994# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003995 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003996# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003997
Bram Moolenaar98921892016-02-23 17:14:37 +01003998# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003999 tabline_tooltip = gtk_tooltips_new();
4000 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004001# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004002
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004003 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004004 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004005
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004006 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004007# if GTK_CHECK_VERSION(3,2,0)
4008 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4009 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4010# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004011 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004012# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004013 gtk_widget_show(page);
4014 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4015 label = gtk_label_new("-Empty-");
4016 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004017 event_box = gtk_event_box_new();
4018 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004019# if GTK_CHECK_VERSION(3,0,0)
4020 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4021# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004022 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004023# endif
4024# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004025 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004026# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004027 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004028 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004029 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004030
Bram Moolenaar98921892016-02-23 17:14:37 +01004031# if GTK_CHECK_VERSION(3,0,0)
4032 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4033 G_CALLBACK(on_select_tab), NULL);
4034# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004035 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004036 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004037# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004038
4039 /* Create a popup menu for the tab line and connect it. */
4040 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004041# if GTK_CHECK_VERSION(3,0,0)
4042 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4043 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4044# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004045 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004046 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004047# endif
4048#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004049
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004051#if GTK_CHECK_VERSION(3,0,0)
4052 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4053#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004055#endif
4056#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059
4060 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004061#if GTK_CHECK_VERSION(3,0,0)
4062 gui.surface = NULL;
4063 gui.by_signal = FALSE;
4064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065
4066 /* Determine which events we will filter. */
4067 gtk_widget_set_events(gui.drawarea,
4068 GDK_EXPOSURE_MASK |
4069 GDK_ENTER_NOTIFY_MASK |
4070 GDK_LEAVE_NOTIFY_MASK |
4071 GDK_BUTTON_PRESS_MASK |
4072 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 GDK_KEY_PRESS_MASK |
4075 GDK_KEY_RELEASE_MASK |
4076 GDK_POINTER_MOTION_MASK |
4077 GDK_POINTER_MOTION_HINT_MASK);
4078
4079 gtk_widget_show(gui.drawarea);
4080 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4081 gtk_widget_show(gui.formwin);
4082 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4083
4084 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4085 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004086#if GTK_CHECK_VERSION(3,0,0)
4087 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4088 : G_OBJECT(gui.drawarea),
4089 "key-press-event",
4090 G_CALLBACK(key_press_event), NULL);
4091#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4093 : GTK_OBJECT(gui.drawarea),
4094 "key_press_event",
4095 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004096#endif
4097#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 /* Also forward key release events for the benefit of GTK+ 2 input
4099 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4100 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4101 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004102 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 G_CALLBACK(&key_release_event), NULL);
4104#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004105#if GTK_CHECK_VERSION(3,0,0)
4106 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4107 G_CALLBACK(drawarea_realize_cb), NULL);
4108 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4109 G_CALLBACK(drawarea_unrealize_cb), NULL);
4110 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4111 G_CALLBACK(drawarea_configure_event_cb), NULL);
4112 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4113 G_CALLBACK(&drawarea_style_set_cb), NULL);
4114#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4116 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4117 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4118 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4119
4120 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4121 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123
Bram Moolenaar98921892016-02-23 17:14:37 +01004124#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004126#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127
4128#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4129 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4130 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4131#endif
4132
4133 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004134 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004135#if GTK_CHECK_VERSION(3,0,0)
4136 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4137#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004139#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140
4141 /*
4142 * Set clipboard specific atoms
4143 */
4144 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4147 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4148
4149 /*
4150 * Start out by adding the configured border width into the border offset.
4151 */
4152 gui.border_offset = gui.border_width;
4153
Bram Moolenaar98921892016-02-23 17:14:37 +01004154#if GTK_CHECK_VERSION(3,0,0)
4155 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4156 G_CALLBACK(draw_event), NULL);
4157#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4159 GTK_SIGNAL_FUNC(visibility_event), NULL);
4160 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4161 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004162#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163
4164 /*
4165 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4166 * Only needed for some window managers.
4167 */
4168 if (vim_strchr(p_go, GO_POINTER) != NULL)
4169 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004170#if GTK_CHECK_VERSION(3,0,0)
4171 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4172 G_CALLBACK(leave_notify_event), NULL);
4173 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4174 G_CALLBACK(enter_notify_event), NULL);
4175#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4177 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4178 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4179 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 }
4182
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004183 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4184 * only its widgets. Arguably, this could be common code and we not use
4185 * the window focus at all, but let's be safe.
4186 */
4187 if (gtk_socket_id == 0)
4188 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004189#if GTK_CHECK_VERSION(3,0,0)
4190 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4191 G_CALLBACK(focus_out_event), NULL);
4192 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4193 G_CALLBACK(focus_in_event), NULL);
4194#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004195 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4196 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4197 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4198 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004199#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004200 }
4201 else
4202 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004203#if GTK_CHECK_VERSION(3,0,0)
4204 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4205 G_CALLBACK(focus_out_event), NULL);
4206 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4207 G_CALLBACK(focus_in_event), NULL);
4208#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004209 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4210 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4211 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4212 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004213#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004214#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004215# if GTK_CHECK_VERSION(3,0,0)
4216 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4217 G_CALLBACK(focus_out_event), NULL);
4218 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4219 G_CALLBACK(focus_in_event), NULL);
4220# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004221 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4222 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4223 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4224 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004225# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004226#endif /* FEAT_GUI_TABLINE */
4227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228
Bram Moolenaar98921892016-02-23 17:14:37 +01004229#if GTK_CHECK_VERSION(3,0,0)
4230 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4231 G_CALLBACK(motion_notify_event), NULL);
4232 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4233 G_CALLBACK(button_press_event), NULL);
4234 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4235 G_CALLBACK(button_release_event), NULL);
4236 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4237 G_CALLBACK(&scroll_event), NULL);
4238#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4240 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4241 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4242 GTK_SIGNAL_FUNC(button_press_event), NULL);
4243 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4244 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4246 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248
4249 /*
4250 * Add selection handler functions.
4251 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004252#if GTK_CHECK_VERSION(3,0,0)
4253 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4254 G_CALLBACK(selection_clear_event), NULL);
4255 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4256 G_CALLBACK(selection_received_cb), NULL);
4257#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4259 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4260 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4261 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263
Bram Moolenaara76638f2010-06-05 12:49:46 +02004264 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265
Bram Moolenaar98921892016-02-23 17:14:37 +01004266#if GTK_CHECK_VERSION(3,0,0)
4267 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4268 G_CALLBACK(selection_get_cb), NULL);
4269#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4271 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
4274 /* Pretend we don't have input focus, we will get an event if we do. */
4275 gui.in_focus = FALSE;
4276
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 return OK;
4278}
4279
4280#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4281/*
4282 * This is called from gui_start() after a fork() has been done.
4283 * We have to tell the session manager our new PID.
4284 */
4285 void
4286gui_mch_forked(void)
4287{
4288 if (using_gnome)
4289 {
4290 GnomeClient *client;
4291
4292 client = gnome_master_client();
4293
4294 if (client != NULL)
4295 gnome_client_set_process_id(client, getpid());
4296 }
4297}
4298#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4299
Bram Moolenaar98921892016-02-23 17:14:37 +01004300#if GTK_CHECK_VERSION(3,0,0)
4301 static void
4302gui_gtk_get_rgb_from_pixel(guint32 pixel, GdkRGBA *result)
4303{
4304 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4305 guint32 r_mask, g_mask, b_mask;
4306 gint r_shift, g_shift, b_shift;
4307
4308 if (visual == NULL)
4309 {
4310 result->red = 0.0;
4311 result->green = 0.0;
4312 result->blue = 0.0;
4313 result->alpha = 0.0;
4314 return;
4315 }
4316
4317 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4318 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4319 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4320
4321 result->red = ((pixel & r_mask) >> r_shift) / 255.0;
4322 result->green = ((pixel & g_mask) >> g_shift) / 255.0;
4323 result->blue = ((pixel & b_mask) >> b_shift) / 255.0;
4324 result->alpha = 1.0;
4325}
4326
4327/* Convert a GdRGBA into a pixel value using drawarea's visual */
4328 static guint32
4329gui_gtk_get_pixel_from_rgb(const GdkRGBA *rgba)
4330{
4331 GdkVisual * const visual = gtk_widget_get_visual(gui.drawarea);
4332 guint32 r_mask, g_mask, b_mask;
4333 gint r_shift, g_shift, b_shift;
4334 guint32 r, g, b;
4335
4336 if (visual == NULL)
4337 return 0;
4338
4339 gdk_visual_get_red_pixel_details(visual, &r_mask, &r_shift, NULL);
4340 gdk_visual_get_green_pixel_details(visual, &g_mask, &g_shift, NULL);
4341 gdk_visual_get_blue_pixel_details(visual, &b_mask, &b_shift, NULL);
4342
4343 r = rgba->red * 65535;
4344 g = rgba->green * 65535;
4345 b = rgba->blue * 65535;
4346
4347 return ((r << r_shift) & r_mask) |
4348 ((g << g_shift) & g_mask) |
4349 ((b << b_shift) & b_mask);
4350}
4351
4352 static void
4353set_cairo_source_rgb_from_pixel(cairo_t *cr, guint32 pixel)
4354{
4355 GdkRGBA result;
4356 gui_gtk_get_rgb_from_pixel(pixel, &result);
4357 cairo_set_source_rgb(cr, result.red, result.green, result.blue);
4358}
4359#endif /* GTK_CHECK_VERSION(3,0,0) */
4360
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361/*
4362 * Called when the foreground or background color has been changed.
4363 * This used to change the graphics contexts directly but we are
4364 * currently manipulating them where desired.
4365 */
4366 void
4367gui_mch_new_colors(void)
4368{
Bram Moolenaar98921892016-02-23 17:14:37 +01004369#if GTK_CHECK_VERSION(3,0,0)
4370 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4371
4372 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4373#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004377#if GTK_CHECK_VERSION(3,4,0)
4378 GdkRGBA color;
4379
4380 gui_gtk_get_rgb_from_pixel(gui.back_pixel, &color);
4381 {
4382 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
4383 color.red, color.green, color.blue, color.alpha);
4384 if (pat != NULL)
4385 {
4386 gdk_window_set_background_pattern(da_win, pat);
4387 cairo_pattern_destroy(pat);
4388 }
4389 else
4390 gdk_window_set_background_rgba(da_win, &color);
4391 }
4392#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 GdkColor color = { 0, 0, 0, 0 };
4394
4395 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004396# if GTK_CHECK_VERSION(3,0,0)
4397 gdk_window_set_background(da_win, &color);
4398# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004400# endif
4401#endif /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 }
4403}
4404
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405/*
4406 * This signal informs us about the need to rearrange our sub-widgets.
4407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004409form_configure_event(GtkWidget *widget UNUSED,
4410 GdkEventConfigure *event,
4411 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004413 int usable_height = event->height;
4414
4415 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4416 * no. of char-heights), so we have to manually sanitise them.
4417 * Widths seem to sort themselves out, don't ask me why.
4418 */
4419 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004420 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004421
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004423 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 gtk_form_thaw(GTK_FORM(gui.formwin));
4425
4426 return TRUE;
4427}
4428
4429/*
4430 * Function called when window already closed.
4431 * We can't do much more here than to trying to preserve what had been done,
4432 * since the window is already inevitably going away.
4433 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004434#if GTK_CHECK_VERSION(3,0,0)
4435 static void
4436mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4437#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004439mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441{
4442 /* Don't write messages to the GUI anymore */
4443 full_screen = FALSE;
4444
4445 gui.mainwin = NULL;
4446 gui.drawarea = NULL;
4447
4448 if (!exiting) /* only do anything if the destroy was unexpected */
4449 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004450 vim_strncpy(IObuff,
4451 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4452 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 preserve_exit();
4454 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004455#ifdef USE_GRESOURCE
4456 gui_gtk_unregister_resource();
4457#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458}
4459
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004460
4461/*
4462 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4463 * hints (and thus the required size from -geom), but that after that we
4464 * put the hints back to normal (the actual minimum size) so we may
4465 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004466 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004467 * only way we have of making ourselves bigger (by set lines/columns).
4468 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004469 * second after the final attempt to reset the real minimum hints (done by
4470 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004471 * We'll not let the default hints be set while this timer's active.
4472 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004473 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004474check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004475{
4476 if (init_window_hints_state == 1)
4477 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004478 /* Safe to use normal hints now */
4479 init_window_hints_state = 0;
4480 update_window_manager_hints(0, 0);
4481 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004482 }
4483
4484 /* Keep on trying */
4485 init_window_hints_state = 1;
4486 return TRUE;
4487}
4488
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489/*
4490 * Open the GUI window which was created by a call to gui_mch_init().
4491 */
4492 int
4493gui_mch_open(void)
4494{
4495 guicolor_T fg_pixel = INVALCOLOR;
4496 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004497 guint pixel_width;
4498 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 /*
4501 * Allow setting a window role on the command line, or invent one
4502 * if none was specified. This is mainly useful for GNOME session
4503 * support; allowing the WM to restore window placement.
4504 */
4505 if (role_argument != NULL)
4506 {
4507 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4508 }
4509 else
4510 {
4511 char *role;
4512
4513 /* Invent a unique-enough ID string for the role */
4514 role = g_strdup_printf("vim-%u-%u-%u",
4515 (unsigned)mch_get_pid(),
4516 (unsigned)g_random_int(),
4517 (unsigned)time(NULL));
4518
4519 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4520 g_free(role);
4521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522
4523 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525
4526 /* Determine user specified geometry, if present. */
4527 if (gui.geom != NULL)
4528 {
4529 int mask;
4530 unsigned int w, h;
4531 int x = 0;
4532 int y = 0;
4533
4534 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4535
4536 if (mask & WidthValue)
4537 Columns = w;
4538 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004539 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004540 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004541 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004543 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004544 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004545
4546 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4547 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4548
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004549 pixel_width += get_menu_tool_width();
4550 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004551
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004553 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004554 int ww, hh;
4555 gui_mch_get_screen_dimensions(&ww, &hh);
4556 hh += p_ghr + get_menu_tool_height();
4557 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004558 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004559 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004560 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004561 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 vim_free(gui.geom);
4565 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004566
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004567 /* From now until everyone's stopped trying to set the window hints
4568 * to their correct minimum values, stop them being set as we need
4569 * them to remain at our required size for the parent GtkSocket to
4570 * give us the right initial size.
4571 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004572 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004573 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004574 update_window_manager_hints(pixel_width, pixel_height);
4575 init_window_hints_state = 1;
4576 g_timeout_add(1000, check_startup_plug_hints, NULL);
4577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 }
4579
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004580 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4581 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004582 /* For GTK2 changing the size of the form widget doesn't cause window
4583 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004584 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004585 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004586 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587
4588 if (foreground_argument != NULL)
4589 fg_pixel = gui_get_color((char_u *)foreground_argument);
4590 if (fg_pixel == INVALCOLOR)
4591 fg_pixel = gui_get_color((char_u *)"Black");
4592
4593 if (background_argument != NULL)
4594 bg_pixel = gui_get_color((char_u *)background_argument);
4595 if (bg_pixel == INVALCOLOR)
4596 bg_pixel = gui_get_color((char_u *)"White");
4597
4598 if (found_reverse_arg)
4599 {
4600 gui.def_norm_pixel = bg_pixel;
4601 gui.def_back_pixel = fg_pixel;
4602 }
4603 else
4604 {
4605 gui.def_norm_pixel = fg_pixel;
4606 gui.def_back_pixel = bg_pixel;
4607 }
4608
4609 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4610 * in a vimrc file) */
4611 set_normal_colors();
4612
4613 /* Check that none of the colors are the same as the background color */
4614 gui_check_colors();
4615
4616 /* Get the colors for the highlight groups (gui_check_colors() might have
4617 * changed them). */
4618 highlight_gui_started(); /* re-init colors and fonts */
4619
Bram Moolenaar98921892016-02-23 17:14:37 +01004620#if GTK_CHECK_VERSION(3,0,0)
4621 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4622 G_CALLBACK(mainwin_destroy_cb), NULL);
4623#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4625 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627
4628#ifdef FEAT_HANGULIN
4629 hangul_keyboard_set();
4630#endif
4631
4632 /*
4633 * Notify the fixed area about the need to resize the contents of the
4634 * gui.formwin, which we use for random positioning of the included
4635 * components.
4636 *
4637 * We connect this signal deferred finally after anything is in place,
4638 * since this is intended to handle resizements coming from the window
4639 * manager upon us and should not interfere with what VIM is requesting
4640 * upon startup.
4641 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004642#if GTK_CHECK_VERSION(3,0,0)
4643 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4644 G_CALLBACK(form_configure_event), NULL);
4645#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4647 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649
4650#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004651 /* Set up for receiving DND items. */
4652 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653
Bram Moolenaar98921892016-02-23 17:14:37 +01004654# if GTK_CHECK_VERSION(3,0,0)
4655 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4656 G_CALLBACK(drag_data_received_cb), NULL);
4657# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4659 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004660# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661#endif
4662
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004664 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 if (found_iconic_arg && gtk_socket_id == 0)
4666 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667
4668 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004669#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 unsigned long menu_handler = 0;
4671# ifdef FEAT_TOOLBAR
4672 unsigned long tool_handler = 0;
4673# endif
4674 /*
4675 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4676 * show when restoring the saved layout configuration. We can't just
4677 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4678 * a toplevel window and thus will be realized immediately. Instead,
4679 * connect signal handlers to hide the widgets just after they've been
4680 * marked visible, but before the main window is realized.
4681 */
4682 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4683 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4684 G_CALLBACK(&gtk_widget_hide),
4685 NULL);
4686# ifdef FEAT_TOOLBAR
4687 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4688 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4689 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4690 G_CALLBACK(&gtk_widget_hide),
4691 NULL);
4692# endif
4693#endif
4694 gtk_widget_show(gui.mainwin);
4695
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004696#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 if (menu_handler != 0)
4698 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4699# ifdef FEAT_TOOLBAR
4700 if (tool_handler != 0)
4701 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4702# endif
4703#endif
4704 }
4705
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 return OK;
4707}
4708
4709
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004711gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712{
4713 if (gui.mainwin != NULL)
4714 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715}
4716
4717/*
4718 * Get the position of the top left corner of the window.
4719 */
4720 int
4721gui_mch_get_winpos(int *x, int *y)
4722{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 return OK;
4725}
4726
4727/*
4728 * Set the position of the top left corner of the window to the given
4729 * coordinates.
4730 */
4731 void
4732gui_mch_set_winpos(int x, int y)
4733{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735}
4736
Bram Moolenaar98921892016-02-23 17:14:37 +01004737#if !GTK_CHECK_VERSION(3,0,0)
4738# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739static int resize_idle_installed = FALSE;
4740/*
4741 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4742 * the shell size doesn't exceed the window size, i.e. if the window manager
4743 * ignored our size request. Usually this happens if the window is maximized.
4744 *
4745 * FIXME: It'd be nice if we could find a little more orthodox solution.
4746 * See also the remark below in gui_mch_set_shellsize().
4747 *
4748 * DISABLED: When doing ":set lines+=1" this function would first invoke
4749 * gui_resize_shell() with the old size, then the normal callback would
4750 * report the new size through form_configure_event(). That caused the window
4751 * layout to be messed up.
4752 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 static gboolean
4754force_shell_resize_idle(gpointer data)
4755{
4756 if (gui.mainwin != NULL
4757 && GTK_WIDGET_REALIZED(gui.mainwin)
4758 && GTK_WIDGET_VISIBLE(gui.mainwin))
4759 {
4760 int width;
4761 int height;
4762
4763 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4764
4765 width -= get_menu_tool_width();
4766 height -= get_menu_tool_height();
4767
4768 gui_resize_shell(width, height);
4769 }
4770
4771 resize_idle_installed = FALSE;
4772 return FALSE; /* don't call me again */
4773}
Bram Moolenaar98921892016-02-23 17:14:37 +01004774# endif
4775#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776
Bram Moolenaar09736232009-09-23 16:14:49 +00004777/*
4778 * Return TRUE if the main window is maximized.
4779 */
4780 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004781gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004782{
Bram Moolenaar98921892016-02-23 17:14:37 +01004783#if GTK_CHECK_VERSION(3,0,0)
4784 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4785 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4786 & GDK_WINDOW_STATE_MAXIMIZED));
4787#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004788 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4789 && (gdk_window_get_state(gui.mainwin->window)
4790 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004791#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004792}
4793
4794/*
4795 * Unmaximize the main window
4796 */
4797 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004798gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004799{
4800 if (gui.mainwin != NULL)
4801 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4802}
Bram Moolenaar09736232009-09-23 16:14:49 +00004803
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004805 * Called when the font changed while the window is maximized. Compute the
4806 * new Rows and Columns. This is like resizing the window.
4807 */
4808 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004809gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004810{
4811 int w, h;
4812
4813 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4814 w -= get_menu_tool_width();
4815 h -= get_menu_tool_height();
4816 gui_resize_shell(w, h);
4817}
4818
4819/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 * Set the windows size.
4821 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 void
4823gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004824 int min_width UNUSED, int min_height UNUSED,
4825 int base_width UNUSED, int base_height UNUSED,
4826 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 /* give GTK+ a chance to put all widget's into place */
4829 gui_mch_update();
4830
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004831 /* this will cause the proper resizement to happen too */
4832 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004833 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004834
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004836 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 * main window instead. */
4838 width += get_menu_tool_width();
4839 height += get_menu_tool_height();
4840
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004841 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004842 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004843 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004844 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
Bram Moolenaar98921892016-02-23 17:14:37 +01004846# if !GTK_CHECK_VERSION(3,0,0)
4847# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 if (!resize_idle_installed)
4849 {
4850 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4851 &force_shell_resize_idle, NULL, NULL);
4852 resize_idle_installed = TRUE;
4853 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004854# endif
4855# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 /*
4857 * Wait until all events are processed to prevent a crash because the
4858 * real size of the drawing area doesn't reflect Vim's internal ideas.
4859 *
4860 * This is a bit of a hack, since Vim is a terminal application with a GUI
4861 * on top, while the GUI expects to be the boss.
4862 */
4863 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864}
4865
4866
4867/*
4868 * The screen size is used to make sure the initial window doesn't get bigger
4869 * than the screen. This subtracts some room for menubar, toolbar and window
4870 * decorations.
4871 */
4872 void
4873gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4874{
4875#ifdef HAVE_GTK_MULTIHEAD
4876 GdkScreen* screen;
4877
4878 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4879 screen = gtk_widget_get_screen(gui.mainwin);
4880 else
4881 screen = gdk_screen_get_default();
4882
4883 *screen_w = gdk_screen_get_width(screen);
4884 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4885#else
4886 *screen_w = gdk_screen_width();
4887 /* Subtract 'guiheadroom' from the height to allow some room for the
4888 * window manager (task list and window title bar). */
4889 *screen_h = gdk_screen_height() - p_ghr;
4890#endif
4891
4892 /*
4893 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4894 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004895 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 * This should be completely changed later.
4897 */
4898 *screen_w -= get_menu_tool_width();
4899 *screen_h -= get_menu_tool_height();
4900}
4901
4902#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004904gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 if (title != NULL && output_conv.vc_type != CONV_NONE)
4907 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908
4909 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4910
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 if (output_conv.vc_type != CONV_NONE)
4912 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913}
4914#endif /* FEAT_TITLE */
4915
4916#if defined(FEAT_MENU) || defined(PROTO)
4917 void
4918gui_mch_enable_menu(int showit)
4919{
4920 GtkWidget *widget;
4921
4922# ifdef FEAT_GUI_GNOME
4923 if (using_gnome)
4924 widget = gui.menubar_h;
4925 else
4926# endif
4927 widget = gui.menubar;
4928
Bram Moolenaar18144c82006-04-12 21:52:12 +00004929 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004930# if GTK_CHECK_VERSION(3,0,0)
4931 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
4932# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00004933 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01004934# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 {
4936 if (showit)
4937 gtk_widget_show(widget);
4938 else
4939 gtk_widget_hide(widget);
4940
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004941 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 }
4943}
4944#endif /* FEAT_MENU */
4945
4946#if defined(FEAT_TOOLBAR) || defined(PROTO)
4947 void
4948gui_mch_show_toolbar(int showit)
4949{
4950 GtkWidget *widget;
4951
4952 if (gui.toolbar == NULL)
4953 return;
4954
4955# ifdef FEAT_GUI_GNOME
4956 if (using_gnome)
4957 widget = gui.toolbar_h;
4958 else
4959# endif
4960 widget = gui.toolbar;
4961
4962 if (showit)
4963 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4964
Bram Moolenaar98921892016-02-23 17:14:37 +01004965# if GTK_CHECK_VERSION(3,0,0)
4966 if (!showit != !gtk_widget_get_visible(widget))
4967# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01004969# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 {
4971 if (showit)
4972 gtk_widget_show(widget);
4973 else
4974 gtk_widget_hide(widget);
4975
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004976 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
4978}
4979#endif /* FEAT_TOOLBAR */
4980
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981/*
4982 * Check if a given font is a CJK font. This is done in a very crude manner. It
4983 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4984 * font. Consequently, this function cannot be used as a general purpose check
4985 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4986 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4987 */
4988 static int
4989is_cjk_font(PangoFontDescription *font_desc)
4990{
4991 static const char * const cjk_langs[] =
4992 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4993
4994 PangoFont *font;
4995 unsigned i;
4996 int is_cjk = FALSE;
4997
4998 font = pango_context_load_font(gui.text_context, font_desc);
4999
5000 if (font == NULL)
5001 return FALSE;
5002
5003 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5004 {
5005 PangoCoverage *coverage;
5006 gunichar uc;
5007
5008 coverage = pango_font_get_coverage(
5009 font, pango_language_from_string(cjk_langs[i]));
5010
5011 if (coverage != NULL)
5012 {
5013 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5014 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5015 pango_coverage_unref(coverage);
5016 }
5017 }
5018
5019 g_object_unref(font);
5020
5021 return is_cjk;
5022}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023
Bram Moolenaar231334e2005-07-25 20:46:57 +00005024/*
5025 * Adjust gui.char_height (after 'linespace' was changed).
5026 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005028gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 PangoFontMetrics *metrics;
5031 int ascent;
5032 int descent;
5033
5034 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5035 pango_context_get_language(gui.text_context));
5036 ascent = pango_font_metrics_get_ascent(metrics);
5037 descent = pango_font_metrics_get_descent(metrics);
5038
5039 pango_font_metrics_unref(metrics);
5040
5041 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005042 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005043 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5045
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 /* A not-positive value of char_height may crash Vim. Only happens
5047 * if 'linespace' is negative (which does make sense sometimes). */
5048 gui.char_ascent = MAX(gui.char_ascent, 0);
5049 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5050
5051 return OK;
5052}
5053
Bram Moolenaar98921892016-02-23 17:14:37 +01005054#if GTK_CHECK_VERSION(3,0,0)
5055/* Callback function used in gui_mch_font_dialog() */
5056 static gboolean
5057font_filter(const PangoFontFamily *family,
5058 const PangoFontFace *face UNUSED,
5059 gpointer data UNUSED)
5060{
5061 return pango_font_family_is_monospace((PangoFontFamily *)family);
5062}
5063#endif
5064
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065/*
5066 * Put up a font dialog and return the selected font name in allocated memory.
5067 * "oldval" is the previous value. Return NULL when cancelled.
5068 * This should probably go into gui_gtk.c. Hmm.
5069 * FIXME:
5070 * The GTK2 font selection dialog has no filtering API. So we could either
5071 * a) implement our own (possibly copying the code from somewhere else) or
5072 * b) just live with it.
5073 */
5074 char_u *
5075gui_mch_font_dialog(char_u *oldval)
5076{
5077 GtkWidget *dialog;
5078 int response;
5079 char_u *fontname = NULL;
5080 char_u *oldname;
5081
Bram Moolenaar98921892016-02-23 17:14:37 +01005082#if GTK_CHECK_VERSION(3,2,0)
5083 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5084 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5085 NULL, NULL);
5086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
5090 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5091 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5092
5093 if (oldval != NULL && oldval[0] != NUL)
5094 {
5095 if (output_conv.vc_type != CONV_NONE)
5096 oldname = string_convert(&output_conv, oldval, NULL);
5097 else
5098 oldname = oldval;
5099
5100 /* Annoying bug in GTK (or Pango): if the font name does not include a
5101 * size, zero is used. Use default point size ten. */
5102 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5103 {
5104 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5105
5106 if (p != NULL)
5107 {
5108 STRCPY(p + STRLEN(p), " 10");
5109 if (oldname != oldval)
5110 vim_free(oldname);
5111 oldname = p;
5112 }
5113 }
5114
Bram Moolenaar98921892016-02-23 17:14:37 +01005115#if GTK_CHECK_VERSION(3,2,0)
5116 gtk_font_chooser_set_font(
5117 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5118#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 gtk_font_selection_dialog_set_font_name(
5120 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005121#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122
5123 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005124 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005126 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005127#if GTK_CHECK_VERSION(3,2,0)
5128 gtk_font_chooser_set_font(
5129 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5130#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005131 gtk_font_selection_dialog_set_font_name(
5132 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005133#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134
5135 response = gtk_dialog_run(GTK_DIALOG(dialog));
5136
5137 if (response == GTK_RESPONSE_OK)
5138 {
5139 char *name;
5140
Bram Moolenaar98921892016-02-23 17:14:37 +01005141#if GTK_CHECK_VERSION(3,2,0)
5142 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5143#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 name = gtk_font_selection_dialog_get_font_name(
5145 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 if (name != NULL)
5148 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005149 char_u *p;
5150
5151 /* Apparently some font names include a comma, need to escape
5152 * that, because in 'guifont' it separates names. */
5153 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005155 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005156 {
5157 fontname = string_convert(&input_conv, p, NULL);
5158 vim_free(p);
5159 }
5160 else
5161 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 }
5163 }
5164
5165 if (response != GTK_RESPONSE_NONE)
5166 gtk_widget_destroy(dialog);
5167
5168 return fontname;
5169}
5170
5171/*
5172 * Some monospace fonts don't support a bold weight, and fall back
5173 * silently to the regular weight. But this is no good since our text
5174 * drawing function can emulate bold by overstriking. So let's try
5175 * to detect whether bold weight is actually available and emulate it
5176 * otherwise.
5177 *
5178 * Note that we don't need to check for italic style since Xft can
5179 * emulate italic on its own, provided you have a proper fontconfig
5180 * setup. We wouldn't be able to emulate it in Vim anyway.
5181 */
5182 static void
5183get_styled_font_variants(void)
5184{
5185 PangoFontDescription *bold_font_desc;
5186 PangoFont *plain_font;
5187 PangoFont *bold_font;
5188
5189 gui.font_can_bold = FALSE;
5190
5191 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5192
5193 if (plain_font == NULL)
5194 return;
5195
5196 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5197 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5198
5199 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5200 /*
5201 * The comparison relies on the unique handle nature of a PangoFont*,
5202 * i.e. it's assumed that a different PangoFont* won't refer to the
5203 * same font. Seems to work, and failing here isn't critical anyway.
5204 */
5205 if (bold_font != NULL)
5206 {
5207 gui.font_can_bold = (bold_font != plain_font);
5208 g_object_unref(bold_font);
5209 }
5210
5211 pango_font_description_free(bold_font_desc);
5212 g_object_unref(plain_font);
5213}
5214
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215static PangoEngineShape *default_shape_engine = NULL;
5216
5217/*
5218 * Create a map from ASCII characters in the range [32,126] to glyphs
5219 * of the current font. This is used by gui_gtk2_draw_string() to skip
5220 * the itemize and shaping process for the most common case.
5221 */
5222 static void
5223ascii_glyph_table_init(void)
5224{
5225 char_u ascii_chars[128];
5226 PangoAttrList *attr_list;
5227 GList *item_list;
5228 int i;
5229
5230 if (gui.ascii_glyphs != NULL)
5231 pango_glyph_string_free(gui.ascii_glyphs);
5232 if (gui.ascii_font != NULL)
5233 g_object_unref(gui.ascii_font);
5234
5235 gui.ascii_glyphs = NULL;
5236 gui.ascii_font = NULL;
5237
5238 /* For safety, fill in question marks for the control characters. */
5239 for (i = 0; i < 32; ++i)
5240 ascii_chars[i] = '?';
5241 for (; i < 127; ++i)
5242 ascii_chars[i] = i;
5243 ascii_chars[i] = '?';
5244
5245 attr_list = pango_attr_list_new();
5246 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5247 0, sizeof(ascii_chars), attr_list, NULL);
5248
5249 if (item_list != NULL && item_list->next == NULL) /* play safe */
5250 {
5251 PangoItem *item;
5252 int width;
5253
5254 item = (PangoItem *)item_list->data;
5255 width = gui.char_width * PANGO_SCALE;
5256
5257 /* Remember the shape engine used for ASCII. */
5258 default_shape_engine = item->analysis.shape_engine;
5259
5260 gui.ascii_font = item->analysis.font;
5261 g_object_ref(gui.ascii_font);
5262
5263 gui.ascii_glyphs = pango_glyph_string_new();
5264
5265 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5266 &item->analysis, gui.ascii_glyphs);
5267
5268 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5269
5270 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5271 {
5272 PangoGlyphGeometry *geom;
5273
5274 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5275 geom->x_offset += MAX(0, width - geom->width) / 2;
5276 geom->width = width;
5277 }
5278 }
5279
5280 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5281 g_list_free(item_list);
5282 pango_attr_list_unref(attr_list);
5283}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284
5285/*
5286 * Initialize Vim to use the font or fontset with the given name.
5287 * Return FAIL if the font could not be loaded, OK otherwise.
5288 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005290gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 PangoFontDescription *font_desc;
5293 PangoLayout *layout;
5294 int width;
5295
5296 /* If font_name is NULL, this means to use the default, which should
5297 * be present on all proper Pango/fontconfig installations. */
5298 if (font_name == NULL)
5299 font_name = (char_u *)DEFAULT_FONT;
5300
5301 font_desc = gui_mch_get_font(font_name, FALSE);
5302
5303 if (font_desc == NULL)
5304 return FAIL;
5305
5306 gui_mch_free_font(gui.norm_font);
5307 gui.norm_font = font_desc;
5308
5309 pango_context_set_font_description(gui.text_context, font_desc);
5310
5311 layout = pango_layout_new(gui.text_context);
5312 pango_layout_set_text(layout, "MW", 2);
5313 pango_layout_get_size(layout, &width, NULL);
5314 /*
5315 * Set char_width to half the width obtained from pango_layout_get_size()
5316 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5317 * Pango to use the same width for both non-CJK characters (e.g. Latin
5318 * letters and numbers) and CJK characters. This results in 's p a c e d
5319 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5320 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5321 * width for CJK fonts.
5322 *
5323 * For related bugs, see:
5324 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5325 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5326 *
5327 * With this, for all four of the following cases, Vim works fine:
5328 * guifont=CJK_fixed_width_font
5329 * guifont=Non_CJK_fixed_font
5330 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5331 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5332 */
5333 if (is_cjk_font(gui.norm_font))
5334 {
5335 int cjk_width;
5336
5337 /* Measure the text extent of U+4E00 and U+4E8C */
5338 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5339 pango_layout_get_size(layout, &cjk_width, NULL);
5340
5341 if (width == cjk_width) /* Xft not patched */
5342 width /= 2;
5343 }
5344 g_object_unref(layout);
5345
5346 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5347
5348 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5349 if (gui.char_width <= 0)
5350 gui.char_width = 8;
5351
Bram Moolenaar231334e2005-07-25 20:46:57 +00005352 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
5354 /* Set the fontname, which will be used for information purposes */
5355 hl_set_font_name(font_name);
5356
5357 get_styled_font_variants();
5358 ascii_glyph_table_init();
5359
5360 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5361 if (gui.wide_font != NULL
5362 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5363 {
5364 pango_font_description_free(gui.wide_font);
5365 gui.wide_font = NULL;
5366 }
5367
Bram Moolenaare161c792009-11-03 17:13:59 +00005368 if (gui_mch_maximized())
5369 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005370 /* Update lines and columns in accordance with the new font, keep the
5371 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005372 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005373 }
5374 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005375 {
5376 /* Preserve the logical dimensions of the screen. */
5377 update_window_manager_hints(0, 0);
5378 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379
5380 return OK;
5381}
5382
5383/*
5384 * Get a reference to the font "name".
5385 * Return zero for failure.
5386 */
5387 GuiFont
5388gui_mch_get_font(char_u *name, int report_error)
5389{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391
5392 /* can't do this when GUI is not running */
5393 if (!gui.in_use || name == NULL)
5394 return NULL;
5395
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 if (output_conv.vc_type != CONV_NONE)
5397 {
5398 char_u *buf;
5399
5400 buf = string_convert(&output_conv, name, NULL);
5401 if (buf != NULL)
5402 {
5403 font = pango_font_description_from_string((const char *)buf);
5404 vim_free(buf);
5405 }
5406 else
5407 font = NULL;
5408 }
5409 else
5410 font = pango_font_description_from_string((const char *)name);
5411
5412 if (font != NULL)
5413 {
5414 PangoFont *real_font;
5415
5416 /* pango_context_load_font() bails out if no font size is set */
5417 if (pango_font_description_get_size(font) <= 0)
5418 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5419
5420 real_font = pango_context_load_font(gui.text_context, font);
5421
5422 if (real_font == NULL)
5423 {
5424 pango_font_description_free(font);
5425 font = NULL;
5426 }
5427 else
5428 g_object_unref(real_font);
5429 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430
5431 if (font == NULL)
5432 {
5433 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005434 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 return NULL;
5436 }
5437
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 return font;
5439}
5440
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005441#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005442/*
5443 * Return the name of font "font" in allocated memory.
5444 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005445 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005446gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005447{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005448 if (font != NOFONT)
5449 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005450 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005451
Bram Moolenaar89d40322006-08-29 15:30:07 +00005452 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005453 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005454 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005455
Bram Moolenaar89d40322006-08-29 15:30:07 +00005456 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005457 return s;
5458 }
5459 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005460 return NULL;
5461}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005462#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005463
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464/*
5465 * If a font is not going to be used, free its structure.
5466 */
5467 void
5468gui_mch_free_font(GuiFont font)
5469{
5470 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472}
5473
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474/*
5475 * Return the Pixel value (color) for the given color name. This routine was
5476 * pretty much taken from example code in the Silicon Graphics OSF/Motif
5477 * Programmer's Guide.
5478 * Return INVALCOLOR for error.
5479 */
5480 guicolor_T
5481gui_mch_get_color(char_u *name)
5482{
5483 /* A number of colors that some X11 systems don't have */
5484 static const char *const vimnames[][2] =
5485 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00005486 {"LightRed", "#FFBBBB"},
5487 {"LightGreen", "#88FF88"},
5488 {"LightMagenta","#FFBBFF"},
5489 {"DarkCyan", "#008888"},
5490 {"DarkBlue", "#0000BB"},
5491 {"DarkRed", "#BB0000"},
5492 {"DarkMagenta", "#BB00BB"},
5493 {"DarkGrey", "#BBBBBB"},
5494 {"DarkYellow", "#BBBB00"},
5495 {"Gray10", "#1A1A1A"},
5496 {"Grey10", "#1A1A1A"},
5497 {"Gray20", "#333333"},
5498 {"Grey20", "#333333"},
5499 {"Gray30", "#4D4D4D"},
5500 {"Grey30", "#4D4D4D"},
5501 {"Gray40", "#666666"},
5502 {"Grey40", "#666666"},
5503 {"Gray50", "#7F7F7F"},
5504 {"Grey50", "#7F7F7F"},
5505 {"Gray60", "#999999"},
5506 {"Grey60", "#999999"},
5507 {"Gray70", "#B3B3B3"},
5508 {"Grey70", "#B3B3B3"},
5509 {"Gray80", "#CCCCCC"},
5510 {"Grey80", "#CCCCCC"},
5511 {"Gray90", "#E5E5E5"},
5512 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 {NULL, NULL}
5514 };
5515
5516 if (!gui.in_use) /* can't do this when GUI not running */
5517 return INVALCOLOR;
5518
5519 while (name != NULL)
5520 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005521#if GTK_CHECK_VERSION(3,0,0)
5522 GdkRGBA color;
5523#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 int parsed;
5527 int i;
5528
Bram Moolenaar98921892016-02-23 17:14:37 +01005529#if GTK_CHECK_VERSION(3,0,0)
5530 parsed = gdk_rgba_parse(&color, (const gchar *)name);
5531#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 parsed = gdk_color_parse((const char *)name, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01005533#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 if (parsed)
5536 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005537#if GTK_CHECK_VERSION(3,0,0)
5538 return (guicolor_T)gui_gtk_get_pixel_from_rgb(&color);
5539#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5541 &color, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 return (guicolor_T)color.pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01005543#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 }
5545 /* add a few builtin names and try again */
5546 for (i = 0; ; ++i)
5547 {
5548 if (vimnames[i][0] == NULL)
5549 {
5550 name = NULL;
5551 break;
5552 }
5553 if (STRICMP(name, vimnames[i][0]) == 0)
5554 {
5555 name = (char_u *)vimnames[i][1];
5556 break;
5557 }
5558 }
5559 }
5560
5561 return INVALCOLOR;
5562}
5563
5564/*
5565 * Set the current text foreground color.
5566 */
5567 void
5568gui_mch_set_fg_color(guicolor_T color)
5569{
5570 gui.fgcolor->pixel = (unsigned long)color;
5571}
5572
5573/*
5574 * Set the current text background color.
5575 */
5576 void
5577gui_mch_set_bg_color(guicolor_T color)
5578{
5579 gui.bgcolor->pixel = (unsigned long)color;
5580}
5581
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005582/*
5583 * Set the current text special color.
5584 */
5585 void
5586gui_mch_set_sp_color(guicolor_T color)
5587{
5588 gui.spcolor->pixel = (unsigned long)color;
5589}
5590
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591/*
5592 * Function-like convenience macro for the sake of efficiency.
5593 */
5594#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5595 G_STMT_START{ \
5596 PangoAttribute *tmp_attr_; \
5597 tmp_attr_ = (Attribute); \
5598 tmp_attr_->start_index = (Start); \
5599 tmp_attr_->end_index = (End); \
5600 pango_attr_list_insert((AttrList), tmp_attr_); \
5601 }G_STMT_END
5602
5603 static void
5604apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5605{
5606 char_u *start = NULL;
5607 char_u *p;
5608 int uc;
5609
5610 for (p = s; p < s + len; p += utf_byte2len(*p))
5611 {
5612 uc = utf_ptr2char(p);
5613
5614 if (start == NULL)
5615 {
5616 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5617 start = p;
5618 }
5619 else if (uc < 0x80 /* optimization shortcut */
5620 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5621 {
5622 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5623 attr_list, start - s, p - s);
5624 start = NULL;
5625 }
5626 }
5627
5628 if (start != NULL)
5629 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5630 attr_list, start - s, len);
5631}
5632
5633 static int
5634count_cluster_cells(char_u *s, PangoItem *item,
5635 PangoGlyphString* glyphs, int i,
5636 int *cluster_width,
5637 int *last_glyph_rbearing)
5638{
5639 char_u *p;
5640 int next; /* glyph start index of next cluster */
5641 int start, end; /* string segment of current cluster */
5642 int width; /* real cluster width in Pango units */
5643 int uc;
5644 int cellcount = 0;
5645
5646 width = glyphs->glyphs[i].geometry.width;
5647
5648 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5649 {
5650 if (glyphs->glyphs[next].attr.is_cluster_start)
5651 break;
5652 else if (glyphs->glyphs[next].geometry.width > width)
5653 width = glyphs->glyphs[next].geometry.width;
5654 }
5655
5656 start = item->offset + glyphs->log_clusters[i];
5657 end = item->offset + ((next < glyphs->num_glyphs) ?
5658 glyphs->log_clusters[next] : item->length);
5659
5660 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5661 {
5662 uc = utf_ptr2char(p);
5663 if (uc < 0x80)
5664 ++cellcount;
5665 else if (!utf_iscomposing(uc))
5666 cellcount += utf_char2cells(uc);
5667 }
5668
5669 if (last_glyph_rbearing != NULL
5670 && cellcount > 0 && next == glyphs->num_glyphs)
5671 {
5672 PangoRectangle ink_rect;
5673 /*
5674 * If a certain combining mark had to be taken from a non-monospace
5675 * font, we have to compensate manually by adapting x_offset according
5676 * to the ink extents of the previous glyph.
5677 */
5678 pango_font_get_glyph_extents(item->analysis.font,
5679 glyphs->glyphs[i].glyph,
5680 &ink_rect, NULL);
5681
5682 if (PANGO_RBEARING(ink_rect) > 0)
5683 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5684 }
5685
5686 if (cellcount > 0)
5687 *cluster_width = width;
5688
5689 return cellcount;
5690}
5691
5692/*
5693 * If there are only combining characters in the cluster, we cannot just
5694 * change the width of the previous glyph since there is none. Therefore
5695 * some guesswork is needed.
5696 *
5697 * If ink_rect.x is negative Pango apparently has taken care of the composing
5698 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5699 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005700 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 *
5702 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5703 * the position of the previous glyph. Apparently this happens only with old
5704 * X fonts which don't provide the special combining information needed by
5705 * Pango.
5706 */
5707 static void
5708setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5709 int last_cellcount, int last_cluster_width,
5710 int last_glyph_rbearing)
5711{
5712 PangoRectangle ink_rect;
5713 PangoRectangle logical_rect;
5714 int width;
5715
5716 width = last_cellcount * gui.char_width * PANGO_SCALE;
5717 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5718 glyph->geometry.width = 0;
5719
5720 pango_font_get_glyph_extents(item->analysis.font,
5721 glyph->glyph,
5722 &ink_rect, &logical_rect);
5723 if (ink_rect.x < 0)
5724 {
5725 glyph->geometry.x_offset += last_glyph_rbearing;
5726 glyph->geometry.y_offset = logical_rect.height
5727 - (gui.char_height - p_linespace) * PANGO_SCALE;
5728 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005729 else
5730 /* If the accent width is smaller than the cluster width, position it
5731 * in the middle. */
5732 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733}
5734
Bram Moolenaar98921892016-02-23 17:14:37 +01005735#if GTK_CHECK_VERSION(3,0,0)
5736 static void
5737draw_glyph_string(int row, int col, int num_cells, int flags,
5738 PangoFont *font, PangoGlyphString *glyphs,
5739 cairo_t *cr)
5740#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 static void
5742draw_glyph_string(int row, int col, int num_cells, int flags,
5743 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005744#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745{
5746 if (!(flags & DRAW_TRANSP))
5747 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005748#if GTK_CHECK_VERSION(3,0,0)
5749 set_cairo_source_rgb_from_pixel(cr, gui.bgcolor->pixel);
5750 cairo_rectangle(cr,
5751 FILL_X(col), FILL_Y(row),
5752 num_cells * gui.char_width, gui.char_height);
5753 cairo_fill(cr);
5754#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5756
5757 gdk_draw_rectangle(gui.drawarea->window,
5758 gui.text_gc,
5759 TRUE,
5760 FILL_X(col),
5761 FILL_Y(row),
5762 num_cells * gui.char_width,
5763 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 }
5766
Bram Moolenaar98921892016-02-23 17:14:37 +01005767#if GTK_CHECK_VERSION(3,0,0)
5768 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5769 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5770 pango_cairo_show_glyph_string(cr, font, glyphs);
5771#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5773
5774 gdk_draw_glyphs(gui.drawarea->window,
5775 gui.text_gc,
5776 font,
5777 TEXT_X(col),
5778 TEXT_Y(row),
5779 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781
5782 /* redraw the contents with an offset of 1 to emulate bold */
5783 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005784#if GTK_CHECK_VERSION(3,0,0)
5785 {
5786 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5787 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5788 pango_cairo_show_glyph_string(cr, font, glyphs);
5789 }
5790#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 gdk_draw_glyphs(gui.drawarea->window,
5792 gui.text_gc,
5793 font,
5794 TEXT_X(col) + 1,
5795 TEXT_Y(row),
5796 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798}
5799
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005800/*
5801 * Draw underline and undercurl at the bottom of the character cell.
5802 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005803#if GTK_CHECK_VERSION(3,0,0)
5804 static void
5805draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5806#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005807 static void
5808draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005809#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005810{
5811 int i;
5812 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005813 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005814 int y = FILL_Y(row + 1) - 1;
5815
5816 /* Undercurl: draw curl at the bottom of the character cell. */
5817 if (flags & DRAW_UNDERC)
5818 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005819#if GTK_CHECK_VERSION(3,0,0)
5820 cairo_set_line_width(cr, 1.0);
5821 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5822 set_cairo_source_rgb_from_pixel(cr, gui.spcolor->pixel);
5823 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5824 {
5825 offset = val[i % 8];
5826 cairo_line_to(cr, i, y - offset + 0.5);
5827 }
5828 cairo_stroke(cr);
5829#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005830 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5831 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5832 {
5833 offset = val[i % 8];
5834 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5835 }
5836 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005837#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005838 }
5839
5840 /* Underline: draw a line at the bottom of the character cell. */
5841 if (flags & DRAW_UNDERL)
5842 {
5843 /* When p_linespace is 0, overwrite the bottom row of pixels.
5844 * Otherwise put the line just below the character. */
5845 if (p_linespace > 1)
5846 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005847#if GTK_CHECK_VERSION(3,0,0)
5848 {
5849 cairo_set_line_width(cr, 1.0);
5850 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5851 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
5852 cairo_move_to(cr, FILL_X(col), y + 0.5);
5853 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5854 cairo_stroke(cr);
5855 }
5856#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005857 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5858 FILL_X(col), y,
5859 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005860#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005861 }
5862}
5863
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 int
5865gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5866{
5867 GdkRectangle area; /* area for clip mask */
5868 PangoGlyphString *glyphs; /* glyphs of current item */
5869 int column_offset = 0; /* column offset in cells */
5870 int i;
5871 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5872 char_u *new_conv_buf;
5873 int convlen;
5874 char_u *sp, *bp;
5875 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005876#if GTK_CHECK_VERSION(3,0,0)
5877 cairo_t *cr;
5878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879
Bram Moolenaar98921892016-02-23 17:14:37 +01005880#if GTK_CHECK_VERSION(3,0,0)
5881 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5882#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005884#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 return len;
5886
5887 if (output_conv.vc_type != CONV_NONE)
5888 {
5889 /*
5890 * Convert characters from 'encoding' to 'termencoding', which is set
5891 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5892 * prohibits changing this to something else than UTF-8 if the GUI is
5893 * in use.
5894 */
5895 convlen = len;
5896 conv_buf = string_convert(&output_conv, s, &convlen);
5897 g_return_val_if_fail(conv_buf != NULL, len);
5898
5899 /* Correct for differences in char width: some chars are
5900 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5901 * compensate for that. */
5902 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5903 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005904 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5906 {
5907 new_conv_buf = alloc(convlen + 2);
5908 if (new_conv_buf == NULL)
5909 return len;
5910 plen += bp - conv_buf;
5911 mch_memmove(new_conv_buf, conv_buf, plen);
5912 new_conv_buf[plen] = ' ';
5913 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5914 convlen - plen + 1);
5915 vim_free(conv_buf);
5916 conv_buf = new_conv_buf;
5917 ++convlen;
5918 bp = conv_buf + plen;
5919 plen = 1;
5920 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005921 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 bp += plen;
5923 }
5924 s = conv_buf;
5925 len = convlen;
5926 }
5927
5928 /*
5929 * Restrict all drawing to the current screen line in order to prevent
5930 * fuzzy font lookups from messing up the screen.
5931 */
5932 area.x = gui.border_offset;
5933 area.y = FILL_Y(row);
5934 area.width = gui.num_cols * gui.char_width;
5935 area.height = gui.char_height;
5936
Bram Moolenaar98921892016-02-23 17:14:37 +01005937#if GTK_CHECK_VERSION(3,0,0)
5938 cr = cairo_create(gui.surface);
5939 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5940 cairo_clip(cr);
5941#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5943 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005944#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945
5946 glyphs = pango_glyph_string_new();
5947
5948 /*
5949 * Optimization hack: If possible, skip the itemize and shaping process
5950 * for pure ASCII strings. This optimization is particularly effective
5951 * because Vim draws space characters to clear parts of the screen.
5952 */
5953 if (!(flags & DRAW_ITALIC)
5954 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5955 && gui.ascii_glyphs != NULL)
5956 {
5957 char_u *p;
5958
5959 for (p = s; p < s + len; ++p)
5960 if (*p & 0x80)
5961 goto not_ascii;
5962
5963 pango_glyph_string_set_size(glyphs, len);
5964
5965 for (i = 0; i < len; ++i)
5966 {
5967 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
5968 glyphs->log_clusters[i] = i;
5969 }
5970
Bram Moolenaar98921892016-02-23 17:14:37 +01005971#if GTK_CHECK_VERSION(3,0,0)
5972 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5973#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976
5977 column_offset = len;
5978 }
5979 else
5980not_ascii:
5981 {
5982 PangoAttrList *attr_list;
5983 GList *item_list;
5984 int cluster_width;
5985 int last_glyph_rbearing;
5986 int cells = 0; /* cells occupied by current cluster */
5987
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005988 /* Safety check: pango crashes when invoked with invalid utf-8
5989 * characters. */
5990 if (!utf_valid_string(s, s + len))
5991 {
5992 column_offset = len;
5993 goto skipitall;
5994 }
5995
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 /* original width of the current cluster */
5997 cluster_width = PANGO_SCALE * gui.char_width;
5998
5999 /* right bearing of the last non-composing glyph */
6000 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6001
6002 attr_list = pango_attr_list_new();
6003
6004 /* If 'guifontwide' is set then use that for double-width characters.
6005 * Otherwise just go with 'guifont' and let Pango do its thing. */
6006 if (gui.wide_font != NULL)
6007 apply_wide_font_attr(s, len, attr_list);
6008
6009 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6010 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6011 attr_list, 0, len);
6012 if (flags & DRAW_ITALIC)
6013 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6014 attr_list, 0, len);
6015 /*
6016 * Break the text into segments with consistent directional level
6017 * and shaping engine. Pure Latin text needs only a single segment,
6018 * so there's no need to worry about the loop's efficiency. Better
6019 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6020 */
6021 item_list = pango_itemize(gui.text_context,
6022 (const char *)s, 0, len, attr_list, NULL);
6023
6024 while (item_list != NULL)
6025 {
6026 PangoItem *item;
6027 int item_cells = 0; /* item length in cells */
6028
6029 item = (PangoItem *)item_list->data;
6030 item_list = g_list_delete_link(item_list, item_list);
6031 /*
6032 * Increment the bidirectional embedding level by 1 if it is not
6033 * even. An odd number means the output will be RTL, but we don't
6034 * want that since Vim handles right-to-left text on its own. It
6035 * would probably be sufficient to just set level = 0, but you can
6036 * never know :)
6037 *
6038 * Unfortunately we can't take advantage of Pango's ability to
6039 * render both LTR and RTL at the same time. In order to support
6040 * that, Vim's main screen engine would have to make use of Pango
6041 * functionality.
6042 */
6043 item->analysis.level = (item->analysis.level + 1) & (~1U);
6044
6045 /* HACK: Overrule the shape engine, we don't want shaping to be
6046 * done, because drawing the cursor would change the display. */
6047 item->analysis.shape_engine = default_shape_engine;
6048
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006049#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006050 pango_shape_full((const char *)s + item->offset, item->length,
6051 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006052#else
6053 pango_shape((const char *)s + item->offset, item->length,
6054 &item->analysis, glyphs);
6055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 /*
6057 * Fixed-width hack: iterate over the array and assign a fixed
6058 * width to each glyph, thus overriding the choice made by the
6059 * shaping engine. We use utf_char2cells() to determine the
6060 * number of cells needed.
6061 *
6062 * Also perform all kind of dark magic to get composing
6063 * characters right (and pretty too of course).
6064 */
6065 for (i = 0; i < glyphs->num_glyphs; ++i)
6066 {
6067 PangoGlyphInfo *glyph;
6068
6069 glyph = &glyphs->glyphs[i];
6070
6071 if (glyph->attr.is_cluster_start)
6072 {
6073 int cellcount;
6074
6075 cellcount = count_cluster_cells(
6076 s, item, glyphs, i, &cluster_width,
6077 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6078
6079 if (cellcount > 0)
6080 {
6081 int width;
6082
6083 width = cellcount * gui.char_width * PANGO_SCALE;
6084 glyph->geometry.x_offset +=
6085 MAX(0, width - cluster_width) / 2;
6086 glyph->geometry.width = width;
6087 }
6088 else
6089 {
6090 /* If there are only combining characters in the
6091 * cluster, we cannot just change the width of the
6092 * previous glyph since there is none. Therefore
6093 * some guesswork is needed. */
6094 setup_zero_width_cluster(item, glyph, cells,
6095 cluster_width,
6096 last_glyph_rbearing);
6097 }
6098
6099 item_cells += cellcount;
6100 cells = cellcount;
6101 }
6102 else if (i > 0)
6103 {
6104 int width;
6105
6106 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006107 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006108 * In some circumstances Pango uses a positive x_offset,
6109 * then use the width of the previous glyph for this one
6110 * and set the previous width to zero.
6111 * Otherwise we get a negative x_offset, Pango has already
6112 * positioned the combining char, keep the widths as they
6113 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006114 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006115 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006116 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006117 {
6118 glyphs->glyphs[i].geometry.width =
6119 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006120 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 width = cells * gui.char_width * PANGO_SCALE;
6123 glyph->geometry.x_offset +=
6124 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 }
6126 else /* i == 0 "cannot happen" */
6127 {
6128 glyph->geometry.width = 0;
6129 }
6130 }
6131
6132 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006133#if GTK_CHECK_VERSION(3,0,0)
6134 draw_glyph_string(row, col + column_offset, item_cells,
6135 flags, item->analysis.font, glyphs,
6136 cr);
6137#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138 draw_glyph_string(row, col + column_offset, item_cells,
6139 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006140#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141
6142 pango_item_free(item);
6143
6144 column_offset += item_cells;
6145 }
6146
6147 pango_attr_list_unref(attr_list);
6148 }
6149
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006150skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006151 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006152#if GTK_CHECK_VERSION(3,0,0)
6153 draw_under(flags, row, col, column_offset, cr);
6154#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006155 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006156#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157
6158 pango_glyph_string_free(glyphs);
6159 vim_free(conv_buf);
6160
Bram Moolenaar98921892016-02-23 17:14:37 +01006161#if GTK_CHECK_VERSION(3,0,0)
6162 cairo_destroy(cr);
6163 if (!gui.by_signal)
6164 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6165 &area, FALSE);
6166#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169
6170 return column_offset;
6171}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172
6173/*
6174 * Return OK if the key with the termcap name "name" is supported.
6175 */
6176 int
6177gui_mch_haskey(char_u *name)
6178{
6179 int i;
6180
6181 for (i = 0; special_keys[i].key_sym != 0; i++)
6182 if (name[0] == special_keys[i].code0
6183 && name[1] == special_keys[i].code1)
6184 return OK;
6185 return FAIL;
6186}
6187
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006188#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189/*
6190 * Return the text window-id and display. Only required for X-based GUI's
6191 */
6192 int
6193gui_get_x11_windis(Window *win, Display **dis)
6194{
Bram Moolenaar98921892016-02-23 17:14:37 +01006195#if GTK_CHECK_VERSION(3,0,0)
6196 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6197#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006201#if GTK_CHECK_VERSION(3,0,0)
6202 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6203 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6204#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6206 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 return OK;
6209 }
6210
6211 *dis = NULL;
6212 *win = 0;
6213 return FAIL;
6214}
6215#endif
6216
6217#if defined(FEAT_CLIENTSERVER) \
6218 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6219
6220 Display *
6221gui_mch_get_display(void)
6222{
Bram Moolenaar98921892016-02-23 17:14:37 +01006223#if GTK_CHECK_VERSION(3,0,0)
6224 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6225 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6226#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6228 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006229#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 else
6231 return NULL;
6232}
6233#endif
6234
6235 void
6236gui_mch_beep(void)
6237{
6238#ifdef HAVE_GTK_MULTIHEAD
6239 GdkDisplay *display;
6240
Bram Moolenaar98921892016-02-23 17:14:37 +01006241# if GTK_CHECK_VERSION(3,0,0)
6242 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6243# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006245# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 display = gtk_widget_get_display(gui.mainwin);
6247 else
6248 display = gdk_display_get_default();
6249
6250 if (display != NULL)
6251 gdk_display_beep(display);
6252#else
6253 gdk_beep();
6254#endif
6255}
6256
6257 void
6258gui_mch_flash(int msec)
6259{
Bram Moolenaar98921892016-02-23 17:14:37 +01006260#if GTK_CHECK_VERSION(3,0,0)
6261 /* TODO Replace GdkGC with Cairo */
6262 (void)msec;
6263#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 GdkGCValues values;
6265 GdkGC *invert_gc;
6266
6267 if (gui.drawarea->window == NULL)
6268 return;
6269
6270 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6271 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6272 values.function = GDK_XOR;
6273 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6274 &values,
6275 GDK_GC_FOREGROUND |
6276 GDK_GC_BACKGROUND |
6277 GDK_GC_FUNCTION);
6278 gdk_gc_set_exposures(invert_gc,
6279 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6280 /*
6281 * Do a visual beep by changing back and forth in some undetermined way,
6282 * the foreground and background colors. This is due to the fact that
6283 * there can't be really any prediction about the effects of XOR on
6284 * arbitrary X11 servers. However this seems to be enough for what we
6285 * intend it to do.
6286 */
6287 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6288 TRUE,
6289 0, 0,
6290 FILL_X((int)Columns) + gui.border_offset,
6291 FILL_Y((int)Rows) + gui.border_offset);
6292
6293 gui_mch_flush();
6294 ui_delay((long)msec, TRUE); /* wait so many msec */
6295
6296 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6297 TRUE,
6298 0, 0,
6299 FILL_X((int)Columns) + gui.border_offset,
6300 FILL_Y((int)Rows) + gui.border_offset);
6301
6302 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304}
6305
6306/*
6307 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6308 */
6309 void
6310gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6311{
Bram Moolenaar98921892016-02-23 17:14:37 +01006312#if GTK_CHECK_VERSION(3,0,0)
6313 /* TODO Replace GdkGC with Cairo */
6314 (void)r; (void)c; (void)nr; (void)nc;
6315#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 GdkGCValues values;
6317 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318
6319 if (gui.drawarea->window == NULL)
6320 return;
6321
Bram Moolenaar89d40322006-08-29 15:30:07 +00006322 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6323 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 values.function = GDK_XOR;
6325 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6326 &values,
6327 GDK_GC_FOREGROUND |
6328 GDK_GC_BACKGROUND |
6329 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006330 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6331 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6333 TRUE,
6334 FILL_X(c), FILL_Y(r),
6335 (nc) * gui.char_width, (nr) * gui.char_height);
6336 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006337#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338}
6339
6340/*
6341 * Iconify the GUI window.
6342 */
6343 void
6344gui_mch_iconify(void)
6345{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347}
6348
6349#if defined(FEAT_EVAL) || defined(PROTO)
6350/*
6351 * Bring the Vim window to the foreground.
6352 */
6353 void
6354gui_mch_set_foreground(void)
6355{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357}
6358#endif
6359
6360/*
6361 * Draw a cursor without focus.
6362 */
6363 void
6364gui_mch_draw_hollow_cursor(guicolor_T color)
6365{
6366 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006367#if GTK_CHECK_VERSION(3,0,0)
6368 cairo_t *cr;
6369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370
Bram Moolenaar98921892016-02-23 17:14:37 +01006371#if GTK_CHECK_VERSION(3,0,0)
6372 if (gtk_widget_get_window(gui.drawarea) == NULL)
6373#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006375#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 return;
6377
Bram Moolenaar98921892016-02-23 17:14:37 +01006378#if GTK_CHECK_VERSION(3,0,0)
6379 cr = cairo_create(gui.surface);
6380#endif
6381
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 gui_mch_set_fg_color(color);
6383
Bram Moolenaar98921892016-02-23 17:14:37 +01006384#if GTK_CHECK_VERSION(3,0,0)
6385 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6386#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006388#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389 if (mb_lefthalve(gui.row, gui.col))
6390 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006391#if GTK_CHECK_VERSION(3,0,0)
6392 cairo_set_line_width(cr, 1.0);
6393 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6394 cairo_rectangle(cr,
6395 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6396 i * gui.char_width - 1, gui.char_height - 1);
6397 cairo_stroke(cr);
6398 cairo_destroy(cr);
6399#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6401 FALSE,
6402 FILL_X(gui.col), FILL_Y(gui.row),
6403 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405}
6406
6407/*
6408 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6409 * color "color".
6410 */
6411 void
6412gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6413{
Bram Moolenaar98921892016-02-23 17:14:37 +01006414#if GTK_CHECK_VERSION(3,0,0)
6415 if (gtk_widget_get_window(gui.drawarea) == NULL)
6416#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006418#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 return;
6420
6421 gui_mch_set_fg_color(color);
6422
Bram Moolenaar98921892016-02-23 17:14:37 +01006423#if GTK_CHECK_VERSION(3,0,0)
6424 {
6425 cairo_t *cr;
6426
6427 cr = cairo_create(gui.surface);
6428 set_cairo_source_rgb_from_pixel(cr, gui.fgcolor->pixel);
6429 cairo_rectangle(cr,
6430# ifdef FEAT_RIGHTLEFT
6431 /* vertical line should be on the right of current point */
6432 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6433# endif
6434 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6435 w, h);
6436 cairo_fill(cr);
6437 cairo_destroy(cr);
6438 }
6439#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6441 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6442 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006443# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 /* vertical line should be on the right of current point */
6445 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006446# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 FILL_X(gui.col),
6448 FILL_Y(gui.row) + gui.char_height - h,
6449 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006450#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451}
6452
6453
6454/*
6455 * Catch up with any queued X11 events. This may put keyboard input into the
6456 * input buffer, call resize call-backs, trigger timers etc. If there is
6457 * nothing in the X11 event queue (& no timers pending), then we return
6458 * immediately.
6459 */
6460 void
6461gui_mch_update(void)
6462{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006463 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6464 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465}
6466
Bram Moolenaar98921892016-02-23 17:14:37 +01006467#if GTK_CHECK_VERSION(3,0,0)
6468 static gboolean
6469#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472input_timer_cb(gpointer data)
6473{
6474 int *timed_out = (int *) data;
6475
Bram Moolenaar49325942007-05-10 19:19:59 +00006476 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 *timed_out = TRUE;
6478
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 return FALSE; /* don't happen again */
6480}
6481
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482/*
6483 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6484 * from the keyboard.
6485 * wtime == -1 Wait forever.
6486 * wtime == 0 This should never happen.
6487 * wtime > 0 Wait wtime milliseconds for a character.
6488 * Returns OK if a character was found to be available within the given time,
6489 * or FAIL otherwise.
6490 */
6491 int
6492gui_mch_wait_for_chars(long wtime)
6493{
6494 int focus;
6495 guint timer;
6496 static int timed_out;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497
6498 timed_out = FALSE;
6499
6500 /* this timeout makes sure that we will return if no characters arrived in
6501 * time */
6502
6503 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006504#if GTK_CHECK_VERSION(3,0,0)
6505 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6506#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509 else
6510 timer = 0;
6511
6512 focus = gui.in_focus;
6513
6514 do
6515 {
6516 /* Stop or start blinking when focus changes */
6517 if (gui.in_focus != focus)
6518 {
6519 if (gui.in_focus)
6520 gui_mch_start_blink();
6521 else
6522 gui_mch_stop_blink();
6523 focus = gui.in_focus;
6524 }
6525
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006526#ifdef MESSAGE_QUEUE
6527 parse_queued_messages();
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006528#endif
6529
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 /*
6531 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006532 * Skip this if input is available anyway (can happen in rare
6533 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006535 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006536 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537
6538 /* Got char, return immediately */
6539 if (input_available())
6540 {
6541 if (timer != 0 && !timed_out)
Bram Moolenaar98921892016-02-23 17:14:37 +01006542#if GTK_CHECK_VERSION(3,0,0)
6543 g_source_remove(timer);
6544#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 gtk_timeout_remove(timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01006546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006547 return OK;
6548 }
6549 } while (wtime < 0 || !timed_out);
6550
6551 /*
6552 * Flush all eventually pending (drawing) events.
6553 */
6554 gui_mch_update();
6555
6556 return FAIL;
6557}
6558
6559
6560/****************************************************************************
6561 * Output drawing routines.
6562 ****************************************************************************/
6563
6564
6565/* Flush any output to the screen */
6566 void
6567gui_mch_flush(void)
6568{
6569#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006570# if GTK_CHECK_VERSION(3,0,0)
6571 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6572# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006574# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6576#else
6577 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 /* This happens to actually do what gui_mch_flush() is supposed to do,
6580 * according to the comment above. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006581#if GTK_CHECK_VERSION(3,0,0)
6582 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
6583 gdk_window_process_updates(gtk_widget_get_window(gui.drawarea), FALSE);
6584#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
6586 gdk_window_process_updates(gui.drawarea->window, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01006587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588}
6589
6590/*
6591 * Clear a rectangular region of the screen from text pos (row1, col1) to
6592 * (row2, col2) inclusive.
6593 */
6594 void
6595gui_mch_clear_block(int row1, int col1, int row2, int col2)
6596{
Bram Moolenaar98921892016-02-23 17:14:37 +01006597#if GTK_CHECK_VERSION(3,0,0)
6598 if (gtk_widget_get_window(gui.drawarea) == NULL)
6599 return;
6600#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601 GdkColor color;
6602
6603 if (gui.drawarea->window == NULL)
6604 return;
6605
6606 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608
Bram Moolenaar98921892016-02-23 17:14:37 +01006609#if GTK_CHECK_VERSION(3,0,0)
6610 {
6611 /* Add one pixel to the far right column in case a double-stroked
6612 * bold glyph may sit there. */
6613 const GdkRectangle rect = {
6614 FILL_X(col1), FILL_Y(row1),
6615 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6616 (row2 - row1 + 1) * gui.char_height
6617 };
6618 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6619 cairo_t * const cr = cairo_create(gui.surface);
6620 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6621 if (pat != NULL)
6622 cairo_set_source(cr, pat);
6623 else
6624 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6625 gdk_cairo_rectangle(cr, &rect);
6626 cairo_fill(cr);
6627 cairo_destroy(cr);
6628
6629 if (!gui.by_signal)
6630 gdk_window_invalidate_rect(win, &rect, FALSE);
6631 }
6632#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 gdk_gc_set_foreground(gui.text_gc, &color);
6634
6635 /* Clear one extra pixel at the far right, for when bold characters have
6636 * spilled over to the window border. */
6637 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6638 FILL_X(col1), FILL_Y(row1),
6639 (col2 - col1 + 1) * gui.char_width
6640 + (col2 == Columns - 1),
6641 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006642#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643}
6644
Bram Moolenaar98921892016-02-23 17:14:37 +01006645#if GTK_CHECK_VERSION(3,0,0)
6646 static void
6647gui_gtk_window_clear(GdkWindow *win)
6648{
6649 const GdkRectangle rect = {
6650 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6651 };
6652 cairo_t * const cr = cairo_create(gui.surface);
6653 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6654 if (pat != NULL)
6655 cairo_set_source(cr, pat);
6656 else
6657 set_cairo_source_rgb_from_pixel(cr, gui.back_pixel);
6658 gdk_cairo_rectangle(cr, &rect);
6659 cairo_fill(cr);
6660 cairo_destroy(cr);
6661
6662 if (!gui.by_signal)
6663 gdk_window_invalidate_rect(win, &rect, FALSE);
6664}
6665#endif
6666
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 void
6668gui_mch_clear_all(void)
6669{
Bram Moolenaar98921892016-02-23 17:14:37 +01006670#if GTK_CHECK_VERSION(3,0,0)
6671 if (gtk_widget_get_window(gui.drawarea) != NULL)
6672 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6673#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 if (gui.drawarea->window != NULL)
6675 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677}
6678
Bram Moolenaar98921892016-02-23 17:14:37 +01006679#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006680/*
6681 * Redraw any text revealed by scrolling up/down.
6682 */
6683 static void
6684check_copy_area(void)
6685{
6686 GdkEvent *event;
6687 int expose_count;
6688
6689 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6690 return;
6691
6692 /* Avoid redrawing the cursor while scrolling or it'll end up where
6693 * we don't want it to be. I'm not sure if it's correct to call
6694 * gui_dont_update_cursor() at this point but it works as a quick
6695 * fix for now. */
6696 gui_dont_update_cursor();
6697
6698 do
6699 {
6700 /* Wait to check whether the scroll worked or not. */
6701 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6702
6703 if (event == NULL)
6704 break; /* received NoExpose event */
6705
6706 gui_redraw(event->expose.area.x, event->expose.area.y,
6707 event->expose.area.width, event->expose.area.height);
6708
6709 expose_count = event->expose.count;
6710 gdk_event_free(event);
6711 }
6712 while (expose_count > 0); /* more events follow */
6713
6714 gui_can_update_cursor();
6715}
Bram Moolenaar98921892016-02-23 17:14:37 +01006716#endif /* !GTK_CHECK_VERSION(3,0,0) */
6717
6718#if GTK_CHECK_VERSION(3,0,0)
6719 static void
6720gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6721 int src_x, int src_y,
6722 int width, int height)
6723{
6724 cairo_t * const cr = cairo_create(gui.surface);
6725
6726 cairo_rectangle(cr, dest_x, dest_y, width, height);
6727 cairo_clip(cr);
6728 cairo_push_group(cr);
6729 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6730 cairo_paint(cr);
6731 cairo_pop_group_to_source(cr);
6732 cairo_paint(cr);
6733
6734 cairo_destroy(cr);
6735}
6736#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737
6738/*
6739 * Delete the given number of lines from the given row, scrolling up any
6740 * text further down within the scroll region.
6741 */
6742 void
6743gui_mch_delete_lines(int row, int num_lines)
6744{
Bram Moolenaar98921892016-02-23 17:14:37 +01006745#if GTK_CHECK_VERSION(3,0,0)
6746 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6747 const int nrows = gui.scroll_region_bot - row + 1;
6748 const int src_nrows = nrows - num_lines;
6749
6750 gui_gtk_surface_copy_rect(
6751 FILL_X(gui.scroll_region_left), FILL_Y(row),
6752 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6753 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6754 gui_clear_block(
6755 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6756 gui.scroll_region_bot, gui.scroll_region_right);
6757 gui_gtk3_redraw(
6758 FILL_X(gui.scroll_region_left), FILL_Y(row),
6759 gui.char_width * ncols + 1, gui.char_height * nrows);
6760 if (!gui.by_signal)
6761 gtk_widget_queue_draw_area(gui.drawarea,
6762 FILL_X(gui.scroll_region_left), FILL_Y(row),
6763 gui.char_width * ncols + 1, gui.char_height * nrows);
6764#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6766 return; /* Can't see the window */
6767
6768 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6769 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6770
6771 /* copy one extra pixel, for when bold has spilled over */
6772 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6773 FILL_X(gui.scroll_region_left), FILL_Y(row),
6774 gui.drawarea->window,
6775 FILL_X(gui.scroll_region_left),
6776 FILL_Y(row + num_lines),
6777 gui.char_width * (gui.scroll_region_right
6778 - gui.scroll_region_left + 1) + 1,
6779 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6780
6781 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6782 gui.scroll_region_left,
6783 gui.scroll_region_bot, gui.scroll_region_right);
6784 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006785#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786}
6787
6788/*
6789 * Insert the given number of lines before the given row, scrolling down any
6790 * following text within the scroll region.
6791 */
6792 void
6793gui_mch_insert_lines(int row, int num_lines)
6794{
Bram Moolenaar98921892016-02-23 17:14:37 +01006795#if GTK_CHECK_VERSION(3,0,0)
6796 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6797 const int nrows = gui.scroll_region_bot - row + 1;
6798 const int src_nrows = nrows - num_lines;
6799
6800 gui_gtk_surface_copy_rect(
6801 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6802 FILL_X(gui.scroll_region_left), FILL_Y(row),
6803 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6804 gui_mch_clear_block(
6805 row, gui.scroll_region_left,
6806 row + num_lines - 1, gui.scroll_region_right);
6807 gui_gtk3_redraw(
6808 FILL_X(gui.scroll_region_left), FILL_Y(row),
6809 gui.char_width * ncols + 1, gui.char_height * nrows);
6810 if (!gui.by_signal)
6811 gtk_widget_queue_draw_area(gui.drawarea,
6812 FILL_X(gui.scroll_region_left), FILL_Y(row),
6813 gui.char_width * ncols + 1, gui.char_height * nrows);
6814#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6816 return; /* Can't see the window */
6817
6818 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6819 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6820
6821 /* copy one extra pixel, for when bold has spilled over */
6822 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6823 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6824 gui.drawarea->window,
6825 FILL_X(gui.scroll_region_left), FILL_Y(row),
6826 gui.char_width * (gui.scroll_region_right
6827 - gui.scroll_region_left + 1) + 1,
6828 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6829
6830 gui_clear_block(row, gui.scroll_region_left,
6831 row + num_lines - 1, gui.scroll_region_right);
6832 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006833#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834}
6835
6836/*
6837 * X Selection stuff, for cutting and pasting text to other windows.
6838 */
6839 void
6840clip_mch_request_selection(VimClipboard *cbd)
6841{
6842 GdkAtom target;
6843 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006844 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845
6846 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6847 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006848 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6849 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850 received_selection = RS_NONE;
6851 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6852
6853 gtk_selection_convert(gui.drawarea,
6854 cbd->gtk_sel_atom, target,
6855 (guint32)GDK_CURRENT_TIME);
6856
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006857 /* Hack: Wait up to three seconds for the selection. A hang was
6858 * noticed here when using the netrw plugin combined with ":gui"
6859 * during the FocusGained event. */
6860 start = time(NULL);
6861 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006862 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863
6864 if (received_selection != RS_FAIL)
6865 return;
6866 }
6867
6868 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006869#if GTK_CHECK_VERSION(3,0,0)
6870 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6871 cbd);
6872#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006873 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875}
6876
6877/*
6878 * Disown the selection.
6879 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006881clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006883 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885}
6886
6887/*
6888 * Own the selection and return OK if it worked.
6889 */
6890 int
6891clip_mch_own_selection(VimClipboard *cbd)
6892{
6893 int success;
6894
6895 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006896 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 gui_mch_update();
6898 return (success) ? OK : FAIL;
6899}
6900
6901/*
6902 * Send the current selection to the clipboard. Do nothing for X because we
6903 * will fill in the selection only when requested by another app.
6904 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006906clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907{
6908}
6909
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006910 int
6911clip_gtk_owner_exists(VimClipboard *cbd)
6912{
6913 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6914}
6915
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916
6917#if defined(FEAT_MENU) || defined(PROTO)
6918/*
6919 * Make a menu item appear either active or not active (grey or not grey).
6920 */
6921 void
6922gui_mch_menu_grey(vimmenu_T *menu, int grey)
6923{
6924 if (menu->id == NULL)
6925 return;
6926
6927 if (menu_is_separator(menu->name))
6928 grey = TRUE;
6929
6930 gui_mch_menu_hidden(menu, FALSE);
6931 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006932# if GTK_CHECK_VERSION(3,0,0)
6933 if (!gtk_widget_get_sensitive(menu->id) == !grey)
6934# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01006936# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
6938 gtk_widget_set_sensitive(menu->id, !grey);
6939 gui_mch_update();
6940 }
6941}
6942
6943/*
6944 * Make menu item hidden or not hidden.
6945 */
6946 void
6947gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6948{
6949 if (menu->id == 0)
6950 return;
6951
6952 if (hidden)
6953 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006954# if GTK_CHECK_VERSION(3,0,0)
6955 if (gtk_widget_get_visible(menu->id))
6956# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006958# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959 {
6960 gtk_widget_hide(menu->id);
6961 gui_mch_update();
6962 }
6963 }
6964 else
6965 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006966# if GTK_CHECK_VERSION(3,0,0)
6967 if (!gtk_widget_get_visible(menu->id))
6968# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006970# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971 {
6972 gtk_widget_show(menu->id);
6973 gui_mch_update();
6974 }
6975 }
6976}
6977
6978/*
6979 * This is called after setting all the menus to grey/hidden or not.
6980 */
6981 void
6982gui_mch_draw_menubar(void)
6983{
6984 /* just make sure that the visual changes get effect immediately */
6985 gui_mch_update();
6986}
6987#endif /* FEAT_MENU */
6988
6989/*
6990 * Scrollbar stuff.
6991 */
6992 void
6993gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6994{
6995 if (sb->id == NULL)
6996 return;
6997
Bram Moolenaar98921892016-02-23 17:14:37 +01006998#if GTK_CHECK_VERSION(3,0,0)
6999 gtk_widget_set_visible(sb->id, flag);
7000#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 if (flag)
7002 gtk_widget_show(sb->id);
7003 else
7004 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007007 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008}
7009
7010
7011/*
7012 * Return the RGB value of a pixel as long.
7013 */
7014 long_u
7015gui_mch_get_rgb(guicolor_T pixel)
7016{
7017 GdkColor color;
Bram Moolenaar98921892016-02-23 17:14:37 +01007018#if GTK_CHECK_VERSION(3,0,0)
7019 GdkRGBA rgba;
7020
7021 gui_gtk_get_rgb_from_pixel(pixel, &rgba);
7022
7023 color.red = rgba.red * 65535;
7024 color.green = rgba.green * 65535;
7025 color.blue = rgba.blue * 65535;
7026#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7028 (unsigned long)pixel, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01007029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030
7031 return (((unsigned)color.red & 0xff00) << 8)
7032 | ((unsigned)color.green & 0xff00)
7033 | (((unsigned)color.blue & 0xff00) >> 8);
7034}
7035
7036/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007037 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007039 void
7040gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041{
Bram Moolenaar98921892016-02-23 17:14:37 +01007042#if GTK_CHECK_VERSION(3,0,0)
7043 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7044#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007045 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047}
7048
7049 void
7050gui_mch_setmouse(int x, int y)
7051{
7052 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7053 * internal GDK mechanism present to accomplish this. (and for good
7054 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007055#if GTK_CHECK_VERSION(3,0,0)
7056 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7057 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7058 0, 0, 0U, 0U, x, y);
7059#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7061 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7062 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064}
7065
7066
7067#ifdef FEAT_MOUSESHAPE
7068/* The last set mouse pointer shape is remembered, to be used when it goes
7069 * from hidden to not hidden. */
7070static int last_shape = 0;
7071#endif
7072
7073/*
7074 * Use the blank mouse pointer or not.
7075 *
7076 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7077 */
7078 void
7079gui_mch_mousehide(int hide)
7080{
7081 if (gui.pointer_hidden != hide)
7082 {
7083 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007084#if GTK_CHECK_VERSION(3,0,0)
7085 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 {
7090 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007091#if GTK_CHECK_VERSION(3,0,0)
7092 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7093 gui.blank_pointer);
7094#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 else
7098#ifdef FEAT_MOUSESHAPE
7099 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007100#elif GTK_CHECK_VERSION(3,0,0)
7101 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102#else
7103 gdk_window_set_cursor(gui.drawarea->window, NULL);
7104#endif
7105 }
7106 }
7107}
7108
7109#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7110
7111/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7112 * misc2.c! */
7113static const int mshape_ids[] =
7114{
7115 GDK_LEFT_PTR, /* arrow */
7116 GDK_CURSOR_IS_PIXMAP, /* blank */
7117 GDK_XTERM, /* beam */
7118 GDK_SB_V_DOUBLE_ARROW, /* updown */
7119 GDK_SIZING, /* udsizing */
7120 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7121 GDK_SIZING, /* lrsizing */
7122 GDK_WATCH, /* busy */
7123 GDK_X_CURSOR, /* no */
7124 GDK_CROSSHAIR, /* crosshair */
7125 GDK_HAND1, /* hand1 */
7126 GDK_HAND2, /* hand2 */
7127 GDK_PENCIL, /* pencil */
7128 GDK_QUESTION_ARROW, /* question */
7129 GDK_RIGHT_PTR, /* right-arrow */
7130 GDK_CENTER_PTR, /* up-arrow */
7131 GDK_LEFT_PTR /* last one */
7132};
7133
7134 void
7135mch_set_mouse_shape(int shape)
7136{
7137 int id;
7138 GdkCursor *c;
7139
Bram Moolenaar98921892016-02-23 17:14:37 +01007140# if GTK_CHECK_VERSION(3,0,0)
7141 if (gtk_widget_get_window(gui.drawarea) == NULL)
7142# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 return;
7146
7147 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007148# if GTK_CHECK_VERSION(3,0,0)
7149 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7150 gui.blank_pointer);
7151# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007153# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 else
7155 {
7156 if (shape >= MSHAPE_NUMBERED)
7157 {
7158 id = shape - MSHAPE_NUMBERED;
7159 if (id >= GDK_LAST_CURSOR)
7160 id = GDK_LEFT_PTR;
7161 else
7162 id &= ~1; /* they are always even (why?) */
7163 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007164 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007166 else
7167 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168# ifdef HAVE_GTK_MULTIHEAD
7169 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007170 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007172 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007174# if GTK_CHECK_VERSION(3,0,0)
7175 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7176# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007178# endif
7179# if GTK_CHECK_VERSION(3,0,0)
7180 g_object_unref(G_OBJECT(c));
7181# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007183# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 }
7185 if (shape != MSHAPE_HIDE)
7186 last_shape = shape;
7187}
7188#endif /* FEAT_MOUSESHAPE */
7189
7190
7191#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7192/*
7193 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7194 * scaled down if the current font is not big enough, or scaled up if the image
7195 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7196 * will be cut off if the current font is not big enough, or centered if it's
7197 * too small.
7198 */
7199# define SIGN_WIDTH (2 * gui.char_width)
7200# define SIGN_HEIGHT (gui.char_height)
7201# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7202
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 void
7204gui_mch_drawsign(int row, int col, int typenr)
7205{
7206 GdkPixbuf *sign;
7207
7208 sign = (GdkPixbuf *)sign_get_image(typenr);
7209
Bram Moolenaar98921892016-02-23 17:14:37 +01007210# if GTK_CHECK_VERSION(3,0,0)
7211 if (sign != NULL && gui.drawarea != NULL
7212 && gtk_widget_get_window(gui.drawarea) != NULL)
7213# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007215# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 {
7217 int width;
7218 int height;
7219 int xoffset;
7220 int yoffset;
7221 int need_scale;
7222
7223 width = gdk_pixbuf_get_width(sign);
7224 height = gdk_pixbuf_get_height(sign);
7225 /*
7226 * Decide whether we need to scale. Allow one pixel of border
7227 * width to be cut off, in order to avoid excessive scaling for
7228 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007229 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 */
7231 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007232 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 || (width < 3 * SIGN_WIDTH / 4
7234 && height < 3 * SIGN_HEIGHT / 4));
7235 if (need_scale)
7236 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007237 double aspect;
7238 int w = width;
7239 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240
7241 /* Keep the original aspect ratio */
7242 aspect = (double)height / (double)width;
7243 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7244 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007245 if (((double)(MAX(height, SIGN_HEIGHT)) /
7246 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7247 {
7248 /* Change the aspect ratio by at most 15% to fill the
7249 * available space completly. */
7250 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7251 height = MIN(height, SIGN_HEIGHT);
7252 }
7253 else
7254 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007256 if (w == width && h == height)
7257 {
7258 /* no change in dimensions; don't decrease reference counter
7259 * (below) */
7260 need_scale = FALSE;
7261 }
7262 else
7263 {
7264 /* This doesn't seem to be worth caching, and doing so would
7265 * complicate the code quite a bit. */
7266 sign = gdk_pixbuf_scale_simple(sign, width, height,
7267 GDK_INTERP_BILINEAR);
7268 if (sign == NULL)
7269 return; /* out of memory */
7270 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271 }
7272
7273 /* The origin is the upper-left corner of the pixmap. Therefore
7274 * these offset may become negative if the pixmap is smaller than
7275 * the 2x1 cells reserved for the sign icon. */
7276 xoffset = (width - SIGN_WIDTH) / 2;
7277 yoffset = (height - SIGN_HEIGHT) / 2;
7278
Bram Moolenaar98921892016-02-23 17:14:37 +01007279# if GTK_CHECK_VERSION(3,0,0)
7280 {
7281 cairo_t *cr;
7282 cairo_surface_t *bg_surf;
7283 cairo_t *bg_cr;
7284 cairo_surface_t *sign_surf;
7285 cairo_t *sign_cr;
7286
7287 cr = cairo_create(gui.surface);
7288
7289 bg_surf = cairo_surface_create_similar(gui.surface,
7290 cairo_surface_get_content(gui.surface),
7291 SIGN_WIDTH, SIGN_HEIGHT);
7292 bg_cr = cairo_create(bg_surf);
7293 set_cairo_source_rgb_from_pixel(bg_cr, gui.bgcolor->pixel);
7294 cairo_paint(bg_cr);
7295
7296 sign_surf = cairo_surface_create_similar(gui.surface,
7297 cairo_surface_get_content(gui.surface),
7298 SIGN_WIDTH, SIGN_HEIGHT);
7299 sign_cr = cairo_create(sign_surf);
7300 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7301 cairo_paint(sign_cr);
7302
7303 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7304 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7305 cairo_paint(sign_cr);
7306
7307 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7308 cairo_paint(cr);
7309
7310 cairo_destroy(sign_cr);
7311 cairo_surface_destroy(sign_surf);
7312 cairo_destroy(bg_cr);
7313 cairo_surface_destroy(bg_surf);
7314 cairo_destroy(cr);
7315
7316 if (!gui.by_signal)
7317 gtk_widget_queue_draw_area(gui.drawarea,
7318 FILL_X(col), FILL_Y(col), width, height);
7319
7320 }
7321# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7323
7324 gdk_draw_rectangle(gui.drawarea->window,
7325 gui.text_gc,
7326 TRUE,
7327 FILL_X(col),
7328 FILL_Y(row),
7329 SIGN_WIDTH,
7330 SIGN_HEIGHT);
7331
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 gdk_pixbuf_render_to_drawable_alpha(sign,
7333 gui.drawarea->window,
7334 MAX(0, xoffset),
7335 MAX(0, yoffset),
7336 FILL_X(col) - MIN(0, xoffset),
7337 FILL_Y(row) - MIN(0, yoffset),
7338 MIN(width, SIGN_WIDTH),
7339 MIN(height, SIGN_HEIGHT),
7340 GDK_PIXBUF_ALPHA_BILEVEL,
7341 127,
7342 GDK_RGB_DITHER_NORMAL,
7343 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007344# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 if (need_scale)
7346 g_object_unref(sign);
7347 }
7348}
7349
7350 void *
7351gui_mch_register_sign(char_u *signfile)
7352{
7353 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7354 {
7355 GdkPixbuf *sign;
7356 GError *error = NULL;
7357 char_u *message;
7358
7359 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7360
7361 if (error == NULL)
7362 return sign;
7363
7364 message = (char_u *)error->message;
7365
7366 if (message != NULL && input_conv.vc_type != CONV_NONE)
7367 message = string_convert(&input_conv, message, NULL);
7368
7369 if (message != NULL)
7370 {
7371 /* The error message is already translated and will be more
7372 * descriptive than anything we could possibly do ourselves. */
7373 EMSG2("E255: %s", message);
7374
7375 if (input_conv.vc_type != CONV_NONE)
7376 vim_free(message);
7377 }
7378 g_error_free(error);
7379 }
7380
7381 return NULL;
7382}
7383
7384 void
7385gui_mch_destroy_sign(void *sign)
7386{
7387 if (sign != NULL)
7388 g_object_unref(sign);
7389}
7390
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391#endif /* FEAT_SIGN_ICONS */