blob: 3fdff4d3f32ed5970d880dbb3179253cf3ccfe65 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +010034// Gnome redefines _() and N_(). Grrr...
Bram Moolenaar071d4272004-06-13 20:20:40 +000035# 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)
Bram Moolenaar30613902019-12-01 22:11:18 +010051# define ENABLE_NLS // so the texts in the dialog boxes are translated
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaar30613902019-12-01 22:11:18 +010055// missing prototype in bonobo-dock-item.h
Bram Moolenaardb552d602006-03-23 22:59:57 +000056extern 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)
Bram Moolenaar30613902019-12-01 22:11:18 +010060// When generating prototypes we don't want syntax errors.
Bram Moolenaar071d4272004-06-13 20:20:40 +000061# 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>
Bram Moolenaar4f974752019-02-17 17:44:42 +010089# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
Bram Moolenaarb463e8d2017-06-05 15:07:09 +0200105#define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 gtk_widget_get_display(gui.mainwin), atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar30613902019-12-01 22:11:18 +0100108// Selection type distinguishers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109enum
110{
111 TARGET_TYPE_NONE,
112 TARGET_UTF8_STRING,
113 TARGET_STRING,
114 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000115 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 TARGET_TEXT,
117 TARGET_TEXT_URI_LIST,
118 TARGET_TEXT_PLAIN,
119 TARGET_VIM,
120 TARGET_VIMENC
121};
122
123/*
124 * Table of selection targets supported by Vim.
125 * Note: Order matters, preferred types should come first.
126 */
127static const GtkTargetEntry selection_targets[] =
128{
129 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
130 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000131 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
134 {"TEXT", 0, TARGET_TEXT},
135 {"STRING", 0, TARGET_STRING}
136};
137#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
138
139#ifdef FEAT_DND
140/*
141 * Table of DnD targets supported by Vim.
142 * Note: Order matters, preferred types should come first.
143 */
144static const GtkTargetEntry dnd_targets[] =
145{
146 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000147 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {"STRING", 0, TARGET_STRING},
150 {"text/plain", 0, TARGET_TEXT_PLAIN}
151};
152# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
153#endif
154
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156/*
157 * "Monospace" is a standard font alias that should be present
158 * on all proper Pango/fontconfig installations.
159 */
160# define DEFAULT_FONT "Monospace 10"
161
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200162#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
163# define USE_GNOME_SESSION
164#endif
165
166#if !defined(FEAT_GUI_GNOME)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167/*
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 Moolenaar30613902019-12-01 22:11:18 +0100180static GdkAtom vim_atom = GDK_NONE; // Vim's own special selection format
181static 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'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100221 {GDK_Pause, 'F', 'B'}, // Pause == F21 according to netbeans.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 {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'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100252 // Keypad keys:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 {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'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100261 {GDK_KP_Prior, 'K', '3'}, // page up
262 {GDK_KP_Next, 'K', '5'}, // page down
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
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
Bram Moolenaar30613902019-12-01 22:11:18 +0100282 // End of list marker:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 {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
Bram Moolenaar30613902019-12-01 22:11:18 +0100298#define ARG_XRM 10 // ignored
299#define ARG_MENUFONT 11 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300#define ARG_INDEX_MASK 0x00ff
Bram Moolenaar30613902019-12-01 22:11:18 +0100301#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[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
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{
Bram Moolenaar30613902019-12-01 22:11:18 +0100323 // We handle these options ourselves
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 {"-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
Bram Moolenaar30613902019-12-01 22:11:18 +0100339 {"-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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100344 // Arguments handled by GTK (and GNOME) internally.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 {"--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},
Bram Moolenaar30613902019-12-01 22:11:18 +0100372# if 0 // conflicts with Vim's own --version argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 {"--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 Moolenaarf96ae0b2019-07-28 15:21:55 +0200384#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static 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
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200411#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 /*
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;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200436 gui_argv = ALLOC_MULT(char *, *argc + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100444 // Don't waste CPU cycles on non-option arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
Bram Moolenaar30613902019-12-01 22:11:18 +0100451 // Look for argv[i] in cmdline_options[] table.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 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;
Bram Moolenaar30613902019-12-01 22:11:18 +0100460 // allow --foo=bar style
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar30613902019-12-01 22:11:18 +0100464 // darn, -nb has non-standard syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 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 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100473 // Replace the standard X arguments "-name" and "-display"
474 // with their GNU-style long option counterparts.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100479 if (option->name == NULL) // no match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100487 // Move the argument into gui_argv, which
488 // will later be passed to gtk_init_check()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
Bram Moolenaar30613902019-12-01 22:11:18 +0100495 // Extract the option's value if there is one.
496 // Accept both "--foo bar" and "--foo=bar" style.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 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
Bram Moolenaar30613902019-12-01 22:11:18 +0100505 // Check for options handled by Vim itself
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 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:
Bram Moolenaar30613902019-12-01 22:11:18 +0100531 role_argument = value; // used later in gui_mch_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar30613902019-12-01 22:11:18 +0100535 gui.dofork = FALSE; // don't fork() when starting GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
Bram Moolenaar30613902019-12-01 22:11:18 +0100544 // These arguments make gnome_program_init() print a message and exit.
545 // Must start the GUI for this, otherwise ":gui" will exit later!
546 // Only when the GUI can start.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200547 if ((option->flags & ARG_NEEDS_GUI)
548 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 gui.starting = TRUE;
550
551 if (option->flags & ARG_KEEP)
552 ++i;
553 else
554 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100555 // Remove the flag from the argument vector.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 if (--*argc > i)
557 {
558 int n_strip = 1;
559
Bram Moolenaar30613902019-12-01 22:11:18 +0100560 // Move the argument's value as well, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 if ((option->flags & ARG_HAS_VALUE)
562 && argv[i][len] != '='
563 && strcmp(argv[i + 1], "--") != 0)
564 {
565 ++n_strip;
566 --*argc;
567 if (option->flags & ARG_FOR_GTK)
568 gui_argv[gui_argc++] = argv[i + 1];
569 }
570
571 if (*argc > i)
572 mch_memmove(&argv[i], &argv[i + n_strip],
573 (*argc - i) * sizeof(char *));
574 }
575 argv[*argc] = NULL;
576 }
577 }
578
579 gui_argv[gui_argc] = NULL;
580}
581
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000582#if defined(EXITFREE) || defined(PROTO)
583 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100584gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585{
586 vim_free(gui_argv);
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200587#if defined(USE_GNOME_SESSION)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000588 vim_free(abs_restart_command);
589#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000590}
591#endif
592
Bram Moolenaar98921892016-02-23 17:14:37 +0100593#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594/*
595 * This should be maybe completely removed.
596 * Doesn't seem possible, since check_copy_area() relies on
597 * this information. --danielk
598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000600visibility_event(GtkWidget *widget UNUSED,
601 GdkEventVisibility *event,
602 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604 gui.visibility = event->state;
605 /*
606 * When we do an gdk_window_copy_area(), and the window is partially
607 * obscured, we want to receive an event to tell us whether it worked
608 * or not.
609 */
610 if (gui.text_gc != NULL)
611 gdk_gc_set_exposures(gui.text_gc,
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
613 return FALSE;
614}
Bram Moolenaar30613902019-12-01 22:11:18 +0100615#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617/*
618 * Redraw the corresponding portions of the screen.
619 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100620#if GTK_CHECK_VERSION(3,0,0)
621static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100622static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100623
624static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100625
626 static void
627gui_gtk3_redraw(int x, int y, int width, int height)
628{
Bram Moolenaar30613902019-12-01 22:11:18 +0100629 // Range checks are left to gui_redraw_block()
Bram Moolenaar98921892016-02-23 17:14:37 +0100630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
632 GUI_MON_NOCLEAR);
633}
634
635 static void
636gui_gtk3_update_cursor(cairo_t *cr)
637{
638 if (gui.row == gui.cursor_row)
639 {
640 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100641 if (State & CMDLINE)
642 gui_update_cursor(TRUE, FALSE);
643 else
644 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100645 gui.by_signal = FALSE;
646 cairo_paint(cr);
647 }
648}
649
650 static gboolean
651gui_gtk3_should_draw_cursor(void)
652{
653 unsigned int cond = 0;
654 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100655 if (gui.cursor_col >= gui.col)
656 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100657 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100658 return cond;
659}
660
661 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200662draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100663 cairo_t *cr,
664 gpointer user_data UNUSED)
665{
Bram Moolenaar30613902019-12-01 22:11:18 +0100666 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar98921892016-02-23 17:14:37 +0100667 if (gui.starting)
668 return FALSE;
669
Bram Moolenaar30613902019-12-01 22:11:18 +0100670 out_flush(); // make sure all output has been processed
671 // for GTK+ 3, may induce other draw events.
Bram Moolenaar98921892016-02-23 17:14:37 +0100672
673 cairo_set_source_surface(cr, gui.surface, 0, 0);
674
Bram Moolenaar30613902019-12-01 22:11:18 +0100675 // Draw the window without the cursor.
Bram Moolenaar98921892016-02-23 17:14:37 +0100676 gui.by_signal = TRUE;
677 {
678 cairo_rectangle_list_t *list = NULL;
679
Bram Moolenaar98921892016-02-23 17:14:37 +0100680 list = cairo_copy_clip_rectangle_list(cr);
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
682 {
683 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100684
Bram Moolenaar30613902019-12-01 22:11:18 +0100685 // First clear all the blocks and then redraw them. Just in case
686 // some blocks overlap.
Bram Moolenaar98921892016-02-23 17:14:37 +0100687 for (i = 0; i < list->num_rectangles; i++)
688 {
689 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200690
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100691 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0,
692 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1);
693 }
694
695 for (i = 0; i < list->num_rectangles; i++)
696 {
697 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200698
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100699 if (blink_mode)
700 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
701 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100702 {
703 if (get_real_state() & VISUAL)
704 gui_gtk3_redraw(rect.x, rect.y,
705 rect.width, rect.height);
706 else
707 gui_redraw(rect.x, rect.y, rect.width, rect.height);
708 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100709 }
710 }
711 cairo_rectangle_list_destroy(list);
712
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100713 if (get_real_state() & VISUAL)
714 {
715 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
716 gui_update_cursor(TRUE, TRUE);
717 }
718
Bram Moolenaar98921892016-02-23 17:14:37 +0100719 cairo_paint(cr);
720 }
721 gui.by_signal = FALSE;
722
Bram Moolenaar30613902019-12-01 22:11:18 +0100723 // Add the cursor to the window if necessary.
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100724 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100725 gui_gtk3_update_cursor(cr);
726
727 return FALSE;
728}
Bram Moolenaar30613902019-12-01 22:11:18 +0100729#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000731expose_event(GtkWidget *widget UNUSED,
732 GdkEventExpose *event,
733 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734{
Bram Moolenaar30613902019-12-01 22:11:18 +0100735 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 if (gui.starting)
737 return FALSE;
738
Bram Moolenaar30613902019-12-01 22:11:18 +0100739 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 gui_redraw(event->area.x, event->area.y,
741 event->area.width, event->area.height);
742
Bram Moolenaar30613902019-12-01 22:11:18 +0100743 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 if (event->area.x < FILL_X(0))
745 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
746 if (event->area.y < FILL_Y(0))
747 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
748 if (event->area.x > FILL_X(Columns))
749 gdk_window_clear_area(gui.drawarea->window,
750 FILL_X((int)Columns), 0, 0, 0);
751 if (event->area.y > FILL_Y(Rows))
752 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
753
754 return FALSE;
755}
Bram Moolenaar30613902019-12-01 22:11:18 +0100756#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
758#ifdef FEAT_CLIENTSERVER
759/*
760 * Handle changes to the "Comm" property
761 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000763property_event(GtkWidget *widget,
764 GdkEventProperty *event,
765 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 if (event->type == GDK_PROPERTY_NOTIFY
768 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100769 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 && GET_X_ATOM(event->atom) == commProperty)
771 {
772 XEvent xev;
773
Bram Moolenaar30613902019-12-01 22:11:18 +0100774 // Translate to XLib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 xev.xproperty.type = PropertyNotify;
776 xev.xproperty.atom = commProperty;
777 xev.xproperty.window = commWindow;
778 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100779 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
780 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
782 return FALSE;
783}
Bram Moolenaar30613902019-12-01 22:11:18 +0100784#endif // defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200786/*
787 * Handle changes to the "Xft/DPI" setting
788 */
789 static void
790gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
791 GParamSpec *pspec UNUSED,
792 gpointer data UNUSED)
793{
794 // Create a new PangoContext for this screen, and initialize it
795 // with the current font if necessary.
796 if (gui.text_context != NULL)
797 g_object_unref(gui.text_context);
798
799 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
800 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
801
802 if (gui.norm_font != NULL)
803 {
804 // force default font
805 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
806 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
807 }
808}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200810typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200811
812/*
813 * Start a timer that will invoke the specified callback.
814 * Returns the ID of the timer.
815 */
816 static guint
817timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
818{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200819 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200820}
821
822 static void
823timeout_remove(guint timer)
824{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200825 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200826}
827
828
Bram Moolenaar30613902019-12-01 22:11:18 +0100829/////////////////////////////////////////////////////////////////////////////
830// Focus handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831
832
833/*
834 * This is a simple state machine:
835 * BLINK_NONE not blinking at all
836 * BLINK_OFF blinking, cursor is not shown
837 * BLINK_ON blinking, cursor is shown
838 */
839
840#define BLINK_NONE 0
841#define BLINK_OFF 1
842#define BLINK_ON 2
843
844static int blink_state = BLINK_NONE;
845static long_u blink_waittime = 700;
846static long_u blink_ontime = 400;
847static long_u blink_offtime = 250;
848static guint blink_timer = 0;
849
Bram Moolenaar98921892016-02-23 17:14:37 +0100850#if GTK_CHECK_VERSION(3,0,0)
851 static gboolean
852gui_gtk_is_blink_on(void)
853{
854 return blink_state == BLINK_ON;
855}
Bram Moolenaar98921892016-02-23 17:14:37 +0100856#endif
857
Bram Moolenaar703a8042016-06-04 16:24:32 +0200858 int
859gui_mch_is_blinking(void)
860{
861 return blink_state != BLINK_NONE;
862}
863
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200864 int
865gui_mch_is_blink_off(void)
866{
867 return blink_state == BLINK_OFF;
868}
869
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 void
871gui_mch_set_blinking(long waittime, long on, long off)
872{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100873#if GTK_CHECK_VERSION(3,0,0)
874 if (waittime == 0 || on == 0 || off == 0)
875 {
876 blink_mode = FALSE;
877
878 blink_waittime = 700;
879 blink_ontime = 400;
880 blink_offtime = 250;
881 }
882 else
883 {
884 blink_mode = TRUE;
885
886 blink_waittime = waittime;
887 blink_ontime = on;
888 blink_offtime = off;
889 }
890#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 blink_waittime = waittime;
892 blink_ontime = on;
893 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100894#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895}
896
897/*
898 * Stop the cursor blinking. Show the cursor if it wasn't shown.
899 */
900 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100901gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902{
903 if (blink_timer)
904 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200905 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 blink_timer = 0;
907 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100908 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200909 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200911 gui_mch_flush();
912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 blink_state = BLINK_NONE;
914}
915
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200916 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000917blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
919 if (blink_state == BLINK_ON)
920 {
921 gui_undraw_cursor();
922 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200923 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 }
925 else
926 {
927 gui_update_cursor(TRUE, FALSE);
928 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200929 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200931 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932
Bram Moolenaar30613902019-12-01 22:11:18 +0100933 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934}
935
936/*
937 * Start the cursor blinking. If it was already blinking, this restarts the
938 * waiting time and shows the cursor.
939 */
940 void
941gui_mch_start_blink(void)
942{
943 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200944 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200945 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200946 blink_timer = 0;
947 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100948 // Only switch blinking on if none of the times is zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
950 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200951 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 blink_state = BLINK_ON;
953 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200954 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 }
956}
957
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000959enter_notify_event(GtkWidget *widget UNUSED,
960 GdkEventCrossing *event UNUSED,
961 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962{
963 if (blink_state == BLINK_NONE)
964 gui_mch_start_blink();
965
Bram Moolenaar30613902019-12-01 22:11:18 +0100966 // make sure keyboard input goes there
Bram Moolenaar98921892016-02-23 17:14:37 +0100967 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 gtk_widget_grab_focus(gui.drawarea);
969
970 return FALSE;
971}
972
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000974leave_notify_event(GtkWidget *widget UNUSED,
975 GdkEventCrossing *event UNUSED,
976 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100979 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980
981 return FALSE;
982}
983
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000985focus_in_event(GtkWidget *widget,
986 GdkEventFocus *event UNUSED,
987 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988{
989 gui_focus_change(TRUE);
990
991 if (blink_state == BLINK_NONE)
992 gui_mch_start_blink();
993
Bram Moolenaar30613902019-12-01 22:11:18 +0100994 // make sure keyboard input goes to the draw area (if this is focus for a
995 // window)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000996 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000997 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998
999 return TRUE;
1000}
1001
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001003focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001004 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001005 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006{
1007 gui_focus_change(FALSE);
1008
1009 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001010 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011
1012 return TRUE;
1013}
1014
1015
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016/*
1017 * Translate a GDK key value to UTF-8 independently of the current locale.
1018 * The output is written to string, which must have room for at least 6 bytes
1019 * plus the NUL terminator. Returns the length in bytes.
1020 *
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001021 * event->string is evil; see here why:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1023 */
1024 static int
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001025keyval_to_string(unsigned int keyval, char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026{
1027 int len;
1028 guint32 uc;
1029
1030 uc = gdk_keyval_to_unicode(keyval);
1031 if (uc != 0)
1032 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001033 // Translate a normal key to UTF-8. This doesn't work for dead
1034 // keys of course, you _have_ to use an input method for that.
1035 len = utf_char2bytes((int)uc, string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037 else
1038 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001039 // Translate keys which are represented by ASCII control codes in Vim.
1040 // There are only a few of those; most control keys are translated to
1041 // special terminal-like control sequences.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 len = 1;
1043 switch (keyval)
1044 {
1045 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1046 string[0] = TAB;
1047 break;
1048 case GDK_Linefeed:
1049 string[0] = NL;
1050 break;
1051 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1052 string[0] = CAR;
1053 break;
1054 case GDK_Escape:
1055 string[0] = ESC;
1056 break;
1057 default:
1058 len = 0;
1059 break;
1060 }
1061 }
1062 string[len] = NUL;
1063
1064 return len;
1065}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001067 static int
1068modifiers_gdk2vim(guint state)
1069{
1070 int modifiers = 0;
1071
1072 if (state & GDK_SHIFT_MASK)
1073 modifiers |= MOD_MASK_SHIFT;
1074 if (state & GDK_CONTROL_MASK)
1075 modifiers |= MOD_MASK_CTRL;
1076 if (state & GDK_MOD1_MASK)
1077 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001078#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001079 if (state & GDK_SUPER_MASK)
1080 modifiers |= MOD_MASK_META;
1081#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001082 if (state & GDK_MOD4_MASK)
1083 modifiers |= MOD_MASK_META;
1084
1085 return modifiers;
1086}
1087
1088 static int
1089modifiers_gdk2mouse(guint state)
1090{
1091 int modifiers = 0;
1092
1093 if (state & GDK_SHIFT_MASK)
1094 modifiers |= MOUSE_SHIFT;
1095 if (state & GDK_CONTROL_MASK)
1096 modifiers |= MOUSE_CTRL;
1097 if (state & GDK_MOD1_MASK)
1098 modifiers |= MOUSE_ALT;
1099
1100 return modifiers;
1101}
1102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103/*
1104 * Main keyboard handler:
1105 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001107key_press_event(GtkWidget *widget UNUSED,
1108 GdkEventKey *event,
1109 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110{
Bram Moolenaar30613902019-12-01 22:11:18 +01001111 // For GTK+ 2 we know for sure how large the string might get.
1112 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 guint key_sym;
1115 int len;
1116 int i;
1117 int modifiers;
1118 int key;
1119 guint state;
1120 char_u *s, *d;
1121
Bram Moolenaar98921892016-02-23 17:14:37 +01001122#if GTK_CHECK_VERSION(3,0,0)
1123 is_key_pressed = TRUE;
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001124 gui_mch_stop_blink(TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001125#endif
1126
Bram Moolenaar20892c12011-06-26 04:49:00 +02001127 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 key_sym = event->keyval;
1129 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130
1131#ifdef FEAT_XIM
1132 if (xim_queue_key_press_event(event, TRUE))
1133 return TRUE;
1134#endif
1135
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136#ifdef SunXK_F36
1137 /*
1138 * These keys have bogus lookup strings, and trapping them here is
1139 * easier than trying to XRebindKeysym() on them with every possible
1140 * combination of modifiers.
1141 */
1142 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1143 len = 0;
1144 else
1145#endif
1146 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001147 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
Bram Moolenaar30613902019-12-01 22:11:18 +01001149 // Careful: convert_input() doesn't handle the NUL character.
1150 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 if (len > 1 && input_conv.vc_type != CONV_NONE)
1152 len = convert_input(string2, len, sizeof(string2));
1153
1154 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 d = string;
1156 for (i = 0; i < len; ++i)
1157 {
1158 *d++ = s[i];
1159 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1160 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001161 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 *d++ = KS_EXTRA;
1163 *d++ = (int)KE_CSI;
1164 }
1165 }
1166 len = d - string;
1167 }
1168
Bram Moolenaar30613902019-12-01 22:11:18 +01001169 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 if (key_sym == GDK_ISO_Left_Tab)
1171 {
1172 key_sym = GDK_Tab;
1173 state |= GDK_SHIFT_MASK;
1174 }
1175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001177 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1178 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 if ((state & GDK_MOD1_MASK)
1180 && gui.menu_is_active
1181 && (*p_wak == 'y'
1182 || (*p_wak == 'm'
1183 && len == 1
1184 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001185 // For GTK2 we return false to signify that we haven't handled the
1186 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188#endif
1189
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001190 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1191 // done later, the same as it happens for the terminal. Hopefully that
1192 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193
Bram Moolenaar30613902019-12-01 22:11:18 +01001194 // Check for special keys. Also do this when len == 1 (key has an ASCII
1195 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 if (len == 0 || len == 1)
1197 {
1198 for (i = 0; special_keys[i].key_sym != 0; i++)
1199 {
1200 if (special_keys[i].key_sym == key_sym)
1201 {
1202 string[0] = CSI;
1203 string[1] = special_keys[i].code0;
1204 string[2] = special_keys[i].code1;
1205 len = -3;
1206 break;
1207 }
1208 }
1209 }
1210
Bram Moolenaar30613902019-12-01 22:11:18 +01001211 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 return TRUE;
1213
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001214 // For some keys a shift modifier is translated into another key code.
1215 if (len == -3)
1216 key = TO_SPECIAL(string[1], string[2]);
1217 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001218 {
1219 string[len] = NUL;
1220 key = mb_ptr2char(string);
1221 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001222
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001223 // Handle modifiers.
1224 modifiers = modifiers_gdk2vim(state);
1225
1226 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001227 key = simplify_key(key, &modifiers);
1228 if (key == CSI)
1229 key = K_CSI;
1230 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001232 string[0] = CSI;
1233 string[1] = K_SECOND(key);
1234 string[2] = K_THIRD(key);
1235 len = 3;
1236 }
1237 else
1238 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001239 // Some keys need adjustment when the Ctrl modifier is used.
1240 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001241
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001242 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001243 modifiers = may_remove_shift_modifier(modifiers, key);
1244
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001245 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001248 if (modifiers != 0)
1249 {
1250 string2[0] = CSI;
1251 string2[1] = KS_MODIFIER;
1252 string2[2] = modifiers;
1253 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 }
1255
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001256 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001258 int int_ch = check_for_interrupt(key, modifiers);
1259
1260 if (int_ch != NUL)
1261 {
1262 trash_input_buf();
1263 string[0] = int_ch;
1264 len = 1;
1265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 }
1267
1268 add_to_input_buf(string, len);
1269
Bram Moolenaar30613902019-12-01 22:11:18 +01001270 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 if (p_mh)
1272 gui_mch_mousehide(TRUE);
1273
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 return TRUE;
1275}
1276
Bram Moolenaar98921892016-02-23 17:14:37 +01001277#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001279key_release_event(GtkWidget *widget UNUSED,
1280 GdkEventKey *event,
1281 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282{
Bram Moolenaar98921892016-02-23 17:14:37 +01001283# if GTK_CHECK_VERSION(3,0,0)
1284 is_key_pressed = FALSE;
1285 gui_mch_start_blink();
1286# endif
1287# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001288 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 /*
1290 * GTK+ 2 input methods may do fancy stuff on key release events too.
1291 * With the default IM for instance, you can enter any UCS code point
1292 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1293 */
1294 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001295# else
1296 return TRUE;
1297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298}
1299#endif
1300
1301
Bram Moolenaar30613902019-12-01 22:11:18 +01001302/////////////////////////////////////////////////////////////////////////////
1303// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304
Bram Moolenaar30613902019-12-01 22:11:18 +01001305// Remember when clip_lose_selection was called from here, we must not call
1306// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001307static int in_selection_clear_event = FALSE;
1308
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001310selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001312 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001314 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (event->selection == clip_plus.gtk_sel_atom)
1316 clip_lose_selection(&clip_plus);
1317 else
1318 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001319 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 return TRUE;
1322}
1323
Bram Moolenaar30613902019-12-01 22:11:18 +01001324#define RS_NONE 0 // selection_received_cb() not called yet
1325#define RS_OK 1 // selection_received_cb() called and OK
1326#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327static int received_selection = RS_NONE;
1328
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001330selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001332 guint time_ UNUSED,
1333 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001335 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 char_u *text;
1337 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001340 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341
Bram Moolenaar98921892016-02-23 17:14:37 +01001342 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 cbd = &clip_plus;
1344 else
1345 cbd = &clip_star;
1346
Bram Moolenaar98921892016-02-23 17:14:37 +01001347 text = (char_u *)gtk_selection_data_get_data(data);
1348 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350 if (text == NULL || len <= 0)
1351 {
1352 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001353 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 return;
1356 }
1357
Bram Moolenaar98921892016-02-23 17:14:37 +01001358 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 {
1360 motion_type = *text++;
1361 --len;
1362 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001363 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
1365 char_u *enc;
1366 vimconv_T conv;
1367
1368 motion_type = *text++;
1369 --len;
1370
1371 enc = text;
1372 text += STRLEN(text) + 1;
1373 len -= text - enc;
1374
Bram Moolenaar30613902019-12-01 22:11:18 +01001375 // If the encoding of the text is different from 'encoding', attempt
1376 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 conv.vc_type = CONV_NONE;
1378 convert_setup(&conv, enc, p_enc);
1379 if (conv.vc_type != CONV_NONE)
1380 {
1381 tmpbuf = string_convert(&conv, text, &len);
1382 if (tmpbuf != NULL)
1383 text = tmpbuf;
1384 convert_setup(&conv, NULL, NULL);
1385 }
1386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387
Bram Moolenaar30613902019-12-01 22:11:18 +01001388 // gtk_selection_data_get_text() handles all the nasty details
1389 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 else
1391 {
1392 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1393 if (tmpbuf_utf8 != NULL)
1394 {
1395 len = STRLEN(tmpbuf_utf8);
1396 if (input_conv.vc_type != CONV_NONE)
1397 {
1398 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1399 if (tmpbuf != NULL)
1400 text = tmpbuf;
1401 }
1402 else
1403 text = tmpbuf_utf8;
1404 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001405 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1406 {
1407 vimconv_T conv;
1408
Bram Moolenaar30613902019-12-01 22:11:18 +01001409 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001410 conv.vc_type = CONV_NONE;
1411 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1412
1413 if (conv.vc_type != CONV_NONE)
1414 {
1415 text += 2;
1416 len -= 2;
1417 tmpbuf = string_convert(&conv, text, &len);
1418 convert_setup(&conv, NULL, NULL);
1419 }
1420 if (tmpbuf != NULL)
1421 text = tmpbuf;
1422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424
Bram Moolenaar30613902019-12-01 22:11:18 +01001425 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001426 while (len > 0 && text[len - 1] == NUL)
1427 --len;
1428
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 clip_yank_selection(motion_type, text, (long)len, cbd);
1430 received_selection = RS_OK;
1431 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433}
1434
1435/*
1436 * Prepare our selection data for passing it to the external selection
1437 * client.
1438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001440selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 GtkSelectionData *selection_data,
1442 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001443 guint time_ UNUSED,
1444 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445{
1446 char_u *string;
1447 char_u *tmpbuf;
1448 long_u tmplen;
1449 int length;
1450 int motion_type;
1451 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001452 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453
Bram Moolenaar98921892016-02-23 17:14:37 +01001454 if (gtk_selection_data_get_selection(selection_data)
1455 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 cbd = &clip_plus;
1457 else
1458 cbd = &clip_star;
1459
1460 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001461 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462
1463 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001464 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 && info != (guint)TARGET_UTF8_STRING
1466 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 && info != (guint)TARGET_VIM
1468 && info != (guint)TARGET_COMPOUND_TEXT
1469 && info != (guint)TARGET_TEXT)
1470 return;
1471
Bram Moolenaar30613902019-12-01 22:11:18 +01001472 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 clip_get_selection(cbd);
1474
1475 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1476 if (motion_type < 0 || string == NULL)
1477 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001478 // Due to int arguments we can't handle more than G_MAXINT. Also
1479 // reserve one extra byte for NUL or the motion type; just in case.
1480 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1482
1483 if (info == (guint)TARGET_VIM)
1484 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001485 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 if (tmpbuf != NULL)
1487 {
1488 tmpbuf[0] = motion_type;
1489 mch_memmove(tmpbuf + 1, string, (size_t)length);
1490 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001491 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 ++length;
1493 vim_free(string);
1494 string = tmpbuf;
1495 type = vim_atom;
1496 }
1497
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001498 else if (info == (guint)TARGET_HTML)
1499 {
1500 vimconv_T conv;
1501
Bram Moolenaar30613902019-12-01 22:11:18 +01001502 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001503 conv.vc_type = CONV_NONE;
1504 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1505 if (conv.vc_type != CONV_NONE)
1506 {
1507 tmpbuf = string_convert(&conv, string, &length);
1508 convert_setup(&conv, NULL, NULL);
1509 vim_free(string);
1510 string = tmpbuf;
1511 }
1512
Bram Moolenaar30613902019-12-01 22:11:18 +01001513 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001514 if (string != NULL)
1515 {
1516 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001517 if (tmpbuf != NULL)
1518 {
1519 tmpbuf[0] = 0xff;
1520 tmpbuf[1] = 0xfe;
1521 mch_memmove(tmpbuf + 2, string, (size_t)length);
1522 vim_free(string);
1523 string = tmpbuf;
1524 length += 2;
1525 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001526
Bram Moolenaar98921892016-02-23 17:14:37 +01001527#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001528 // Looks redundant even for GTK2 because these values are
1529 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001530 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001531 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001532#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001533 gtk_selection_data_set(selection_data, html_atom, 16,
1534 string, length);
1535 vim_free(string);
1536 }
1537 return;
1538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 else if (info == (guint)TARGET_VIMENC)
1540 {
1541 int l = STRLEN(p_enc);
1542
Bram Moolenaar30613902019-12-01 22:11:18 +01001543 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001544 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (tmpbuf != NULL)
1546 {
1547 tmpbuf[0] = motion_type;
1548 STRCPY(tmpbuf + 1, p_enc);
1549 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001550 length += l + 2;
1551 vim_free(string);
1552 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 type = vimenc_atom;
1555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556
Bram Moolenaar30613902019-12-01 22:11:18 +01001557 // gtk_selection_data_set_text() handles everything for us. This is
1558 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 else
1560 {
1561 if (output_conv.vc_type != CONV_NONE)
1562 {
1563 tmpbuf = string_convert(&output_conv, string, &length);
1564 vim_free(string);
1565 if (tmpbuf == NULL)
1566 return;
1567 string = tmpbuf;
1568 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001569 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1571 {
1572 gtk_selection_data_set_text(selection_data,
1573 (const char *)string, length);
1574 }
1575 vim_free(string);
1576 return;
1577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578
1579 if (string != NULL)
1580 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001581#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001582 // Looks redundant even for GTK2 because these values are
1583 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001585 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 gtk_selection_data_set(selection_data, type, 8, string, length);
1588 vim_free(string);
1589 }
1590}
1591
1592/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001593 * Check if the GUI can be started. Called before gvimrc is sourced and
1594 * before fork().
1595 * Return OK or FAIL.
1596 */
1597 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001598gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001599{
1600 char_u *p;
1601
Bram Moolenaar30613902019-12-01 22:11:18 +01001602 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001603 p = mch_getenv((char_u *)"DISPLAY");
1604 if (p == NULL || *p == NUL)
1605 {
1606 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001607 if (give_message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001608 emsg(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001609 return FAIL;
1610 }
1611 return OK;
1612}
1613
1614/*
1615 * Check if the GUI can be started. Called before gvimrc is sourced but after
1616 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 * Return OK or FAIL.
1618 */
1619 int
1620gui_mch_init_check(void)
1621{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001622#ifdef USE_GRESOURCE
1623 static int res_registered = FALSE;
1624
1625 if (!res_registered)
1626 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001627 // Call this function in the GUI process; otherwise, the resources
1628 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001629 res_registered = TRUE;
1630 gui_gtk_register_resource();
1631 }
1632#endif
1633
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001634#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001635 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1636 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001637 gdk_set_allowed_backends ("x11");
1638#endif
1639
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640#ifdef FEAT_GUI_GNOME
1641 if (gtk_socket_id == 0)
1642 using_gnome = 1;
1643#endif
1644
Bram Moolenaar30613902019-12-01 22:11:18 +01001645 // This defaults to argv[0], but we want it to match the name of the
1646 // shipped gvim.desktop so that Vim's windows can be associated with this
1647 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001648 g_set_prgname("gvim");
1649
Bram Moolenaar30613902019-12-01 22:11:18 +01001650 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 if (!gtk_init_check(&gui_argc, &gui_argv))
1652 {
1653 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001654 emsg(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 return FAIL;
1656 }
1657
1658 return OK;
1659}
1660
Bram Moolenaar30613902019-12-01 22:11:18 +01001661/////////////////////////////////////////////////////////////////////////////
1662// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663
1664
1665static guint mouse_click_timer = 0;
1666static int mouse_timed_out = TRUE;
1667
1668/*
1669 * Timer used to recognize multiple clicks of the mouse button
1670 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001671 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672mouse_click_timer_cb(gpointer data)
1673{
Bram Moolenaar30613902019-12-01 22:11:18 +01001674 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 int *timed_out = (int *) data;
1676
1677 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001678 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679}
1680
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001681static guint motion_repeat_timer = 0;
1682static int motion_repeat_offset = FALSE;
1683static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684
1685 static void
1686process_motion_notify(int x, int y, GdkModifierType state)
1687{
1688 int button;
1689 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001690 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
1692 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1693 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1694 GDK_BUTTON5_MASK))
1695 ? MOUSE_DRAG : ' ';
1696
Bram Moolenaar30613902019-12-01 22:11:18 +01001697 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 gui_mch_mousehide(FALSE);
1699
Bram Moolenaar30613902019-12-01 22:11:18 +01001700 // Just moving the rodent above the drawing area without any button
1701 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 if (button != MOUSE_DRAG)
1703 {
1704 gui_mouse_moved(x, y);
1705 return;
1706 }
1707
Bram Moolenaar30613902019-12-01 22:11:18 +01001708 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001709 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710
Bram Moolenaar30613902019-12-01 22:11:18 +01001711 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1713
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 /*
1715 * Auto repeat timer handling.
1716 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001717 gtk_widget_get_allocation(gui.drawarea, &allocation);
1718
1719 if (x < 0 || y < 0
1720 || x >= allocation.width
1721 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 {
1723
1724 int dx;
1725 int dy;
1726 int offshoot;
1727 int delay = 10;
1728
Bram Moolenaar30613902019-12-01 22:11:18 +01001729 // Calculate the maximal distance of the cursor from the drawing area.
1730 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001731 dx = x < 0 ? -x : x - allocation.width;
1732 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734 offshoot = dx > dy ? dx : dy;
1735
Bram Moolenaar30613902019-12-01 22:11:18 +01001736 // Make a linearly decaying timer delay with a threshold of 5 at a
1737 // distance of 127 pixels from the main window.
1738 //
1739 // One could think endlessly about the most ergonomic variant here.
1740 // For example it could make sense to calculate the distance from the
1741 // drags start instead...
1742 //
1743 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 if (offshoot > 127)
1745 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001746 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 delay = 5;
1748 }
1749 else
1750 {
1751 delay = (130 * (127 - offshoot)) / 127 + 5;
1752 }
1753
Bram Moolenaar30613902019-12-01 22:11:18 +01001754 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001756 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1757 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 }
1759}
1760
Bram Moolenaar98921892016-02-23 17:14:37 +01001761#if GTK_CHECK_VERSION(3,0,0)
1762 static GdkDevice *
1763gui_gtk_get_pointer_device(GtkWidget *widget)
1764{
1765 GdkWindow * const win = gtk_widget_get_window(widget);
1766 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001767# if GTK_CHECK_VERSION(3,20,0)
1768 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1769 return gdk_seat_get_pointer(seat);
1770# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001771 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1772 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001773# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001774}
1775
1776 static GdkWindow *
1777gui_gtk_get_pointer(GtkWidget *widget,
1778 gint *x,
1779 gint *y,
1780 GdkModifierType *state)
1781{
1782 GdkWindow * const win = gtk_widget_get_window(widget);
1783 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1784 return gdk_window_get_device_position(win, dev , x, y, state);
1785}
1786
Bram Moolenaar2369c152016-03-04 23:08:25 +01001787# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001788 static GdkWindow *
1789gui_gtk_window_at_position(GtkWidget *widget,
1790 gint *x,
1791 gint *y)
1792{
1793 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1794 return gdk_device_get_window_at_position(dev, x, y);
1795}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001796# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001797#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001798# define gui_gtk_get_pointer(wid, x, y, s) \
1799 gdk_window_get_pointer((wid)->window, x, y, s)
1800# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001801#endif
1802
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803/*
1804 * Timer used to recognize multiple clicks of the mouse button.
1805 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001806 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001807motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808{
1809 int x;
1810 int y;
1811 GdkModifierType state;
1812
Bram Moolenaar98921892016-02-23 17:14:37 +01001813 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814
1815 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1816 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1817 GDK_BUTTON5_MASK)))
1818 {
1819 motion_repeat_timer = 0;
1820 return FALSE;
1821 }
1822
Bram Moolenaar30613902019-12-01 22:11:18 +01001823 // If there already is a mouse click in the input buffer, wait another
1824 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 if (vim_used_in_input_buf() > 10)
1826 return TRUE;
1827
1828 motion_repeat_timer = 0;
1829
1830 /*
1831 * Fake a motion event.
1832 * Trick: Pretend the mouse moved to the next character on every other
1833 * event, otherwise drag events will be discarded, because they are still
1834 * in the same character.
1835 */
1836 if (motion_repeat_offset)
1837 x += gui.char_width;
1838
1839 motion_repeat_offset = !motion_repeat_offset;
1840 process_motion_notify(x, y, state);
1841
Bram Moolenaar30613902019-12-01 22:11:18 +01001842 // Don't happen again. We will get reinstalled in the synthetic event
1843 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 return FALSE;
1845}
1846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001848motion_notify_event(GtkWidget *widget,
1849 GdkEventMotion *event,
1850 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851{
1852 if (event->is_hint)
1853 {
1854 int x;
1855 int y;
1856 GdkModifierType state;
1857
Bram Moolenaar98921892016-02-23 17:14:37 +01001858 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 process_motion_notify(x, y, state);
1860 }
1861 else
1862 {
1863 process_motion_notify((int)event->x, (int)event->y,
1864 (GdkModifierType)event->state);
1865 }
1866
Bram Moolenaar30613902019-12-01 22:11:18 +01001867 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868}
1869
1870
1871/*
1872 * Mouse button handling. Note please that we are capturing multiple click's
1873 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1874 * This is due to the way the generic VIM code is recognizing multiple clicks.
1875 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001877button_press_event(GtkWidget *widget,
1878 GdkEventButton *event,
1879 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880{
1881 int button;
1882 int repeated_click = FALSE;
1883 int x, y;
1884 int_u vim_modifiers;
1885
Bram Moolenaar20892c12011-06-26 04:49:00 +02001886 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001887
Bram Moolenaar30613902019-12-01 22:11:18 +01001888 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001889 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 gtk_widget_grab_focus(widget);
1891
1892 /*
1893 * Don't let additional events about multiple clicks send by GTK to us
1894 * after the initial button press event confuse us.
1895 */
1896 if (event->type != GDK_BUTTON_PRESS)
1897 return FALSE;
1898
1899 x = event->x;
1900 y = event->y;
1901
Bram Moolenaar30613902019-12-01 22:11:18 +01001902 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 if (!mouse_timed_out && mouse_click_timer)
1904 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001905 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 mouse_click_timer = 0;
1907 repeated_click = TRUE;
1908 }
1909
1910 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001911 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1912 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913
1914 switch (event->button)
1915 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001916 // Keep in sync with gui_x11.c.
1917 // Buttons 4-7 are handled in scroll_event()
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001918 case 1: button = MOUSE_LEFT; break;
1919 case 2: button = MOUSE_MIDDLE; break;
1920 case 3: button = MOUSE_RIGHT; break;
1921 case 8: button = MOUSE_X1; break;
1922 case 9: button = MOUSE_X2; break;
1923 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001924 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 }
1926
1927#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001928 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 if (im_is_preediting())
1930 xim_reset();
1931#endif
1932
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001933 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934
1935 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936
1937 return TRUE;
1938}
1939
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001941 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001944scroll_event(GtkWidget *widget,
1945 GdkEventScroll *event,
1946 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001949 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950
Bram Moolenaar98921892016-02-23 17:14:37 +01001951 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 gtk_widget_grab_focus(widget);
1953
1954 switch (event->direction)
1955 {
1956 case GDK_SCROLL_UP:
1957 button = MOUSE_4;
1958 break;
1959 case GDK_SCROLL_DOWN:
1960 button = MOUSE_5;
1961 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001962 case GDK_SCROLL_LEFT:
1963 button = MOUSE_7;
1964 break;
1965 case GDK_SCROLL_RIGHT:
1966 button = MOUSE_6;
1967 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001968 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 return FALSE;
1970 }
1971
1972# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001973 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 if (im_is_preediting())
1975 xim_reset();
1976# endif
1977
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001978 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979
1980 gui_send_mouse_event(button, (int)event->x, (int)event->y,
1981 FALSE, vim_modifiers);
1982
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 return TRUE;
1984}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985
1986
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001988button_release_event(GtkWidget *widget UNUSED,
1989 GdkEventButton *event,
1990 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991{
1992 int x, y;
1993 int_u vim_modifiers;
1994
Bram Moolenaar20892c12011-06-26 04:49:00 +02001995 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001996
Bram Moolenaar30613902019-12-01 22:11:18 +01001997 // Remove any motion "machine gun" timers used for automatic further
1998 // extension of allocation areas if outside of the applications window
1999 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (motion_repeat_timer)
2001 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002002 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 motion_repeat_timer = 0;
2004 }
2005
2006 x = event->x;
2007 y = event->y;
2008
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002009 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010
2011 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012
2013 return TRUE;
2014}
2015
2016
2017#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002018/////////////////////////////////////////////////////////////////////////////
2019// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020
2021/*
2022 * Count how many items there may be and separate them with a NUL.
2023 * Apparently the items are separated with \r\n. This is not documented,
2024 * thus be careful not to go past the end. Also allow separation with
2025 * NUL characters.
2026 */
2027 static int
2028count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2029{
2030 int i;
2031 char_u *p = out;
2032 int count = 0;
2033
2034 for (i = 0; i < len; ++i)
2035 {
2036 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2037 {
2038 if (p > out && p[-1] != NUL)
2039 {
2040 ++count;
2041 *p++ = NUL;
2042 }
2043 }
2044 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2045 {
2046 *p++ = hexhex2nr(raw + i + 1);
2047 i += 2;
2048 }
2049 else
2050 *p++ = raw[i];
2051 }
2052 if (p > out && p[-1] != NUL)
2053 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002054 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 ++count;
2056 }
2057 return count;
2058}
2059
2060/*
2061 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2062 * this process, URI which protocol is not "file:" are removed. Return
2063 * length of array (less than "max").
2064 */
2065 static int
2066filter_uri_list(char_u **outlist, int max, char_u *src)
2067{
2068 int i, j;
2069
2070 for (i = j = 0; i < max; ++i)
2071 {
2072 outlist[i] = NULL;
2073 if (STRNCMP(src, "file:", 5) == 0)
2074 {
2075 src += 5;
2076 if (STRNCMP(src, "//localhost", 11) == 0)
2077 src += 11;
2078 while (src[0] == '/' && src[1] == '/')
2079 ++src;
2080 outlist[j++] = vim_strsave(src);
2081 }
2082 src += STRLEN(src) + 1;
2083 }
2084 return j;
2085}
2086
2087 static char_u **
2088parse_uri_list(int *count, char_u *data, int len)
2089{
2090 int n = 0;
2091 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002092 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002094 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 {
2096 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002097 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 n = filter_uri_list(array, n, tmp);
2099 }
2100 vim_free(tmp);
2101 *count = n;
2102 return array;
2103}
2104
2105 static void
2106drag_handle_uri_list(GdkDragContext *context,
2107 GtkSelectionData *data,
2108 guint time_,
2109 GdkModifierType state,
2110 gint x,
2111 gint y)
2112{
2113 char_u **fnames;
2114 int nfiles = 0;
2115
Bram Moolenaar98921892016-02-23 17:14:37 +01002116 fnames = parse_uri_list(&nfiles,
2117 (char_u *)gtk_selection_data_get_data(data),
2118 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119
2120 if (fnames != NULL && nfiles > 0)
2121 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002122 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123
Bram Moolenaar30613902019-12-01 22:11:18 +01002124 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002126 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
2128 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2129 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002130 else
2131 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132}
2133
2134 static void
2135drag_handle_text(GdkDragContext *context,
2136 GtkSelectionData *data,
2137 guint time_,
2138 GdkModifierType state)
2139{
2140 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2141 char_u *text;
2142 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
Bram Moolenaar98921892016-02-23 17:14:37 +01002145 text = (char_u *)gtk_selection_data_get_data(data);
2146 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147
Bram Moolenaar98921892016-02-23 17:14:37 +01002148 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 if (input_conv.vc_type != CONV_NONE)
2151 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 if (tmpbuf != NULL)
2153 text = tmpbuf;
2154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002157 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002160 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161
2162 if (dropkey[2] != 0)
2163 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2164 else
2165 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166}
2167
2168/*
2169 * DND receiver.
2170 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 static void
2172drag_data_received_cb(GtkWidget *widget,
2173 GdkDragContext *context,
2174 gint x,
2175 gint y,
2176 GtkSelectionData *data,
2177 guint info,
2178 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002179 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180{
2181 GdkModifierType state;
2182
Bram Moolenaar30613902019-12-01 22:11:18 +01002183 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002184 const guchar * const data_data = gtk_selection_data_get_data(data);
2185 const gint data_length = gtk_selection_data_get_length(data);
2186 const gint data_format = gtk_selection_data_get_format(data);
2187
2188 if (data_data == NULL
2189 || data_length <= 0
2190 || data_format != 8
2191 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 {
2193 gtk_drag_finish(context, FALSE, FALSE, time_);
2194 return;
2195 }
2196
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 // Get the current modifier state for proper distinguishment between
2198 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002199 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200
Bram Moolenaar30613902019-12-01 22:11:18 +01002201 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 if (info == (guint)TARGET_TEXT_URI_LIST)
2203 drag_handle_uri_list(context, data, time_, state, x, y);
2204 else
2205 drag_handle_text(context, data, time_, state);
2206
2207}
Bram Moolenaar30613902019-12-01 22:11:18 +01002208#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209
2210
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002211#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212/*
2213 * GnomeClient interact callback. Check for unsaved buffers that cannot
2214 * be abandoned and pop up a dialog asking the user for confirmation if
2215 * necessary.
2216 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002218sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002220 GnomeDialogType type UNUSED,
2221 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222{
2223 cmdmod_T save_cmdmod;
2224 gboolean shutdown_cancelled;
2225
2226 save_cmdmod = cmdmod;
2227
2228# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002229 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230# endif
2231# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002232 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233# endif
2234 /*
2235 * If there are changed buffers, present the user with
2236 * a dialog if possible, otherwise give an error message.
2237 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002238 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239
2240 exiting = FALSE;
2241 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002242 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 out_flush();
2244 /*
2245 * If the user hit the [Cancel] button the whole shutdown
2246 * will be cancelled. Wow, quite powerful feature (:
2247 */
2248 gnome_interaction_key_return(key, shutdown_cancelled);
2249}
2250
2251/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 * "save_yourself" signal handler. Initiate an interaction to ask the user
2253 * for confirmation if necessary. Save the current editing session and tell
2254 * the session manager how to restart Vim.
2255 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 static gboolean
2257sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002258 gint phase UNUSED,
2259 GnomeSaveStyle save_style UNUSED,
2260 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002262 gboolean fast UNUSED,
2263 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264{
2265 static const char suffix[] = "-session.vim";
2266 char *session_file;
2267 unsigned int len;
2268 gboolean success;
2269
Bram Moolenaar30613902019-12-01 22:11:18 +01002270 // Always request an interaction if possible. check_changed_any()
2271 // won't actually show a dialog unless any buffers have been modified.
2272 // There doesn't seem to be an obvious way to check that without
2273 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 if (interact_style == GNOME_INTERACT_ANY)
2275 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2276 &sm_client_check_changed_any,
2277 NULL);
2278 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002279 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280
Bram Moolenaar30613902019-12-01 22:11:18 +01002281 // The path is unique for each session save. We do neither know nor care
2282 // which session script will actually be used later. This decision is in
2283 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 session_file = gnome_config_get_real_path(
2285 gnome_client_get_config_prefix(client));
2286 len = strlen(session_file);
2287
2288 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002289 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290
2291 session_file = g_renew(char, session_file, len + sizeof(suffix));
2292 memcpy(session_file + len, suffix, sizeof(suffix));
2293
2294 success = write_session_file((char_u *)session_file);
2295
2296 if (success)
2297 {
2298 const char *argv[8];
2299 int i;
2300
Bram Moolenaar30613902019-12-01 22:11:18 +01002301 // Tell the session manager how to wipe out the stored session data.
2302 // This isn't as dangerous as it looks, don't worry :) session_file
2303 // is a unique absolute filename. Usually it'll be something like
2304 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 i = 0;
2306 argv[i++] = "rm";
2307 argv[i++] = session_file;
2308 argv[i] = NULL;
2309
2310 gnome_client_set_discard_command(client, i, (char **)argv);
2311
Bram Moolenaar30613902019-12-01 22:11:18 +01002312 // Tell the session manager how to restore the just saved session.
2313 // This is easily done thanks to Vim's -S option. Pass the -f flag
2314 // since there's no need to fork -- it might even cause confusion.
2315 // Also pass the window role to give the WM something to match on.
2316 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 i = 0;
2318 argv[i++] = restart_command;
2319 argv[i++] = "-f";
2320 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 argv[i++] = "--role";
2322 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 argv[i++] = "-S";
2324 argv[i++] = session_file;
2325 argv[i] = NULL;
2326
2327 gnome_client_set_restart_command(client, i, (char **)argv);
2328 gnome_client_set_clone_command(client, 0, NULL);
2329 }
2330
2331 g_free(session_file);
2332
2333 return success;
2334}
2335
2336/*
2337 * Called when the session manager wants us to die. There isn't much to save
2338 * here since "save_yourself" has been emitted before (unless serious trouble
2339 * is happening).
2340 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002342sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343{
Bram Moolenaar30613902019-12-01 22:11:18 +01002344 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 full_screen = FALSE;
2346
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002347 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002348 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002349 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 preserve_exit();
2351}
2352
2353/*
2354 * Connect our signal handlers to be notified on session save and shutdown.
2355 */
2356 static void
2357setup_save_yourself(void)
2358{
2359 GnomeClient *client;
2360
2361 client = gnome_master_client();
2362
2363 if (client != NULL)
2364 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002365 // Must use the deprecated gtk_signal_connect() for compatibility
2366 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2368 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2369 gtk_signal_connect(GTK_OBJECT(client), "die",
2370 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2371 }
2372}
2373
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002374#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375
2376# ifdef USE_XSMP
2377/*
2378 * GTK tells us that XSMP needs attention
2379 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002381local_xsmp_handle_requests(
2382 GIOChannel *source UNUSED,
2383 GIOCondition condition,
2384 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385{
2386 if (condition == G_IO_IN)
2387 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002388 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 if (xsmp_handle_requests() == FAIL)
2390 g_io_channel_unref((GIOChannel *)data);
2391 return TRUE;
2392 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002393 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 g_io_channel_unref((GIOChannel *)data);
2395 xsmp_close();
2396 return TRUE;
2397}
Bram Moolenaar30613902019-12-01 22:11:18 +01002398# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399
2400/*
2401 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2402 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2403 */
2404 static void
2405setup_save_yourself(void)
2406{
2407 Atom *existing_atoms = NULL;
2408 int count = 0;
2409
Bram Moolenaar98921892016-02-23 17:14:37 +01002410# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 if (xsmp_icefd != -1)
2412 {
2413 /*
2414 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2415 * set up GTK IO monitor
2416 */
2417 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2418
2419 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2420 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002421 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 }
2423 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002424# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002426 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427
Bram Moolenaar30613902019-12-01 22:11:18 +01002428 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002429 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2430
2431 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2432 GDK_WINDOW_XID(mainwin_win),
2433 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 {
2435 Atom *new_atoms;
2436 Atom save_yourself_xatom;
2437 int i;
2438
2439 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2440
Bram Moolenaar30613902019-12-01 22:11:18 +01002441 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 for (i = 0; i < count; ++i)
2443 if (existing_atoms[i] == save_yourself_xatom)
2444 break;
2445
2446 if (i == count)
2447 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002448 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002449 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (new_atoms != NULL)
2451 {
2452 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2453 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002454 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2455 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 new_atoms, count + 1);
2457 vim_free(new_atoms);
2458 }
2459 }
2460 XFree(existing_atoms);
2461 }
2462 }
2463}
2464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465/*
2466 * Installing a global event filter seems to be the only way to catch
2467 * client messages of type WM_PROTOCOLS without overriding GDK's own
2468 * client message event filter. Well, that's still better than trying
2469 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 *
2471 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2472 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2473 * I have the nasty feeling modern session managers just don't send this
2474 * deprecated message anymore. Addition: confirmed by several people.
2475 *
2476 * The GNOME session support is much cooler anyway. Unlike this ugly
2477 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2478 * it should work with KDE as well.
2479 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002481global_event_filter(GdkXEvent *xev,
2482 GdkEvent *event UNUSED,
2483 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484{
2485 XEvent *xevent = (XEvent *)xev;
2486
2487 if (xevent != NULL
2488 && xevent->type == ClientMessage
2489 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002490 && (long_u)xevent->xclient.data.l[0]
2491 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 {
2493 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002494 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 /*
2496 * Set the window's WM_COMMAND property, to let the window manager
2497 * know we are done saving ourselves. We don't want to be
2498 * restarted, thus set argv to NULL.
2499 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002500 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2501 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 NULL, 0);
2503 return GDK_FILTER_REMOVE;
2504 }
2505
2506 return GDK_FILTER_CONTINUE;
2507}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002508#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509
2510
2511/*
2512 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2513 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002515mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
Bram Moolenaar30613902019-12-01 22:11:18 +01002517// If you get an error message here, you still need to unpack the runtime
2518// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519#ifdef magick
2520# undef magick
2521#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002522 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524#define magick vim32x32
2525#include "../runtime/vim32x32.xpm"
2526#undef magick
2527#define magick vim16x16
2528#include "../runtime/vim16x16.xpm"
2529#undef magick
2530#define magick vim48x48
2531#include "../runtime/vim48x48.xpm"
2532#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534
Bram Moolenaar98921892016-02-23 17:14:37 +01002535 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002536
Bram Moolenaar30613902019-12-01 22:11:18 +01002537 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 if (echo_wid_arg)
2539 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002540 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 fflush(stdout);
2542 }
2543
2544 if (vim_strchr(p_go, GO_ICON) != NULL)
2545 {
2546 /*
2547 * Add an icon to the main window. For fun and convenience of the user.
2548 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 GList *icons = NULL;
2550
2551 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2552 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2553 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2554
2555 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2556
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002557 // TODO: is this type cast OK?
2558 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 }
2561
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002562#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002563 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002566 // Setup to indicate to the window manager that we want to catch the
2567 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2568 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002569#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 if (using_gnome)
2571#endif
2572 setup_save_yourself();
2573
2574#ifdef FEAT_CLIENTSERVER
2575 if (serverName == NULL && serverDelayedStartName != NULL)
2576 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002577 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002578 commWindow = GDK_WINDOW_XID(mainwin_win);
2579
2580 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2581 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 }
2583 else
2584 {
2585 /*
2586 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2587 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002588 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002590 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2591 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 }
2593 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002594 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2595 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596#endif
2597}
2598
2599 static GdkCursor *
2600create_blank_pointer(void)
2601{
2602 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002603#if GTK_CHECK_VERSION(3,0,0)
2604 GdkPixbuf *blank_mask;
2605#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002609#if GTK_CHECK_VERSION(3,0,0)
2610 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2611#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 GdkColor color = { 0, 0, 0, 0 };
2613 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002616#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002617 {
2618 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2619 GdkScreen * const scrn = gdk_window_get_screen(win);
2620 root_window = gdk_screen_get_root_window(scrn);
2621 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002622#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 root_window = gtk_widget_get_root_window(gui.mainwin);
2624#endif
2625
Bram Moolenaar30613902019-12-01 22:11:18 +01002626 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2627 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002628#if GTK_CHECK_VERSION(3,0,0)
2629 {
2630 cairo_surface_t *surf;
2631 cairo_t *cr;
2632
2633 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2634 cr = cairo_create(surf);
2635
Bram Moolenaar36edf062016-07-21 22:10:12 +02002636 cairo_set_source_rgba(cr,
2637 color.red,
2638 color.green,
2639 color.blue,
2640 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002641 cairo_rectangle(cr, 0, 0, 1, 1);
2642 cairo_fill(cr);
2643 cairo_destroy(cr);
2644
2645 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2646 cairo_surface_destroy(surf);
2647
2648 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2649 blank_mask, 0, 0);
2650 g_object_unref(blank_mask);
2651 }
2652#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2654 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2655 &color, &color, 0, 0);
2656 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002657#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658
2659 return cursor;
2660}
2661
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 static void
2663mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002664 GdkScreen *previous_screen UNUSED,
2665 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666{
2667 if (!gtk_widget_has_screen(widget))
2668 return;
2669
2670 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002671 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 */
2673 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002674#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002675 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002676#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
2680 gui.blank_pointer = create_blank_pointer();
2681
Bram Moolenaar98921892016-02-23 17:14:37 +01002682 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2683 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2684 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
2686 /*
2687 * Create a new PangoContext for this screen, and initialize it
2688 * with the current font if necessary.
2689 */
2690 if (gui.text_context != NULL)
2691 g_object_unref(gui.text_context);
2692
2693 gui.text_context = gtk_widget_create_pango_context(widget);
2694 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2695
2696 if (gui.norm_font != NULL)
2697 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002698 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002699 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 }
2701}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702
2703/*
2704 * After the drawing area comes up, we calculate all colors and create the
2705 * dummy blank cursor.
2706 *
2707 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2708 * fact that the main VIM engine doesn't take them into account anywhere.
2709 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002711drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712{
2713 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002714 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715
2716#ifdef FEAT_XIM
2717 xim_init();
2718#endif
2719 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002720#if GTK_CHECK_VERSION(3,0,0)
2721 gui.surface = gdk_window_create_similar_surface(
2722 gtk_widget_get_window(widget),
2723 CAIRO_CONTENT_COLOR_ALPHA,
2724 gtk_widget_get_allocated_width(widget),
2725 gtk_widget_get_allocated_height(widget));
2726#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002728#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729
2730 gui.blank_pointer = create_blank_pointer();
2731 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002732 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
Bram Moolenaar30613902019-12-01 22:11:18 +01002734 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2736 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2737 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2738 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002739 gtk_widget_get_allocation(sbar, &allocation);
2740 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2741 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742
2743 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002744 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2745 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746}
2747
2748/*
2749 * Properly clean up on shutdown.
2750 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002752drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753{
Bram Moolenaar30613902019-12-01 22:11:18 +01002754 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 full_screen = FALSE;
2756
2757#ifdef FEAT_XIM
2758 im_shutdown();
2759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 if (gui.ascii_glyphs != NULL)
2761 {
2762 pango_glyph_string_free(gui.ascii_glyphs);
2763 gui.ascii_glyphs = NULL;
2764 }
2765 if (gui.ascii_font != NULL)
2766 {
2767 g_object_unref(gui.ascii_font);
2768 gui.ascii_font = NULL;
2769 }
2770 g_object_unref(gui.text_context);
2771 gui.text_context = NULL;
2772
Bram Moolenaar98921892016-02-23 17:14:37 +01002773#if GTK_CHECK_VERSION(3,0,0)
2774 if (gui.surface != NULL)
2775 {
2776 cairo_surface_destroy(gui.surface);
2777 gui.surface = NULL;
2778 }
2779#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 g_object_unref(gui.text_gc);
2781 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783
Bram Moolenaar98921892016-02-23 17:14:37 +01002784#if GTK_CHECK_VERSION(3,0,0)
2785 g_object_unref(G_OBJECT(gui.blank_pointer));
2786#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002788#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790}
2791
Bram Moolenaara859f042016-11-17 19:11:55 +01002792#if GTK_CHECK_VERSION(3,22,2)
2793 static void
2794drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2795 gpointer data UNUSED)
2796#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002798drawarea_style_set_cb(GtkWidget *widget UNUSED,
2799 GtkStyle *previous_style UNUSED,
2800 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802{
2803 gui_mch_new_colors();
2804}
2805
Bram Moolenaar98921892016-02-23 17:14:37 +01002806#if GTK_CHECK_VERSION(3,0,0)
2807 static gboolean
2808drawarea_configure_event_cb(GtkWidget *widget,
2809 GdkEventConfigure *event,
2810 gpointer data UNUSED)
2811{
2812 static int cur_width = 0;
2813 static int cur_height = 0;
2814
2815 g_return_val_if_fail(event
2816 && event->width >= 1 && event->height >= 1, TRUE);
2817
Bram Moolenaar182707a2016-11-21 20:55:58 +01002818# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002819 // As of 3.22.2, GdkWindows have started distributing configure events to
2820 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2821 //
2822 // As can be seen from the implementation of move_native_children() and
2823 // configure_native_child() in gdkwindow.c, those functions actually
2824 // propagate configure events to every child, failing to distinguish
2825 // "native" one from non-native one.
2826 //
2827 // Naturally, configure events propagated to here like that are fallacious
2828 // and, as a matter of fact, they trigger a geometric collapse of
2829 // gui.drawarea in fullscreen and maximized modes.
2830 //
2831 // To filter out such nuisance events, we are making use of the fact that
2832 // the field send_event of such GdkEventConfigures is set to FALSE in
2833 // configure_native_child().
2834 //
2835 // Obviously, this is a terrible hack making GVim depend on GTK's
2836 // implementation details. Therefore, watch out any relevant internal
2837 // changes happening in GTK in the feature (sigh).
2838 //
2839 // Follow-up
2840 // After a few weeks later, the GdkWindow change mentioned above was
2841 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2842 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002843 if (event->send_event == FALSE)
2844 return TRUE;
2845# endif
2846
Bram Moolenaar98921892016-02-23 17:14:37 +01002847 if (event->width == cur_width && event->height == cur_height)
2848 return TRUE;
2849
2850 cur_width = event->width;
2851 cur_height = event->height;
2852
2853 if (gui.surface != NULL)
2854 cairo_surface_destroy(gui.surface);
2855
2856 gui.surface = gdk_window_create_similar_surface(
2857 gtk_widget_get_window(widget),
2858 CAIRO_CONTENT_COLOR_ALPHA,
2859 event->width, event->height);
2860
2861 gtk_widget_queue_draw(widget);
2862
2863 return TRUE;
2864}
2865#endif
2866
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867/*
2868 * Callback routine for the "delete_event" signal on the toplevel window.
2869 * Tries to vim gracefully, or refuses to exit with changed buffers.
2870 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002872delete_event_cb(GtkWidget *widget UNUSED,
2873 GdkEventAny *event UNUSED,
2874 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875{
2876 gui_shell_closed();
2877 return TRUE;
2878}
2879
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002880#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2881 static int
2882get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2883{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002884# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002885 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2886
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002887 if (using_gnome && widget != NULL)
2888 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002889 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002890 BonoboDockItem *dockitem;
2891
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002892 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002893 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2894 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002895 // Only menu & toolbar are dock items. Could tabline be?
2896 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002897 widget = parent;
2898 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002899
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002900 if (dockitem == NULL || dockitem->is_floating)
2901 return 0;
2902 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2903 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002904 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002905# else
2906# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002907# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002908
Bram Moolenaar98921892016-02-23 17:14:37 +01002909 if (widget != NULL
2910 && item_orientation == orientation
2911 && gtk_widget_get_realized(widget)
2912 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002913 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002914# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002915 GtkAllocation allocation;
2916
2917 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002918 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002919# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002920 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2921 return widget->allocation.height;
2922 else
2923 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002924# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002925 }
2926 return 0;
2927}
2928#endif
2929
2930 static int
2931get_menu_tool_width(void)
2932{
2933 int width = 0;
2934
Bram Moolenaar30613902019-12-01 22:11:18 +01002935#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002936# ifdef FEAT_MENU
2937 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2938# endif
2939# ifdef FEAT_TOOLBAR
2940 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2941# endif
2942# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002943 if (gui.tabline != NULL)
2944 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002945# endif
2946#endif
2947
2948 return width;
2949}
2950
2951 static int
2952get_menu_tool_height(void)
2953{
2954 int height = 0;
2955
2956#ifdef FEAT_MENU
2957 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2958#endif
2959#ifdef FEAT_TOOLBAR
2960 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2961#endif
2962#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002963 if (gui.tabline != NULL)
2964 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002965#endif
2966
2967 return height;
2968}
2969
Bram Moolenaar30613902019-12-01 22:11:18 +01002970// This controls whether we can set the real window hints at
2971// start-up when in a GtkPlug.
2972// 0 = normal processing (default)
2973// 1 = init. hints set, no-one's tried to reset since last check
2974// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002975static int init_window_hints_state = 0;
2976
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002977 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002978update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002979{
2980 static int old_width = 0;
2981 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002982 static int old_min_width = 0;
2983 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002984 static int old_char_width = 0;
2985 static int old_char_height = 0;
2986
2987 int width;
2988 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002989 int min_width;
2990 int min_height;
2991
Bram Moolenaar30613902019-12-01 22:11:18 +01002992 // At start-up, don't try to set the hints until the initial
2993 // values have been used (those that dictate our initial size)
2994 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002995 if (!(force_width && force_height) && init_window_hints_state > 0)
2996 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002997 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002998 init_window_hints_state = 2;
2999 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003000 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003001
Bram Moolenaar30613902019-12-01 22:11:18 +01003002 // This also needs to be done when the main window isn't there yet,
3003 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003004 width = gui_get_base_width();
3005 height = gui_get_base_height();
3006# ifdef FEAT_MENU
3007 height += tabline_height() * gui.char_height;
3008# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003009 width += get_menu_tool_width();
3010 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003011
Bram Moolenaar30613902019-12-01 22:11:18 +01003012 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3013 // their actual widget size. When we set our size ourselves (e.g.,
3014 // 'set columns=' or init. -geom) we briefly set the min. to the size
3015 // we wish to be instead of the legitimate minimum so that we actually
3016 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003017 if (force_width && force_height)
3018 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003019 min_width = force_width;
3020 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003021 }
3022 else
3023 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003024 min_width = width + MIN_COLUMNS * gui.char_width;
3025 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003026 }
3027
Bram Moolenaar30613902019-12-01 22:11:18 +01003028 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003029 if (width != old_width
3030 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003031 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003032 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003033 || gui.char_width != old_char_width
3034 || gui.char_height != old_char_height)
3035 {
3036 GdkGeometry geometry;
3037 GdkWindowHints geometry_mask;
3038
3039 geometry.width_inc = gui.char_width;
3040 geometry.height_inc = gui.char_height;
3041 geometry.base_width = width;
3042 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003043 geometry.min_width = min_width;
3044 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003045 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3046 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003047 // Using gui.formwin as geometry widget doesn't work as expected
3048 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3049 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003050 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3051 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003052 old_width = width;
3053 old_height = height;
3054 old_min_width = min_width;
3055 old_min_height = min_height;
3056 old_char_width = gui.char_width;
3057 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003058 }
3059}
3060
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003061#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3062 void
3063gui_mch_set_dark_theme(int dark)
3064{
3065# if GTK_CHECK_VERSION(3,0,0)
3066 GtkSettings *gtk_settings;
3067
3068 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3069 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3070# endif
3071}
Bram Moolenaar30613902019-12-01 22:11:18 +01003072#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003073
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074#ifdef FEAT_TOOLBAR
3075
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076/*
3077 * This extra effort wouldn't be necessary if we only used stock icons in the
3078 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3079 * shouldn't be treated differently, thus we do need this.
3080 */
3081 static void
3082icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3083{
3084 if (GTK_IS_IMAGE(widget))
3085 {
3086 GtkImage *image = (GtkImage *)widget;
3087
Bram Moolenaar98921892016-02-23 17:14:37 +01003088# if GTK_CHECK_VERSION(3,10,0)
3089 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3090 {
3091 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3092 const gchar *icon_name;
3093
3094 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003095 image = (GtkImage *)gtk_image_new_from_icon_name(
3096 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003097 }
3098# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003099 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3101 {
3102 GtkIconSet *icon_set;
3103 GtkIconSize icon_size;
3104
3105 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3106 icon_size = (GtkIconSize)(long)user_data;
3107
3108 gtk_icon_set_ref(icon_set);
3109 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3110 gtk_icon_set_unref(icon_set);
3111 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003112# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 }
3114 else if (GTK_IS_CONTAINER(widget))
3115 {
3116 gtk_container_foreach((GtkContainer *)widget,
3117 &icon_size_changed_foreach,
3118 user_data);
3119 }
3120}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122 static void
3123set_toolbar_style(GtkToolbar *toolbar)
3124{
3125 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 GtkIconSize size;
3127 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3130 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3131 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003132 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3134 style = GTK_TOOLBAR_BOTH;
3135 else if (toolbar_flags & TOOLBAR_TEXT)
3136 style = GTK_TOOLBAR_TEXT;
3137 else
3138 style = GTK_TOOLBAR_ICONS;
3139
3140 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003141# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003143# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 switch (tbis_flags)
3146 {
3147 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3148 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3149 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3150 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003151 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3152 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 default: size = GTK_ICON_SIZE_INVALID; break;
3154 }
3155 oldsize = gtk_toolbar_get_icon_size(toolbar);
3156
3157 if (size == GTK_ICON_SIZE_INVALID)
3158 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003159 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 gtk_toolbar_unset_icon_size(toolbar);
3161 size = gtk_toolbar_get_icon_size(toolbar);
3162 }
3163 if (size != oldsize)
3164 {
3165 gtk_container_foreach(GTK_CONTAINER(toolbar),
3166 &icon_size_changed_foreach,
3167 GINT_TO_POINTER((int)size));
3168 }
3169 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170}
3171
Bram Moolenaar30613902019-12-01 22:11:18 +01003172#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003174#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3175static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003176static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003177# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003178static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003179# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003180static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003181
3182/*
3183 * Handle selecting an item in the tab line popup menu.
3184 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003185 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003186tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003187{
Bram Moolenaar30613902019-12-01 22:11:18 +01003188 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003189 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003190}
3191
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003192 static void
3193add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3194{
3195 GtkWidget *item;
3196 char_u *utf_text;
3197
3198 utf_text = CONVERT_TO_UTF8(text);
3199 item = gtk_menu_item_new_with_label((const char *)utf_text);
3200 gtk_widget_show(item);
3201 CONVERT_TO_UTF8_FREE(utf_text);
3202
3203 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003204 g_signal_connect(G_OBJECT(item), "activate",
3205 G_CALLBACK(tabline_menu_handler),
3206 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003207}
3208
Bram Moolenaara5621492006-02-25 21:55:24 +00003209/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003210 * Create a menu for the tab line.
3211 */
3212 static GtkWidget *
3213create_tabline_menu(void)
3214{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003215 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003216
3217 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003218 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003219 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3220 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003221
3222 return menu;
3223}
3224
3225 static gboolean
3226on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3227{
Bram Moolenaar30613902019-12-01 22:11:18 +01003228 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003229 if (event->type == GDK_BUTTON_PRESS)
3230 {
3231 GdkEventButton *bevent = (GdkEventButton *)event;
3232 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003233 int y = bevent->y;
3234 GtkWidget *tabwidget;
3235 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003236
Bram Moolenaar30613902019-12-01 22:11:18 +01003237 // When ignoring events return TRUE so that the selected page doesn't
3238 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003239 if (hold_gui_events
3240# ifdef FEAT_CMDWIN
3241 || cmdwin_type != 0
3242# endif
3243 )
3244 return TRUE;
3245
Bram Moolenaar98921892016-02-23 17:14:37 +01003246 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003247
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003248 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003249 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3250 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003251
Bram Moolenaar30613902019-12-01 22:11:18 +01003252 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003253 if (bevent->button == 3)
3254 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003255# if GTK_CHECK_VERSION(3,22,2)
3256 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3257# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003258 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3259 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003260# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003261 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003262 return TRUE;
3263 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003264 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003265 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003266 if (clicked_page == 0)
3267 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003268 // Click after all tabs moves to next tab page. When "x" is
3269 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003270 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003271 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003272 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003273 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003274
Bram Moolenaar30613902019-12-01 22:11:18 +01003275 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003276 return FALSE;
3277}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003278
3279/*
3280 * Handle selecting one of the tabs.
3281 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003282 static void
3283on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003284 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003285 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003286 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003287 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003288{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003289 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003290 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003291}
3292
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003293# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003294/*
3295 * Handle reordering the tabs (using D&D).
3296 */
3297 static void
3298on_tab_reordered(
3299 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003300 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003301 gint idx,
3302 gpointer data UNUSED)
3303{
3304 if (!ignore_tabline_evt)
3305 {
3306 if ((tabpage_index(curtab) - 1) < idx)
3307 tabpage_move(idx + 1);
3308 else
3309 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003310 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003311}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003312# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003313
3314/*
3315 * Show or hide the tabline.
3316 */
3317 void
3318gui_mch_show_tabline(int showit)
3319{
3320 if (gui.tabline == NULL)
3321 return;
3322
3323 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3324 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003325 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003326 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003327 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003328 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003329 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003330 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003331
3332 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003333}
3334
3335/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003336 * Return TRUE when tabline is displayed.
3337 */
3338 int
3339gui_mch_showing_tabline(void)
3340{
3341 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003342 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003343}
3344
3345/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003346 * Update the labels of the tabline.
3347 */
3348 void
3349gui_mch_update_tabline(void)
3350{
3351 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003352 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003353 GtkWidget *label;
3354 tabpage_T *tp;
3355 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003356 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003357 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003358 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003359
3360 if (gui.tabline == NULL)
3361 return;
3362
3363 ignore_tabline_evt = TRUE;
3364
Bram Moolenaar30613902019-12-01 22:11:18 +01003365 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003366 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3367 {
3368 if (tp == curtab)
3369 curtabidx = nr;
3370
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003371 tab_num = nr + 1;
3372
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003373 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3374 if (page == NULL)
3375 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003376 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003377# if GTK_CHECK_VERSION(3,2,0)
3378 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3379 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3380# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003381 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003382# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003383 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003384 event_box = gtk_event_box_new();
3385 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003386 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003387# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003388 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003389# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003390 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003391 gtk_widget_show(label);
3392 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3393 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003394 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003395 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003396# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003397 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3398 page,
3399 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003400# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003401 }
3402
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003403 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003404 g_object_set_data(G_OBJECT(event_box), "tab_num",
3405 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003406 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003407 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003408 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003409 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003410 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003411
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003412 get_tabline_label(tp, TRUE);
3413 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003414# if GTK_CHECK_VERSION(3,0,0)
3415 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3416# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003417 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3418 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003419# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003420 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003421 }
3422
Bram Moolenaar30613902019-12-01 22:11:18 +01003423 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003424 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3425 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3426
Bram Moolenaar98921892016-02-23 17:14:37 +01003427 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3428 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003429
Bram Moolenaar30613902019-12-01 22:11:18 +01003430 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003431 gui_mch_update();
3432
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003433 ignore_tabline_evt = FALSE;
3434}
3435
3436/*
3437 * Set the current tab to "nr". First tab is 1.
3438 */
3439 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003440gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003441{
3442 if (gui.tabline == NULL)
3443 return;
3444
3445 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003446 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3447 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003448 ignore_tabline_evt = FALSE;
3449}
3450
Bram Moolenaar30613902019-12-01 22:11:18 +01003451#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003452
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003454 * Add selection targets for PRIMARY and CLIPBOARD selections.
3455 */
3456 void
3457gui_gtk_set_selection_targets(void)
3458{
3459 int i, j = 0;
3460 int n_targets = N_SELECTION_TARGETS;
3461 GtkTargetEntry targets[N_SELECTION_TARGETS];
3462
3463 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3464 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003465 // OpenOffice tries to use TARGET_HTML and fails when we don't
3466 // return something, instead of trying another target. Therefore only
3467 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003468 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3469 n_targets--;
3470 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003471 targets[j++] = selection_targets[i];
3472 }
3473
3474 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3475 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3476 gtk_selection_add_targets(gui.drawarea,
3477 (GdkAtom)GDK_SELECTION_PRIMARY,
3478 targets, n_targets);
3479 gtk_selection_add_targets(gui.drawarea,
3480 (GdkAtom)clip_plus.gtk_sel_atom,
3481 targets, n_targets);
3482}
3483
3484/*
3485 * Set up for receiving DND items.
3486 */
3487 void
3488gui_gtk_set_dnd_targets(void)
3489{
3490 int i, j = 0;
3491 int n_targets = N_DND_TARGETS;
3492 GtkTargetEntry targets[N_DND_TARGETS];
3493
3494 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3495 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003496 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003497 n_targets--;
3498 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003499 targets[j++] = dnd_targets[i];
3500 }
3501
3502 gtk_drag_dest_unset(gui.drawarea);
3503 gtk_drag_dest_set(gui.drawarea,
3504 GTK_DEST_DEFAULT_ALL,
3505 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003506 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003507}
3508
3509/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3511 * Returns OK for success, FAIL when the GUI can't be started.
3512 */
3513 int
3514gui_mch_init(void)
3515{
3516 GtkWidget *vbox;
3517
3518#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003519 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3520 // exits on failure, but that's a non-issue because we already called
3521 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003523 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3525 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003526# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003527 {
3528 char *p = setlocale(LC_NUMERIC, NULL);
3529
Bram Moolenaar30613902019-12-01 22:11:18 +01003530 // Make sure strtod() uses a decimal point, not a comma. Gnome
3531 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003532 if (p == NULL || strcmp(p, "C") != 0)
3533 setlocale(LC_NUMERIC, "C");
3534 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003535# endif
3536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003538 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003540#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003541 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003543#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 /*
3545 * Force UTF-8 output no matter what the value of 'encoding' is.
3546 * did_set_string_option() in option.c prohibits changing 'termencoding'
3547 * to something else than UTF-8 if the GUI is in use.
3548 */
3549 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3550
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003551#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003553#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003554 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3555 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003556#if !GTK_CHECK_VERSION(3,0,0)
3557# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003559# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560#endif
3561
Bram Moolenaar30613902019-12-01 22:11:18 +01003562 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 gui.border_width = 2;
3564 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3565 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003566#if GTK_CHECK_VERSION(3,0,0)
3567 gui.fgcolor = g_new(GdkRGBA, 1);
3568 gui.bgcolor = g_new(GdkRGBA, 1);
3569 gui.spcolor = g_new(GdkRGBA, 1);
3570#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003571 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003573 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003575 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003576 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578
Bram Moolenaar30613902019-12-01 22:11:18 +01003579 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003580 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582
Bram Moolenaar30613902019-12-01 22:11:18 +01003583 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 gui.norm_pixel = gui.def_norm_pixel;
3585 gui.back_pixel = gui.def_back_pixel;
3586
3587 if (gtk_socket_id != 0)
3588 {
3589 GtkWidget *plug;
3590
Bram Moolenaar30613902019-12-01 22:11:18 +01003591 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3593 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003594 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 {
3596 gui.mainwin = plug;
3597 }
3598 else
3599 {
3600 g_warning("Connection to GTK+ socket (ID %u) failed",
3601 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003602 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 gtk_socket_id = 0;
3604 }
3605 }
3606
3607 if (gtk_socket_id == 0)
3608 {
3609#ifdef FEAT_GUI_GNOME
3610 if (using_gnome)
3611 {
3612 gui.mainwin = gnome_app_new("Vim", NULL);
3613# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003614 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 xsmp_close();
3616# endif
3617 }
3618 else
3619#endif
3620 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3621 }
3622
3623 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3624
Bram Moolenaar30613902019-12-01 22:11:18 +01003625 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3627 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
Bram Moolenaar98921892016-02-23 17:14:37 +01003629 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3631
Bram Moolenaar98921892016-02-23 17:14:37 +01003632 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3633 G_CALLBACK(&delete_event_cb), NULL);
3634
3635 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3636 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003637
3638 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003640
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 gui.accel_group = gtk_accel_group_new();
3642 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643
Bram Moolenaar30613902019-12-01 22:11:18 +01003644 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003645#if GTK_CHECK_VERSION(3,2,0)
3646 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3647 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3648#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003650#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651
3652#ifdef FEAT_GUI_GNOME
3653 if (using_gnome)
3654 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003655# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003656 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3658# endif
3659 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3660 }
3661 else
3662#endif
3663 {
3664 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3665 gtk_widget_show(vbox);
3666 }
3667
3668#ifdef FEAT_MENU
3669 /*
3670 * Create the menubar and handle
3671 */
3672 gui.menubar = gtk_menu_bar_new();
3673 gtk_widget_set_name(gui.menubar, "vim-menubar");
3674
Bram Moolenaar30613902019-12-01 22:11:18 +01003675 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003676 {
3677 GtkSettings *gtk_settings;
3678
3679 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3680 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3681 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003682
3683
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684# ifdef FEAT_GUI_GNOME
3685 if (using_gnome)
3686 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 BonoboDockItem *dockitem;
3688
3689 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3690 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3691 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003692 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003693 bonobo_dock_item_set_behavior(dockitem,
3694 bonobo_dock_item_get_behavior(dockitem)
3695 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 }
3698 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003699# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003701 // Always show the menubar, otherwise <F10> doesn't work. It may be
3702 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003703 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3705 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003706#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707
3708#ifdef FEAT_TOOLBAR
3709 /*
3710 * Create the toolbar and handle
3711 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003712 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003713# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003714 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3715 // N.B. Since the default value of GtkToolbar::button-relief is
3716 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003717# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 gtk_rc_parse_string(
3719 "style \"vim-toolbar-style\" {\n"
3720 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3721 "}\n"
3722 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003723# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 gui.toolbar = gtk_toolbar_new();
3725 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3727
3728# ifdef FEAT_GUI_GNOME
3729 if (using_gnome)
3730 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 BonoboDockItem *dockitem;
3732
3733 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3734 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3735 GNOME_APP_TOOLBAR_NAME);
3736 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003737 // When the toolbar is floating it gets stuck. So long as that isn't
3738 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003739 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003740 bonobo_dock_item_get_behavior(dockitem)
3741 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 }
3744 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003745# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3748 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3749 gtk_widget_show(gui.toolbar);
3750 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3751 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003752#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003754#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003755 /*
3756 * Use a Notebook for the tab pages labels. The labels are hidden by
3757 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003758 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003759 gui.tabline = gtk_notebook_new();
3760 gtk_widget_show(gui.tabline);
3761 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3762 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3763 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003764 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003765# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003766 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003767# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003768
Bram Moolenaar98921892016-02-23 17:14:37 +01003769# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003770 tabline_tooltip = gtk_tooltips_new();
3771 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003772# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003773
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003774 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003775 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003776
Bram Moolenaar30613902019-12-01 22:11:18 +01003777 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003778# if GTK_CHECK_VERSION(3,2,0)
3779 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3780 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3781# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003782 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003783# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003784 gtk_widget_show(page);
3785 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3786 label = gtk_label_new("-Empty-");
3787 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003788 event_box = gtk_event_box_new();
3789 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003790 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003791# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003792 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003793# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003794 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003795 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003796# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003797 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003798# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003799 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003800
Bram Moolenaar98921892016-02-23 17:14:37 +01003801 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3802 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003803# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003804 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3805 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003806# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003807
Bram Moolenaar30613902019-12-01 22:11:18 +01003808 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003809 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003810 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3811 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003812#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003813
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003814 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003815 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003816#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003818#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003819#if GTK_CHECK_VERSION(3,22,2)
3820 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003824#if GTK_CHECK_VERSION(3,0,0)
3825 gui.surface = NULL;
3826 gui.by_signal = FALSE;
3827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
Bram Moolenaar30613902019-12-01 22:11:18 +01003829 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 gtk_widget_set_events(gui.drawarea,
3831 GDK_EXPOSURE_MASK |
3832 GDK_ENTER_NOTIFY_MASK |
3833 GDK_LEAVE_NOTIFY_MASK |
3834 GDK_BUTTON_PRESS_MASK |
3835 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 GDK_KEY_PRESS_MASK |
3838 GDK_KEY_RELEASE_MASK |
3839 GDK_POINTER_MOTION_MASK |
3840 GDK_POINTER_MOTION_HINT_MASK);
3841
3842 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003843 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 gtk_widget_show(gui.formwin);
3845 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3846
Bram Moolenaar30613902019-12-01 22:11:18 +01003847 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3848 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003849 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3850 : G_OBJECT(gui.drawarea),
3851 "key-press-event",
3852 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003853#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003854 // Also forward key release events for the benefit of GTK+ 2 input
3855 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3857 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003858 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 G_CALLBACK(&key_release_event), NULL);
3860#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003861 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3862 G_CALLBACK(drawarea_realize_cb), NULL);
3863 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3864 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003865#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003866 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3867 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003868#endif
3869#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003870 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3871 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003872#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003873 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3874 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876
Bram Moolenaar98921892016-02-23 17:14:37 +01003877#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003881#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3883 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3884#endif
3885
3886 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003887 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003888 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889
3890 /*
3891 * Set clipboard specific atoms
3892 */
3893 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3896 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3897
3898 /*
3899 * Start out by adding the configured border width into the border offset.
3900 */
3901 gui.border_offset = gui.border_width;
3902
Bram Moolenaar98921892016-02-23 17:14:37 +01003903#if GTK_CHECK_VERSION(3,0,0)
3904 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3905 G_CALLBACK(draw_event), NULL);
3906#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3908 GTK_SIGNAL_FUNC(visibility_event), NULL);
3909 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3910 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912
3913 /*
3914 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3915 * Only needed for some window managers.
3916 */
3917 if (vim_strchr(p_go, GO_POINTER) != NULL)
3918 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003919 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3920 G_CALLBACK(leave_notify_event), NULL);
3921 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3922 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 }
3924
Bram Moolenaar30613902019-12-01 22:11:18 +01003925 // Real windows can get focus ... GtkPlug, being a mere container can't,
3926 // only its widgets. Arguably, this could be common code and we not use
3927 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003928 if (gtk_socket_id == 0)
3929 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003930 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3931 G_CALLBACK(focus_out_event), NULL);
3932 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3933 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003934 }
3935 else
3936 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003937 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3938 G_CALLBACK(focus_out_event), NULL);
3939 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3940 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003941#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003942 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3943 G_CALLBACK(focus_out_event), NULL);
3944 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
3945 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01003946#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003947 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948
Bram Moolenaar98921892016-02-23 17:14:37 +01003949 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
3950 G_CALLBACK(motion_notify_event), NULL);
3951 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
3952 G_CALLBACK(button_press_event), NULL);
3953 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
3954 G_CALLBACK(button_release_event), NULL);
3955 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
3956 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 /*
3959 * Add selection handler functions.
3960 */
Bram Moolenaar98921892016-02-23 17:14:37 +01003961 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
3962 G_CALLBACK(selection_clear_event), NULL);
3963 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
3964 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965
Bram Moolenaara76638f2010-06-05 12:49:46 +02003966 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967
Bram Moolenaar98921892016-02-23 17:14:37 +01003968 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
3969 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
Bram Moolenaar30613902019-12-01 22:11:18 +01003971 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 gui.in_focus = FALSE;
3973
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02003974 // Handle changes to the "Xft/DPI" setting.
3975 {
3976 GtkSettings *gtk_settings =
3977 gtk_settings_get_for_screen(gdk_screen_get_default());
3978
3979 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
3980 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
3981 }
3982
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 return OK;
3984}
3985
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003986#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987/*
3988 * This is called from gui_start() after a fork() has been done.
3989 * We have to tell the session manager our new PID.
3990 */
3991 void
3992gui_mch_forked(void)
3993{
3994 if (using_gnome)
3995 {
3996 GnomeClient *client;
3997
3998 client = gnome_master_client();
3999
4000 if (client != NULL)
4001 gnome_client_set_process_id(client, getpid());
4002 }
4003}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004004#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005
Bram Moolenaar98921892016-02-23 17:14:37 +01004006#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004007 static GdkRGBA
4008color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004009{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004010 GdkRGBA rgba;
4011 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4012 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4013 rgba.blue = ((color & 0xff)) / 255.0;
4014 rgba.alpha = 1.0;
4015 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004016}
4017
4018 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004019set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004020{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004021 const GdkRGBA rgba = color_to_rgba(color);
4022 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004023}
Bram Moolenaar30613902019-12-01 22:11:18 +01004024#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004025
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026/*
4027 * Called when the foreground or background color has been changed.
4028 * This used to change the graphics contexts directly but we are
4029 * currently manipulating them where desired.
4030 */
4031 void
4032gui_mch_new_colors(void)
4033{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004034 if (gui.drawarea != NULL
4035#if GTK_CHECK_VERSION(3,22,2)
4036 && gui.formwin != NULL
4037#endif
4038 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004040#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004041 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004042#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004043#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004044 GtkStyleContext * const context =
4045 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004046 GtkCssProvider * const provider = gtk_css_provider_new();
4047 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004048 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004049 " background-color: #%.2lx%.2lx%.2lx;\n"
4050 "}\n",
4051 (gui.back_pixel >> 16) & 0xff,
4052 (gui.back_pixel >> 8) & 0xff,
4053 gui.back_pixel & 0xff);
4054
4055 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4056 gtk_style_context_add_provider(context,
4057 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4058
4059 g_free(css);
4060 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004061#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004062 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004063
Bram Moolenaar36edf062016-07-21 22:10:12 +02004064 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004065 {
4066 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004067 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004068 if (pat != NULL)
4069 {
4070 gdk_window_set_background_pattern(da_win, pat);
4071 cairo_pattern_destroy(pat);
4072 }
4073 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004074 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004075 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004076#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 GdkColor color = { 0, 0, 0, 0 };
4078
4079 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004080 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004081#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 }
4083}
4084
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085/*
4086 * This signal informs us about the need to rearrange our sub-widgets.
4087 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004089form_configure_event(GtkWidget *widget UNUSED,
4090 GdkEventConfigure *event,
4091 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004093 int usable_height = event->height;
4094
Bram Moolenaar182707a2016-11-21 20:55:58 +01004095#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004096 // As of 3.22.2, GdkWindows have started distributing configure events to
4097 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4098 //
4099 // As can be seen from the implementation of move_native_children() and
4100 // configure_native_child() in gdkwindow.c, those functions actually
4101 // propagate configure events to every child, failing to distinguish
4102 // "native" one from non-native one.
4103 //
4104 // Naturally, configure events propagated to here like that are fallacious
4105 // and, as a matter of fact, they trigger a geometric collapse of
4106 // gui.formwin.
4107 //
4108 // To filter out such fallacious events, check if the given event is the
4109 // one that was sent out to the right place. Ignore it if not.
4110 //
4111 // Follow-up
4112 // After a few weeks later, the GdkWindow change mentioned above was
4113 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4114 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004115 if (event->window != gtk_widget_get_window(gui.formwin))
4116 return TRUE;
4117#endif
4118
Bram Moolenaar30613902019-12-01 22:11:18 +01004119 // When in a GtkPlug, we can't guarantee valid heights (as a round
4120 // no. of char-heights), so we have to manually sanitise them.
4121 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004122 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004123 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004124
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004125 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004126 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004127 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128
4129 return TRUE;
4130}
4131
4132/*
4133 * Function called when window already closed.
4134 * We can't do much more here than to trying to preserve what had been done,
4135 * since the window is already inevitably going away.
4136 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004137 static void
4138mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139{
Bram Moolenaar30613902019-12-01 22:11:18 +01004140 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 full_screen = FALSE;
4142
4143 gui.mainwin = NULL;
4144 gui.drawarea = NULL;
4145
Bram Moolenaar30613902019-12-01 22:11:18 +01004146 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004148 vim_strncpy(IObuff,
4149 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4150 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 preserve_exit();
4152 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004153#ifdef USE_GRESOURCE
4154 gui_gtk_unregister_resource();
4155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156}
4157
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004158 void
4159gui_gtk_get_screen_geom_of_win(
4160 GtkWidget *wid,
4161 int point_x, // x position of window if not initialized
4162 int point_y, // y position of window if not initialized
4163 int *screen_x,
4164 int *screen_y,
4165 int *width,
4166 int *height)
4167{
4168 GdkRectangle geometry;
4169 GdkWindow *win = gtk_widget_get_window(wid);
4170#if GTK_CHECK_VERSION(3,22,0)
4171 GdkDisplay *dpy = gtk_widget_get_display(wid);
4172 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
4173
4174 gdk_monitor_get_geometry(monitor, &geometry);
4175#else
4176 GdkScreen* screen;
4177 int monitor;
4178
4179 if (wid != NULL && gtk_widget_has_screen(wid))
4180 screen = gtk_widget_get_screen(wid);
4181 else
4182 screen = gdk_screen_get_default();
4183 if (win == NULL)
4184 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
4185 else
4186 monitor = gdk_screen_get_monitor_at_window(screen, win);
4187 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4188#endif
4189 *screen_x = geometry.x;
4190 *screen_y = geometry.y;
4191 *width = geometry.width;
4192 *height = geometry.height;
4193}
4194
4195/*
4196 * The screen size is used to make sure the initial window doesn't get bigger
4197 * than the screen. This subtracts some room for menubar, toolbar and window
4198 * decorations.
4199 */
4200 static void
4201gui_gtk_get_screen_dimensions(
4202 int point_x,
4203 int point_y,
4204 int *screen_w,
4205 int *screen_h)
4206{
4207 int x, y;
4208
4209 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4210 &x, &y, screen_w, screen_h);
4211
4212 // Subtract 'guiheadroom' from the height to allow some room for the
4213 // window manager (task list and window title bar).
4214 *screen_h -= p_ghr;
4215
4216 /*
4217 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4218 * the toolbar and menubar for GTK, we subtract them from the screen
4219 * height, so that the window size can be made to fit on the screen.
4220 * This should be completely changed later.
4221 */
4222 *screen_w -= get_menu_tool_width();
4223 *screen_h -= get_menu_tool_height();
4224}
4225
4226 void
4227gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4228{
4229 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4230}
4231
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004232
4233/*
4234 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4235 * hints (and thus the required size from -geom), but that after that we
4236 * put the hints back to normal (the actual minimum size) so we may
4237 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004238 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004239 * only way we have of making ourselves bigger (by set lines/columns).
4240 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004241 * second after the final attempt to reset the real minimum hints (done by
4242 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004243 * We'll not let the default hints be set while this timer's active.
4244 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004245 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004246check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004247{
4248 if (init_window_hints_state == 1)
4249 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004250 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004251 init_window_hints_state = 0;
4252 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004253 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004254 }
4255
Bram Moolenaar30613902019-12-01 22:11:18 +01004256 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004257 init_window_hints_state = 1;
4258 return TRUE;
4259}
4260
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261/*
4262 * Open the GUI window which was created by a call to gui_mch_init().
4263 */
4264 int
4265gui_mch_open(void)
4266{
4267 guicolor_T fg_pixel = INVALCOLOR;
4268 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004269 guint pixel_width;
4270 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 /*
4273 * Allow setting a window role on the command line, or invent one
4274 * if none was specified. This is mainly useful for GNOME session
4275 * support; allowing the WM to restore window placement.
4276 */
4277 if (role_argument != NULL)
4278 {
4279 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4280 }
4281 else
4282 {
4283 char *role;
4284
Bram Moolenaar30613902019-12-01 22:11:18 +01004285 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 role = g_strdup_printf("vim-%u-%u-%u",
4287 (unsigned)mch_get_pid(),
4288 (unsigned)g_random_int(),
4289 (unsigned)time(NULL));
4290
4291 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4292 g_free(role);
4293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294
4295 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297
Bram Moolenaar30613902019-12-01 22:11:18 +01004298 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 if (gui.geom != NULL)
4300 {
4301 int mask;
4302 unsigned int w, h;
4303 int x = 0;
4304 int y = 0;
4305
4306 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4307
4308 if (mask & WidthValue)
4309 Columns = w;
4310 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004311 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004312 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004313 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004315 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004316 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004317
4318 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4319 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4320
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004321 pixel_width += get_menu_tool_width();
4322 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004323
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004325 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004326 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004327
4328#ifdef FEAT_GUI_GTK
4329 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4330#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004331 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004332#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004333 hh += p_ghr + get_menu_tool_height();
4334 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004335 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004336 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004337 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004338 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004340 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004341 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004342
Bram Moolenaar30613902019-12-01 22:11:18 +01004343 // From now until everyone's stopped trying to set the window hints
4344 // to their correct minimum values, stop them being set as we need
4345 // them to remain at our required size for the parent GtkSocket to
4346 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004347 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004348 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004349 update_window_manager_hints(pixel_width, pixel_height);
4350 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004351 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 }
4354
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004355 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4356 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004357 // For GTK2 changing the size of the form widget doesn't cause window
4358 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004359 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004360 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004361 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362
4363 if (foreground_argument != NULL)
4364 fg_pixel = gui_get_color((char_u *)foreground_argument);
4365 if (fg_pixel == INVALCOLOR)
4366 fg_pixel = gui_get_color((char_u *)"Black");
4367
4368 if (background_argument != NULL)
4369 bg_pixel = gui_get_color((char_u *)background_argument);
4370 if (bg_pixel == INVALCOLOR)
4371 bg_pixel = gui_get_color((char_u *)"White");
4372
4373 if (found_reverse_arg)
4374 {
4375 gui.def_norm_pixel = bg_pixel;
4376 gui.def_back_pixel = fg_pixel;
4377 }
4378 else
4379 {
4380 gui.def_norm_pixel = fg_pixel;
4381 gui.def_back_pixel = bg_pixel;
4382 }
4383
Bram Moolenaar30613902019-12-01 22:11:18 +01004384 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4385 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 set_normal_colors();
4387
Bram Moolenaar30613902019-12-01 22:11:18 +01004388 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 gui_check_colors();
4390
Bram Moolenaar30613902019-12-01 22:11:18 +01004391 // Get the colors for the highlight groups (gui_check_colors() might have
4392 // changed them).
4393 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
Bram Moolenaar98921892016-02-23 17:14:37 +01004395 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4396 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 /*
4399 * Notify the fixed area about the need to resize the contents of the
4400 * gui.formwin, which we use for random positioning of the included
4401 * components.
4402 *
4403 * We connect this signal deferred finally after anything is in place,
4404 * since this is intended to handle resizements coming from the window
4405 * manager upon us and should not interfere with what VIM is requesting
4406 * upon startup.
4407 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004408 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4409 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410
4411#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004412 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004413 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414
Bram Moolenaar98921892016-02-23 17:14:37 +01004415 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4416 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417#endif
4418
Bram Moolenaar30613902019-12-01 22:11:18 +01004419 // With GTK+ 2, we need to iconify the window before calling show()
4420 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 if (found_iconic_arg && gtk_socket_id == 0)
4422 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
4424 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004425#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 unsigned long menu_handler = 0;
4427# ifdef FEAT_TOOLBAR
4428 unsigned long tool_handler = 0;
4429# endif
4430 /*
4431 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4432 * show when restoring the saved layout configuration. We can't just
4433 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4434 * a toplevel window and thus will be realized immediately. Instead,
4435 * connect signal handlers to hide the widgets just after they've been
4436 * marked visible, but before the main window is realized.
4437 */
4438 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4439 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4440 G_CALLBACK(&gtk_widget_hide),
4441 NULL);
4442# ifdef FEAT_TOOLBAR
4443 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4444 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4445 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4446 G_CALLBACK(&gtk_widget_hide),
4447 NULL);
4448# endif
4449#endif
4450 gtk_widget_show(gui.mainwin);
4451
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004452#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 if (menu_handler != 0)
4454 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4455# ifdef FEAT_TOOLBAR
4456 if (tool_handler != 0)
4457 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4458# endif
4459#endif
4460 }
4461
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 return OK;
4463}
4464
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004465/*
4466 * Clean up for when exiting Vim.
4467 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004469gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004471 // Clean up, unless we don't want to invoke free().
4472 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474}
4475
4476/*
4477 * Get the position of the top left corner of the window.
4478 */
4479 int
4480gui_mch_get_winpos(int *x, int *y)
4481{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 return OK;
4484}
4485
4486/*
4487 * Set the position of the top left corner of the window to the given
4488 * coordinates.
4489 */
4490 void
4491gui_mch_set_winpos(int x, int y)
4492{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494}
4495
Bram Moolenaar98921892016-02-23 17:14:37 +01004496#if !GTK_CHECK_VERSION(3,0,0)
4497# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498static int resize_idle_installed = FALSE;
4499/*
4500 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4501 * the shell size doesn't exceed the window size, i.e. if the window manager
4502 * ignored our size request. Usually this happens if the window is maximized.
4503 *
4504 * FIXME: It'd be nice if we could find a little more orthodox solution.
4505 * See also the remark below in gui_mch_set_shellsize().
4506 *
4507 * DISABLED: When doing ":set lines+=1" this function would first invoke
4508 * gui_resize_shell() with the old size, then the normal callback would
4509 * report the new size through form_configure_event(). That caused the window
4510 * layout to be messed up.
4511 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 static gboolean
4513force_shell_resize_idle(gpointer data)
4514{
4515 if (gui.mainwin != NULL
4516 && GTK_WIDGET_REALIZED(gui.mainwin)
4517 && GTK_WIDGET_VISIBLE(gui.mainwin))
4518 {
4519 int width;
4520 int height;
4521
4522 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4523
4524 width -= get_menu_tool_width();
4525 height -= get_menu_tool_height();
4526
4527 gui_resize_shell(width, height);
4528 }
4529
4530 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004531 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532}
Bram Moolenaar98921892016-02-23 17:14:37 +01004533# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004534#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535
Bram Moolenaar09736232009-09-23 16:14:49 +00004536/*
4537 * Return TRUE if the main window is maximized.
4538 */
4539 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004540gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004541{
Bram Moolenaar98921892016-02-23 17:14:37 +01004542 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4543 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4544 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004545}
4546
4547/*
4548 * Unmaximize the main window
4549 */
4550 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004551gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004552{
4553 if (gui.mainwin != NULL)
4554 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4555}
Bram Moolenaar09736232009-09-23 16:14:49 +00004556
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004558 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4559 * is set. Compute the new Rows and Columns. This is like resizing the
4560 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004561 */
4562 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004563gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004564{
4565 int w, h;
4566
4567 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4568 w -= get_menu_tool_width();
4569 h -= get_menu_tool_height();
4570 gui_resize_shell(w, h);
4571}
4572
4573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 * Set the windows size.
4575 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 void
4577gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004578 int min_width UNUSED, int min_height UNUSED,
4579 int base_width UNUSED, int base_height UNUSED,
4580 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581{
Bram Moolenaar30613902019-12-01 22:11:18 +01004582 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 gui_mch_update();
4584
Bram Moolenaar30613902019-12-01 22:11:18 +01004585 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004586 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004587 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004588
Bram Moolenaar30613902019-12-01 22:11:18 +01004589 // With GTK+ 2, changing the size of the form widget doesn't resize
4590 // the window. So let's do it the other way around and resize the
4591 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 width += get_menu_tool_width();
4593 height += get_menu_tool_height();
4594
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004595 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004596 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004597 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004598 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599
Bram Moolenaar98921892016-02-23 17:14:37 +01004600# if !GTK_CHECK_VERSION(3,0,0)
4601# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 if (!resize_idle_installed)
4603 {
4604 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4605 &force_shell_resize_idle, NULL, NULL);
4606 resize_idle_installed = TRUE;
4607 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004608# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004609# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 /*
4611 * Wait until all events are processed to prevent a crash because the
4612 * real size of the drawing area doesn't reflect Vim's internal ideas.
4613 *
4614 * This is a bit of a hack, since Vim is a terminal application with a GUI
4615 * on top, while the GUI expects to be the boss.
4616 */
4617 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618}
4619
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004622gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (title != NULL && output_conv.vc_type != CONV_NONE)
4625 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626
4627 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4628
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 if (output_conv.vc_type != CONV_NONE)
4630 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631}
Bram Moolenaar30613902019-12-01 22:11:18 +01004632#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
4634#if defined(FEAT_MENU) || defined(PROTO)
4635 void
4636gui_mch_enable_menu(int showit)
4637{
4638 GtkWidget *widget;
4639
4640# ifdef FEAT_GUI_GNOME
4641 if (using_gnome)
4642 widget = gui.menubar_h;
4643 else
4644# endif
4645 widget = gui.menubar;
4646
Bram Moolenaar30613902019-12-01 22:11:18 +01004647 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004648 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 {
4650 if (showit)
4651 gtk_widget_show(widget);
4652 else
4653 gtk_widget_hide(widget);
4654
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004655 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 }
4657}
Bram Moolenaar30613902019-12-01 22:11:18 +01004658#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659
4660#if defined(FEAT_TOOLBAR) || defined(PROTO)
4661 void
4662gui_mch_show_toolbar(int showit)
4663{
4664 GtkWidget *widget;
4665
4666 if (gui.toolbar == NULL)
4667 return;
4668
4669# ifdef FEAT_GUI_GNOME
4670 if (using_gnome)
4671 widget = gui.toolbar_h;
4672 else
4673# endif
4674 widget = gui.toolbar;
4675
4676 if (showit)
4677 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4678
Bram Moolenaar98921892016-02-23 17:14:37 +01004679 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 {
4681 if (showit)
4682 gtk_widget_show(widget);
4683 else
4684 gtk_widget_hide(widget);
4685
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004686 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 }
4688}
Bram Moolenaar30613902019-12-01 22:11:18 +01004689#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691/*
4692 * Check if a given font is a CJK font. This is done in a very crude manner. It
4693 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4694 * font. Consequently, this function cannot be used as a general purpose check
4695 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4696 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4697 */
4698 static int
4699is_cjk_font(PangoFontDescription *font_desc)
4700{
4701 static const char * const cjk_langs[] =
4702 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4703
4704 PangoFont *font;
4705 unsigned i;
4706 int is_cjk = FALSE;
4707
4708 font = pango_context_load_font(gui.text_context, font_desc);
4709
4710 if (font == NULL)
4711 return FALSE;
4712
4713 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4714 {
4715 PangoCoverage *coverage;
4716 gunichar uc;
4717
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004718 // Valgrind reports a leak for pango_language_from_string(), but the
4719 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 coverage = pango_font_get_coverage(
4721 font, pango_language_from_string(cjk_langs[i]));
4722
4723 if (coverage != NULL)
4724 {
4725 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4726 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4727 pango_coverage_unref(coverage);
4728 }
4729 }
4730
4731 g_object_unref(font);
4732
4733 return is_cjk;
4734}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735
Bram Moolenaar231334e2005-07-25 20:46:57 +00004736/*
4737 * Adjust gui.char_height (after 'linespace' was changed).
4738 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004740gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 PangoFontMetrics *metrics;
4743 int ascent;
4744 int descent;
4745
4746 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4747 pango_context_get_language(gui.text_context));
4748 ascent = pango_font_metrics_get_ascent(metrics);
4749 descent = pango_font_metrics_get_descent(metrics);
4750
4751 pango_font_metrics_unref(metrics);
4752
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004753 // Round up when the value is more than about 1/16 of a pixel above a whole
4754 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4755 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4756 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004757 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4759
Bram Moolenaar30613902019-12-01 22:11:18 +01004760 // A not-positive value of char_height may crash Vim. Only happens
4761 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 gui.char_ascent = MAX(gui.char_ascent, 0);
4763 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4764
4765 return OK;
4766}
4767
Bram Moolenaar98921892016-02-23 17:14:37 +01004768#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004769// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004770 static gboolean
4771font_filter(const PangoFontFamily *family,
4772 const PangoFontFace *face UNUSED,
4773 gpointer data UNUSED)
4774{
4775 return pango_font_family_is_monospace((PangoFontFamily *)family);
4776}
4777#endif
4778
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779/*
4780 * Put up a font dialog and return the selected font name in allocated memory.
4781 * "oldval" is the previous value. Return NULL when cancelled.
4782 * This should probably go into gui_gtk.c. Hmm.
4783 * FIXME:
4784 * The GTK2 font selection dialog has no filtering API. So we could either
4785 * a) implement our own (possibly copying the code from somewhere else) or
4786 * b) just live with it.
4787 */
4788 char_u *
4789gui_mch_font_dialog(char_u *oldval)
4790{
4791 GtkWidget *dialog;
4792 int response;
4793 char_u *fontname = NULL;
4794 char_u *oldname;
4795
Bram Moolenaar98921892016-02-23 17:14:37 +01004796#if GTK_CHECK_VERSION(3,2,0)
4797 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4798 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4799 NULL, NULL);
4800#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
4804 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4805 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4806
4807 if (oldval != NULL && oldval[0] != NUL)
4808 {
4809 if (output_conv.vc_type != CONV_NONE)
4810 oldname = string_convert(&output_conv, oldval, NULL);
4811 else
4812 oldname = oldval;
4813
Bram Moolenaar30613902019-12-01 22:11:18 +01004814 // Annoying bug in GTK (or Pango): if the font name does not include a
4815 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4817 {
4818 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4819
4820 if (p != NULL)
4821 {
4822 STRCPY(p + STRLEN(p), " 10");
4823 if (oldname != oldval)
4824 vim_free(oldname);
4825 oldname = p;
4826 }
4827 }
4828
Bram Moolenaar98921892016-02-23 17:14:37 +01004829#if GTK_CHECK_VERSION(3,2,0)
4830 gtk_font_chooser_set_font(
4831 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4832#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 gtk_font_selection_dialog_set_font_name(
4834 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836
4837 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004838 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004840 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004841#if GTK_CHECK_VERSION(3,2,0)
4842 gtk_font_chooser_set_font(
4843 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4844#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004845 gtk_font_selection_dialog_set_font_name(
4846 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848
4849 response = gtk_dialog_run(GTK_DIALOG(dialog));
4850
4851 if (response == GTK_RESPONSE_OK)
4852 {
4853 char *name;
4854
Bram Moolenaar98921892016-02-23 17:14:37 +01004855#if GTK_CHECK_VERSION(3,2,0)
4856 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4857#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 name = gtk_font_selection_dialog_get_font_name(
4859 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 if (name != NULL)
4862 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004863 char_u *p;
4864
Bram Moolenaar30613902019-12-01 22:11:18 +01004865 // Apparently some font names include a comma, need to escape
4866 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004867 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004869 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004870 {
4871 fontname = string_convert(&input_conv, p, NULL);
4872 vim_free(p);
4873 }
4874 else
4875 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 }
4877 }
4878
4879 if (response != GTK_RESPONSE_NONE)
4880 gtk_widget_destroy(dialog);
4881
4882 return fontname;
4883}
4884
4885/*
4886 * Some monospace fonts don't support a bold weight, and fall back
4887 * silently to the regular weight. But this is no good since our text
4888 * drawing function can emulate bold by overstriking. So let's try
4889 * to detect whether bold weight is actually available and emulate it
4890 * otherwise.
4891 *
4892 * Note that we don't need to check for italic style since Xft can
4893 * emulate italic on its own, provided you have a proper fontconfig
4894 * setup. We wouldn't be able to emulate it in Vim anyway.
4895 */
4896 static void
4897get_styled_font_variants(void)
4898{
4899 PangoFontDescription *bold_font_desc;
4900 PangoFont *plain_font;
4901 PangoFont *bold_font;
4902
4903 gui.font_can_bold = FALSE;
4904
4905 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4906
4907 if (plain_font == NULL)
4908 return;
4909
4910 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4911 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4912
4913 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4914 /*
4915 * The comparison relies on the unique handle nature of a PangoFont*,
4916 * i.e. it's assumed that a different PangoFont* won't refer to the
4917 * same font. Seems to work, and failing here isn't critical anyway.
4918 */
4919 if (bold_font != NULL)
4920 {
4921 gui.font_can_bold = (bold_font != plain_font);
4922 g_object_unref(bold_font);
4923 }
4924
4925 pango_font_description_free(bold_font_desc);
4926 g_object_unref(plain_font);
4927}
4928
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929static PangoEngineShape *default_shape_engine = NULL;
4930
4931/*
4932 * Create a map from ASCII characters in the range [32,126] to glyphs
4933 * of the current font. This is used by gui_gtk2_draw_string() to skip
4934 * the itemize and shaping process for the most common case.
4935 */
4936 static void
4937ascii_glyph_table_init(void)
4938{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004939 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 PangoAttrList *attr_list;
4941 GList *item_list;
4942 int i;
4943
4944 if (gui.ascii_glyphs != NULL)
4945 pango_glyph_string_free(gui.ascii_glyphs);
4946 if (gui.ascii_font != NULL)
4947 g_object_unref(gui.ascii_font);
4948
4949 gui.ascii_glyphs = NULL;
4950 gui.ascii_font = NULL;
4951
Bram Moolenaar30613902019-12-01 22:11:18 +01004952 // For safety, fill in question marks for the control characters.
4953 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004954 for (i = 0; i < 128; ++i)
4955 {
4956 if (i >= 32 && i < 127)
4957 ascii_chars[2 * i] = i;
4958 else
4959 ascii_chars[2 * i] = '?';
4960 ascii_chars[2 * i + 1] = ' ';
4961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962
4963 attr_list = pango_attr_list_new();
4964 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4965 0, sizeof(ascii_chars), attr_list, NULL);
4966
Bram Moolenaar30613902019-12-01 22:11:18 +01004967 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 {
4969 PangoItem *item;
4970 int width;
4971
4972 item = (PangoItem *)item_list->data;
4973 width = gui.char_width * PANGO_SCALE;
4974
Bram Moolenaar30613902019-12-01 22:11:18 +01004975 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 default_shape_engine = item->analysis.shape_engine;
4977
4978 gui.ascii_font = item->analysis.font;
4979 g_object_ref(gui.ascii_font);
4980
4981 gui.ascii_glyphs = pango_glyph_string_new();
4982
4983 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4984 &item->analysis, gui.ascii_glyphs);
4985
4986 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4987
4988 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4989 {
4990 PangoGlyphGeometry *geom;
4991
4992 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4993 geom->x_offset += MAX(0, width - geom->width) / 2;
4994 geom->width = width;
4995 }
4996 }
4997
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02004998 // TODO: is this type cast OK?
4999 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 g_list_free(item_list);
5001 pango_attr_list_unref(attr_list);
5002}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003
5004/*
5005 * Initialize Vim to use the font or fontset with the given name.
5006 * Return FAIL if the font could not be loaded, OK otherwise.
5007 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005009gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 PangoFontDescription *font_desc;
5012 PangoLayout *layout;
5013 int width;
5014
Bram Moolenaar30613902019-12-01 22:11:18 +01005015 // If font_name is NULL, this means to use the default, which should
5016 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 if (font_name == NULL)
5018 font_name = (char_u *)DEFAULT_FONT;
5019
5020 font_desc = gui_mch_get_font(font_name, FALSE);
5021
5022 if (font_desc == NULL)
5023 return FAIL;
5024
5025 gui_mch_free_font(gui.norm_font);
5026 gui.norm_font = font_desc;
5027
5028 pango_context_set_font_description(gui.text_context, font_desc);
5029
5030 layout = pango_layout_new(gui.text_context);
5031 pango_layout_set_text(layout, "MW", 2);
5032 pango_layout_get_size(layout, &width, NULL);
5033 /*
5034 * Set char_width to half the width obtained from pango_layout_get_size()
5035 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5036 * Pango to use the same width for both non-CJK characters (e.g. Latin
5037 * letters and numbers) and CJK characters. This results in 's p a c e d
5038 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5039 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5040 * width for CJK fonts.
5041 *
5042 * For related bugs, see:
5043 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5044 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5045 *
5046 * With this, for all four of the following cases, Vim works fine:
5047 * guifont=CJK_fixed_width_font
5048 * guifont=Non_CJK_fixed_font
5049 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5050 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5051 */
5052 if (is_cjk_font(gui.norm_font))
5053 {
5054 int cjk_width;
5055
Bram Moolenaar30613902019-12-01 22:11:18 +01005056 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5058 pango_layout_get_size(layout, &cjk_width, NULL);
5059
Bram Moolenaar30613902019-12-01 22:11:18 +01005060 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 width /= 2;
5062 }
5063 g_object_unref(layout);
5064
5065 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5066
Bram Moolenaar30613902019-12-01 22:11:18 +01005067 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 if (gui.char_width <= 0)
5069 gui.char_width = 8;
5070
Bram Moolenaar231334e2005-07-25 20:46:57 +00005071 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
Bram Moolenaar30613902019-12-01 22:11:18 +01005073 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 hl_set_font_name(font_name);
5075
5076 get_styled_font_variants();
5077 ascii_glyph_table_init();
5078
Bram Moolenaar30613902019-12-01 22:11:18 +01005079 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (gui.wide_font != NULL
5081 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5082 {
5083 pango_font_description_free(gui.wide_font);
5084 gui.wide_font = NULL;
5085 }
5086
Bram Moolenaare161c792009-11-03 17:13:59 +00005087 if (gui_mch_maximized())
5088 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005089 // Update lines and columns in accordance with the new font, keep the
5090 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005091 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005092 }
5093 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005094 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005095 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005096 update_window_manager_hints(0, 0);
5097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098
5099 return OK;
5100}
5101
5102/*
5103 * Get a reference to the font "name".
5104 * Return zero for failure.
5105 */
5106 GuiFont
5107gui_mch_get_font(char_u *name, int report_error)
5108{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110
Bram Moolenaar30613902019-12-01 22:11:18 +01005111 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 if (!gui.in_use || name == NULL)
5113 return NULL;
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 if (output_conv.vc_type != CONV_NONE)
5116 {
5117 char_u *buf;
5118
5119 buf = string_convert(&output_conv, name, NULL);
5120 if (buf != NULL)
5121 {
5122 font = pango_font_description_from_string((const char *)buf);
5123 vim_free(buf);
5124 }
5125 else
5126 font = NULL;
5127 }
5128 else
5129 font = pango_font_description_from_string((const char *)name);
5130
5131 if (font != NULL)
5132 {
5133 PangoFont *real_font;
5134
Bram Moolenaar30613902019-12-01 22:11:18 +01005135 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 if (pango_font_description_get_size(font) <= 0)
5137 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5138
5139 real_font = pango_context_load_font(gui.text_context, font);
5140
5141 if (real_font == NULL)
5142 {
5143 pango_font_description_free(font);
5144 font = NULL;
5145 }
5146 else
5147 g_object_unref(real_font);
5148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149
5150 if (font == NULL)
5151 {
5152 if (report_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005153 semsg(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 return NULL;
5155 }
5156
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 return font;
5158}
5159
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005160#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005161/*
5162 * Return the name of font "font" in allocated memory.
5163 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005164 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005165gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005166{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005167 if (font != NOFONT)
5168 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005169 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005170
Bram Moolenaar89d40322006-08-29 15:30:07 +00005171 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005172 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005173 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005174
Bram Moolenaar89d40322006-08-29 15:30:07 +00005175 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005176 return s;
5177 }
5178 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005179 return NULL;
5180}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005181#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005182
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183/*
5184 * If a font is not going to be used, free its structure.
5185 */
5186 void
5187gui_mch_free_font(GuiFont font)
5188{
5189 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191}
5192
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005194 * Return the Pixel value (color) for the given color name.
5195 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 * Return INVALCOLOR for error.
5197 */
5198 guicolor_T
5199gui_mch_get_color(char_u *name)
5200{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005201 guicolor_T color = INVALCOLOR;
5202
Bram Moolenaar30613902019-12-01 22:11:18 +01005203 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005204 return color;
5205
5206 if (name != NULL)
5207 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208
Bram Moolenaar98921892016-02-23 17:14:37 +01005209#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005210 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005211#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005212 if (color == INVALCOLOR)
5213 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005215 return gui_mch_get_rgb_color(
5216 (color & 0xff0000) >> 16,
5217 (color & 0xff00) >> 8,
5218 color & 0xff);
5219#endif
5220}
5221
5222/*
5223 * Return the Pixel value (color) for the given RGB values.
5224 * Return INVALCOLOR for error.
5225 */
5226 guicolor_T
5227gui_mch_get_rgb_color(int r, int g, int b)
5228{
5229#if GTK_CHECK_VERSION(3,0,0)
5230 return gui_get_rgb_color_cmn(r, g, b);
5231#else
5232 GdkColor gcolor;
5233 int ret;
5234
5235 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5236 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5237 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238
Bram Moolenaar36edf062016-07-21 22:10:12 +02005239 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5240 &gcolor, FALSE, TRUE);
5241
5242 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5243#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244}
5245
5246/*
5247 * Set the current text foreground color.
5248 */
5249 void
5250gui_mch_set_fg_color(guicolor_T color)
5251{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005252#if GTK_CHECK_VERSION(3,0,0)
5253 *gui.fgcolor = color_to_rgba(color);
5254#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005256#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257}
5258
5259/*
5260 * Set the current text background color.
5261 */
5262 void
5263gui_mch_set_bg_color(guicolor_T color)
5264{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005265#if GTK_CHECK_VERSION(3,0,0)
5266 *gui.bgcolor = color_to_rgba(color);
5267#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005269#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270}
5271
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005272/*
5273 * Set the current text special color.
5274 */
5275 void
5276gui_mch_set_sp_color(guicolor_T color)
5277{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005278#if GTK_CHECK_VERSION(3,0,0)
5279 *gui.spcolor = color_to_rgba(color);
5280#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005281 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005282#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005283}
5284
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285/*
5286 * Function-like convenience macro for the sake of efficiency.
5287 */
5288#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5289 G_STMT_START{ \
5290 PangoAttribute *tmp_attr_; \
5291 tmp_attr_ = (Attribute); \
5292 tmp_attr_->start_index = (Start); \
5293 tmp_attr_->end_index = (End); \
5294 pango_attr_list_insert((AttrList), tmp_attr_); \
5295 }G_STMT_END
5296
5297 static void
5298apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5299{
5300 char_u *start = NULL;
5301 char_u *p;
5302 int uc;
5303
5304 for (p = s; p < s + len; p += utf_byte2len(*p))
5305 {
5306 uc = utf_ptr2char(p);
5307
5308 if (start == NULL)
5309 {
5310 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5311 start = p;
5312 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005313 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5315 {
5316 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5317 attr_list, start - s, p - s);
5318 start = NULL;
5319 }
5320 }
5321
5322 if (start != NULL)
5323 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5324 attr_list, start - s, len);
5325}
5326
5327 static int
5328count_cluster_cells(char_u *s, PangoItem *item,
5329 PangoGlyphString* glyphs, int i,
5330 int *cluster_width,
5331 int *last_glyph_rbearing)
5332{
5333 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005334 int next; // glyph start index of next cluster
5335 int start, end; // string segment of current cluster
5336 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 int uc;
5338 int cellcount = 0;
5339
5340 width = glyphs->glyphs[i].geometry.width;
5341
5342 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5343 {
5344 if (glyphs->glyphs[next].attr.is_cluster_start)
5345 break;
5346 else if (glyphs->glyphs[next].geometry.width > width)
5347 width = glyphs->glyphs[next].geometry.width;
5348 }
5349
5350 start = item->offset + glyphs->log_clusters[i];
5351 end = item->offset + ((next < glyphs->num_glyphs) ?
5352 glyphs->log_clusters[next] : item->length);
5353
5354 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5355 {
5356 uc = utf_ptr2char(p);
5357 if (uc < 0x80)
5358 ++cellcount;
5359 else if (!utf_iscomposing(uc))
5360 cellcount += utf_char2cells(uc);
5361 }
5362
5363 if (last_glyph_rbearing != NULL
5364 && cellcount > 0 && next == glyphs->num_glyphs)
5365 {
5366 PangoRectangle ink_rect;
5367 /*
5368 * If a certain combining mark had to be taken from a non-monospace
5369 * font, we have to compensate manually by adapting x_offset according
5370 * to the ink extents of the previous glyph.
5371 */
5372 pango_font_get_glyph_extents(item->analysis.font,
5373 glyphs->glyphs[i].glyph,
5374 &ink_rect, NULL);
5375
5376 if (PANGO_RBEARING(ink_rect) > 0)
5377 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5378 }
5379
5380 if (cellcount > 0)
5381 *cluster_width = width;
5382
5383 return cellcount;
5384}
5385
5386/*
5387 * If there are only combining characters in the cluster, we cannot just
5388 * change the width of the previous glyph since there is none. Therefore
5389 * some guesswork is needed.
5390 *
5391 * If ink_rect.x is negative Pango apparently has taken care of the composing
5392 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5393 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005394 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 *
5396 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5397 * the position of the previous glyph. Apparently this happens only with old
5398 * X fonts which don't provide the special combining information needed by
5399 * Pango.
5400 */
5401 static void
5402setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5403 int last_cellcount, int last_cluster_width,
5404 int last_glyph_rbearing)
5405{
5406 PangoRectangle ink_rect;
5407 PangoRectangle logical_rect;
5408 int width;
5409
5410 width = last_cellcount * gui.char_width * PANGO_SCALE;
5411 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5412 glyph->geometry.width = 0;
5413
5414 pango_font_get_glyph_extents(item->analysis.font,
5415 glyph->glyph,
5416 &ink_rect, &logical_rect);
5417 if (ink_rect.x < 0)
5418 {
5419 glyph->geometry.x_offset += last_glyph_rbearing;
5420 glyph->geometry.y_offset = logical_rect.height
5421 - (gui.char_height - p_linespace) * PANGO_SCALE;
5422 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005423 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005424 // If the accent width is smaller than the cluster width, position it
5425 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005426 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427}
5428
Bram Moolenaar98921892016-02-23 17:14:37 +01005429#if GTK_CHECK_VERSION(3,0,0)
5430 static void
5431draw_glyph_string(int row, int col, int num_cells, int flags,
5432 PangoFont *font, PangoGlyphString *glyphs,
5433 cairo_t *cr)
5434#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 static void
5436draw_glyph_string(int row, int col, int num_cells, int flags,
5437 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439{
5440 if (!(flags & DRAW_TRANSP))
5441 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005442#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005443 cairo_set_source_rgba(cr,
5444 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5445 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005446 cairo_rectangle(cr,
5447 FILL_X(col), FILL_Y(row),
5448 num_cells * gui.char_width, gui.char_height);
5449 cairo_fill(cr);
5450#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5452
5453 gdk_draw_rectangle(gui.drawarea->window,
5454 gui.text_gc,
5455 TRUE,
5456 FILL_X(col),
5457 FILL_Y(row),
5458 num_cells * gui.char_width,
5459 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 }
5462
Bram Moolenaar98921892016-02-23 17:14:37 +01005463#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005464 cairo_set_source_rgba(cr,
5465 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5466 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005467 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5468 pango_cairo_show_glyph_string(cr, font, glyphs);
5469#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5471
5472 gdk_draw_glyphs(gui.drawarea->window,
5473 gui.text_gc,
5474 font,
5475 TEXT_X(col),
5476 TEXT_Y(row),
5477 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005478#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479
Bram Moolenaar30613902019-12-01 22:11:18 +01005480 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005482#if GTK_CHECK_VERSION(3,0,0)
5483 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005484 cairo_set_source_rgba(cr,
5485 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5486 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005487 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5488 pango_cairo_show_glyph_string(cr, font, glyphs);
5489 }
5490#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 gdk_draw_glyphs(gui.drawarea->window,
5492 gui.text_gc,
5493 font,
5494 TEXT_X(col) + 1,
5495 TEXT_Y(row),
5496 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498}
5499
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005500/*
5501 * Draw underline and undercurl at the bottom of the character cell.
5502 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005503#if GTK_CHECK_VERSION(3,0,0)
5504 static void
5505draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5506#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005507 static void
5508draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005509#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005510{
5511 int i;
5512 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005513 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005514 int y = FILL_Y(row + 1) - 1;
5515
Bram Moolenaar30613902019-12-01 22:11:18 +01005516 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005517 if (flags & DRAW_UNDERC)
5518 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005519#if GTK_CHECK_VERSION(3,0,0)
5520 cairo_set_line_width(cr, 1.0);
5521 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005522 cairo_set_source_rgba(cr,
5523 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5524 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005525 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5526 {
5527 offset = val[i % 8];
5528 cairo_line_to(cr, i, y - offset + 0.5);
5529 }
5530 cairo_stroke(cr);
5531#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005532 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5533 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5534 {
5535 offset = val[i % 8];
5536 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5537 }
5538 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005539#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005540 }
5541
Bram Moolenaar30613902019-12-01 22:11:18 +01005542 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005543 if (flags & DRAW_STRIKE)
5544 {
5545#if GTK_CHECK_VERSION(3,0,0)
5546 cairo_set_line_width(cr, 1.0);
5547 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5548 cairo_set_source_rgba(cr,
5549 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5550 gui.spcolor->alpha);
5551 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5552 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5553 cairo_stroke(cr);
5554#else
5555 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5556 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5557 FILL_X(col), y + 1 - gui.char_height/2,
5558 FILL_X(col + cells), y + 1 - gui.char_height/2);
5559 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5560#endif
5561 }
5562
Bram Moolenaar30613902019-12-01 22:11:18 +01005563 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005564 if (flags & DRAW_UNDERL)
5565 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005566 // When p_linespace is 0, overwrite the bottom row of pixels.
5567 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005568 if (p_linespace > 1)
5569 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005570#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005571 cairo_set_line_width(cr, 1.0);
5572 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5573 cairo_set_source_rgba(cr,
5574 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5575 gui.fgcolor->alpha);
5576 cairo_move_to(cr, FILL_X(col), y + 0.5);
5577 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5578 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005579#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005580 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5581 FILL_X(col), y,
5582 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005583#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005584 }
5585}
5586
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 int
5588gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5589{
Bram Moolenaar30613902019-12-01 22:11:18 +01005590 GdkRectangle area; // area for clip mask
5591 PangoGlyphString *glyphs; // glyphs of current item
5592 int column_offset = 0; // column offset in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 int i;
Bram Moolenaar30613902019-12-01 22:11:18 +01005594 char_u *conv_buf = NULL; // result of UTF-8 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 char_u *new_conv_buf;
5596 int convlen;
5597 char_u *sp, *bp;
5598 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005599#if GTK_CHECK_VERSION(3,0,0)
5600 cairo_t *cr;
5601#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602
Bram Moolenaar98921892016-02-23 17:14:37 +01005603 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 return len;
5605
5606 if (output_conv.vc_type != CONV_NONE)
5607 {
5608 /*
5609 * Convert characters from 'encoding' to 'termencoding', which is set
5610 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5611 * prohibits changing this to something else than UTF-8 if the GUI is
5612 * in use.
5613 */
5614 convlen = len;
5615 conv_buf = string_convert(&output_conv, s, &convlen);
5616 g_return_val_if_fail(conv_buf != NULL, len);
5617
Bram Moolenaar30613902019-12-01 22:11:18 +01005618 // Correct for differences in char width: some chars are
5619 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5620 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5622 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005623 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5625 {
5626 new_conv_buf = alloc(convlen + 2);
5627 if (new_conv_buf == NULL)
5628 return len;
5629 plen += bp - conv_buf;
5630 mch_memmove(new_conv_buf, conv_buf, plen);
5631 new_conv_buf[plen] = ' ';
5632 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5633 convlen - plen + 1);
5634 vim_free(conv_buf);
5635 conv_buf = new_conv_buf;
5636 ++convlen;
5637 bp = conv_buf + plen;
5638 plen = 1;
5639 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005640 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 bp += plen;
5642 }
5643 s = conv_buf;
5644 len = convlen;
5645 }
5646
5647 /*
5648 * Restrict all drawing to the current screen line in order to prevent
5649 * fuzzy font lookups from messing up the screen.
5650 */
5651 area.x = gui.border_offset;
5652 area.y = FILL_Y(row);
5653 area.width = gui.num_cols * gui.char_width;
5654 area.height = gui.char_height;
5655
Bram Moolenaar98921892016-02-23 17:14:37 +01005656#if GTK_CHECK_VERSION(3,0,0)
5657 cr = cairo_create(gui.surface);
5658 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5659 cairo_clip(cr);
5660#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5662 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664
5665 glyphs = pango_glyph_string_new();
5666
5667 /*
5668 * Optimization hack: If possible, skip the itemize and shaping process
5669 * for pure ASCII strings. This optimization is particularly effective
5670 * because Vim draws space characters to clear parts of the screen.
5671 */
5672 if (!(flags & DRAW_ITALIC)
5673 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5674 && gui.ascii_glyphs != NULL)
5675 {
5676 char_u *p;
5677
5678 for (p = s; p < s + len; ++p)
5679 if (*p & 0x80)
5680 goto not_ascii;
5681
5682 pango_glyph_string_set_size(glyphs, len);
5683
5684 for (i = 0; i < len; ++i)
5685 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005686 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 glyphs->log_clusters[i] = i;
5688 }
5689
Bram Moolenaar98921892016-02-23 17:14:37 +01005690#if GTK_CHECK_VERSION(3,0,0)
5691 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5692#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
5696 column_offset = len;
5697 }
5698 else
5699not_ascii:
5700 {
5701 PangoAttrList *attr_list;
5702 GList *item_list;
5703 int cluster_width;
5704 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005705 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706
Bram Moolenaar30613902019-12-01 22:11:18 +01005707 // Safety check: pango crashes when invoked with invalid utf-8
5708 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005709 if (!utf_valid_string(s, s + len))
5710 {
5711 column_offset = len;
5712 goto skipitall;
5713 }
5714
Bram Moolenaar30613902019-12-01 22:11:18 +01005715 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 cluster_width = PANGO_SCALE * gui.char_width;
5717
Bram Moolenaar30613902019-12-01 22:11:18 +01005718 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5720
5721 attr_list = pango_attr_list_new();
5722
Bram Moolenaar30613902019-12-01 22:11:18 +01005723 // If 'guifontwide' is set then use that for double-width characters.
5724 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 if (gui.wide_font != NULL)
5726 apply_wide_font_attr(s, len, attr_list);
5727
5728 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5729 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5730 attr_list, 0, len);
5731 if (flags & DRAW_ITALIC)
5732 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5733 attr_list, 0, len);
5734 /*
5735 * Break the text into segments with consistent directional level
5736 * and shaping engine. Pure Latin text needs only a single segment,
5737 * so there's no need to worry about the loop's efficiency. Better
5738 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5739 */
5740 item_list = pango_itemize(gui.text_context,
5741 (const char *)s, 0, len, attr_list, NULL);
5742
5743 while (item_list != NULL)
5744 {
5745 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005746 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747
5748 item = (PangoItem *)item_list->data;
5749 item_list = g_list_delete_link(item_list, item_list);
5750 /*
5751 * Increment the bidirectional embedding level by 1 if it is not
5752 * even. An odd number means the output will be RTL, but we don't
5753 * want that since Vim handles right-to-left text on its own. It
5754 * would probably be sufficient to just set level = 0, but you can
5755 * never know :)
5756 *
5757 * Unfortunately we can't take advantage of Pango's ability to
5758 * render both LTR and RTL at the same time. In order to support
5759 * that, Vim's main screen engine would have to make use of Pango
5760 * functionality.
5761 */
5762 item->analysis.level = (item->analysis.level + 1) & (~1U);
5763
Bram Moolenaar30613902019-12-01 22:11:18 +01005764 // HACK: Overrule the shape engine, we don't want shaping to be
5765 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 item->analysis.shape_engine = default_shape_engine;
5767
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005768#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005769 pango_shape_full((const char *)s + item->offset, item->length,
5770 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005771#else
5772 pango_shape((const char *)s + item->offset, item->length,
5773 &item->analysis, glyphs);
5774#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 /*
5776 * Fixed-width hack: iterate over the array and assign a fixed
5777 * width to each glyph, thus overriding the choice made by the
5778 * shaping engine. We use utf_char2cells() to determine the
5779 * number of cells needed.
5780 *
5781 * Also perform all kind of dark magic to get composing
5782 * characters right (and pretty too of course).
5783 */
5784 for (i = 0; i < glyphs->num_glyphs; ++i)
5785 {
5786 PangoGlyphInfo *glyph;
5787
5788 glyph = &glyphs->glyphs[i];
5789
5790 if (glyph->attr.is_cluster_start)
5791 {
5792 int cellcount;
5793
5794 cellcount = count_cluster_cells(
5795 s, item, glyphs, i, &cluster_width,
5796 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5797
5798 if (cellcount > 0)
5799 {
5800 int width;
5801
5802 width = cellcount * gui.char_width * PANGO_SCALE;
5803 glyph->geometry.x_offset +=
5804 MAX(0, width - cluster_width) / 2;
5805 glyph->geometry.width = width;
5806 }
5807 else
5808 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005809 // If there are only combining characters in the
5810 // cluster, we cannot just change the width of the
5811 // previous glyph since there is none. Therefore
5812 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 setup_zero_width_cluster(item, glyph, cells,
5814 cluster_width,
5815 last_glyph_rbearing);
5816 }
5817
5818 item_cells += cellcount;
5819 cells = cellcount;
5820 }
5821 else if (i > 0)
5822 {
5823 int width;
5824
Bram Moolenaar30613902019-12-01 22:11:18 +01005825 // There is a previous glyph, so we deal with combining
5826 // characters the canonical way.
5827 // In some circumstances Pango uses a positive x_offset,
5828 // then use the width of the previous glyph for this one
5829 // and set the previous width to zero.
5830 // Otherwise we get a negative x_offset, Pango has already
5831 // positioned the combining char, keep the widths as they
5832 // are.
5833 // For both adjust the x_offset to position the glyph in
5834 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005835 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005836 {
5837 glyphs->glyphs[i].geometry.width =
5838 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005839 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 width = cells * gui.char_width * PANGO_SCALE;
5842 glyph->geometry.x_offset +=
5843 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005845 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 {
5847 glyph->geometry.width = 0;
5848 }
5849 }
5850
Bram Moolenaar30613902019-12-01 22:11:18 +01005851 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01005852#if GTK_CHECK_VERSION(3,0,0)
5853 draw_glyph_string(row, col + column_offset, item_cells,
5854 flags, item->analysis.font, glyphs,
5855 cr);
5856#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 draw_glyph_string(row, col + column_offset, item_cells,
5858 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860
5861 pango_item_free(item);
5862
5863 column_offset += item_cells;
5864 }
5865
5866 pango_attr_list_unref(attr_list);
5867 }
5868
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005869skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01005870 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01005871#if GTK_CHECK_VERSION(3,0,0)
5872 draw_under(flags, row, col, column_offset, cr);
5873#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005874 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876
5877 pango_glyph_string_free(glyphs);
5878 vim_free(conv_buf);
5879
Bram Moolenaar98921892016-02-23 17:14:37 +01005880#if GTK_CHECK_VERSION(3,0,0)
5881 cairo_destroy(cr);
5882 if (!gui.by_signal)
5883 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
5884 &area, FALSE);
5885#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888
5889 return column_offset;
5890}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891
5892/*
5893 * Return OK if the key with the termcap name "name" is supported.
5894 */
5895 int
5896gui_mch_haskey(char_u *name)
5897{
5898 int i;
5899
5900 for (i = 0; special_keys[i].key_sym != 0; i++)
5901 if (name[0] == special_keys[i].code0
5902 && name[1] == special_keys[i].code1)
5903 return OK;
5904 return FAIL;
5905}
5906
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005907#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908/*
5909 * Return the text window-id and display. Only required for X-based GUI's
5910 */
5911 int
5912gui_get_x11_windis(Window *win, Display **dis)
5913{
Bram Moolenaar98921892016-02-23 17:14:37 +01005914 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005916 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5917 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 return OK;
5919 }
5920
5921 *dis = NULL;
5922 *win = 0;
5923 return FAIL;
5924}
5925#endif
5926
5927#if defined(FEAT_CLIENTSERVER) \
5928 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5929
5930 Display *
5931gui_mch_get_display(void)
5932{
Bram Moolenaar98921892016-02-23 17:14:37 +01005933 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5934 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 else
5936 return NULL;
5937}
5938#endif
5939
5940 void
5941gui_mch_beep(void)
5942{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 GdkDisplay *display;
5944
Bram Moolenaar98921892016-02-23 17:14:37 +01005945 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 display = gtk_widget_get_display(gui.mainwin);
5947 else
5948 display = gdk_display_get_default();
5949
5950 if (display != NULL)
5951 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952}
5953
5954 void
5955gui_mch_flash(int msec)
5956{
Bram Moolenaar98921892016-02-23 17:14:37 +01005957#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01005958 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01005959 (void)msec;
5960#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 GdkGCValues values;
5962 GdkGC *invert_gc;
5963
5964 if (gui.drawarea->window == NULL)
5965 return;
5966
5967 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5968 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5969 values.function = GDK_XOR;
5970 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
5971 &values,
5972 GDK_GC_FOREGROUND |
5973 GDK_GC_BACKGROUND |
5974 GDK_GC_FUNCTION);
5975 gdk_gc_set_exposures(invert_gc,
5976 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
5977 /*
5978 * Do a visual beep by changing back and forth in some undetermined way,
5979 * the foreground and background colors. This is due to the fact that
5980 * there can't be really any prediction about the effects of XOR on
5981 * arbitrary X11 servers. However this seems to be enough for what we
5982 * intend it to do.
5983 */
5984 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
5985 TRUE,
5986 0, 0,
5987 FILL_X((int)Columns) + gui.border_offset,
5988 FILL_Y((int)Rows) + gui.border_offset);
5989
5990 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01005991 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992
5993 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
5994 TRUE,
5995 0, 0,
5996 FILL_X((int)Columns) + gui.border_offset,
5997 FILL_Y((int)Rows) + gui.border_offset);
5998
5999 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001}
6002
6003/*
6004 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6005 */
6006 void
6007gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6008{
Bram Moolenaar98921892016-02-23 17:14:37 +01006009#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006010 const GdkRectangle rect = {
6011 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6012 };
6013 cairo_t * const cr = cairo_create(gui.surface);
6014
Bram Moolenaar36edf062016-07-21 22:10:12 +02006015 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006016# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6017 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6018# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006019 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006020# endif
6021 gdk_cairo_rectangle(cr, &rect);
6022 cairo_fill(cr);
6023
6024 cairo_destroy(cr);
6025
6026 if (!gui.by_signal)
6027 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6028 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006029#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 GdkGCValues values;
6031 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032
6033 if (gui.drawarea->window == NULL)
6034 return;
6035
Bram Moolenaar89d40322006-08-29 15:30:07 +00006036 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6037 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 values.function = GDK_XOR;
6039 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6040 &values,
6041 GDK_GC_FOREGROUND |
6042 GDK_GC_BACKGROUND |
6043 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006044 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6045 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6047 TRUE,
6048 FILL_X(c), FILL_Y(r),
6049 (nc) * gui.char_width, (nr) * gui.char_height);
6050 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006051#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052}
6053
6054/*
6055 * Iconify the GUI window.
6056 */
6057 void
6058gui_mch_iconify(void)
6059{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061}
6062
6063#if defined(FEAT_EVAL) || defined(PROTO)
6064/*
6065 * Bring the Vim window to the foreground.
6066 */
6067 void
6068gui_mch_set_foreground(void)
6069{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071}
6072#endif
6073
6074/*
6075 * Draw a cursor without focus.
6076 */
6077 void
6078gui_mch_draw_hollow_cursor(guicolor_T color)
6079{
6080 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006081#if GTK_CHECK_VERSION(3,0,0)
6082 cairo_t *cr;
6083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084
Bram Moolenaar98921892016-02-23 17:14:37 +01006085 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 return;
6087
Bram Moolenaar98921892016-02-23 17:14:37 +01006088#if GTK_CHECK_VERSION(3,0,0)
6089 cr = cairo_create(gui.surface);
6090#endif
6091
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 gui_mch_set_fg_color(color);
6093
Bram Moolenaar98921892016-02-23 17:14:37 +01006094#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006095 cairo_set_source_rgba(cr,
6096 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6097 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006098#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006100#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 if (mb_lefthalve(gui.row, gui.col))
6102 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006103#if GTK_CHECK_VERSION(3,0,0)
6104 cairo_set_line_width(cr, 1.0);
6105 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6106 cairo_rectangle(cr,
6107 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6108 i * gui.char_width - 1, gui.char_height - 1);
6109 cairo_stroke(cr);
6110 cairo_destroy(cr);
6111#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6113 FALSE,
6114 FILL_X(gui.col), FILL_Y(gui.row),
6115 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117}
6118
6119/*
6120 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6121 * color "color".
6122 */
6123 void
6124gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6125{
Bram Moolenaar98921892016-02-23 17:14:37 +01006126 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 return;
6128
6129 gui_mch_set_fg_color(color);
6130
Bram Moolenaar98921892016-02-23 17:14:37 +01006131#if GTK_CHECK_VERSION(3,0,0)
6132 {
6133 cairo_t *cr;
6134
6135 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006136 cairo_set_source_rgba(cr,
6137 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6138 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006139 cairo_rectangle(cr,
6140# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006141 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006142 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6143# endif
6144 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6145 w, h);
6146 cairo_fill(cr);
6147 cairo_destroy(cr);
6148 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006149#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6151 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6152 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006153# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006154 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006156# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 FILL_X(gui.col),
6158 FILL_Y(gui.row) + gui.char_height - h,
6159 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006160#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161}
6162
6163
6164/*
6165 * Catch up with any queued X11 events. This may put keyboard input into the
6166 * input buffer, call resize call-backs, trigger timers etc. If there is
6167 * nothing in the X11 event queue (& no timers pending), then we return
6168 * immediately.
6169 */
6170 void
6171gui_mch_update(void)
6172{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006173 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6174 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175}
6176
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006177 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178input_timer_cb(gpointer data)
6179{
6180 int *timed_out = (int *) data;
6181
Bram Moolenaar30613902019-12-01 22:11:18 +01006182 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 *timed_out = TRUE;
6184
Bram Moolenaar30613902019-12-01 22:11:18 +01006185 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186}
6187
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006188#ifdef FEAT_JOB_CHANNEL
6189 static timeout_cb_type
6190channel_poll_cb(gpointer data UNUSED)
6191{
Bram Moolenaar30613902019-12-01 22:11:18 +01006192 // Using an event handler for a channel that may be disconnected does
6193 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006194 channel_handle_events(TRUE);
6195 parse_queued_messages();
6196
Bram Moolenaar30613902019-12-01 22:11:18 +01006197 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006198}
6199#endif
6200
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201/*
6202 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6203 * from the keyboard.
6204 * wtime == -1 Wait forever.
6205 * wtime == 0 This should never happen.
6206 * wtime > 0 Wait wtime milliseconds for a character.
6207 * Returns OK if a character was found to be available within the given time,
6208 * or FAIL otherwise.
6209 */
6210 int
6211gui_mch_wait_for_chars(long wtime)
6212{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006213 int focus;
6214 guint timer;
6215 static int timed_out;
6216 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006217#ifdef FEAT_JOB_CHANNEL
6218 guint channel_timer = 0;
6219#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220
6221 timed_out = FALSE;
6222
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006223 // This timeout makes sure that we will return if no characters arrived in
6224 // time. If "wtime" is zero just use one.
6225 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006226 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006227 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 else
6229 timer = 0;
6230
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006231#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006232 // If there is a channel with the keep_open flag we need to poll for input
6233 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006234 if (channel_any_keep_open())
6235 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6236#endif
6237
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 focus = gui.in_focus;
6239
6240 do
6241 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006242 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 if (gui.in_focus != focus)
6244 {
6245 if (gui.in_focus)
6246 gui_mch_start_blink();
6247 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006248 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 focus = gui.in_focus;
6250 }
6251
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006252#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006253# ifdef FEAT_TIMERS
6254 did_add_timer = FALSE;
6255# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006256 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006257# ifdef FEAT_TIMERS
6258 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006259 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006260 goto theend;
6261# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006262#endif
6263
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 /*
6265 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006266 * Skip this if input is available anyway (can happen in rare
6267 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006269 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006270 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271
Bram Moolenaar30613902019-12-01 22:11:18 +01006272 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 if (input_available())
6274 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006275 retval = OK;
6276 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 }
6278 } while (wtime < 0 || !timed_out);
6279
6280 /*
6281 * Flush all eventually pending (drawing) events.
6282 */
6283 gui_mch_update();
6284
Bram Moolenaar4231da42016-06-02 14:30:04 +02006285theend:
6286 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006287 timeout_remove(timer);
6288#ifdef FEAT_JOB_CHANNEL
6289 if (channel_timer != 0)
6290 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006291#endif
6292
6293 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294}
6295
6296
Bram Moolenaar30613902019-12-01 22:11:18 +01006297/////////////////////////////////////////////////////////////////////////////
6298// Output drawing routines.
6299//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300
6301
Bram Moolenaar30613902019-12-01 22:11:18 +01006302// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 void
6304gui_mch_flush(void)
6305{
Bram Moolenaar98921892016-02-23 17:14:37 +01006306 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006307#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006308 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006309#else
6310 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6311#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312}
6313
6314/*
6315 * Clear a rectangular region of the screen from text pos (row1, col1) to
6316 * (row2, col2) inclusive.
6317 */
6318 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006319gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006321
6322 int col1 = check_col(col1arg);
6323 int col2 = check_col(col2arg);
6324 int row1 = check_row(row1arg);
6325 int row2 = check_row(row2arg);
6326
Bram Moolenaar98921892016-02-23 17:14:37 +01006327#if GTK_CHECK_VERSION(3,0,0)
6328 if (gtk_widget_get_window(gui.drawarea) == NULL)
6329 return;
6330#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 GdkColor color;
6332
6333 if (gui.drawarea->window == NULL)
6334 return;
6335
6336 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006337#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338
Bram Moolenaar98921892016-02-23 17:14:37 +01006339#if GTK_CHECK_VERSION(3,0,0)
6340 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006341 // Add one pixel to the far right column in case a double-stroked
6342 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006343 const GdkRectangle rect = {
6344 FILL_X(col1), FILL_Y(row1),
6345 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6346 (row2 - row1 + 1) * gui.char_height
6347 };
6348 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6349 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006350# if GTK_CHECK_VERSION(3,22,2)
6351 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6352# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006353 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6354 if (pat != NULL)
6355 cairo_set_source(cr, pat);
6356 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006357 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006358# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006359 gdk_cairo_rectangle(cr, &rect);
6360 cairo_fill(cr);
6361 cairo_destroy(cr);
6362
6363 if (!gui.by_signal)
6364 gdk_window_invalidate_rect(win, &rect, FALSE);
6365 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006366#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 gdk_gc_set_foreground(gui.text_gc, &color);
6368
Bram Moolenaar30613902019-12-01 22:11:18 +01006369 // Clear one extra pixel at the far right, for when bold characters have
6370 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6372 FILL_X(col1), FILL_Y(row1),
6373 (col2 - col1 + 1) * gui.char_width
6374 + (col2 == Columns - 1),
6375 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006376#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377}
6378
Bram Moolenaar98921892016-02-23 17:14:37 +01006379#if GTK_CHECK_VERSION(3,0,0)
6380 static void
6381gui_gtk_window_clear(GdkWindow *win)
6382{
6383 const GdkRectangle rect = {
6384 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6385 };
6386 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006387# if GTK_CHECK_VERSION(3,22,2)
6388 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6389# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006390 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6391 if (pat != NULL)
6392 cairo_set_source(cr, pat);
6393 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006394 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006395# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006396 gdk_cairo_rectangle(cr, &rect);
6397 cairo_fill(cr);
6398 cairo_destroy(cr);
6399
6400 if (!gui.by_signal)
6401 gdk_window_invalidate_rect(win, &rect, FALSE);
6402}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006403#else
6404# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006405#endif
6406
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 void
6408gui_mch_clear_all(void)
6409{
Bram Moolenaar98921892016-02-23 17:14:37 +01006410 if (gtk_widget_get_window(gui.drawarea) != NULL)
6411 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412}
6413
Bram Moolenaar98921892016-02-23 17:14:37 +01006414#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415/*
6416 * Redraw any text revealed by scrolling up/down.
6417 */
6418 static void
6419check_copy_area(void)
6420{
6421 GdkEvent *event;
6422 int expose_count;
6423
6424 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6425 return;
6426
Bram Moolenaar30613902019-12-01 22:11:18 +01006427 // Avoid redrawing the cursor while scrolling or it'll end up where
6428 // we don't want it to be. I'm not sure if it's correct to call
6429 // gui_dont_update_cursor() at this point but it works as a quick
6430 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006431 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432
6433 do
6434 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006435 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6437
6438 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006439 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440
6441 gui_redraw(event->expose.area.x, event->expose.area.y,
6442 event->expose.area.width, event->expose.area.height);
6443
6444 expose_count = event->expose.count;
6445 gdk_event_free(event);
6446 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006447 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448
6449 gui_can_update_cursor();
6450}
Bram Moolenaar30613902019-12-01 22:11:18 +01006451#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006452
6453#if GTK_CHECK_VERSION(3,0,0)
6454 static void
6455gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6456 int src_x, int src_y,
6457 int width, int height)
6458{
6459 cairo_t * const cr = cairo_create(gui.surface);
6460
6461 cairo_rectangle(cr, dest_x, dest_y, width, height);
6462 cairo_clip(cr);
6463 cairo_push_group(cr);
6464 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6465 cairo_paint(cr);
6466 cairo_pop_group_to_source(cr);
6467 cairo_paint(cr);
6468
6469 cairo_destroy(cr);
6470}
6471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472
6473/*
6474 * Delete the given number of lines from the given row, scrolling up any
6475 * text further down within the scroll region.
6476 */
6477 void
6478gui_mch_delete_lines(int row, int num_lines)
6479{
Bram Moolenaar98921892016-02-23 17:14:37 +01006480#if GTK_CHECK_VERSION(3,0,0)
6481 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6482 const int nrows = gui.scroll_region_bot - row + 1;
6483 const int src_nrows = nrows - num_lines;
6484
6485 gui_gtk_surface_copy_rect(
6486 FILL_X(gui.scroll_region_left), FILL_Y(row),
6487 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6488 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6489 gui_clear_block(
6490 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6491 gui.scroll_region_bot, gui.scroll_region_right);
6492 gui_gtk3_redraw(
6493 FILL_X(gui.scroll_region_left), FILL_Y(row),
6494 gui.char_width * ncols + 1, gui.char_height * nrows);
6495 if (!gui.by_signal)
6496 gtk_widget_queue_draw_area(gui.drawarea,
6497 FILL_X(gui.scroll_region_left), FILL_Y(row),
6498 gui.char_width * ncols + 1, gui.char_height * nrows);
6499#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006501 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502
6503 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6504 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6505
Bram Moolenaar30613902019-12-01 22:11:18 +01006506 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6508 FILL_X(gui.scroll_region_left), FILL_Y(row),
6509 gui.drawarea->window,
6510 FILL_X(gui.scroll_region_left),
6511 FILL_Y(row + num_lines),
6512 gui.char_width * (gui.scroll_region_right
6513 - gui.scroll_region_left + 1) + 1,
6514 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6515
6516 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6517 gui.scroll_region_left,
6518 gui.scroll_region_bot, gui.scroll_region_right);
6519 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006520#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521}
6522
6523/*
6524 * Insert the given number of lines before the given row, scrolling down any
6525 * following text within the scroll region.
6526 */
6527 void
6528gui_mch_insert_lines(int row, int num_lines)
6529{
Bram Moolenaar98921892016-02-23 17:14:37 +01006530#if GTK_CHECK_VERSION(3,0,0)
6531 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6532 const int nrows = gui.scroll_region_bot - row + 1;
6533 const int src_nrows = nrows - num_lines;
6534
6535 gui_gtk_surface_copy_rect(
6536 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6537 FILL_X(gui.scroll_region_left), FILL_Y(row),
6538 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6539 gui_mch_clear_block(
6540 row, gui.scroll_region_left,
6541 row + num_lines - 1, gui.scroll_region_right);
6542 gui_gtk3_redraw(
6543 FILL_X(gui.scroll_region_left), FILL_Y(row),
6544 gui.char_width * ncols + 1, gui.char_height * nrows);
6545 if (!gui.by_signal)
6546 gtk_widget_queue_draw_area(gui.drawarea,
6547 FILL_X(gui.scroll_region_left), FILL_Y(row),
6548 gui.char_width * ncols + 1, gui.char_height * nrows);
6549#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006551 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552
6553 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6554 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6555
Bram Moolenaar30613902019-12-01 22:11:18 +01006556 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6558 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6559 gui.drawarea->window,
6560 FILL_X(gui.scroll_region_left), FILL_Y(row),
6561 gui.char_width * (gui.scroll_region_right
6562 - gui.scroll_region_left + 1) + 1,
6563 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6564
6565 gui_clear_block(row, gui.scroll_region_left,
6566 row + num_lines - 1, gui.scroll_region_right);
6567 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006568#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569}
6570
6571/*
6572 * X Selection stuff, for cutting and pasting text to other windows.
6573 */
6574 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006575clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576{
6577 GdkAtom target;
6578 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006579 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580
6581 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6582 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006583 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6584 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 received_selection = RS_NONE;
6586 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6587
6588 gtk_selection_convert(gui.drawarea,
6589 cbd->gtk_sel_atom, target,
6590 (guint32)GDK_CURRENT_TIME);
6591
Bram Moolenaar30613902019-12-01 22:11:18 +01006592 // Hack: Wait up to three seconds for the selection. A hang was
6593 // noticed here when using the netrw plugin combined with ":gui"
6594 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006595 start = time(NULL);
6596 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006597 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598
6599 if (received_selection != RS_FAIL)
6600 return;
6601 }
6602
Bram Moolenaar30613902019-12-01 22:11:18 +01006603 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006604 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6605 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606}
6607
6608/*
6609 * Disown the selection.
6610 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006612clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006614 if (!in_selection_clear_event)
6615 {
6616 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6617 gui_mch_update();
6618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619}
6620
6621/*
6622 * Own the selection and return OK if it worked.
6623 */
6624 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006625clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626{
6627 int success;
6628
6629 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006630 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006631 gui_mch_update();
6632 return (success) ? OK : FAIL;
6633}
6634
6635/*
6636 * Send the current selection to the clipboard. Do nothing for X because we
6637 * will fill in the selection only when requested by another app.
6638 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006640clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641{
6642}
6643
Bram Moolenaar113e1072019-01-20 15:30:40 +01006644#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006645 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006646clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006647{
6648 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6649}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006650#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006651
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652
6653#if defined(FEAT_MENU) || defined(PROTO)
6654/*
6655 * Make a menu item appear either active or not active (grey or not grey).
6656 */
6657 void
6658gui_mch_menu_grey(vimmenu_T *menu, int grey)
6659{
6660 if (menu->id == NULL)
6661 return;
6662
6663 if (menu_is_separator(menu->name))
6664 grey = TRUE;
6665
6666 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006667 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006668 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 {
6670 gtk_widget_set_sensitive(menu->id, !grey);
6671 gui_mch_update();
6672 }
6673}
6674
6675/*
6676 * Make menu item hidden or not hidden.
6677 */
6678 void
6679gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6680{
6681 if (menu->id == 0)
6682 return;
6683
6684 if (hidden)
6685 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006686 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006687 {
6688 gtk_widget_hide(menu->id);
6689 gui_mch_update();
6690 }
6691 }
6692 else
6693 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006694 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006695 {
6696 gtk_widget_show(menu->id);
6697 gui_mch_update();
6698 }
6699 }
6700}
6701
6702/*
6703 * This is called after setting all the menus to grey/hidden or not.
6704 */
6705 void
6706gui_mch_draw_menubar(void)
6707{
Bram Moolenaar30613902019-12-01 22:11:18 +01006708 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 gui_mch_update();
6710}
Bram Moolenaar30613902019-12-01 22:11:18 +01006711#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712
6713/*
6714 * Scrollbar stuff.
6715 */
6716 void
6717gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6718{
6719 if (sb->id == NULL)
6720 return;
6721
Bram Moolenaar98921892016-02-23 17:14:37 +01006722 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006723 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724}
6725
6726
6727/*
6728 * Return the RGB value of a pixel as long.
6729 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006730 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731gui_mch_get_rgb(guicolor_T pixel)
6732{
Bram Moolenaar98921892016-02-23 17:14:37 +01006733#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006734 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006735#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006736 GdkColor color;
6737
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6739 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006741 return (guicolor_T)(
6742 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006744 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746}
6747
6748/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006749 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006751 void
6752gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753{
Bram Moolenaar98921892016-02-23 17:14:37 +01006754 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755}
6756
6757 void
6758gui_mch_setmouse(int x, int y)
6759{
Bram Moolenaar30613902019-12-01 22:11:18 +01006760 // Sorry for the Xlib call, but we can't avoid it, since there is no
6761 // internal GDK mechanism present to accomplish this. (and for good
6762 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01006763 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6764 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6765 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766}
6767
6768
6769#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01006770// The last set mouse pointer shape is remembered, to be used when it goes
6771// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772static int last_shape = 0;
6773#endif
6774
6775/*
6776 * Use the blank mouse pointer or not.
6777 *
6778 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6779 */
6780 void
6781gui_mch_mousehide(int hide)
6782{
6783 if (gui.pointer_hidden != hide)
6784 {
6785 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006786 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787 {
6788 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006789 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6790 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791 else
6792#ifdef FEAT_MOUSESHAPE
6793 mch_set_mouse_shape(last_shape);
6794#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006795 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796#endif
6797 }
6798 }
6799}
6800
6801#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6802
Bram Moolenaar30613902019-12-01 22:11:18 +01006803// Table for shape IDs. Keep in sync with the mshape_names[] table in
6804// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805static const int mshape_ids[] =
6806{
Bram Moolenaar30613902019-12-01 22:11:18 +01006807 GDK_LEFT_PTR, // arrow
6808 GDK_CURSOR_IS_PIXMAP, // blank
6809 GDK_XTERM, // beam
6810 GDK_SB_V_DOUBLE_ARROW, // updown
6811 GDK_SIZING, // udsizing
6812 GDK_SB_H_DOUBLE_ARROW, // leftright
6813 GDK_SIZING, // lrsizing
6814 GDK_WATCH, // busy
6815 GDK_X_CURSOR, // no
6816 GDK_CROSSHAIR, // crosshair
6817 GDK_HAND1, // hand1
6818 GDK_HAND2, // hand2
6819 GDK_PENCIL, // pencil
6820 GDK_QUESTION_ARROW, // question
6821 GDK_RIGHT_PTR, // right-arrow
6822 GDK_CENTER_PTR, // up-arrow
6823 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824};
6825
6826 void
6827mch_set_mouse_shape(int shape)
6828{
6829 int id;
6830 GdkCursor *c;
6831
Bram Moolenaar98921892016-02-23 17:14:37 +01006832 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 return;
6834
6835 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006836 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6837 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 else
6839 {
6840 if (shape >= MSHAPE_NUMBERED)
6841 {
6842 id = shape - MSHAPE_NUMBERED;
6843 if (id >= GDK_LAST_CURSOR)
6844 id = GDK_LEFT_PTR;
6845 else
Bram Moolenaar30613902019-12-01 22:11:18 +01006846 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006848 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006850 else
6851 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006853 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006854 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006855# if GTK_CHECK_VERSION(3,0,0)
6856 g_object_unref(G_OBJECT(c));
6857# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006858 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01006859# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 }
6861 if (shape != MSHAPE_HIDE)
6862 last_shape = shape;
6863}
Bram Moolenaar30613902019-12-01 22:11:18 +01006864#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865
6866
6867#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6868/*
6869 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6870 * scaled down if the current font is not big enough, or scaled up if the image
6871 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6872 * will be cut off if the current font is not big enough, or centered if it's
6873 * too small.
6874 */
6875# define SIGN_WIDTH (2 * gui.char_width)
6876# define SIGN_HEIGHT (gui.char_height)
6877# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6878
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 void
6880gui_mch_drawsign(int row, int col, int typenr)
6881{
6882 GdkPixbuf *sign;
6883
6884 sign = (GdkPixbuf *)sign_get_image(typenr);
6885
Bram Moolenaar98921892016-02-23 17:14:37 +01006886 if (sign != NULL && gui.drawarea != NULL
6887 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 {
6889 int width;
6890 int height;
6891 int xoffset;
6892 int yoffset;
6893 int need_scale;
6894
6895 width = gdk_pixbuf_get_width(sign);
6896 height = gdk_pixbuf_get_height(sign);
6897 /*
6898 * Decide whether we need to scale. Allow one pixel of border
6899 * width to be cut off, in order to avoid excessive scaling for
6900 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006901 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 */
6903 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006904 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 || (width < 3 * SIGN_WIDTH / 4
6906 && height < 3 * SIGN_HEIGHT / 4));
6907 if (need_scale)
6908 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006909 double aspect;
6910 int w = width;
6911 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912
Bram Moolenaar30613902019-12-01 22:11:18 +01006913 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 aspect = (double)height / (double)width;
6915 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6916 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006917 if (((double)(MAX(height, SIGN_HEIGHT)) /
6918 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6919 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006920 // Change the aspect ratio by at most 15% to fill the
6921 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006922 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6923 height = MIN(height, SIGN_HEIGHT);
6924 }
6925 else
6926 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006928 if (w == width && h == height)
6929 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006930 // no change in dimensions; don't decrease reference counter
6931 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006932 need_scale = FALSE;
6933 }
6934 else
6935 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006936 // This doesn't seem to be worth caching, and doing so would
6937 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006938 sign = gdk_pixbuf_scale_simple(sign, width, height,
6939 GDK_INTERP_BILINEAR);
6940 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006941 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006942 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943 }
6944
Bram Moolenaar30613902019-12-01 22:11:18 +01006945 // The origin is the upper-left corner of the pixmap. Therefore
6946 // these offset may become negative if the pixmap is smaller than
6947 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948 xoffset = (width - SIGN_WIDTH) / 2;
6949 yoffset = (height - SIGN_HEIGHT) / 2;
6950
Bram Moolenaar98921892016-02-23 17:14:37 +01006951# if GTK_CHECK_VERSION(3,0,0)
6952 {
6953 cairo_t *cr;
6954 cairo_surface_t *bg_surf;
6955 cairo_t *bg_cr;
6956 cairo_surface_t *sign_surf;
6957 cairo_t *sign_cr;
6958
6959 cr = cairo_create(gui.surface);
6960
6961 bg_surf = cairo_surface_create_similar(gui.surface,
6962 cairo_surface_get_content(gui.surface),
6963 SIGN_WIDTH, SIGN_HEIGHT);
6964 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006965 cairo_set_source_rgba(bg_cr,
6966 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
6967 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006968 cairo_paint(bg_cr);
6969
6970 sign_surf = cairo_surface_create_similar(gui.surface,
6971 cairo_surface_get_content(gui.surface),
6972 SIGN_WIDTH, SIGN_HEIGHT);
6973 sign_cr = cairo_create(sign_surf);
6974 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
6975 cairo_paint(sign_cr);
6976
6977 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
6978 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
6979 cairo_paint(sign_cr);
6980
6981 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
6982 cairo_paint(cr);
6983
6984 cairo_destroy(sign_cr);
6985 cairo_surface_destroy(sign_surf);
6986 cairo_destroy(bg_cr);
6987 cairo_surface_destroy(bg_surf);
6988 cairo_destroy(cr);
6989
6990 if (!gui.by_signal)
6991 gtk_widget_queue_draw_area(gui.drawarea,
6992 FILL_X(col), FILL_Y(col), width, height);
6993
6994 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006995# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
6997
6998 gdk_draw_rectangle(gui.drawarea->window,
6999 gui.text_gc,
7000 TRUE,
7001 FILL_X(col),
7002 FILL_Y(row),
7003 SIGN_WIDTH,
7004 SIGN_HEIGHT);
7005
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 gdk_pixbuf_render_to_drawable_alpha(sign,
7007 gui.drawarea->window,
7008 MAX(0, xoffset),
7009 MAX(0, yoffset),
7010 FILL_X(col) - MIN(0, xoffset),
7011 FILL_Y(row) - MIN(0, yoffset),
7012 MIN(width, SIGN_WIDTH),
7013 MIN(height, SIGN_HEIGHT),
7014 GDK_PIXBUF_ALPHA_BILEVEL,
7015 127,
7016 GDK_RGB_DITHER_NORMAL,
7017 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007018# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 if (need_scale)
7020 g_object_unref(sign);
7021 }
7022}
7023
7024 void *
7025gui_mch_register_sign(char_u *signfile)
7026{
7027 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7028 {
7029 GdkPixbuf *sign;
7030 GError *error = NULL;
7031 char_u *message;
7032
7033 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7034
7035 if (error == NULL)
7036 return sign;
7037
7038 message = (char_u *)error->message;
7039
7040 if (message != NULL && input_conv.vc_type != CONV_NONE)
7041 message = string_convert(&input_conv, message, NULL);
7042
7043 if (message != NULL)
7044 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007045 // The error message is already translated and will be more
7046 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007047 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048
7049 if (input_conv.vc_type != CONV_NONE)
7050 vim_free(message);
7051 }
7052 g_error_free(error);
7053 }
7054
7055 return NULL;
7056}
7057
7058 void
7059gui_mch_destroy_sign(void *sign)
7060{
7061 if (sign != NULL)
7062 g_object_unref(sign);
7063}
7064
Bram Moolenaar30613902019-12-01 22:11:18 +01007065#endif // FEAT_SIGN_ICONS