blob: fe1ac58782eb05674291ddc82081f202eacc8a56 [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 Moolenaarf4ae6b22020-05-30 19:52:46 +02001239 // <C-H> and <C-h> mean the same thing, always use "H"
1240 if ((modifiers & MOD_MASK_CTRL) && ASCII_ISALPHA(key))
1241 key = TOUPPER_ASC(key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001242
1243 // May remove the shift modifier if it's included in the key.
1244 modifiers = may_remove_shift_modifier(modifiers, key);
1245
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001246 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001249 if (modifiers != 0)
1250 {
1251 string2[0] = CSI;
1252 string2[1] = KS_MODIFIER;
1253 string2[2] = modifiers;
1254 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 }
1256
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001257 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001259 int int_ch = check_for_interrupt(key, modifiers);
1260
1261 if (int_ch != NUL)
1262 {
1263 trash_input_buf();
1264 string[0] = int_ch;
1265 len = 1;
1266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 }
1268
1269 add_to_input_buf(string, len);
1270
Bram Moolenaar30613902019-12-01 22:11:18 +01001271 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 if (p_mh)
1273 gui_mch_mousehide(TRUE);
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 return TRUE;
1276}
1277
Bram Moolenaar98921892016-02-23 17:14:37 +01001278#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001280key_release_event(GtkWidget *widget UNUSED,
1281 GdkEventKey *event,
1282 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283{
Bram Moolenaar98921892016-02-23 17:14:37 +01001284# if GTK_CHECK_VERSION(3,0,0)
1285 is_key_pressed = FALSE;
1286 gui_mch_start_blink();
1287# endif
1288# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001289 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 /*
1291 * GTK+ 2 input methods may do fancy stuff on key release events too.
1292 * With the default IM for instance, you can enter any UCS code point
1293 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1294 */
1295 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001296# else
1297 return TRUE;
1298# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299}
1300#endif
1301
1302
Bram Moolenaar30613902019-12-01 22:11:18 +01001303/////////////////////////////////////////////////////////////////////////////
1304// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305
Bram Moolenaar30613902019-12-01 22:11:18 +01001306// Remember when clip_lose_selection was called from here, we must not call
1307// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001308static int in_selection_clear_event = FALSE;
1309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001311selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001313 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001315 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if (event->selection == clip_plus.gtk_sel_atom)
1317 clip_lose_selection(&clip_plus);
1318 else
1319 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001320 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 return TRUE;
1323}
1324
Bram Moolenaar30613902019-12-01 22:11:18 +01001325#define RS_NONE 0 // selection_received_cb() not called yet
1326#define RS_OK 1 // selection_received_cb() called and OK
1327#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328static int received_selection = RS_NONE;
1329
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001331selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001333 guint time_ UNUSED,
1334 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001336 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 char_u *text;
1338 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001341 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342
Bram Moolenaar98921892016-02-23 17:14:37 +01001343 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 cbd = &clip_plus;
1345 else
1346 cbd = &clip_star;
1347
Bram Moolenaar98921892016-02-23 17:14:37 +01001348 text = (char_u *)gtk_selection_data_get_data(data);
1349 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
1351 if (text == NULL || len <= 0)
1352 {
1353 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001354 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 return;
1357 }
1358
Bram Moolenaar98921892016-02-23 17:14:37 +01001359 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 {
1361 motion_type = *text++;
1362 --len;
1363 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001364 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
1366 char_u *enc;
1367 vimconv_T conv;
1368
1369 motion_type = *text++;
1370 --len;
1371
1372 enc = text;
1373 text += STRLEN(text) + 1;
1374 len -= text - enc;
1375
Bram Moolenaar30613902019-12-01 22:11:18 +01001376 // If the encoding of the text is different from 'encoding', attempt
1377 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 conv.vc_type = CONV_NONE;
1379 convert_setup(&conv, enc, p_enc);
1380 if (conv.vc_type != CONV_NONE)
1381 {
1382 tmpbuf = string_convert(&conv, text, &len);
1383 if (tmpbuf != NULL)
1384 text = tmpbuf;
1385 convert_setup(&conv, NULL, NULL);
1386 }
1387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388
Bram Moolenaar30613902019-12-01 22:11:18 +01001389 // gtk_selection_data_get_text() handles all the nasty details
1390 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 else
1392 {
1393 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1394 if (tmpbuf_utf8 != NULL)
1395 {
1396 len = STRLEN(tmpbuf_utf8);
1397 if (input_conv.vc_type != CONV_NONE)
1398 {
1399 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1400 if (tmpbuf != NULL)
1401 text = tmpbuf;
1402 }
1403 else
1404 text = tmpbuf_utf8;
1405 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001406 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1407 {
1408 vimconv_T conv;
1409
Bram Moolenaar30613902019-12-01 22:11:18 +01001410 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001411 conv.vc_type = CONV_NONE;
1412 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1413
1414 if (conv.vc_type != CONV_NONE)
1415 {
1416 text += 2;
1417 len -= 2;
1418 tmpbuf = string_convert(&conv, text, &len);
1419 convert_setup(&conv, NULL, NULL);
1420 }
1421 if (tmpbuf != NULL)
1422 text = tmpbuf;
1423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425
Bram Moolenaar30613902019-12-01 22:11:18 +01001426 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001427 while (len > 0 && text[len - 1] == NUL)
1428 --len;
1429
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 clip_yank_selection(motion_type, text, (long)len, cbd);
1431 received_selection = RS_OK;
1432 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434}
1435
1436/*
1437 * Prepare our selection data for passing it to the external selection
1438 * client.
1439 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001441selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 GtkSelectionData *selection_data,
1443 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001444 guint time_ UNUSED,
1445 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446{
1447 char_u *string;
1448 char_u *tmpbuf;
1449 long_u tmplen;
1450 int length;
1451 int motion_type;
1452 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001453 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454
Bram Moolenaar98921892016-02-23 17:14:37 +01001455 if (gtk_selection_data_get_selection(selection_data)
1456 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 cbd = &clip_plus;
1458 else
1459 cbd = &clip_star;
1460
1461 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001462 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
1464 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001465 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 && info != (guint)TARGET_UTF8_STRING
1467 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 && info != (guint)TARGET_VIM
1469 && info != (guint)TARGET_COMPOUND_TEXT
1470 && info != (guint)TARGET_TEXT)
1471 return;
1472
Bram Moolenaar30613902019-12-01 22:11:18 +01001473 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 clip_get_selection(cbd);
1475
1476 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1477 if (motion_type < 0 || string == NULL)
1478 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001479 // Due to int arguments we can't handle more than G_MAXINT. Also
1480 // reserve one extra byte for NUL or the motion type; just in case.
1481 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1483
1484 if (info == (guint)TARGET_VIM)
1485 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001486 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 if (tmpbuf != NULL)
1488 {
1489 tmpbuf[0] = motion_type;
1490 mch_memmove(tmpbuf + 1, string, (size_t)length);
1491 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001492 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 ++length;
1494 vim_free(string);
1495 string = tmpbuf;
1496 type = vim_atom;
1497 }
1498
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001499 else if (info == (guint)TARGET_HTML)
1500 {
1501 vimconv_T conv;
1502
Bram Moolenaar30613902019-12-01 22:11:18 +01001503 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001504 conv.vc_type = CONV_NONE;
1505 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1506 if (conv.vc_type != CONV_NONE)
1507 {
1508 tmpbuf = string_convert(&conv, string, &length);
1509 convert_setup(&conv, NULL, NULL);
1510 vim_free(string);
1511 string = tmpbuf;
1512 }
1513
Bram Moolenaar30613902019-12-01 22:11:18 +01001514 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001515 if (string != NULL)
1516 {
1517 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001518 if (tmpbuf != NULL)
1519 {
1520 tmpbuf[0] = 0xff;
1521 tmpbuf[1] = 0xfe;
1522 mch_memmove(tmpbuf + 2, string, (size_t)length);
1523 vim_free(string);
1524 string = tmpbuf;
1525 length += 2;
1526 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001527
Bram Moolenaar98921892016-02-23 17:14:37 +01001528#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001529 // Looks redundant even for GTK2 because these values are
1530 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001531 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001532 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001533#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001534 gtk_selection_data_set(selection_data, html_atom, 16,
1535 string, length);
1536 vim_free(string);
1537 }
1538 return;
1539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 else if (info == (guint)TARGET_VIMENC)
1541 {
1542 int l = STRLEN(p_enc);
1543
Bram Moolenaar30613902019-12-01 22:11:18 +01001544 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001545 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 if (tmpbuf != NULL)
1547 {
1548 tmpbuf[0] = motion_type;
1549 STRCPY(tmpbuf + 1, p_enc);
1550 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001551 length += l + 2;
1552 vim_free(string);
1553 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 type = vimenc_atom;
1556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557
Bram Moolenaar30613902019-12-01 22:11:18 +01001558 // gtk_selection_data_set_text() handles everything for us. This is
1559 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 else
1561 {
1562 if (output_conv.vc_type != CONV_NONE)
1563 {
1564 tmpbuf = string_convert(&output_conv, string, &length);
1565 vim_free(string);
1566 if (tmpbuf == NULL)
1567 return;
1568 string = tmpbuf;
1569 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001570 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1572 {
1573 gtk_selection_data_set_text(selection_data,
1574 (const char *)string, length);
1575 }
1576 vim_free(string);
1577 return;
1578 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579
1580 if (string != NULL)
1581 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001582#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001583 // Looks redundant even for GTK2 because these values are
1584 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001586 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 gtk_selection_data_set(selection_data, type, 8, string, length);
1589 vim_free(string);
1590 }
1591}
1592
1593/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001594 * Check if the GUI can be started. Called before gvimrc is sourced and
1595 * before fork().
1596 * Return OK or FAIL.
1597 */
1598 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001599gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001600{
1601 char_u *p;
1602
Bram Moolenaar30613902019-12-01 22:11:18 +01001603 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001604 p = mch_getenv((char_u *)"DISPLAY");
1605 if (p == NULL || *p == NUL)
1606 {
1607 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001608 if (give_message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001609 emsg(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001610 return FAIL;
1611 }
1612 return OK;
1613}
1614
1615/*
1616 * Check if the GUI can be started. Called before gvimrc is sourced but after
1617 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 * Return OK or FAIL.
1619 */
1620 int
1621gui_mch_init_check(void)
1622{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001623#ifdef USE_GRESOURCE
1624 static int res_registered = FALSE;
1625
1626 if (!res_registered)
1627 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001628 // Call this function in the GUI process; otherwise, the resources
1629 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001630 res_registered = TRUE;
1631 gui_gtk_register_resource();
1632 }
1633#endif
1634
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001635#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001636 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1637 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001638 gdk_set_allowed_backends ("x11");
1639#endif
1640
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641#ifdef FEAT_GUI_GNOME
1642 if (gtk_socket_id == 0)
1643 using_gnome = 1;
1644#endif
1645
Bram Moolenaar30613902019-12-01 22:11:18 +01001646 // This defaults to argv[0], but we want it to match the name of the
1647 // shipped gvim.desktop so that Vim's windows can be associated with this
1648 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001649 g_set_prgname("gvim");
1650
Bram Moolenaar30613902019-12-01 22:11:18 +01001651 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 if (!gtk_init_check(&gui_argc, &gui_argv))
1653 {
1654 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001655 emsg(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 return FAIL;
1657 }
1658
1659 return OK;
1660}
1661
Bram Moolenaar30613902019-12-01 22:11:18 +01001662/////////////////////////////////////////////////////////////////////////////
1663// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664
1665
1666static guint mouse_click_timer = 0;
1667static int mouse_timed_out = TRUE;
1668
1669/*
1670 * Timer used to recognize multiple clicks of the mouse button
1671 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001672 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673mouse_click_timer_cb(gpointer data)
1674{
Bram Moolenaar30613902019-12-01 22:11:18 +01001675 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 int *timed_out = (int *) data;
1677
1678 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001679 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680}
1681
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001682static guint motion_repeat_timer = 0;
1683static int motion_repeat_offset = FALSE;
1684static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685
1686 static void
1687process_motion_notify(int x, int y, GdkModifierType state)
1688{
1689 int button;
1690 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001691 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
1693 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1694 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1695 GDK_BUTTON5_MASK))
1696 ? MOUSE_DRAG : ' ';
1697
Bram Moolenaar30613902019-12-01 22:11:18 +01001698 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 gui_mch_mousehide(FALSE);
1700
Bram Moolenaar30613902019-12-01 22:11:18 +01001701 // Just moving the rodent above the drawing area without any button
1702 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 if (button != MOUSE_DRAG)
1704 {
1705 gui_mouse_moved(x, y);
1706 return;
1707 }
1708
Bram Moolenaar30613902019-12-01 22:11:18 +01001709 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001710 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711
Bram Moolenaar30613902019-12-01 22:11:18 +01001712 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1714
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 /*
1716 * Auto repeat timer handling.
1717 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001718 gtk_widget_get_allocation(gui.drawarea, &allocation);
1719
1720 if (x < 0 || y < 0
1721 || x >= allocation.width
1722 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 {
1724
1725 int dx;
1726 int dy;
1727 int offshoot;
1728 int delay = 10;
1729
Bram Moolenaar30613902019-12-01 22:11:18 +01001730 // Calculate the maximal distance of the cursor from the drawing area.
1731 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001732 dx = x < 0 ? -x : x - allocation.width;
1733 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734
1735 offshoot = dx > dy ? dx : dy;
1736
Bram Moolenaar30613902019-12-01 22:11:18 +01001737 // Make a linearly decaying timer delay with a threshold of 5 at a
1738 // distance of 127 pixels from the main window.
1739 //
1740 // One could think endlessly about the most ergonomic variant here.
1741 // For example it could make sense to calculate the distance from the
1742 // drags start instead...
1743 //
1744 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 if (offshoot > 127)
1746 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001747 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 delay = 5;
1749 }
1750 else
1751 {
1752 delay = (130 * (127 - offshoot)) / 127 + 5;
1753 }
1754
Bram Moolenaar30613902019-12-01 22:11:18 +01001755 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001757 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1758 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 }
1760}
1761
Bram Moolenaar98921892016-02-23 17:14:37 +01001762#if GTK_CHECK_VERSION(3,0,0)
1763 static GdkDevice *
1764gui_gtk_get_pointer_device(GtkWidget *widget)
1765{
1766 GdkWindow * const win = gtk_widget_get_window(widget);
1767 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001768# if GTK_CHECK_VERSION(3,20,0)
1769 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1770 return gdk_seat_get_pointer(seat);
1771# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001772 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1773 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001774# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001775}
1776
1777 static GdkWindow *
1778gui_gtk_get_pointer(GtkWidget *widget,
1779 gint *x,
1780 gint *y,
1781 GdkModifierType *state)
1782{
1783 GdkWindow * const win = gtk_widget_get_window(widget);
1784 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1785 return gdk_window_get_device_position(win, dev , x, y, state);
1786}
1787
Bram Moolenaar2369c152016-03-04 23:08:25 +01001788# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001789 static GdkWindow *
1790gui_gtk_window_at_position(GtkWidget *widget,
1791 gint *x,
1792 gint *y)
1793{
1794 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1795 return gdk_device_get_window_at_position(dev, x, y);
1796}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001797# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001798#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001799# define gui_gtk_get_pointer(wid, x, y, s) \
1800 gdk_window_get_pointer((wid)->window, x, y, s)
1801# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001802#endif
1803
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804/*
1805 * Timer used to recognize multiple clicks of the mouse button.
1806 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001807 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001808motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
1810 int x;
1811 int y;
1812 GdkModifierType state;
1813
Bram Moolenaar98921892016-02-23 17:14:37 +01001814 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815
1816 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1817 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1818 GDK_BUTTON5_MASK)))
1819 {
1820 motion_repeat_timer = 0;
1821 return FALSE;
1822 }
1823
Bram Moolenaar30613902019-12-01 22:11:18 +01001824 // If there already is a mouse click in the input buffer, wait another
1825 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 if (vim_used_in_input_buf() > 10)
1827 return TRUE;
1828
1829 motion_repeat_timer = 0;
1830
1831 /*
1832 * Fake a motion event.
1833 * Trick: Pretend the mouse moved to the next character on every other
1834 * event, otherwise drag events will be discarded, because they are still
1835 * in the same character.
1836 */
1837 if (motion_repeat_offset)
1838 x += gui.char_width;
1839
1840 motion_repeat_offset = !motion_repeat_offset;
1841 process_motion_notify(x, y, state);
1842
Bram Moolenaar30613902019-12-01 22:11:18 +01001843 // Don't happen again. We will get reinstalled in the synthetic event
1844 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 return FALSE;
1846}
1847
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001849motion_notify_event(GtkWidget *widget,
1850 GdkEventMotion *event,
1851 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852{
1853 if (event->is_hint)
1854 {
1855 int x;
1856 int y;
1857 GdkModifierType state;
1858
Bram Moolenaar98921892016-02-23 17:14:37 +01001859 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 process_motion_notify(x, y, state);
1861 }
1862 else
1863 {
1864 process_motion_notify((int)event->x, (int)event->y,
1865 (GdkModifierType)event->state);
1866 }
1867
Bram Moolenaar30613902019-12-01 22:11:18 +01001868 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869}
1870
1871
1872/*
1873 * Mouse button handling. Note please that we are capturing multiple click's
1874 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1875 * This is due to the way the generic VIM code is recognizing multiple clicks.
1876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001878button_press_event(GtkWidget *widget,
1879 GdkEventButton *event,
1880 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881{
1882 int button;
1883 int repeated_click = FALSE;
1884 int x, y;
1885 int_u vim_modifiers;
1886
Bram Moolenaar20892c12011-06-26 04:49:00 +02001887 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001888
Bram Moolenaar30613902019-12-01 22:11:18 +01001889 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001890 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 gtk_widget_grab_focus(widget);
1892
1893 /*
1894 * Don't let additional events about multiple clicks send by GTK to us
1895 * after the initial button press event confuse us.
1896 */
1897 if (event->type != GDK_BUTTON_PRESS)
1898 return FALSE;
1899
1900 x = event->x;
1901 y = event->y;
1902
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 if (!mouse_timed_out && mouse_click_timer)
1905 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001906 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 mouse_click_timer = 0;
1908 repeated_click = TRUE;
1909 }
1910
1911 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001912 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1913 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914
1915 switch (event->button)
1916 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001917 // Keep in sync with gui_x11.c.
1918 // Buttons 4-7 are handled in scroll_event()
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001919 case 1: button = MOUSE_LEFT; break;
1920 case 2: button = MOUSE_MIDDLE; break;
1921 case 3: button = MOUSE_RIGHT; break;
1922 case 8: button = MOUSE_X1; break;
1923 case 9: button = MOUSE_X2; break;
1924 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001925 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
1927
1928#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 if (im_is_preediting())
1931 xim_reset();
1932#endif
1933
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001934 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935
1936 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937
1938 return TRUE;
1939}
1940
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001942 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001945scroll_event(GtkWidget *widget,
1946 GdkEventScroll *event,
1947 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948{
1949 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001950 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951
Bram Moolenaar98921892016-02-23 17:14:37 +01001952 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 gtk_widget_grab_focus(widget);
1954
1955 switch (event->direction)
1956 {
1957 case GDK_SCROLL_UP:
1958 button = MOUSE_4;
1959 break;
1960 case GDK_SCROLL_DOWN:
1961 button = MOUSE_5;
1962 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001963 case GDK_SCROLL_LEFT:
1964 button = MOUSE_7;
1965 break;
1966 case GDK_SCROLL_RIGHT:
1967 button = MOUSE_6;
1968 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001969 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 return FALSE;
1971 }
1972
1973# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001974 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 if (im_is_preediting())
1976 xim_reset();
1977# endif
1978
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001979 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980
1981 gui_send_mouse_event(button, (int)event->x, (int)event->y,
1982 FALSE, vim_modifiers);
1983
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 return TRUE;
1985}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986
1987
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001989button_release_event(GtkWidget *widget UNUSED,
1990 GdkEventButton *event,
1991 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992{
1993 int x, y;
1994 int_u vim_modifiers;
1995
Bram Moolenaar20892c12011-06-26 04:49:00 +02001996 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001997
Bram Moolenaar30613902019-12-01 22:11:18 +01001998 // Remove any motion "machine gun" timers used for automatic further
1999 // extension of allocation areas if outside of the applications window
2000 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 if (motion_repeat_timer)
2002 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002003 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 motion_repeat_timer = 0;
2005 }
2006
2007 x = event->x;
2008 y = event->y;
2009
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002010 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011
2012 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
2014 return TRUE;
2015}
2016
2017
2018#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002019/////////////////////////////////////////////////////////////////////////////
2020// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021
2022/*
2023 * Count how many items there may be and separate them with a NUL.
2024 * Apparently the items are separated with \r\n. This is not documented,
2025 * thus be careful not to go past the end. Also allow separation with
2026 * NUL characters.
2027 */
2028 static int
2029count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2030{
2031 int i;
2032 char_u *p = out;
2033 int count = 0;
2034
2035 for (i = 0; i < len; ++i)
2036 {
2037 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2038 {
2039 if (p > out && p[-1] != NUL)
2040 {
2041 ++count;
2042 *p++ = NUL;
2043 }
2044 }
2045 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2046 {
2047 *p++ = hexhex2nr(raw + i + 1);
2048 i += 2;
2049 }
2050 else
2051 *p++ = raw[i];
2052 }
2053 if (p > out && p[-1] != NUL)
2054 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002055 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 ++count;
2057 }
2058 return count;
2059}
2060
2061/*
2062 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2063 * this process, URI which protocol is not "file:" are removed. Return
2064 * length of array (less than "max").
2065 */
2066 static int
2067filter_uri_list(char_u **outlist, int max, char_u *src)
2068{
2069 int i, j;
2070
2071 for (i = j = 0; i < max; ++i)
2072 {
2073 outlist[i] = NULL;
2074 if (STRNCMP(src, "file:", 5) == 0)
2075 {
2076 src += 5;
2077 if (STRNCMP(src, "//localhost", 11) == 0)
2078 src += 11;
2079 while (src[0] == '/' && src[1] == '/')
2080 ++src;
2081 outlist[j++] = vim_strsave(src);
2082 }
2083 src += STRLEN(src) + 1;
2084 }
2085 return j;
2086}
2087
2088 static char_u **
2089parse_uri_list(int *count, char_u *data, int len)
2090{
2091 int n = 0;
2092 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002093 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002095 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 {
2097 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002098 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 n = filter_uri_list(array, n, tmp);
2100 }
2101 vim_free(tmp);
2102 *count = n;
2103 return array;
2104}
2105
2106 static void
2107drag_handle_uri_list(GdkDragContext *context,
2108 GtkSelectionData *data,
2109 guint time_,
2110 GdkModifierType state,
2111 gint x,
2112 gint y)
2113{
2114 char_u **fnames;
2115 int nfiles = 0;
2116
Bram Moolenaar98921892016-02-23 17:14:37 +01002117 fnames = parse_uri_list(&nfiles,
2118 (char_u *)gtk_selection_data_get_data(data),
2119 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
2121 if (fnames != NULL && nfiles > 0)
2122 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002123 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124
Bram Moolenaar30613902019-12-01 22:11:18 +01002125 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002127 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128
2129 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2130 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002131 else
2132 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133}
2134
2135 static void
2136drag_handle_text(GdkDragContext *context,
2137 GtkSelectionData *data,
2138 guint time_,
2139 GdkModifierType state)
2140{
2141 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2142 char_u *text;
2143 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145
Bram Moolenaar98921892016-02-23 17:14:37 +01002146 text = (char_u *)gtk_selection_data_get_data(data);
2147 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148
Bram Moolenaar98921892016-02-23 17:14:37 +01002149 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 if (input_conv.vc_type != CONV_NONE)
2152 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 if (tmpbuf != NULL)
2154 text = tmpbuf;
2155 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156
2157 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002158 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002161 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162
2163 if (dropkey[2] != 0)
2164 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2165 else
2166 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167}
2168
2169/*
2170 * DND receiver.
2171 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 static void
2173drag_data_received_cb(GtkWidget *widget,
2174 GdkDragContext *context,
2175 gint x,
2176 gint y,
2177 GtkSelectionData *data,
2178 guint info,
2179 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002180 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181{
2182 GdkModifierType state;
2183
Bram Moolenaar30613902019-12-01 22:11:18 +01002184 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002185 const guchar * const data_data = gtk_selection_data_get_data(data);
2186 const gint data_length = gtk_selection_data_get_length(data);
2187 const gint data_format = gtk_selection_data_get_format(data);
2188
2189 if (data_data == NULL
2190 || data_length <= 0
2191 || data_format != 8
2192 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 {
2194 gtk_drag_finish(context, FALSE, FALSE, time_);
2195 return;
2196 }
2197
Bram Moolenaar30613902019-12-01 22:11:18 +01002198 // Get the current modifier state for proper distinguishment between
2199 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002200 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
Bram Moolenaar30613902019-12-01 22:11:18 +01002202 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 if (info == (guint)TARGET_TEXT_URI_LIST)
2204 drag_handle_uri_list(context, data, time_, state, x, y);
2205 else
2206 drag_handle_text(context, data, time_, state);
2207
2208}
Bram Moolenaar30613902019-12-01 22:11:18 +01002209#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
2211
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002212#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213/*
2214 * GnomeClient interact callback. Check for unsaved buffers that cannot
2215 * be abandoned and pop up a dialog asking the user for confirmation if
2216 * necessary.
2217 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002219sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002221 GnomeDialogType type UNUSED,
2222 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223{
2224 cmdmod_T save_cmdmod;
2225 gboolean shutdown_cancelled;
2226
2227 save_cmdmod = cmdmod;
2228
2229# ifdef FEAT_BROWSE
2230 cmdmod.browse = TRUE;
2231# endif
2232# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2233 cmdmod.confirm = TRUE;
2234# endif
2235 /*
2236 * If there are changed buffers, present the user with
2237 * a dialog if possible, otherwise give an error message.
2238 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002239 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240
2241 exiting = FALSE;
2242 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002243 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 out_flush();
2245 /*
2246 * If the user hit the [Cancel] button the whole shutdown
2247 * will be cancelled. Wow, quite powerful feature (:
2248 */
2249 gnome_interaction_key_return(key, shutdown_cancelled);
2250}
2251
2252/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 * "save_yourself" signal handler. Initiate an interaction to ask the user
2254 * for confirmation if necessary. Save the current editing session and tell
2255 * the session manager how to restart Vim.
2256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 static gboolean
2258sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002259 gint phase UNUSED,
2260 GnomeSaveStyle save_style UNUSED,
2261 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002263 gboolean fast UNUSED,
2264 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265{
2266 static const char suffix[] = "-session.vim";
2267 char *session_file;
2268 unsigned int len;
2269 gboolean success;
2270
Bram Moolenaar30613902019-12-01 22:11:18 +01002271 // Always request an interaction if possible. check_changed_any()
2272 // won't actually show a dialog unless any buffers have been modified.
2273 // There doesn't seem to be an obvious way to check that without
2274 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 if (interact_style == GNOME_INTERACT_ANY)
2276 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2277 &sm_client_check_changed_any,
2278 NULL);
2279 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002280 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
Bram Moolenaar30613902019-12-01 22:11:18 +01002282 // The path is unique for each session save. We do neither know nor care
2283 // which session script will actually be used later. This decision is in
2284 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 session_file = gnome_config_get_real_path(
2286 gnome_client_get_config_prefix(client));
2287 len = strlen(session_file);
2288
2289 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002290 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291
2292 session_file = g_renew(char, session_file, len + sizeof(suffix));
2293 memcpy(session_file + len, suffix, sizeof(suffix));
2294
2295 success = write_session_file((char_u *)session_file);
2296
2297 if (success)
2298 {
2299 const char *argv[8];
2300 int i;
2301
Bram Moolenaar30613902019-12-01 22:11:18 +01002302 // Tell the session manager how to wipe out the stored session data.
2303 // This isn't as dangerous as it looks, don't worry :) session_file
2304 // is a unique absolute filename. Usually it'll be something like
2305 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 i = 0;
2307 argv[i++] = "rm";
2308 argv[i++] = session_file;
2309 argv[i] = NULL;
2310
2311 gnome_client_set_discard_command(client, i, (char **)argv);
2312
Bram Moolenaar30613902019-12-01 22:11:18 +01002313 // Tell the session manager how to restore the just saved session.
2314 // This is easily done thanks to Vim's -S option. Pass the -f flag
2315 // since there's no need to fork -- it might even cause confusion.
2316 // Also pass the window role to give the WM something to match on.
2317 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 i = 0;
2319 argv[i++] = restart_command;
2320 argv[i++] = "-f";
2321 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 argv[i++] = "--role";
2323 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 argv[i++] = "-S";
2325 argv[i++] = session_file;
2326 argv[i] = NULL;
2327
2328 gnome_client_set_restart_command(client, i, (char **)argv);
2329 gnome_client_set_clone_command(client, 0, NULL);
2330 }
2331
2332 g_free(session_file);
2333
2334 return success;
2335}
2336
2337/*
2338 * Called when the session manager wants us to die. There isn't much to save
2339 * here since "save_yourself" has been emitted before (unless serious trouble
2340 * is happening).
2341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002343sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344{
Bram Moolenaar30613902019-12-01 22:11:18 +01002345 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 full_screen = FALSE;
2347
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002348 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002349 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002350 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 preserve_exit();
2352}
2353
2354/*
2355 * Connect our signal handlers to be notified on session save and shutdown.
2356 */
2357 static void
2358setup_save_yourself(void)
2359{
2360 GnomeClient *client;
2361
2362 client = gnome_master_client();
2363
2364 if (client != NULL)
2365 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002366 // Must use the deprecated gtk_signal_connect() for compatibility
2367 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2369 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2370 gtk_signal_connect(GTK_OBJECT(client), "die",
2371 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2372 }
2373}
2374
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002375#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
2377# ifdef USE_XSMP
2378/*
2379 * GTK tells us that XSMP needs attention
2380 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002382local_xsmp_handle_requests(
2383 GIOChannel *source UNUSED,
2384 GIOCondition condition,
2385 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386{
2387 if (condition == G_IO_IN)
2388 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002389 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 if (xsmp_handle_requests() == FAIL)
2391 g_io_channel_unref((GIOChannel *)data);
2392 return TRUE;
2393 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002394 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 g_io_channel_unref((GIOChannel *)data);
2396 xsmp_close();
2397 return TRUE;
2398}
Bram Moolenaar30613902019-12-01 22:11:18 +01002399# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400
2401/*
2402 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2403 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2404 */
2405 static void
2406setup_save_yourself(void)
2407{
2408 Atom *existing_atoms = NULL;
2409 int count = 0;
2410
Bram Moolenaar98921892016-02-23 17:14:37 +01002411# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 if (xsmp_icefd != -1)
2413 {
2414 /*
2415 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2416 * set up GTK IO monitor
2417 */
2418 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2419
2420 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2421 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002422 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 }
2424 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002425# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002427 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428
Bram Moolenaar30613902019-12-01 22:11:18 +01002429 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002430 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2431
2432 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2433 GDK_WINDOW_XID(mainwin_win),
2434 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 {
2436 Atom *new_atoms;
2437 Atom save_yourself_xatom;
2438 int i;
2439
2440 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2441
Bram Moolenaar30613902019-12-01 22:11:18 +01002442 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 for (i = 0; i < count; ++i)
2444 if (existing_atoms[i] == save_yourself_xatom)
2445 break;
2446
2447 if (i == count)
2448 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002449 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002450 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (new_atoms != NULL)
2452 {
2453 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2454 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002455 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2456 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 new_atoms, count + 1);
2458 vim_free(new_atoms);
2459 }
2460 }
2461 XFree(existing_atoms);
2462 }
2463 }
2464}
2465
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466/*
2467 * Installing a global event filter seems to be the only way to catch
2468 * client messages of type WM_PROTOCOLS without overriding GDK's own
2469 * client message event filter. Well, that's still better than trying
2470 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 *
2472 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2473 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2474 * I have the nasty feeling modern session managers just don't send this
2475 * deprecated message anymore. Addition: confirmed by several people.
2476 *
2477 * The GNOME session support is much cooler anyway. Unlike this ugly
2478 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2479 * it should work with KDE as well.
2480 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002482global_event_filter(GdkXEvent *xev,
2483 GdkEvent *event UNUSED,
2484 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485{
2486 XEvent *xevent = (XEvent *)xev;
2487
2488 if (xevent != NULL
2489 && xevent->type == ClientMessage
2490 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002491 && (long_u)xevent->xclient.data.l[0]
2492 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 {
2494 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002495 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 /*
2497 * Set the window's WM_COMMAND property, to let the window manager
2498 * know we are done saving ourselves. We don't want to be
2499 * restarted, thus set argv to NULL.
2500 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002501 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2502 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 NULL, 0);
2504 return GDK_FILTER_REMOVE;
2505 }
2506
2507 return GDK_FILTER_CONTINUE;
2508}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002509#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510
2511
2512/*
2513 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002516mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517{
Bram Moolenaar30613902019-12-01 22:11:18 +01002518// If you get an error message here, you still need to unpack the runtime
2519// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520#ifdef magick
2521# undef magick
2522#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002523 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525#define magick vim32x32
2526#include "../runtime/vim32x32.xpm"
2527#undef magick
2528#define magick vim16x16
2529#include "../runtime/vim16x16.xpm"
2530#undef magick
2531#define magick vim48x48
2532#include "../runtime/vim48x48.xpm"
2533#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
Bram Moolenaar98921892016-02-23 17:14:37 +01002536 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002537
Bram Moolenaar30613902019-12-01 22:11:18 +01002538 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 if (echo_wid_arg)
2540 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002541 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 fflush(stdout);
2543 }
2544
2545 if (vim_strchr(p_go, GO_ICON) != NULL)
2546 {
2547 /*
2548 * Add an icon to the main window. For fun and convenience of the user.
2549 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 GList *icons = NULL;
2551
2552 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2553 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2554 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2555
2556 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2557
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002558 // TODO: is this type cast OK?
2559 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 }
2562
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002563#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002564 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002567 // Setup to indicate to the window manager that we want to catch the
2568 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2569 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002570#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 if (using_gnome)
2572#endif
2573 setup_save_yourself();
2574
2575#ifdef FEAT_CLIENTSERVER
2576 if (serverName == NULL && serverDelayedStartName != NULL)
2577 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002578 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002579 commWindow = GDK_WINDOW_XID(mainwin_win);
2580
2581 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2582 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 }
2584 else
2585 {
2586 /*
2587 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2588 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002589 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002591 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2592 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 }
2594 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002595 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2596 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597#endif
2598}
2599
2600 static GdkCursor *
2601create_blank_pointer(void)
2602{
2603 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002604#if GTK_CHECK_VERSION(3,0,0)
2605 GdkPixbuf *blank_mask;
2606#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002608#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002610#if GTK_CHECK_VERSION(3,0,0)
2611 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2612#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 GdkColor color = { 0, 0, 0, 0 };
2614 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002617#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002618 {
2619 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2620 GdkScreen * const scrn = gdk_window_get_screen(win);
2621 root_window = gdk_screen_get_root_window(scrn);
2622 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002623#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 root_window = gtk_widget_get_root_window(gui.mainwin);
2625#endif
2626
Bram Moolenaar30613902019-12-01 22:11:18 +01002627 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2628 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002629#if GTK_CHECK_VERSION(3,0,0)
2630 {
2631 cairo_surface_t *surf;
2632 cairo_t *cr;
2633
2634 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2635 cr = cairo_create(surf);
2636
Bram Moolenaar36edf062016-07-21 22:10:12 +02002637 cairo_set_source_rgba(cr,
2638 color.red,
2639 color.green,
2640 color.blue,
2641 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002642 cairo_rectangle(cr, 0, 0, 1, 1);
2643 cairo_fill(cr);
2644 cairo_destroy(cr);
2645
2646 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2647 cairo_surface_destroy(surf);
2648
2649 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2650 blank_mask, 0, 0);
2651 g_object_unref(blank_mask);
2652 }
2653#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2655 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2656 &color, &color, 0, 0);
2657 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659
2660 return cursor;
2661}
2662
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 static void
2664mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002665 GdkScreen *previous_screen UNUSED,
2666 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
2668 if (!gtk_widget_has_screen(widget))
2669 return;
2670
2671 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002672 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 */
2674 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002675#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002676 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002677#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002679#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
2681 gui.blank_pointer = create_blank_pointer();
2682
Bram Moolenaar98921892016-02-23 17:14:37 +01002683 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2684 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2685 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 /*
2688 * Create a new PangoContext for this screen, and initialize it
2689 * with the current font if necessary.
2690 */
2691 if (gui.text_context != NULL)
2692 g_object_unref(gui.text_context);
2693
2694 gui.text_context = gtk_widget_create_pango_context(widget);
2695 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2696
2697 if (gui.norm_font != NULL)
2698 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002699 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002700 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 }
2702}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
2704/*
2705 * After the drawing area comes up, we calculate all colors and create the
2706 * dummy blank cursor.
2707 *
2708 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2709 * fact that the main VIM engine doesn't take them into account anywhere.
2710 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002712drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
2714 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002715 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716
2717#ifdef FEAT_XIM
2718 xim_init();
2719#endif
2720 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002721#if GTK_CHECK_VERSION(3,0,0)
2722 gui.surface = gdk_window_create_similar_surface(
2723 gtk_widget_get_window(widget),
2724 CAIRO_CONTENT_COLOR_ALPHA,
2725 gtk_widget_get_allocated_width(widget),
2726 gtk_widget_get_allocated_height(widget));
2727#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002729#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730
2731 gui.blank_pointer = create_blank_pointer();
2732 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002733 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734
Bram Moolenaar30613902019-12-01 22:11:18 +01002735 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2737 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2738 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2739 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002740 gtk_widget_get_allocation(sbar, &allocation);
2741 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2742 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743
2744 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002745 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2746 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747}
2748
2749/*
2750 * Properly clean up on shutdown.
2751 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002753drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754{
Bram Moolenaar30613902019-12-01 22:11:18 +01002755 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 full_screen = FALSE;
2757
2758#ifdef FEAT_XIM
2759 im_shutdown();
2760#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 if (gui.ascii_glyphs != NULL)
2762 {
2763 pango_glyph_string_free(gui.ascii_glyphs);
2764 gui.ascii_glyphs = NULL;
2765 }
2766 if (gui.ascii_font != NULL)
2767 {
2768 g_object_unref(gui.ascii_font);
2769 gui.ascii_font = NULL;
2770 }
2771 g_object_unref(gui.text_context);
2772 gui.text_context = NULL;
2773
Bram Moolenaar98921892016-02-23 17:14:37 +01002774#if GTK_CHECK_VERSION(3,0,0)
2775 if (gui.surface != NULL)
2776 {
2777 cairo_surface_destroy(gui.surface);
2778 gui.surface = NULL;
2779 }
2780#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 g_object_unref(gui.text_gc);
2782 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002783#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
Bram Moolenaar98921892016-02-23 17:14:37 +01002785#if GTK_CHECK_VERSION(3,0,0)
2786 g_object_unref(G_OBJECT(gui.blank_pointer));
2787#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791}
2792
Bram Moolenaara859f042016-11-17 19:11:55 +01002793#if GTK_CHECK_VERSION(3,22,2)
2794 static void
2795drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2796 gpointer data UNUSED)
2797#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002799drawarea_style_set_cb(GtkWidget *widget UNUSED,
2800 GtkStyle *previous_style UNUSED,
2801 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803{
2804 gui_mch_new_colors();
2805}
2806
Bram Moolenaar98921892016-02-23 17:14:37 +01002807#if GTK_CHECK_VERSION(3,0,0)
2808 static gboolean
2809drawarea_configure_event_cb(GtkWidget *widget,
2810 GdkEventConfigure *event,
2811 gpointer data UNUSED)
2812{
2813 static int cur_width = 0;
2814 static int cur_height = 0;
2815
2816 g_return_val_if_fail(event
2817 && event->width >= 1 && event->height >= 1, TRUE);
2818
Bram Moolenaar182707a2016-11-21 20:55:58 +01002819# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002820 // As of 3.22.2, GdkWindows have started distributing configure events to
2821 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2822 //
2823 // As can be seen from the implementation of move_native_children() and
2824 // configure_native_child() in gdkwindow.c, those functions actually
2825 // propagate configure events to every child, failing to distinguish
2826 // "native" one from non-native one.
2827 //
2828 // Naturally, configure events propagated to here like that are fallacious
2829 // and, as a matter of fact, they trigger a geometric collapse of
2830 // gui.drawarea in fullscreen and maximized modes.
2831 //
2832 // To filter out such nuisance events, we are making use of the fact that
2833 // the field send_event of such GdkEventConfigures is set to FALSE in
2834 // configure_native_child().
2835 //
2836 // Obviously, this is a terrible hack making GVim depend on GTK's
2837 // implementation details. Therefore, watch out any relevant internal
2838 // changes happening in GTK in the feature (sigh).
2839 //
2840 // Follow-up
2841 // After a few weeks later, the GdkWindow change mentioned above was
2842 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2843 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002844 if (event->send_event == FALSE)
2845 return TRUE;
2846# endif
2847
Bram Moolenaar98921892016-02-23 17:14:37 +01002848 if (event->width == cur_width && event->height == cur_height)
2849 return TRUE;
2850
2851 cur_width = event->width;
2852 cur_height = event->height;
2853
2854 if (gui.surface != NULL)
2855 cairo_surface_destroy(gui.surface);
2856
2857 gui.surface = gdk_window_create_similar_surface(
2858 gtk_widget_get_window(widget),
2859 CAIRO_CONTENT_COLOR_ALPHA,
2860 event->width, event->height);
2861
2862 gtk_widget_queue_draw(widget);
2863
2864 return TRUE;
2865}
2866#endif
2867
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868/*
2869 * Callback routine for the "delete_event" signal on the toplevel window.
2870 * Tries to vim gracefully, or refuses to exit with changed buffers.
2871 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002873delete_event_cb(GtkWidget *widget UNUSED,
2874 GdkEventAny *event UNUSED,
2875 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876{
2877 gui_shell_closed();
2878 return TRUE;
2879}
2880
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002881#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2882 static int
2883get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2884{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002885# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002886 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2887
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002888 if (using_gnome && widget != NULL)
2889 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002890 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002891 BonoboDockItem *dockitem;
2892
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002893 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002894 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2895 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002896 // Only menu & toolbar are dock items. Could tabline be?
2897 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002898 widget = parent;
2899 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002900
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002901 if (dockitem == NULL || dockitem->is_floating)
2902 return 0;
2903 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2904 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002905 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002906# else
2907# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002908# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002909
Bram Moolenaar98921892016-02-23 17:14:37 +01002910 if (widget != NULL
2911 && item_orientation == orientation
2912 && gtk_widget_get_realized(widget)
2913 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002914 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002915# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002916 GtkAllocation allocation;
2917
2918 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002919 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002920# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002921 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2922 return widget->allocation.height;
2923 else
2924 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002925# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002926 }
2927 return 0;
2928}
2929#endif
2930
2931 static int
2932get_menu_tool_width(void)
2933{
2934 int width = 0;
2935
Bram Moolenaar30613902019-12-01 22:11:18 +01002936#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002937# ifdef FEAT_MENU
2938 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2939# endif
2940# ifdef FEAT_TOOLBAR
2941 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2942# endif
2943# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002944 if (gui.tabline != NULL)
2945 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002946# endif
2947#endif
2948
2949 return width;
2950}
2951
2952 static int
2953get_menu_tool_height(void)
2954{
2955 int height = 0;
2956
2957#ifdef FEAT_MENU
2958 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2959#endif
2960#ifdef FEAT_TOOLBAR
2961 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2962#endif
2963#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002964 if (gui.tabline != NULL)
2965 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002966#endif
2967
2968 return height;
2969}
2970
Bram Moolenaar30613902019-12-01 22:11:18 +01002971// This controls whether we can set the real window hints at
2972// start-up when in a GtkPlug.
2973// 0 = normal processing (default)
2974// 1 = init. hints set, no-one's tried to reset since last check
2975// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002976static int init_window_hints_state = 0;
2977
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002978 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002979update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002980{
2981 static int old_width = 0;
2982 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002983 static int old_min_width = 0;
2984 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002985 static int old_char_width = 0;
2986 static int old_char_height = 0;
2987
2988 int width;
2989 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002990 int min_width;
2991 int min_height;
2992
Bram Moolenaar30613902019-12-01 22:11:18 +01002993 // At start-up, don't try to set the hints until the initial
2994 // values have been used (those that dictate our initial size)
2995 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002996 if (!(force_width && force_height) && init_window_hints_state > 0)
2997 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002998 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002999 init_window_hints_state = 2;
3000 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003001 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003002
Bram Moolenaar30613902019-12-01 22:11:18 +01003003 // This also needs to be done when the main window isn't there yet,
3004 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003005 width = gui_get_base_width();
3006 height = gui_get_base_height();
3007# ifdef FEAT_MENU
3008 height += tabline_height() * gui.char_height;
3009# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003010 width += get_menu_tool_width();
3011 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003012
Bram Moolenaar30613902019-12-01 22:11:18 +01003013 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3014 // their actual widget size. When we set our size ourselves (e.g.,
3015 // 'set columns=' or init. -geom) we briefly set the min. to the size
3016 // we wish to be instead of the legitimate minimum so that we actually
3017 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003018 if (force_width && force_height)
3019 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003020 min_width = force_width;
3021 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003022 }
3023 else
3024 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003025 min_width = width + MIN_COLUMNS * gui.char_width;
3026 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003027 }
3028
Bram Moolenaar30613902019-12-01 22:11:18 +01003029 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003030 if (width != old_width
3031 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003032 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003033 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003034 || gui.char_width != old_char_width
3035 || gui.char_height != old_char_height)
3036 {
3037 GdkGeometry geometry;
3038 GdkWindowHints geometry_mask;
3039
3040 geometry.width_inc = gui.char_width;
3041 geometry.height_inc = gui.char_height;
3042 geometry.base_width = width;
3043 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003044 geometry.min_width = min_width;
3045 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003046 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3047 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003048 // Using gui.formwin as geometry widget doesn't work as expected
3049 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3050 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003051 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3052 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003053 old_width = width;
3054 old_height = height;
3055 old_min_width = min_width;
3056 old_min_height = min_height;
3057 old_char_width = gui.char_width;
3058 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003059 }
3060}
3061
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003062#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3063 void
3064gui_mch_set_dark_theme(int dark)
3065{
3066# if GTK_CHECK_VERSION(3,0,0)
3067 GtkSettings *gtk_settings;
3068
3069 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3070 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3071# endif
3072}
Bram Moolenaar30613902019-12-01 22:11:18 +01003073#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003074
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075#ifdef FEAT_TOOLBAR
3076
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077/*
3078 * This extra effort wouldn't be necessary if we only used stock icons in the
3079 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3080 * shouldn't be treated differently, thus we do need this.
3081 */
3082 static void
3083icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3084{
3085 if (GTK_IS_IMAGE(widget))
3086 {
3087 GtkImage *image = (GtkImage *)widget;
3088
Bram Moolenaar98921892016-02-23 17:14:37 +01003089# if GTK_CHECK_VERSION(3,10,0)
3090 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3091 {
3092 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3093 const gchar *icon_name;
3094
3095 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003096 image = (GtkImage *)gtk_image_new_from_icon_name(
3097 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003098 }
3099# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003100 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3102 {
3103 GtkIconSet *icon_set;
3104 GtkIconSize icon_size;
3105
3106 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3107 icon_size = (GtkIconSize)(long)user_data;
3108
3109 gtk_icon_set_ref(icon_set);
3110 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3111 gtk_icon_set_unref(icon_set);
3112 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003113# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 }
3115 else if (GTK_IS_CONTAINER(widget))
3116 {
3117 gtk_container_foreach((GtkContainer *)widget,
3118 &icon_size_changed_foreach,
3119 user_data);
3120 }
3121}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122
3123 static void
3124set_toolbar_style(GtkToolbar *toolbar)
3125{
3126 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 GtkIconSize size;
3128 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3131 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3132 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003133 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3135 style = GTK_TOOLBAR_BOTH;
3136 else if (toolbar_flags & TOOLBAR_TEXT)
3137 style = GTK_TOOLBAR_TEXT;
3138 else
3139 style = GTK_TOOLBAR_ICONS;
3140
3141 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003142# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 switch (tbis_flags)
3147 {
3148 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3149 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3150 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3151 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003152 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3153 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 default: size = GTK_ICON_SIZE_INVALID; break;
3155 }
3156 oldsize = gtk_toolbar_get_icon_size(toolbar);
3157
3158 if (size == GTK_ICON_SIZE_INVALID)
3159 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003160 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 gtk_toolbar_unset_icon_size(toolbar);
3162 size = gtk_toolbar_get_icon_size(toolbar);
3163 }
3164 if (size != oldsize)
3165 {
3166 gtk_container_foreach(GTK_CONTAINER(toolbar),
3167 &icon_size_changed_foreach,
3168 GINT_TO_POINTER((int)size));
3169 }
3170 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171}
3172
Bram Moolenaar30613902019-12-01 22:11:18 +01003173#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003175#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3176static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003177static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003178# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003179static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003180# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003181static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003182
3183/*
3184 * Handle selecting an item in the tab line popup menu.
3185 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003186 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003187tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003188{
Bram Moolenaar30613902019-12-01 22:11:18 +01003189 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003190 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003191}
3192
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003193 static void
3194add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3195{
3196 GtkWidget *item;
3197 char_u *utf_text;
3198
3199 utf_text = CONVERT_TO_UTF8(text);
3200 item = gtk_menu_item_new_with_label((const char *)utf_text);
3201 gtk_widget_show(item);
3202 CONVERT_TO_UTF8_FREE(utf_text);
3203
3204 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003205 g_signal_connect(G_OBJECT(item), "activate",
3206 G_CALLBACK(tabline_menu_handler),
3207 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003208}
3209
Bram Moolenaara5621492006-02-25 21:55:24 +00003210/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003211 * Create a menu for the tab line.
3212 */
3213 static GtkWidget *
3214create_tabline_menu(void)
3215{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003216 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003217
3218 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003219 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003220 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3221 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003222
3223 return menu;
3224}
3225
3226 static gboolean
3227on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3228{
Bram Moolenaar30613902019-12-01 22:11:18 +01003229 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003230 if (event->type == GDK_BUTTON_PRESS)
3231 {
3232 GdkEventButton *bevent = (GdkEventButton *)event;
3233 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003234 int y = bevent->y;
3235 GtkWidget *tabwidget;
3236 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003237
Bram Moolenaar30613902019-12-01 22:11:18 +01003238 // When ignoring events return TRUE so that the selected page doesn't
3239 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003240 if (hold_gui_events
3241# ifdef FEAT_CMDWIN
3242 || cmdwin_type != 0
3243# endif
3244 )
3245 return TRUE;
3246
Bram Moolenaar98921892016-02-23 17:14:37 +01003247 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003248
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003249 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003250 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3251 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003252
Bram Moolenaar30613902019-12-01 22:11:18 +01003253 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003254 if (bevent->button == 3)
3255 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003256# if GTK_CHECK_VERSION(3,22,2)
3257 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3258# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003259 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3260 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003261# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003262 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003263 return TRUE;
3264 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003265 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003266 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003267 if (clicked_page == 0)
3268 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003269 // Click after all tabs moves to next tab page. When "x" is
3270 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003271 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003272 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003273 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003274 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003275
Bram Moolenaar30613902019-12-01 22:11:18 +01003276 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003277 return FALSE;
3278}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003279
3280/*
3281 * Handle selecting one of the tabs.
3282 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003283 static void
3284on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003285 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003286 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003287 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003288 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003289{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003290 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003291 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003292}
3293
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003294# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003295/*
3296 * Handle reordering the tabs (using D&D).
3297 */
3298 static void
3299on_tab_reordered(
3300 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003301 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003302 gint idx,
3303 gpointer data UNUSED)
3304{
3305 if (!ignore_tabline_evt)
3306 {
3307 if ((tabpage_index(curtab) - 1) < idx)
3308 tabpage_move(idx + 1);
3309 else
3310 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003311 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003312}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003313# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003314
3315/*
3316 * Show or hide the tabline.
3317 */
3318 void
3319gui_mch_show_tabline(int showit)
3320{
3321 if (gui.tabline == NULL)
3322 return;
3323
3324 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3325 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003326 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003327 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003328 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003329 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003330 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003331 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003332
3333 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003334}
3335
3336/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003337 * Return TRUE when tabline is displayed.
3338 */
3339 int
3340gui_mch_showing_tabline(void)
3341{
3342 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003343 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003344}
3345
3346/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003347 * Update the labels of the tabline.
3348 */
3349 void
3350gui_mch_update_tabline(void)
3351{
3352 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003353 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003354 GtkWidget *label;
3355 tabpage_T *tp;
3356 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003357 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003358 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003359 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003360
3361 if (gui.tabline == NULL)
3362 return;
3363
3364 ignore_tabline_evt = TRUE;
3365
Bram Moolenaar30613902019-12-01 22:11:18 +01003366 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003367 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3368 {
3369 if (tp == curtab)
3370 curtabidx = nr;
3371
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003372 tab_num = nr + 1;
3373
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003374 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3375 if (page == NULL)
3376 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003377 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003378# if GTK_CHECK_VERSION(3,2,0)
3379 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3380 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3381# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003382 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003383# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003384 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003385 event_box = gtk_event_box_new();
3386 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003387 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003388# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003389 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003390# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003391 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003392 gtk_widget_show(label);
3393 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3394 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003395 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003396 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003397# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003398 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3399 page,
3400 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003401# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003402 }
3403
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003404 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003405 g_object_set_data(G_OBJECT(event_box), "tab_num",
3406 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003407 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003408 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003409 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003410 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003411 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003412
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003413 get_tabline_label(tp, TRUE);
3414 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003415# if GTK_CHECK_VERSION(3,0,0)
3416 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3417# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003418 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3419 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003420# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003421 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003422 }
3423
Bram Moolenaar30613902019-12-01 22:11:18 +01003424 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003425 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3426 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3427
Bram Moolenaar98921892016-02-23 17:14:37 +01003428 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3429 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003430
Bram Moolenaar30613902019-12-01 22:11:18 +01003431 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003432 gui_mch_update();
3433
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003434 ignore_tabline_evt = FALSE;
3435}
3436
3437/*
3438 * Set the current tab to "nr". First tab is 1.
3439 */
3440 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003441gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003442{
3443 if (gui.tabline == NULL)
3444 return;
3445
3446 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003447 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3448 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003449 ignore_tabline_evt = FALSE;
3450}
3451
Bram Moolenaar30613902019-12-01 22:11:18 +01003452#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003453
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003455 * Add selection targets for PRIMARY and CLIPBOARD selections.
3456 */
3457 void
3458gui_gtk_set_selection_targets(void)
3459{
3460 int i, j = 0;
3461 int n_targets = N_SELECTION_TARGETS;
3462 GtkTargetEntry targets[N_SELECTION_TARGETS];
3463
3464 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3465 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003466 // OpenOffice tries to use TARGET_HTML and fails when we don't
3467 // return something, instead of trying another target. Therefore only
3468 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003469 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3470 n_targets--;
3471 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003472 targets[j++] = selection_targets[i];
3473 }
3474
3475 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3476 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3477 gtk_selection_add_targets(gui.drawarea,
3478 (GdkAtom)GDK_SELECTION_PRIMARY,
3479 targets, n_targets);
3480 gtk_selection_add_targets(gui.drawarea,
3481 (GdkAtom)clip_plus.gtk_sel_atom,
3482 targets, n_targets);
3483}
3484
3485/*
3486 * Set up for receiving DND items.
3487 */
3488 void
3489gui_gtk_set_dnd_targets(void)
3490{
3491 int i, j = 0;
3492 int n_targets = N_DND_TARGETS;
3493 GtkTargetEntry targets[N_DND_TARGETS];
3494
3495 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3496 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003497 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003498 n_targets--;
3499 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003500 targets[j++] = dnd_targets[i];
3501 }
3502
3503 gtk_drag_dest_unset(gui.drawarea);
3504 gtk_drag_dest_set(gui.drawarea,
3505 GTK_DEST_DEFAULT_ALL,
3506 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003507 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003508}
3509
3510/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3512 * Returns OK for success, FAIL when the GUI can't be started.
3513 */
3514 int
3515gui_mch_init(void)
3516{
3517 GtkWidget *vbox;
3518
3519#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003520 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3521 // exits on failure, but that's a non-issue because we already called
3522 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003524 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3526 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003527# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003528 {
3529 char *p = setlocale(LC_NUMERIC, NULL);
3530
Bram Moolenaar30613902019-12-01 22:11:18 +01003531 // Make sure strtod() uses a decimal point, not a comma. Gnome
3532 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003533 if (p == NULL || strcmp(p, "C") != 0)
3534 setlocale(LC_NUMERIC, "C");
3535 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003536# endif
3537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003539 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003541#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003542 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 /*
3546 * Force UTF-8 output no matter what the value of 'encoding' is.
3547 * did_set_string_option() in option.c prohibits changing 'termencoding'
3548 * to something else than UTF-8 if the GUI is in use.
3549 */
3550 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3551
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003552#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003554#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003555 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3556 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003557#if !GTK_CHECK_VERSION(3,0,0)
3558# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003560# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561#endif
3562
Bram Moolenaar30613902019-12-01 22:11:18 +01003563 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 gui.border_width = 2;
3565 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3566 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003567#if GTK_CHECK_VERSION(3,0,0)
3568 gui.fgcolor = g_new(GdkRGBA, 1);
3569 gui.bgcolor = g_new(GdkRGBA, 1);
3570 gui.spcolor = g_new(GdkRGBA, 1);
3571#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003572 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003574 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003576 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003577 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579
Bram Moolenaar30613902019-12-01 22:11:18 +01003580 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003581 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583
Bram Moolenaar30613902019-12-01 22:11:18 +01003584 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 gui.norm_pixel = gui.def_norm_pixel;
3586 gui.back_pixel = gui.def_back_pixel;
3587
3588 if (gtk_socket_id != 0)
3589 {
3590 GtkWidget *plug;
3591
Bram Moolenaar30613902019-12-01 22:11:18 +01003592 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3594 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003595 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 {
3597 gui.mainwin = plug;
3598 }
3599 else
3600 {
3601 g_warning("Connection to GTK+ socket (ID %u) failed",
3602 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003603 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 gtk_socket_id = 0;
3605 }
3606 }
3607
3608 if (gtk_socket_id == 0)
3609 {
3610#ifdef FEAT_GUI_GNOME
3611 if (using_gnome)
3612 {
3613 gui.mainwin = gnome_app_new("Vim", NULL);
3614# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003615 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 xsmp_close();
3617# endif
3618 }
3619 else
3620#endif
3621 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3622 }
3623
3624 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3625
Bram Moolenaar30613902019-12-01 22:11:18 +01003626 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3628 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629
Bram Moolenaar98921892016-02-23 17:14:37 +01003630 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3632
Bram Moolenaar98921892016-02-23 17:14:37 +01003633 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3634 G_CALLBACK(&delete_event_cb), NULL);
3635
3636 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3637 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003638
3639 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003641
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 gui.accel_group = gtk_accel_group_new();
3643 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644
Bram Moolenaar30613902019-12-01 22:11:18 +01003645 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003646#if GTK_CHECK_VERSION(3,2,0)
3647 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3648 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3649#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652
3653#ifdef FEAT_GUI_GNOME
3654 if (using_gnome)
3655 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003656# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003657 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3659# endif
3660 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3661 }
3662 else
3663#endif
3664 {
3665 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3666 gtk_widget_show(vbox);
3667 }
3668
3669#ifdef FEAT_MENU
3670 /*
3671 * Create the menubar and handle
3672 */
3673 gui.menubar = gtk_menu_bar_new();
3674 gtk_widget_set_name(gui.menubar, "vim-menubar");
3675
Bram Moolenaar30613902019-12-01 22:11:18 +01003676 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003677 {
3678 GtkSettings *gtk_settings;
3679
3680 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3681 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3682 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003683
3684
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685# ifdef FEAT_GUI_GNOME
3686 if (using_gnome)
3687 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 BonoboDockItem *dockitem;
3689
3690 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3691 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3692 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003693 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003694 bonobo_dock_item_set_behavior(dockitem,
3695 bonobo_dock_item_get_behavior(dockitem)
3696 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 }
3699 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003700# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003702 // Always show the menubar, otherwise <F10> doesn't work. It may be
3703 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003704 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3706 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003707#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708
3709#ifdef FEAT_TOOLBAR
3710 /*
3711 * Create the toolbar and handle
3712 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003713 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003714# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003715 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3716 // N.B. Since the default value of GtkToolbar::button-relief is
3717 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003718# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 gtk_rc_parse_string(
3720 "style \"vim-toolbar-style\" {\n"
3721 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3722 "}\n"
3723 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003724# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 gui.toolbar = gtk_toolbar_new();
3726 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3728
3729# ifdef FEAT_GUI_GNOME
3730 if (using_gnome)
3731 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 BonoboDockItem *dockitem;
3733
3734 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3735 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3736 GNOME_APP_TOOLBAR_NAME);
3737 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003738 // When the toolbar is floating it gets stuck. So long as that isn't
3739 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003740 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003741 bonobo_dock_item_get_behavior(dockitem)
3742 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 }
3745 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003746# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3749 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3750 gtk_widget_show(gui.toolbar);
3751 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3752 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003753#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003755#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003756 /*
3757 * Use a Notebook for the tab pages labels. The labels are hidden by
3758 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003759 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003760 gui.tabline = gtk_notebook_new();
3761 gtk_widget_show(gui.tabline);
3762 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3763 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3764 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003765 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003766# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003767 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003768# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003769
Bram Moolenaar98921892016-02-23 17:14:37 +01003770# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003771 tabline_tooltip = gtk_tooltips_new();
3772 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003773# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003774
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003775 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003776 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003777
Bram Moolenaar30613902019-12-01 22:11:18 +01003778 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003779# if GTK_CHECK_VERSION(3,2,0)
3780 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3781 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3782# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003783 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003784# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003785 gtk_widget_show(page);
3786 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3787 label = gtk_label_new("-Empty-");
3788 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003789 event_box = gtk_event_box_new();
3790 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003791 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003792# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003793 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003794# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003795 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003796 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003797# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003798 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003799# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003800 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003801
Bram Moolenaar98921892016-02-23 17:14:37 +01003802 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3803 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003804# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003805 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3806 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003807# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003808
Bram Moolenaar30613902019-12-01 22:11:18 +01003809 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003810 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003811 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3812 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003813#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003814
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003816 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003817#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820
3821 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01003822#if GTK_CHECK_VERSION(3,22,2)
3823 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
3824#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003825#if GTK_CHECK_VERSION(3,0,0)
3826 gui.surface = NULL;
3827 gui.by_signal = FALSE;
3828#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829
Bram Moolenaar30613902019-12-01 22:11:18 +01003830 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 gtk_widget_set_events(gui.drawarea,
3832 GDK_EXPOSURE_MASK |
3833 GDK_ENTER_NOTIFY_MASK |
3834 GDK_LEAVE_NOTIFY_MASK |
3835 GDK_BUTTON_PRESS_MASK |
3836 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 GDK_KEY_PRESS_MASK |
3839 GDK_KEY_RELEASE_MASK |
3840 GDK_POINTER_MOTION_MASK |
3841 GDK_POINTER_MOTION_HINT_MASK);
3842
3843 gtk_widget_show(gui.drawarea);
3844 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3845 gtk_widget_show(gui.formwin);
3846 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3847
Bram Moolenaar30613902019-12-01 22:11:18 +01003848 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3849 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003850 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3851 : G_OBJECT(gui.drawarea),
3852 "key-press-event",
3853 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003854#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003855 // Also forward key release events for the benefit of GTK+ 2 input
3856 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3858 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003859 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 G_CALLBACK(&key_release_event), NULL);
3861#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003862 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3863 G_CALLBACK(drawarea_realize_cb), NULL);
3864 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3865 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003866#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003867 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3868 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003869#endif
3870#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003871 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3872 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003873#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003874 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3875 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877
Bram Moolenaar98921892016-02-23 17:14:37 +01003878#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003882#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3884 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3885#endif
3886
3887 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003888 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003889 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890
3891 /*
3892 * Set clipboard specific atoms
3893 */
3894 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3897 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3898
3899 /*
3900 * Start out by adding the configured border width into the border offset.
3901 */
3902 gui.border_offset = gui.border_width;
3903
Bram Moolenaar98921892016-02-23 17:14:37 +01003904#if GTK_CHECK_VERSION(3,0,0)
3905 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3906 G_CALLBACK(draw_event), NULL);
3907#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3909 GTK_SIGNAL_FUNC(visibility_event), NULL);
3910 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3911 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003912#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913
3914 /*
3915 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3916 * Only needed for some window managers.
3917 */
3918 if (vim_strchr(p_go, GO_POINTER) != NULL)
3919 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003920 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3921 G_CALLBACK(leave_notify_event), NULL);
3922 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3923 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 }
3925
Bram Moolenaar30613902019-12-01 22:11:18 +01003926 // Real windows can get focus ... GtkPlug, being a mere container can't,
3927 // only its widgets. Arguably, this could be common code and we not use
3928 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003929 if (gtk_socket_id == 0)
3930 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003931 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3932 G_CALLBACK(focus_out_event), NULL);
3933 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3934 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003935 }
3936 else
3937 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003938 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3939 G_CALLBACK(focus_out_event), NULL);
3940 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3941 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003942#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003943 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3944 G_CALLBACK(focus_out_event), NULL);
3945 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
3946 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01003947#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949
Bram Moolenaar98921892016-02-23 17:14:37 +01003950 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
3951 G_CALLBACK(motion_notify_event), NULL);
3952 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
3953 G_CALLBACK(button_press_event), NULL);
3954 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
3955 G_CALLBACK(button_release_event), NULL);
3956 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
3957 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958
3959 /*
3960 * Add selection handler functions.
3961 */
Bram Moolenaar98921892016-02-23 17:14:37 +01003962 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
3963 G_CALLBACK(selection_clear_event), NULL);
3964 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
3965 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966
Bram Moolenaara76638f2010-06-05 12:49:46 +02003967 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968
Bram Moolenaar98921892016-02-23 17:14:37 +01003969 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
3970 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971
Bram Moolenaar30613902019-12-01 22:11:18 +01003972 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 gui.in_focus = FALSE;
3974
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02003975 // Handle changes to the "Xft/DPI" setting.
3976 {
3977 GtkSettings *gtk_settings =
3978 gtk_settings_get_for_screen(gdk_screen_get_default());
3979
3980 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
3981 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
3982 }
3983
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 return OK;
3985}
3986
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003987#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988/*
3989 * This is called from gui_start() after a fork() has been done.
3990 * We have to tell the session manager our new PID.
3991 */
3992 void
3993gui_mch_forked(void)
3994{
3995 if (using_gnome)
3996 {
3997 GnomeClient *client;
3998
3999 client = gnome_master_client();
4000
4001 if (client != NULL)
4002 gnome_client_set_process_id(client, getpid());
4003 }
4004}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004005#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006
Bram Moolenaar98921892016-02-23 17:14:37 +01004007#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004008 static GdkRGBA
4009color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004010{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004011 GdkRGBA rgba;
4012 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4013 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4014 rgba.blue = ((color & 0xff)) / 255.0;
4015 rgba.alpha = 1.0;
4016 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004017}
4018
4019 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004020set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004021{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004022 const GdkRGBA rgba = color_to_rgba(color);
4023 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004024}
Bram Moolenaar30613902019-12-01 22:11:18 +01004025#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004026
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027/*
4028 * Called when the foreground or background color has been changed.
4029 * This used to change the graphics contexts directly but we are
4030 * currently manipulating them where desired.
4031 */
4032 void
4033gui_mch_new_colors(void)
4034{
Bram Moolenaar98921892016-02-23 17:14:37 +01004035 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004037#if !GTK_CHECK_VERSION(3,22,2)
4038 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4039#endif
4040
Bram Moolenaara859f042016-11-17 19:11:55 +01004041#if GTK_CHECK_VERSION(3,22,2)
4042 GtkStyleContext * const context
4043 = gtk_widget_get_style_context(gui.drawarea);
4044 GtkCssProvider * const provider = gtk_css_provider_new();
4045 gchar * const css = g_strdup_printf(
4046 "widget#vim-gui-drawarea {\n"
4047 " background-color: #%.2lx%.2lx%.2lx;\n"
4048 "}\n",
4049 (gui.back_pixel >> 16) & 0xff,
4050 (gui.back_pixel >> 8) & 0xff,
4051 gui.back_pixel & 0xff);
4052
4053 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4054 gtk_style_context_add_provider(context,
4055 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4056
4057 g_free(css);
4058 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004059#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004060 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004061
Bram Moolenaar36edf062016-07-21 22:10:12 +02004062 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004063 {
4064 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004065 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004066 if (pat != NULL)
4067 {
4068 gdk_window_set_background_pattern(da_win, pat);
4069 cairo_pattern_destroy(pat);
4070 }
4071 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004072 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004073 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004074#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 GdkColor color = { 0, 0, 0, 0 };
4076
4077 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004078 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004079#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 }
4081}
4082
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083/*
4084 * This signal informs us about the need to rearrange our sub-widgets.
4085 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004087form_configure_event(GtkWidget *widget UNUSED,
4088 GdkEventConfigure *event,
4089 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004091 int usable_height = event->height;
4092
Bram Moolenaar182707a2016-11-21 20:55:58 +01004093#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004094 // As of 3.22.2, GdkWindows have started distributing configure events to
4095 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4096 //
4097 // As can be seen from the implementation of move_native_children() and
4098 // configure_native_child() in gdkwindow.c, those functions actually
4099 // propagate configure events to every child, failing to distinguish
4100 // "native" one from non-native one.
4101 //
4102 // Naturally, configure events propagated to here like that are fallacious
4103 // and, as a matter of fact, they trigger a geometric collapse of
4104 // gui.formwin.
4105 //
4106 // To filter out such fallacious events, check if the given event is the
4107 // one that was sent out to the right place. Ignore it if not.
4108 //
4109 // Follow-up
4110 // After a few weeks later, the GdkWindow change mentioned above was
4111 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4112 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004113 if (event->window != gtk_widget_get_window(gui.formwin))
4114 return TRUE;
4115#endif
4116
Bram Moolenaar30613902019-12-01 22:11:18 +01004117 // When in a GtkPlug, we can't guarantee valid heights (as a round
4118 // no. of char-heights), so we have to manually sanitise them.
4119 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004120 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004121 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004122
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004124 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 gtk_form_thaw(GTK_FORM(gui.formwin));
4126
4127 return TRUE;
4128}
4129
4130/*
4131 * Function called when window already closed.
4132 * We can't do much more here than to trying to preserve what had been done,
4133 * since the window is already inevitably going away.
4134 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004135 static void
4136mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137{
Bram Moolenaar30613902019-12-01 22:11:18 +01004138 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 full_screen = FALSE;
4140
4141 gui.mainwin = NULL;
4142 gui.drawarea = NULL;
4143
Bram Moolenaar30613902019-12-01 22:11:18 +01004144 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004146 vim_strncpy(IObuff,
4147 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4148 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 preserve_exit();
4150 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004151#ifdef USE_GRESOURCE
4152 gui_gtk_unregister_resource();
4153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154}
4155
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004156
4157/*
4158 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4159 * hints (and thus the required size from -geom), but that after that we
4160 * put the hints back to normal (the actual minimum size) so we may
4161 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004162 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004163 * only way we have of making ourselves bigger (by set lines/columns).
4164 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004165 * second after the final attempt to reset the real minimum hints (done by
4166 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004167 * We'll not let the default hints be set while this timer's active.
4168 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004169 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004170check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004171{
4172 if (init_window_hints_state == 1)
4173 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004174 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004175 init_window_hints_state = 0;
4176 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004177 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004178 }
4179
Bram Moolenaar30613902019-12-01 22:11:18 +01004180 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004181 init_window_hints_state = 1;
4182 return TRUE;
4183}
4184
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185/*
4186 * Open the GUI window which was created by a call to gui_mch_init().
4187 */
4188 int
4189gui_mch_open(void)
4190{
4191 guicolor_T fg_pixel = INVALCOLOR;
4192 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004193 guint pixel_width;
4194 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 /*
4197 * Allow setting a window role on the command line, or invent one
4198 * if none was specified. This is mainly useful for GNOME session
4199 * support; allowing the WM to restore window placement.
4200 */
4201 if (role_argument != NULL)
4202 {
4203 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4204 }
4205 else
4206 {
4207 char *role;
4208
Bram Moolenaar30613902019-12-01 22:11:18 +01004209 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 role = g_strdup_printf("vim-%u-%u-%u",
4211 (unsigned)mch_get_pid(),
4212 (unsigned)g_random_int(),
4213 (unsigned)time(NULL));
4214
4215 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4216 g_free(role);
4217 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218
4219 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221
Bram Moolenaar30613902019-12-01 22:11:18 +01004222 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 if (gui.geom != NULL)
4224 {
4225 int mask;
4226 unsigned int w, h;
4227 int x = 0;
4228 int y = 0;
4229
4230 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4231
4232 if (mask & WidthValue)
4233 Columns = w;
4234 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004235 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004236 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004237 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004239 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004240 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004241
4242 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4243 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4244
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004245 pixel_width += get_menu_tool_width();
4246 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004247
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004249 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004250 int ww, hh;
4251 gui_mch_get_screen_dimensions(&ww, &hh);
4252 hh += p_ghr + get_menu_tool_height();
4253 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004254 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004255 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004256 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004257 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004259 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004260 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004261
Bram Moolenaar30613902019-12-01 22:11:18 +01004262 // From now until everyone's stopped trying to set the window hints
4263 // to their correct minimum values, stop them being set as we need
4264 // them to remain at our required size for the parent GtkSocket to
4265 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004266 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004267 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004268 update_window_manager_hints(pixel_width, pixel_height);
4269 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004270 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 }
4273
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004274 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4275 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004276 // For GTK2 changing the size of the form widget doesn't cause window
4277 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004278 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004279 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004280 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281
4282 if (foreground_argument != NULL)
4283 fg_pixel = gui_get_color((char_u *)foreground_argument);
4284 if (fg_pixel == INVALCOLOR)
4285 fg_pixel = gui_get_color((char_u *)"Black");
4286
4287 if (background_argument != NULL)
4288 bg_pixel = gui_get_color((char_u *)background_argument);
4289 if (bg_pixel == INVALCOLOR)
4290 bg_pixel = gui_get_color((char_u *)"White");
4291
4292 if (found_reverse_arg)
4293 {
4294 gui.def_norm_pixel = bg_pixel;
4295 gui.def_back_pixel = fg_pixel;
4296 }
4297 else
4298 {
4299 gui.def_norm_pixel = fg_pixel;
4300 gui.def_back_pixel = bg_pixel;
4301 }
4302
Bram Moolenaar30613902019-12-01 22:11:18 +01004303 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4304 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 set_normal_colors();
4306
Bram Moolenaar30613902019-12-01 22:11:18 +01004307 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 gui_check_colors();
4309
Bram Moolenaar30613902019-12-01 22:11:18 +01004310 // Get the colors for the highlight groups (gui_check_colors() might have
4311 // changed them).
4312 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313
Bram Moolenaar98921892016-02-23 17:14:37 +01004314 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4315 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 /*
4318 * Notify the fixed area about the need to resize the contents of the
4319 * gui.formwin, which we use for random positioning of the included
4320 * components.
4321 *
4322 * We connect this signal deferred finally after anything is in place,
4323 * since this is intended to handle resizements coming from the window
4324 * manager upon us and should not interfere with what VIM is requesting
4325 * upon startup.
4326 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004327 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4328 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
4330#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004331 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004332 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
Bram Moolenaar98921892016-02-23 17:14:37 +01004334 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4335 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336#endif
4337
Bram Moolenaar30613902019-12-01 22:11:18 +01004338 // With GTK+ 2, we need to iconify the window before calling show()
4339 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 if (found_iconic_arg && gtk_socket_id == 0)
4341 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342
4343 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004344#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 unsigned long menu_handler = 0;
4346# ifdef FEAT_TOOLBAR
4347 unsigned long tool_handler = 0;
4348# endif
4349 /*
4350 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4351 * show when restoring the saved layout configuration. We can't just
4352 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4353 * a toplevel window and thus will be realized immediately. Instead,
4354 * connect signal handlers to hide the widgets just after they've been
4355 * marked visible, but before the main window is realized.
4356 */
4357 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4358 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4359 G_CALLBACK(&gtk_widget_hide),
4360 NULL);
4361# ifdef FEAT_TOOLBAR
4362 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4363 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4364 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4365 G_CALLBACK(&gtk_widget_hide),
4366 NULL);
4367# endif
4368#endif
4369 gtk_widget_show(gui.mainwin);
4370
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004371#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 if (menu_handler != 0)
4373 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4374# ifdef FEAT_TOOLBAR
4375 if (tool_handler != 0)
4376 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4377# endif
4378#endif
4379 }
4380
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 return OK;
4382}
4383
4384
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004386gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387{
4388 if (gui.mainwin != NULL)
4389 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390}
4391
4392/*
4393 * Get the position of the top left corner of the window.
4394 */
4395 int
4396gui_mch_get_winpos(int *x, int *y)
4397{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 return OK;
4400}
4401
4402/*
4403 * Set the position of the top left corner of the window to the given
4404 * coordinates.
4405 */
4406 void
4407gui_mch_set_winpos(int x, int y)
4408{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410}
4411
Bram Moolenaar98921892016-02-23 17:14:37 +01004412#if !GTK_CHECK_VERSION(3,0,0)
4413# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414static int resize_idle_installed = FALSE;
4415/*
4416 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4417 * the shell size doesn't exceed the window size, i.e. if the window manager
4418 * ignored our size request. Usually this happens if the window is maximized.
4419 *
4420 * FIXME: It'd be nice if we could find a little more orthodox solution.
4421 * See also the remark below in gui_mch_set_shellsize().
4422 *
4423 * DISABLED: When doing ":set lines+=1" this function would first invoke
4424 * gui_resize_shell() with the old size, then the normal callback would
4425 * report the new size through form_configure_event(). That caused the window
4426 * layout to be messed up.
4427 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 static gboolean
4429force_shell_resize_idle(gpointer data)
4430{
4431 if (gui.mainwin != NULL
4432 && GTK_WIDGET_REALIZED(gui.mainwin)
4433 && GTK_WIDGET_VISIBLE(gui.mainwin))
4434 {
4435 int width;
4436 int height;
4437
4438 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4439
4440 width -= get_menu_tool_width();
4441 height -= get_menu_tool_height();
4442
4443 gui_resize_shell(width, height);
4444 }
4445
4446 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004447 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448}
Bram Moolenaar98921892016-02-23 17:14:37 +01004449# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004450#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451
Bram Moolenaar09736232009-09-23 16:14:49 +00004452/*
4453 * Return TRUE if the main window is maximized.
4454 */
4455 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004456gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004457{
Bram Moolenaar98921892016-02-23 17:14:37 +01004458 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4459 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4460 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004461}
4462
4463/*
4464 * Unmaximize the main window
4465 */
4466 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004467gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004468{
4469 if (gui.mainwin != NULL)
4470 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4471}
Bram Moolenaar09736232009-09-23 16:14:49 +00004472
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004474 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4475 * is set. Compute the new Rows and Columns. This is like resizing the
4476 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004477 */
4478 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004479gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004480{
4481 int w, h;
4482
4483 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4484 w -= get_menu_tool_width();
4485 h -= get_menu_tool_height();
4486 gui_resize_shell(w, h);
4487}
4488
4489/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 * Set the windows size.
4491 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 void
4493gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004494 int min_width UNUSED, int min_height UNUSED,
4495 int base_width UNUSED, int base_height UNUSED,
4496 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497{
Bram Moolenaar30613902019-12-01 22:11:18 +01004498 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 gui_mch_update();
4500
Bram Moolenaar30613902019-12-01 22:11:18 +01004501 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004502 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004503 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004504
Bram Moolenaar30613902019-12-01 22:11:18 +01004505 // With GTK+ 2, changing the size of the form widget doesn't resize
4506 // the window. So let's do it the other way around and resize the
4507 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 width += get_menu_tool_width();
4509 height += get_menu_tool_height();
4510
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004511 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004512 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004513 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004514 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515
Bram Moolenaar98921892016-02-23 17:14:37 +01004516# if !GTK_CHECK_VERSION(3,0,0)
4517# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 if (!resize_idle_installed)
4519 {
4520 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4521 &force_shell_resize_idle, NULL, NULL);
4522 resize_idle_installed = TRUE;
4523 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004524# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004525# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 /*
4527 * Wait until all events are processed to prevent a crash because the
4528 * real size of the drawing area doesn't reflect Vim's internal ideas.
4529 *
4530 * This is a bit of a hack, since Vim is a terminal application with a GUI
4531 * on top, while the GUI expects to be the boss.
4532 */
4533 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534}
4535
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004536 void
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004537gui_gtk_get_screen_geom_of_win(
4538 GtkWidget *wid,
4539 int *screen_x,
4540 int *screen_y,
4541 int *width,
4542 int *height)
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004543{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004544 GdkRectangle geometry;
4545 GdkWindow *win = gtk_widget_get_window(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004546#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004547 GdkDisplay *dpy = gtk_widget_get_display(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004548 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004549
4550 gdk_monitor_get_geometry(monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004551#else
4552 GdkScreen* screen;
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004553 int monitor;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004554
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004555 if (wid != NULL && gtk_widget_has_screen(wid))
4556 screen = gtk_widget_get_screen(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004557 else
4558 screen = gdk_screen_get_default();
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004559 monitor = gdk_screen_get_monitor_at_window(screen, win);
4560 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004561#endif
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004562 *screen_x = geometry.x;
4563 *screen_y = geometry.y;
4564 *width = geometry.width;
4565 *height = geometry.height;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004566}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567
4568/*
4569 * The screen size is used to make sure the initial window doesn't get bigger
4570 * than the screen. This subtracts some room for menubar, toolbar and window
4571 * decorations.
4572 */
4573 void
4574gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4575{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004576 int x, y;
4577
4578 gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h);
Bram Moolenaara859f042016-11-17 19:11:55 +01004579
Bram Moolenaar30613902019-12-01 22:11:18 +01004580 // Subtract 'guiheadroom' from the height to allow some room for the
4581 // window manager (task list and window title bar).
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004582 *screen_h -= p_ghr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583
4584 /*
4585 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4586 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004587 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 * This should be completely changed later.
4589 */
4590 *screen_w -= get_menu_tool_width();
4591 *screen_h -= get_menu_tool_height();
4592}
4593
4594#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004596gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 if (title != NULL && output_conv.vc_type != CONV_NONE)
4599 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600
4601 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4602
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 if (output_conv.vc_type != CONV_NONE)
4604 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605}
Bram Moolenaar30613902019-12-01 22:11:18 +01004606#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607
4608#if defined(FEAT_MENU) || defined(PROTO)
4609 void
4610gui_mch_enable_menu(int showit)
4611{
4612 GtkWidget *widget;
4613
4614# ifdef FEAT_GUI_GNOME
4615 if (using_gnome)
4616 widget = gui.menubar_h;
4617 else
4618# endif
4619 widget = gui.menubar;
4620
Bram Moolenaar30613902019-12-01 22:11:18 +01004621 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004622 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 {
4624 if (showit)
4625 gtk_widget_show(widget);
4626 else
4627 gtk_widget_hide(widget);
4628
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004629 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 }
4631}
Bram Moolenaar30613902019-12-01 22:11:18 +01004632#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
4634#if defined(FEAT_TOOLBAR) || defined(PROTO)
4635 void
4636gui_mch_show_toolbar(int showit)
4637{
4638 GtkWidget *widget;
4639
4640 if (gui.toolbar == NULL)
4641 return;
4642
4643# ifdef FEAT_GUI_GNOME
4644 if (using_gnome)
4645 widget = gui.toolbar_h;
4646 else
4647# endif
4648 widget = gui.toolbar;
4649
4650 if (showit)
4651 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4652
Bram Moolenaar98921892016-02-23 17:14:37 +01004653 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 {
4655 if (showit)
4656 gtk_widget_show(widget);
4657 else
4658 gtk_widget_hide(widget);
4659
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004660 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 }
4662}
Bram Moolenaar30613902019-12-01 22:11:18 +01004663#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665/*
4666 * Check if a given font is a CJK font. This is done in a very crude manner. It
4667 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4668 * font. Consequently, this function cannot be used as a general purpose check
4669 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4670 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4671 */
4672 static int
4673is_cjk_font(PangoFontDescription *font_desc)
4674{
4675 static const char * const cjk_langs[] =
4676 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4677
4678 PangoFont *font;
4679 unsigned i;
4680 int is_cjk = FALSE;
4681
4682 font = pango_context_load_font(gui.text_context, font_desc);
4683
4684 if (font == NULL)
4685 return FALSE;
4686
4687 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4688 {
4689 PangoCoverage *coverage;
4690 gunichar uc;
4691
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004692 // Valgrind reports a leak for pango_language_from_string(), but the
4693 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 coverage = pango_font_get_coverage(
4695 font, pango_language_from_string(cjk_langs[i]));
4696
4697 if (coverage != NULL)
4698 {
4699 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4700 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4701 pango_coverage_unref(coverage);
4702 }
4703 }
4704
4705 g_object_unref(font);
4706
4707 return is_cjk;
4708}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709
Bram Moolenaar231334e2005-07-25 20:46:57 +00004710/*
4711 * Adjust gui.char_height (after 'linespace' was changed).
4712 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004714gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 PangoFontMetrics *metrics;
4717 int ascent;
4718 int descent;
4719
4720 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4721 pango_context_get_language(gui.text_context));
4722 ascent = pango_font_metrics_get_ascent(metrics);
4723 descent = pango_font_metrics_get_descent(metrics);
4724
4725 pango_font_metrics_unref(metrics);
4726
Bram Moolenaar5cd1cb92020-05-31 13:53:04 +02004727 // Round up, but not when the value is very close (e.g. 15.0009).
4728 gui.char_height = (ascent + descent + PANGO_SCALE - 3) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00004729 + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004730 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4732
Bram Moolenaar30613902019-12-01 22:11:18 +01004733 // A not-positive value of char_height may crash Vim. Only happens
4734 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 gui.char_ascent = MAX(gui.char_ascent, 0);
4736 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4737
4738 return OK;
4739}
4740
Bram Moolenaar98921892016-02-23 17:14:37 +01004741#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004742// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004743 static gboolean
4744font_filter(const PangoFontFamily *family,
4745 const PangoFontFace *face UNUSED,
4746 gpointer data UNUSED)
4747{
4748 return pango_font_family_is_monospace((PangoFontFamily *)family);
4749}
4750#endif
4751
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752/*
4753 * Put up a font dialog and return the selected font name in allocated memory.
4754 * "oldval" is the previous value. Return NULL when cancelled.
4755 * This should probably go into gui_gtk.c. Hmm.
4756 * FIXME:
4757 * The GTK2 font selection dialog has no filtering API. So we could either
4758 * a) implement our own (possibly copying the code from somewhere else) or
4759 * b) just live with it.
4760 */
4761 char_u *
4762gui_mch_font_dialog(char_u *oldval)
4763{
4764 GtkWidget *dialog;
4765 int response;
4766 char_u *fontname = NULL;
4767 char_u *oldname;
4768
Bram Moolenaar98921892016-02-23 17:14:37 +01004769#if GTK_CHECK_VERSION(3,2,0)
4770 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4771 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4772 NULL, NULL);
4773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776
4777 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4778 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4779
4780 if (oldval != NULL && oldval[0] != NUL)
4781 {
4782 if (output_conv.vc_type != CONV_NONE)
4783 oldname = string_convert(&output_conv, oldval, NULL);
4784 else
4785 oldname = oldval;
4786
Bram Moolenaar30613902019-12-01 22:11:18 +01004787 // Annoying bug in GTK (or Pango): if the font name does not include a
4788 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4790 {
4791 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4792
4793 if (p != NULL)
4794 {
4795 STRCPY(p + STRLEN(p), " 10");
4796 if (oldname != oldval)
4797 vim_free(oldname);
4798 oldname = p;
4799 }
4800 }
4801
Bram Moolenaar98921892016-02-23 17:14:37 +01004802#if GTK_CHECK_VERSION(3,2,0)
4803 gtk_font_chooser_set_font(
4804 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4805#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 gtk_font_selection_dialog_set_font_name(
4807 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004808#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809
4810 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004811 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004813 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004814#if GTK_CHECK_VERSION(3,2,0)
4815 gtk_font_chooser_set_font(
4816 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4817#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004818 gtk_font_selection_dialog_set_font_name(
4819 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821
4822 response = gtk_dialog_run(GTK_DIALOG(dialog));
4823
4824 if (response == GTK_RESPONSE_OK)
4825 {
4826 char *name;
4827
Bram Moolenaar98921892016-02-23 17:14:37 +01004828#if GTK_CHECK_VERSION(3,2,0)
4829 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4830#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 name = gtk_font_selection_dialog_get_font_name(
4832 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 if (name != NULL)
4835 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004836 char_u *p;
4837
Bram Moolenaar30613902019-12-01 22:11:18 +01004838 // Apparently some font names include a comma, need to escape
4839 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004840 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004842 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004843 {
4844 fontname = string_convert(&input_conv, p, NULL);
4845 vim_free(p);
4846 }
4847 else
4848 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 }
4850 }
4851
4852 if (response != GTK_RESPONSE_NONE)
4853 gtk_widget_destroy(dialog);
4854
4855 return fontname;
4856}
4857
4858/*
4859 * Some monospace fonts don't support a bold weight, and fall back
4860 * silently to the regular weight. But this is no good since our text
4861 * drawing function can emulate bold by overstriking. So let's try
4862 * to detect whether bold weight is actually available and emulate it
4863 * otherwise.
4864 *
4865 * Note that we don't need to check for italic style since Xft can
4866 * emulate italic on its own, provided you have a proper fontconfig
4867 * setup. We wouldn't be able to emulate it in Vim anyway.
4868 */
4869 static void
4870get_styled_font_variants(void)
4871{
4872 PangoFontDescription *bold_font_desc;
4873 PangoFont *plain_font;
4874 PangoFont *bold_font;
4875
4876 gui.font_can_bold = FALSE;
4877
4878 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4879
4880 if (plain_font == NULL)
4881 return;
4882
4883 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4884 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4885
4886 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4887 /*
4888 * The comparison relies on the unique handle nature of a PangoFont*,
4889 * i.e. it's assumed that a different PangoFont* won't refer to the
4890 * same font. Seems to work, and failing here isn't critical anyway.
4891 */
4892 if (bold_font != NULL)
4893 {
4894 gui.font_can_bold = (bold_font != plain_font);
4895 g_object_unref(bold_font);
4896 }
4897
4898 pango_font_description_free(bold_font_desc);
4899 g_object_unref(plain_font);
4900}
4901
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902static PangoEngineShape *default_shape_engine = NULL;
4903
4904/*
4905 * Create a map from ASCII characters in the range [32,126] to glyphs
4906 * of the current font. This is used by gui_gtk2_draw_string() to skip
4907 * the itemize and shaping process for the most common case.
4908 */
4909 static void
4910ascii_glyph_table_init(void)
4911{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004912 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 PangoAttrList *attr_list;
4914 GList *item_list;
4915 int i;
4916
4917 if (gui.ascii_glyphs != NULL)
4918 pango_glyph_string_free(gui.ascii_glyphs);
4919 if (gui.ascii_font != NULL)
4920 g_object_unref(gui.ascii_font);
4921
4922 gui.ascii_glyphs = NULL;
4923 gui.ascii_font = NULL;
4924
Bram Moolenaar30613902019-12-01 22:11:18 +01004925 // For safety, fill in question marks for the control characters.
4926 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004927 for (i = 0; i < 128; ++i)
4928 {
4929 if (i >= 32 && i < 127)
4930 ascii_chars[2 * i] = i;
4931 else
4932 ascii_chars[2 * i] = '?';
4933 ascii_chars[2 * i + 1] = ' ';
4934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935
4936 attr_list = pango_attr_list_new();
4937 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4938 0, sizeof(ascii_chars), attr_list, NULL);
4939
Bram Moolenaar30613902019-12-01 22:11:18 +01004940 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
4942 PangoItem *item;
4943 int width;
4944
4945 item = (PangoItem *)item_list->data;
4946 width = gui.char_width * PANGO_SCALE;
4947
Bram Moolenaar30613902019-12-01 22:11:18 +01004948 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 default_shape_engine = item->analysis.shape_engine;
4950
4951 gui.ascii_font = item->analysis.font;
4952 g_object_ref(gui.ascii_font);
4953
4954 gui.ascii_glyphs = pango_glyph_string_new();
4955
4956 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4957 &item->analysis, gui.ascii_glyphs);
4958
4959 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4960
4961 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4962 {
4963 PangoGlyphGeometry *geom;
4964
4965 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4966 geom->x_offset += MAX(0, width - geom->width) / 2;
4967 geom->width = width;
4968 }
4969 }
4970
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02004971 // TODO: is this type cast OK?
4972 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 g_list_free(item_list);
4974 pango_attr_list_unref(attr_list);
4975}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976
4977/*
4978 * Initialize Vim to use the font or fontset with the given name.
4979 * Return FAIL if the font could not be loaded, OK otherwise.
4980 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004982gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 PangoFontDescription *font_desc;
4985 PangoLayout *layout;
4986 int width;
4987
Bram Moolenaar30613902019-12-01 22:11:18 +01004988 // If font_name is NULL, this means to use the default, which should
4989 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 if (font_name == NULL)
4991 font_name = (char_u *)DEFAULT_FONT;
4992
4993 font_desc = gui_mch_get_font(font_name, FALSE);
4994
4995 if (font_desc == NULL)
4996 return FAIL;
4997
4998 gui_mch_free_font(gui.norm_font);
4999 gui.norm_font = font_desc;
5000
5001 pango_context_set_font_description(gui.text_context, font_desc);
5002
5003 layout = pango_layout_new(gui.text_context);
5004 pango_layout_set_text(layout, "MW", 2);
5005 pango_layout_get_size(layout, &width, NULL);
5006 /*
5007 * Set char_width to half the width obtained from pango_layout_get_size()
5008 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5009 * Pango to use the same width for both non-CJK characters (e.g. Latin
5010 * letters and numbers) and CJK characters. This results in 's p a c e d
5011 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5012 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5013 * width for CJK fonts.
5014 *
5015 * For related bugs, see:
5016 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5017 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5018 *
5019 * With this, for all four of the following cases, Vim works fine:
5020 * guifont=CJK_fixed_width_font
5021 * guifont=Non_CJK_fixed_font
5022 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5023 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5024 */
5025 if (is_cjk_font(gui.norm_font))
5026 {
5027 int cjk_width;
5028
Bram Moolenaar30613902019-12-01 22:11:18 +01005029 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5031 pango_layout_get_size(layout, &cjk_width, NULL);
5032
Bram Moolenaar30613902019-12-01 22:11:18 +01005033 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 width /= 2;
5035 }
5036 g_object_unref(layout);
5037
5038 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5039
Bram Moolenaar30613902019-12-01 22:11:18 +01005040 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 if (gui.char_width <= 0)
5042 gui.char_width = 8;
5043
Bram Moolenaar231334e2005-07-25 20:46:57 +00005044 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045
Bram Moolenaar30613902019-12-01 22:11:18 +01005046 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 hl_set_font_name(font_name);
5048
5049 get_styled_font_variants();
5050 ascii_glyph_table_init();
5051
Bram Moolenaar30613902019-12-01 22:11:18 +01005052 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 if (gui.wide_font != NULL
5054 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5055 {
5056 pango_font_description_free(gui.wide_font);
5057 gui.wide_font = NULL;
5058 }
5059
Bram Moolenaare161c792009-11-03 17:13:59 +00005060 if (gui_mch_maximized())
5061 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005062 // Update lines and columns in accordance with the new font, keep the
5063 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005064 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005065 }
5066 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005067 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005068 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005069 update_window_manager_hints(0, 0);
5070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071
5072 return OK;
5073}
5074
5075/*
5076 * Get a reference to the font "name".
5077 * Return zero for failure.
5078 */
5079 GuiFont
5080gui_mch_get_font(char_u *name, int report_error)
5081{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083
Bram Moolenaar30613902019-12-01 22:11:18 +01005084 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 if (!gui.in_use || name == NULL)
5086 return NULL;
5087
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 if (output_conv.vc_type != CONV_NONE)
5089 {
5090 char_u *buf;
5091
5092 buf = string_convert(&output_conv, name, NULL);
5093 if (buf != NULL)
5094 {
5095 font = pango_font_description_from_string((const char *)buf);
5096 vim_free(buf);
5097 }
5098 else
5099 font = NULL;
5100 }
5101 else
5102 font = pango_font_description_from_string((const char *)name);
5103
5104 if (font != NULL)
5105 {
5106 PangoFont *real_font;
5107
Bram Moolenaar30613902019-12-01 22:11:18 +01005108 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (pango_font_description_get_size(font) <= 0)
5110 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5111
5112 real_font = pango_context_load_font(gui.text_context, font);
5113
5114 if (real_font == NULL)
5115 {
5116 pango_font_description_free(font);
5117 font = NULL;
5118 }
5119 else
5120 g_object_unref(real_font);
5121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122
5123 if (font == NULL)
5124 {
5125 if (report_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005126 semsg(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 return NULL;
5128 }
5129
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 return font;
5131}
5132
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005133#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005134/*
5135 * Return the name of font "font" in allocated memory.
5136 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005137 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005138gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005139{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005140 if (font != NOFONT)
5141 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005142 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005143
Bram Moolenaar89d40322006-08-29 15:30:07 +00005144 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005145 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005146 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005147
Bram Moolenaar89d40322006-08-29 15:30:07 +00005148 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005149 return s;
5150 }
5151 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005152 return NULL;
5153}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005154#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005155
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156/*
5157 * If a font is not going to be used, free its structure.
5158 */
5159 void
5160gui_mch_free_font(GuiFont font)
5161{
5162 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164}
5165
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005167 * Return the Pixel value (color) for the given color name.
5168 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 * Return INVALCOLOR for error.
5170 */
5171 guicolor_T
5172gui_mch_get_color(char_u *name)
5173{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005174 guicolor_T color = INVALCOLOR;
5175
Bram Moolenaar30613902019-12-01 22:11:18 +01005176 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005177 return color;
5178
5179 if (name != NULL)
5180 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181
Bram Moolenaar98921892016-02-23 17:14:37 +01005182#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005183 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005184#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005185 if (color == INVALCOLOR)
5186 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005188 return gui_mch_get_rgb_color(
5189 (color & 0xff0000) >> 16,
5190 (color & 0xff00) >> 8,
5191 color & 0xff);
5192#endif
5193}
5194
5195/*
5196 * Return the Pixel value (color) for the given RGB values.
5197 * Return INVALCOLOR for error.
5198 */
5199 guicolor_T
5200gui_mch_get_rgb_color(int r, int g, int b)
5201{
5202#if GTK_CHECK_VERSION(3,0,0)
5203 return gui_get_rgb_color_cmn(r, g, b);
5204#else
5205 GdkColor gcolor;
5206 int ret;
5207
5208 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5209 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5210 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211
Bram Moolenaar36edf062016-07-21 22:10:12 +02005212 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5213 &gcolor, FALSE, TRUE);
5214
5215 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5216#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217}
5218
5219/*
5220 * Set the current text foreground color.
5221 */
5222 void
5223gui_mch_set_fg_color(guicolor_T color)
5224{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005225#if GTK_CHECK_VERSION(3,0,0)
5226 *gui.fgcolor = color_to_rgba(color);
5227#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005229#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230}
5231
5232/*
5233 * Set the current text background color.
5234 */
5235 void
5236gui_mch_set_bg_color(guicolor_T color)
5237{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005238#if GTK_CHECK_VERSION(3,0,0)
5239 *gui.bgcolor = color_to_rgba(color);
5240#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005242#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243}
5244
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005245/*
5246 * Set the current text special color.
5247 */
5248 void
5249gui_mch_set_sp_color(guicolor_T color)
5250{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005251#if GTK_CHECK_VERSION(3,0,0)
5252 *gui.spcolor = color_to_rgba(color);
5253#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005254 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005255#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005256}
5257
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258/*
5259 * Function-like convenience macro for the sake of efficiency.
5260 */
5261#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5262 G_STMT_START{ \
5263 PangoAttribute *tmp_attr_; \
5264 tmp_attr_ = (Attribute); \
5265 tmp_attr_->start_index = (Start); \
5266 tmp_attr_->end_index = (End); \
5267 pango_attr_list_insert((AttrList), tmp_attr_); \
5268 }G_STMT_END
5269
5270 static void
5271apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5272{
5273 char_u *start = NULL;
5274 char_u *p;
5275 int uc;
5276
5277 for (p = s; p < s + len; p += utf_byte2len(*p))
5278 {
5279 uc = utf_ptr2char(p);
5280
5281 if (start == NULL)
5282 {
5283 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5284 start = p;
5285 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005286 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5288 {
5289 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5290 attr_list, start - s, p - s);
5291 start = NULL;
5292 }
5293 }
5294
5295 if (start != NULL)
5296 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5297 attr_list, start - s, len);
5298}
5299
5300 static int
5301count_cluster_cells(char_u *s, PangoItem *item,
5302 PangoGlyphString* glyphs, int i,
5303 int *cluster_width,
5304 int *last_glyph_rbearing)
5305{
5306 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005307 int next; // glyph start index of next cluster
5308 int start, end; // string segment of current cluster
5309 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 int uc;
5311 int cellcount = 0;
5312
5313 width = glyphs->glyphs[i].geometry.width;
5314
5315 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5316 {
5317 if (glyphs->glyphs[next].attr.is_cluster_start)
5318 break;
5319 else if (glyphs->glyphs[next].geometry.width > width)
5320 width = glyphs->glyphs[next].geometry.width;
5321 }
5322
5323 start = item->offset + glyphs->log_clusters[i];
5324 end = item->offset + ((next < glyphs->num_glyphs) ?
5325 glyphs->log_clusters[next] : item->length);
5326
5327 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5328 {
5329 uc = utf_ptr2char(p);
5330 if (uc < 0x80)
5331 ++cellcount;
5332 else if (!utf_iscomposing(uc))
5333 cellcount += utf_char2cells(uc);
5334 }
5335
5336 if (last_glyph_rbearing != NULL
5337 && cellcount > 0 && next == glyphs->num_glyphs)
5338 {
5339 PangoRectangle ink_rect;
5340 /*
5341 * If a certain combining mark had to be taken from a non-monospace
5342 * font, we have to compensate manually by adapting x_offset according
5343 * to the ink extents of the previous glyph.
5344 */
5345 pango_font_get_glyph_extents(item->analysis.font,
5346 glyphs->glyphs[i].glyph,
5347 &ink_rect, NULL);
5348
5349 if (PANGO_RBEARING(ink_rect) > 0)
5350 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5351 }
5352
5353 if (cellcount > 0)
5354 *cluster_width = width;
5355
5356 return cellcount;
5357}
5358
5359/*
5360 * If there are only combining characters in the cluster, we cannot just
5361 * change the width of the previous glyph since there is none. Therefore
5362 * some guesswork is needed.
5363 *
5364 * If ink_rect.x is negative Pango apparently has taken care of the composing
5365 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5366 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005367 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 *
5369 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5370 * the position of the previous glyph. Apparently this happens only with old
5371 * X fonts which don't provide the special combining information needed by
5372 * Pango.
5373 */
5374 static void
5375setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5376 int last_cellcount, int last_cluster_width,
5377 int last_glyph_rbearing)
5378{
5379 PangoRectangle ink_rect;
5380 PangoRectangle logical_rect;
5381 int width;
5382
5383 width = last_cellcount * gui.char_width * PANGO_SCALE;
5384 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5385 glyph->geometry.width = 0;
5386
5387 pango_font_get_glyph_extents(item->analysis.font,
5388 glyph->glyph,
5389 &ink_rect, &logical_rect);
5390 if (ink_rect.x < 0)
5391 {
5392 glyph->geometry.x_offset += last_glyph_rbearing;
5393 glyph->geometry.y_offset = logical_rect.height
5394 - (gui.char_height - p_linespace) * PANGO_SCALE;
5395 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005396 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005397 // If the accent width is smaller than the cluster width, position it
5398 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005399 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400}
5401
Bram Moolenaar98921892016-02-23 17:14:37 +01005402#if GTK_CHECK_VERSION(3,0,0)
5403 static void
5404draw_glyph_string(int row, int col, int num_cells, int flags,
5405 PangoFont *font, PangoGlyphString *glyphs,
5406 cairo_t *cr)
5407#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 static void
5409draw_glyph_string(int row, int col, int num_cells, int flags,
5410 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412{
5413 if (!(flags & DRAW_TRANSP))
5414 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005415#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005416 cairo_set_source_rgba(cr,
5417 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5418 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005419 cairo_rectangle(cr,
5420 FILL_X(col), FILL_Y(row),
5421 num_cells * gui.char_width, gui.char_height);
5422 cairo_fill(cr);
5423#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5425
5426 gdk_draw_rectangle(gui.drawarea->window,
5427 gui.text_gc,
5428 TRUE,
5429 FILL_X(col),
5430 FILL_Y(row),
5431 num_cells * gui.char_width,
5432 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 }
5435
Bram Moolenaar98921892016-02-23 17:14:37 +01005436#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005437 cairo_set_source_rgba(cr,
5438 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5439 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005440 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5441 pango_cairo_show_glyph_string(cr, font, glyphs);
5442#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5444
5445 gdk_draw_glyphs(gui.drawarea->window,
5446 gui.text_gc,
5447 font,
5448 TEXT_X(col),
5449 TEXT_Y(row),
5450 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452
Bram Moolenaar30613902019-12-01 22:11:18 +01005453 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005455#if GTK_CHECK_VERSION(3,0,0)
5456 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005457 cairo_set_source_rgba(cr,
5458 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5459 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005460 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5461 pango_cairo_show_glyph_string(cr, font, glyphs);
5462 }
5463#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 gdk_draw_glyphs(gui.drawarea->window,
5465 gui.text_gc,
5466 font,
5467 TEXT_X(col) + 1,
5468 TEXT_Y(row),
5469 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005470#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471}
5472
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005473/*
5474 * Draw underline and undercurl at the bottom of the character cell.
5475 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005476#if GTK_CHECK_VERSION(3,0,0)
5477 static void
5478draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5479#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005480 static void
5481draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005482#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005483{
5484 int i;
5485 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005486 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005487 int y = FILL_Y(row + 1) - 1;
5488
Bram Moolenaar30613902019-12-01 22:11:18 +01005489 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005490 if (flags & DRAW_UNDERC)
5491 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005492#if GTK_CHECK_VERSION(3,0,0)
5493 cairo_set_line_width(cr, 1.0);
5494 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005495 cairo_set_source_rgba(cr,
5496 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5497 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005498 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5499 {
5500 offset = val[i % 8];
5501 cairo_line_to(cr, i, y - offset + 0.5);
5502 }
5503 cairo_stroke(cr);
5504#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005505 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5506 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5507 {
5508 offset = val[i % 8];
5509 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5510 }
5511 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005512#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005513 }
5514
Bram Moolenaar30613902019-12-01 22:11:18 +01005515 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005516 if (flags & DRAW_STRIKE)
5517 {
5518#if GTK_CHECK_VERSION(3,0,0)
5519 cairo_set_line_width(cr, 1.0);
5520 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5521 cairo_set_source_rgba(cr,
5522 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5523 gui.spcolor->alpha);
5524 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5525 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5526 cairo_stroke(cr);
5527#else
5528 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5529 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5530 FILL_X(col), y + 1 - gui.char_height/2,
5531 FILL_X(col + cells), y + 1 - gui.char_height/2);
5532 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5533#endif
5534 }
5535
Bram Moolenaar30613902019-12-01 22:11:18 +01005536 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005537 if (flags & DRAW_UNDERL)
5538 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005539 // When p_linespace is 0, overwrite the bottom row of pixels.
5540 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005541 if (p_linespace > 1)
5542 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005543#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005544 cairo_set_line_width(cr, 1.0);
5545 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5546 cairo_set_source_rgba(cr,
5547 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5548 gui.fgcolor->alpha);
5549 cairo_move_to(cr, FILL_X(col), y + 0.5);
5550 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5551 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005552#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005553 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5554 FILL_X(col), y,
5555 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005556#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005557 }
5558}
5559
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 int
5561gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5562{
Bram Moolenaar30613902019-12-01 22:11:18 +01005563 GdkRectangle area; // area for clip mask
5564 PangoGlyphString *glyphs; // glyphs of current item
5565 int column_offset = 0; // column offset in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 int i;
Bram Moolenaar30613902019-12-01 22:11:18 +01005567 char_u *conv_buf = NULL; // result of UTF-8 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 char_u *new_conv_buf;
5569 int convlen;
5570 char_u *sp, *bp;
5571 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005572#if GTK_CHECK_VERSION(3,0,0)
5573 cairo_t *cr;
5574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575
Bram Moolenaar98921892016-02-23 17:14:37 +01005576 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 return len;
5578
5579 if (output_conv.vc_type != CONV_NONE)
5580 {
5581 /*
5582 * Convert characters from 'encoding' to 'termencoding', which is set
5583 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5584 * prohibits changing this to something else than UTF-8 if the GUI is
5585 * in use.
5586 */
5587 convlen = len;
5588 conv_buf = string_convert(&output_conv, s, &convlen);
5589 g_return_val_if_fail(conv_buf != NULL, len);
5590
Bram Moolenaar30613902019-12-01 22:11:18 +01005591 // Correct for differences in char width: some chars are
5592 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5593 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5595 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005596 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5598 {
5599 new_conv_buf = alloc(convlen + 2);
5600 if (new_conv_buf == NULL)
5601 return len;
5602 plen += bp - conv_buf;
5603 mch_memmove(new_conv_buf, conv_buf, plen);
5604 new_conv_buf[plen] = ' ';
5605 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5606 convlen - plen + 1);
5607 vim_free(conv_buf);
5608 conv_buf = new_conv_buf;
5609 ++convlen;
5610 bp = conv_buf + plen;
5611 plen = 1;
5612 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005613 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 bp += plen;
5615 }
5616 s = conv_buf;
5617 len = convlen;
5618 }
5619
5620 /*
5621 * Restrict all drawing to the current screen line in order to prevent
5622 * fuzzy font lookups from messing up the screen.
5623 */
5624 area.x = gui.border_offset;
5625 area.y = FILL_Y(row);
5626 area.width = gui.num_cols * gui.char_width;
5627 area.height = gui.char_height;
5628
Bram Moolenaar98921892016-02-23 17:14:37 +01005629#if GTK_CHECK_VERSION(3,0,0)
5630 cr = cairo_create(gui.surface);
5631 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5632 cairo_clip(cr);
5633#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5635 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637
5638 glyphs = pango_glyph_string_new();
5639
5640 /*
5641 * Optimization hack: If possible, skip the itemize and shaping process
5642 * for pure ASCII strings. This optimization is particularly effective
5643 * because Vim draws space characters to clear parts of the screen.
5644 */
5645 if (!(flags & DRAW_ITALIC)
5646 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5647 && gui.ascii_glyphs != NULL)
5648 {
5649 char_u *p;
5650
5651 for (p = s; p < s + len; ++p)
5652 if (*p & 0x80)
5653 goto not_ascii;
5654
5655 pango_glyph_string_set_size(glyphs, len);
5656
5657 for (i = 0; i < len; ++i)
5658 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005659 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 glyphs->log_clusters[i] = i;
5661 }
5662
Bram Moolenaar98921892016-02-23 17:14:37 +01005663#if GTK_CHECK_VERSION(3,0,0)
5664 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5665#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668
5669 column_offset = len;
5670 }
5671 else
5672not_ascii:
5673 {
5674 PangoAttrList *attr_list;
5675 GList *item_list;
5676 int cluster_width;
5677 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005678 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679
Bram Moolenaar30613902019-12-01 22:11:18 +01005680 // Safety check: pango crashes when invoked with invalid utf-8
5681 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005682 if (!utf_valid_string(s, s + len))
5683 {
5684 column_offset = len;
5685 goto skipitall;
5686 }
5687
Bram Moolenaar30613902019-12-01 22:11:18 +01005688 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 cluster_width = PANGO_SCALE * gui.char_width;
5690
Bram Moolenaar30613902019-12-01 22:11:18 +01005691 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5693
5694 attr_list = pango_attr_list_new();
5695
Bram Moolenaar30613902019-12-01 22:11:18 +01005696 // If 'guifontwide' is set then use that for double-width characters.
5697 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 if (gui.wide_font != NULL)
5699 apply_wide_font_attr(s, len, attr_list);
5700
5701 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5702 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5703 attr_list, 0, len);
5704 if (flags & DRAW_ITALIC)
5705 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5706 attr_list, 0, len);
5707 /*
5708 * Break the text into segments with consistent directional level
5709 * and shaping engine. Pure Latin text needs only a single segment,
5710 * so there's no need to worry about the loop's efficiency. Better
5711 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5712 */
5713 item_list = pango_itemize(gui.text_context,
5714 (const char *)s, 0, len, attr_list, NULL);
5715
5716 while (item_list != NULL)
5717 {
5718 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005719 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720
5721 item = (PangoItem *)item_list->data;
5722 item_list = g_list_delete_link(item_list, item_list);
5723 /*
5724 * Increment the bidirectional embedding level by 1 if it is not
5725 * even. An odd number means the output will be RTL, but we don't
5726 * want that since Vim handles right-to-left text on its own. It
5727 * would probably be sufficient to just set level = 0, but you can
5728 * never know :)
5729 *
5730 * Unfortunately we can't take advantage of Pango's ability to
5731 * render both LTR and RTL at the same time. In order to support
5732 * that, Vim's main screen engine would have to make use of Pango
5733 * functionality.
5734 */
5735 item->analysis.level = (item->analysis.level + 1) & (~1U);
5736
Bram Moolenaar30613902019-12-01 22:11:18 +01005737 // HACK: Overrule the shape engine, we don't want shaping to be
5738 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 item->analysis.shape_engine = default_shape_engine;
5740
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005741#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005742 pango_shape_full((const char *)s + item->offset, item->length,
5743 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005744#else
5745 pango_shape((const char *)s + item->offset, item->length,
5746 &item->analysis, glyphs);
5747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 /*
5749 * Fixed-width hack: iterate over the array and assign a fixed
5750 * width to each glyph, thus overriding the choice made by the
5751 * shaping engine. We use utf_char2cells() to determine the
5752 * number of cells needed.
5753 *
5754 * Also perform all kind of dark magic to get composing
5755 * characters right (and pretty too of course).
5756 */
5757 for (i = 0; i < glyphs->num_glyphs; ++i)
5758 {
5759 PangoGlyphInfo *glyph;
5760
5761 glyph = &glyphs->glyphs[i];
5762
5763 if (glyph->attr.is_cluster_start)
5764 {
5765 int cellcount;
5766
5767 cellcount = count_cluster_cells(
5768 s, item, glyphs, i, &cluster_width,
5769 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5770
5771 if (cellcount > 0)
5772 {
5773 int width;
5774
5775 width = cellcount * gui.char_width * PANGO_SCALE;
5776 glyph->geometry.x_offset +=
5777 MAX(0, width - cluster_width) / 2;
5778 glyph->geometry.width = width;
5779 }
5780 else
5781 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005782 // If there are only combining characters in the
5783 // cluster, we cannot just change the width of the
5784 // previous glyph since there is none. Therefore
5785 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 setup_zero_width_cluster(item, glyph, cells,
5787 cluster_width,
5788 last_glyph_rbearing);
5789 }
5790
5791 item_cells += cellcount;
5792 cells = cellcount;
5793 }
5794 else if (i > 0)
5795 {
5796 int width;
5797
Bram Moolenaar30613902019-12-01 22:11:18 +01005798 // There is a previous glyph, so we deal with combining
5799 // characters the canonical way.
5800 // In some circumstances Pango uses a positive x_offset,
5801 // then use the width of the previous glyph for this one
5802 // and set the previous width to zero.
5803 // Otherwise we get a negative x_offset, Pango has already
5804 // positioned the combining char, keep the widths as they
5805 // are.
5806 // For both adjust the x_offset to position the glyph in
5807 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005808 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005809 {
5810 glyphs->glyphs[i].geometry.width =
5811 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005812 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 width = cells * gui.char_width * PANGO_SCALE;
5815 glyph->geometry.x_offset +=
5816 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005818 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 {
5820 glyph->geometry.width = 0;
5821 }
5822 }
5823
Bram Moolenaar30613902019-12-01 22:11:18 +01005824 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01005825#if GTK_CHECK_VERSION(3,0,0)
5826 draw_glyph_string(row, col + column_offset, item_cells,
5827 flags, item->analysis.font, glyphs,
5828 cr);
5829#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 draw_glyph_string(row, col + column_offset, item_cells,
5831 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005832#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833
5834 pango_item_free(item);
5835
5836 column_offset += item_cells;
5837 }
5838
5839 pango_attr_list_unref(attr_list);
5840 }
5841
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005842skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01005843 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01005844#if GTK_CHECK_VERSION(3,0,0)
5845 draw_under(flags, row, col, column_offset, cr);
5846#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005847 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849
5850 pango_glyph_string_free(glyphs);
5851 vim_free(conv_buf);
5852
Bram Moolenaar98921892016-02-23 17:14:37 +01005853#if GTK_CHECK_VERSION(3,0,0)
5854 cairo_destroy(cr);
5855 if (!gui.by_signal)
5856 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
5857 &area, FALSE);
5858#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861
5862 return column_offset;
5863}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864
5865/*
5866 * Return OK if the key with the termcap name "name" is supported.
5867 */
5868 int
5869gui_mch_haskey(char_u *name)
5870{
5871 int i;
5872
5873 for (i = 0; special_keys[i].key_sym != 0; i++)
5874 if (name[0] == special_keys[i].code0
5875 && name[1] == special_keys[i].code1)
5876 return OK;
5877 return FAIL;
5878}
5879
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005880#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881/*
5882 * Return the text window-id and display. Only required for X-based GUI's
5883 */
5884 int
5885gui_get_x11_windis(Window *win, Display **dis)
5886{
Bram Moolenaar98921892016-02-23 17:14:37 +01005887 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005889 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5890 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 return OK;
5892 }
5893
5894 *dis = NULL;
5895 *win = 0;
5896 return FAIL;
5897}
5898#endif
5899
5900#if defined(FEAT_CLIENTSERVER) \
5901 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5902
5903 Display *
5904gui_mch_get_display(void)
5905{
Bram Moolenaar98921892016-02-23 17:14:37 +01005906 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5907 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 else
5909 return NULL;
5910}
5911#endif
5912
5913 void
5914gui_mch_beep(void)
5915{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 GdkDisplay *display;
5917
Bram Moolenaar98921892016-02-23 17:14:37 +01005918 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 display = gtk_widget_get_display(gui.mainwin);
5920 else
5921 display = gdk_display_get_default();
5922
5923 if (display != NULL)
5924 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925}
5926
5927 void
5928gui_mch_flash(int msec)
5929{
Bram Moolenaar98921892016-02-23 17:14:37 +01005930#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01005931 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01005932 (void)msec;
5933#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 GdkGCValues values;
5935 GdkGC *invert_gc;
5936
5937 if (gui.drawarea->window == NULL)
5938 return;
5939
5940 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5941 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5942 values.function = GDK_XOR;
5943 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
5944 &values,
5945 GDK_GC_FOREGROUND |
5946 GDK_GC_BACKGROUND |
5947 GDK_GC_FUNCTION);
5948 gdk_gc_set_exposures(invert_gc,
5949 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
5950 /*
5951 * Do a visual beep by changing back and forth in some undetermined way,
5952 * the foreground and background colors. This is due to the fact that
5953 * there can't be really any prediction about the effects of XOR on
5954 * arbitrary X11 servers. However this seems to be enough for what we
5955 * intend it to do.
5956 */
5957 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
5958 TRUE,
5959 0, 0,
5960 FILL_X((int)Columns) + gui.border_offset,
5961 FILL_Y((int)Rows) + gui.border_offset);
5962
5963 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01005964 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965
5966 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
5967 TRUE,
5968 0, 0,
5969 FILL_X((int)Columns) + gui.border_offset,
5970 FILL_Y((int)Rows) + gui.border_offset);
5971
5972 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01005973#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974}
5975
5976/*
5977 * Invert a rectangle from row r, column c, for nr rows and nc columns.
5978 */
5979 void
5980gui_mch_invert_rectangle(int r, int c, int nr, int nc)
5981{
Bram Moolenaar98921892016-02-23 17:14:37 +01005982#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01005983 const GdkRectangle rect = {
5984 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
5985 };
5986 cairo_t * const cr = cairo_create(gui.surface);
5987
Bram Moolenaar36edf062016-07-21 22:10:12 +02005988 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01005989# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
5990 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
5991# else
Bram Moolenaar30613902019-12-01 22:11:18 +01005992 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01005993# endif
5994 gdk_cairo_rectangle(cr, &rect);
5995 cairo_fill(cr);
5996
5997 cairo_destroy(cr);
5998
5999 if (!gui.by_signal)
6000 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6001 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006002#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 GdkGCValues values;
6004 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005
6006 if (gui.drawarea->window == NULL)
6007 return;
6008
Bram Moolenaar89d40322006-08-29 15:30:07 +00006009 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6010 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 values.function = GDK_XOR;
6012 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6013 &values,
6014 GDK_GC_FOREGROUND |
6015 GDK_GC_BACKGROUND |
6016 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006017 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6018 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6020 TRUE,
6021 FILL_X(c), FILL_Y(r),
6022 (nc) * gui.char_width, (nr) * gui.char_height);
6023 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025}
6026
6027/*
6028 * Iconify the GUI window.
6029 */
6030 void
6031gui_mch_iconify(void)
6032{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034}
6035
6036#if defined(FEAT_EVAL) || defined(PROTO)
6037/*
6038 * Bring the Vim window to the foreground.
6039 */
6040 void
6041gui_mch_set_foreground(void)
6042{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044}
6045#endif
6046
6047/*
6048 * Draw a cursor without focus.
6049 */
6050 void
6051gui_mch_draw_hollow_cursor(guicolor_T color)
6052{
6053 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006054#if GTK_CHECK_VERSION(3,0,0)
6055 cairo_t *cr;
6056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057
Bram Moolenaar98921892016-02-23 17:14:37 +01006058 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 return;
6060
Bram Moolenaar98921892016-02-23 17:14:37 +01006061#if GTK_CHECK_VERSION(3,0,0)
6062 cr = cairo_create(gui.surface);
6063#endif
6064
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 gui_mch_set_fg_color(color);
6066
Bram Moolenaar98921892016-02-23 17:14:37 +01006067#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006068 cairo_set_source_rgba(cr,
6069 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6070 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006071#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 if (mb_lefthalve(gui.row, gui.col))
6075 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006076#if GTK_CHECK_VERSION(3,0,0)
6077 cairo_set_line_width(cr, 1.0);
6078 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6079 cairo_rectangle(cr,
6080 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6081 i * gui.char_width - 1, gui.char_height - 1);
6082 cairo_stroke(cr);
6083 cairo_destroy(cr);
6084#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6086 FALSE,
6087 FILL_X(gui.col), FILL_Y(gui.row),
6088 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006089#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090}
6091
6092/*
6093 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6094 * color "color".
6095 */
6096 void
6097gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6098{
Bram Moolenaar98921892016-02-23 17:14:37 +01006099 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 return;
6101
6102 gui_mch_set_fg_color(color);
6103
Bram Moolenaar98921892016-02-23 17:14:37 +01006104#if GTK_CHECK_VERSION(3,0,0)
6105 {
6106 cairo_t *cr;
6107
6108 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006109 cairo_set_source_rgba(cr,
6110 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6111 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006112 cairo_rectangle(cr,
6113# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006114 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006115 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6116# endif
6117 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6118 w, h);
6119 cairo_fill(cr);
6120 cairo_destroy(cr);
6121 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006122#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6124 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6125 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006126# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006127 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006129# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 FILL_X(gui.col),
6131 FILL_Y(gui.row) + gui.char_height - h,
6132 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006133#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134}
6135
6136
6137/*
6138 * Catch up with any queued X11 events. This may put keyboard input into the
6139 * input buffer, call resize call-backs, trigger timers etc. If there is
6140 * nothing in the X11 event queue (& no timers pending), then we return
6141 * immediately.
6142 */
6143 void
6144gui_mch_update(void)
6145{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006146 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6147 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148}
6149
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006150 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151input_timer_cb(gpointer data)
6152{
6153 int *timed_out = (int *) data;
6154
Bram Moolenaar30613902019-12-01 22:11:18 +01006155 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 *timed_out = TRUE;
6157
Bram Moolenaar30613902019-12-01 22:11:18 +01006158 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159}
6160
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006161#ifdef FEAT_JOB_CHANNEL
6162 static timeout_cb_type
6163channel_poll_cb(gpointer data UNUSED)
6164{
Bram Moolenaar30613902019-12-01 22:11:18 +01006165 // Using an event handler for a channel that may be disconnected does
6166 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006167 channel_handle_events(TRUE);
6168 parse_queued_messages();
6169
Bram Moolenaar30613902019-12-01 22:11:18 +01006170 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006171}
6172#endif
6173
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174/*
6175 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6176 * from the keyboard.
6177 * wtime == -1 Wait forever.
6178 * wtime == 0 This should never happen.
6179 * wtime > 0 Wait wtime milliseconds for a character.
6180 * Returns OK if a character was found to be available within the given time,
6181 * or FAIL otherwise.
6182 */
6183 int
6184gui_mch_wait_for_chars(long wtime)
6185{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006186 int focus;
6187 guint timer;
6188 static int timed_out;
6189 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006190#ifdef FEAT_JOB_CHANNEL
6191 guint channel_timer = 0;
6192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193
6194 timed_out = FALSE;
6195
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006196 // This timeout makes sure that we will return if no characters arrived in
6197 // time. If "wtime" is zero just use one.
6198 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006199 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006200 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 else
6202 timer = 0;
6203
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006204#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006205 // If there is a channel with the keep_open flag we need to poll for input
6206 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006207 if (channel_any_keep_open())
6208 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6209#endif
6210
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 focus = gui.in_focus;
6212
6213 do
6214 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006215 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 if (gui.in_focus != focus)
6217 {
6218 if (gui.in_focus)
6219 gui_mch_start_blink();
6220 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006221 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 focus = gui.in_focus;
6223 }
6224
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006225#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006226# ifdef FEAT_TIMERS
6227 did_add_timer = FALSE;
6228# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006229 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006230# ifdef FEAT_TIMERS
6231 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006232 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006233 goto theend;
6234# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006235#endif
6236
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237 /*
6238 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006239 * Skip this if input is available anyway (can happen in rare
6240 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006242 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006243 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244
Bram Moolenaar30613902019-12-01 22:11:18 +01006245 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 if (input_available())
6247 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006248 retval = OK;
6249 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 }
6251 } while (wtime < 0 || !timed_out);
6252
6253 /*
6254 * Flush all eventually pending (drawing) events.
6255 */
6256 gui_mch_update();
6257
Bram Moolenaar4231da42016-06-02 14:30:04 +02006258theend:
6259 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006260 timeout_remove(timer);
6261#ifdef FEAT_JOB_CHANNEL
6262 if (channel_timer != 0)
6263 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006264#endif
6265
6266 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267}
6268
6269
Bram Moolenaar30613902019-12-01 22:11:18 +01006270/////////////////////////////////////////////////////////////////////////////
6271// Output drawing routines.
6272//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273
6274
Bram Moolenaar30613902019-12-01 22:11:18 +01006275// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 void
6277gui_mch_flush(void)
6278{
Bram Moolenaar98921892016-02-23 17:14:37 +01006279 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006280#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006281 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006282#else
6283 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6284#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285}
6286
6287/*
6288 * Clear a rectangular region of the screen from text pos (row1, col1) to
6289 * (row2, col2) inclusive.
6290 */
6291 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006292gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006294
6295 int col1 = check_col(col1arg);
6296 int col2 = check_col(col2arg);
6297 int row1 = check_row(row1arg);
6298 int row2 = check_row(row2arg);
6299
Bram Moolenaar98921892016-02-23 17:14:37 +01006300#if GTK_CHECK_VERSION(3,0,0)
6301 if (gtk_widget_get_window(gui.drawarea) == NULL)
6302 return;
6303#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 GdkColor color;
6305
6306 if (gui.drawarea->window == NULL)
6307 return;
6308
6309 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006310#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311
Bram Moolenaar98921892016-02-23 17:14:37 +01006312#if GTK_CHECK_VERSION(3,0,0)
6313 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006314 // Add one pixel to the far right column in case a double-stroked
6315 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006316 const GdkRectangle rect = {
6317 FILL_X(col1), FILL_Y(row1),
6318 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6319 (row2 - row1 + 1) * gui.char_height
6320 };
6321 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6322 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006323# if GTK_CHECK_VERSION(3,22,2)
6324 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6325# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006326 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6327 if (pat != NULL)
6328 cairo_set_source(cr, pat);
6329 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006330 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006331# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006332 gdk_cairo_rectangle(cr, &rect);
6333 cairo_fill(cr);
6334 cairo_destroy(cr);
6335
6336 if (!gui.by_signal)
6337 gdk_window_invalidate_rect(win, &rect, FALSE);
6338 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006339#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 gdk_gc_set_foreground(gui.text_gc, &color);
6341
Bram Moolenaar30613902019-12-01 22:11:18 +01006342 // Clear one extra pixel at the far right, for when bold characters have
6343 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6345 FILL_X(col1), FILL_Y(row1),
6346 (col2 - col1 + 1) * gui.char_width
6347 + (col2 == Columns - 1),
6348 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006349#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350}
6351
Bram Moolenaar98921892016-02-23 17:14:37 +01006352#if GTK_CHECK_VERSION(3,0,0)
6353 static void
6354gui_gtk_window_clear(GdkWindow *win)
6355{
6356 const GdkRectangle rect = {
6357 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6358 };
6359 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006360# if GTK_CHECK_VERSION(3,22,2)
6361 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6362# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006363 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6364 if (pat != NULL)
6365 cairo_set_source(cr, pat);
6366 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006367 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006368# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006369 gdk_cairo_rectangle(cr, &rect);
6370 cairo_fill(cr);
6371 cairo_destroy(cr);
6372
6373 if (!gui.by_signal)
6374 gdk_window_invalidate_rect(win, &rect, FALSE);
6375}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006376#else
6377# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006378#endif
6379
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380 void
6381gui_mch_clear_all(void)
6382{
Bram Moolenaar98921892016-02-23 17:14:37 +01006383 if (gtk_widget_get_window(gui.drawarea) != NULL)
6384 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385}
6386
Bram Moolenaar98921892016-02-23 17:14:37 +01006387#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388/*
6389 * Redraw any text revealed by scrolling up/down.
6390 */
6391 static void
6392check_copy_area(void)
6393{
6394 GdkEvent *event;
6395 int expose_count;
6396
6397 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6398 return;
6399
Bram Moolenaar30613902019-12-01 22:11:18 +01006400 // Avoid redrawing the cursor while scrolling or it'll end up where
6401 // we don't want it to be. I'm not sure if it's correct to call
6402 // gui_dont_update_cursor() at this point but it works as a quick
6403 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006404 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405
6406 do
6407 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006408 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6410
6411 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006412 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413
6414 gui_redraw(event->expose.area.x, event->expose.area.y,
6415 event->expose.area.width, event->expose.area.height);
6416
6417 expose_count = event->expose.count;
6418 gdk_event_free(event);
6419 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006420 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421
6422 gui_can_update_cursor();
6423}
Bram Moolenaar30613902019-12-01 22:11:18 +01006424#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006425
6426#if GTK_CHECK_VERSION(3,0,0)
6427 static void
6428gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6429 int src_x, int src_y,
6430 int width, int height)
6431{
6432 cairo_t * const cr = cairo_create(gui.surface);
6433
6434 cairo_rectangle(cr, dest_x, dest_y, width, height);
6435 cairo_clip(cr);
6436 cairo_push_group(cr);
6437 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6438 cairo_paint(cr);
6439 cairo_pop_group_to_source(cr);
6440 cairo_paint(cr);
6441
6442 cairo_destroy(cr);
6443}
6444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445
6446/*
6447 * Delete the given number of lines from the given row, scrolling up any
6448 * text further down within the scroll region.
6449 */
6450 void
6451gui_mch_delete_lines(int row, int num_lines)
6452{
Bram Moolenaar98921892016-02-23 17:14:37 +01006453#if GTK_CHECK_VERSION(3,0,0)
6454 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6455 const int nrows = gui.scroll_region_bot - row + 1;
6456 const int src_nrows = nrows - num_lines;
6457
6458 gui_gtk_surface_copy_rect(
6459 FILL_X(gui.scroll_region_left), FILL_Y(row),
6460 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6461 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6462 gui_clear_block(
6463 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6464 gui.scroll_region_bot, gui.scroll_region_right);
6465 gui_gtk3_redraw(
6466 FILL_X(gui.scroll_region_left), FILL_Y(row),
6467 gui.char_width * ncols + 1, gui.char_height * nrows);
6468 if (!gui.by_signal)
6469 gtk_widget_queue_draw_area(gui.drawarea,
6470 FILL_X(gui.scroll_region_left), FILL_Y(row),
6471 gui.char_width * ncols + 1, gui.char_height * nrows);
6472#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006474 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475
6476 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6477 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6478
Bram Moolenaar30613902019-12-01 22:11:18 +01006479 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6481 FILL_X(gui.scroll_region_left), FILL_Y(row),
6482 gui.drawarea->window,
6483 FILL_X(gui.scroll_region_left),
6484 FILL_Y(row + num_lines),
6485 gui.char_width * (gui.scroll_region_right
6486 - gui.scroll_region_left + 1) + 1,
6487 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6488
6489 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6490 gui.scroll_region_left,
6491 gui.scroll_region_bot, gui.scroll_region_right);
6492 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006493#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494}
6495
6496/*
6497 * Insert the given number of lines before the given row, scrolling down any
6498 * following text within the scroll region.
6499 */
6500 void
6501gui_mch_insert_lines(int row, int num_lines)
6502{
Bram Moolenaar98921892016-02-23 17:14:37 +01006503#if GTK_CHECK_VERSION(3,0,0)
6504 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6505 const int nrows = gui.scroll_region_bot - row + 1;
6506 const int src_nrows = nrows - num_lines;
6507
6508 gui_gtk_surface_copy_rect(
6509 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6510 FILL_X(gui.scroll_region_left), FILL_Y(row),
6511 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6512 gui_mch_clear_block(
6513 row, gui.scroll_region_left,
6514 row + num_lines - 1, gui.scroll_region_right);
6515 gui_gtk3_redraw(
6516 FILL_X(gui.scroll_region_left), FILL_Y(row),
6517 gui.char_width * ncols + 1, gui.char_height * nrows);
6518 if (!gui.by_signal)
6519 gtk_widget_queue_draw_area(gui.drawarea,
6520 FILL_X(gui.scroll_region_left), FILL_Y(row),
6521 gui.char_width * ncols + 1, gui.char_height * nrows);
6522#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006524 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525
6526 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6527 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6528
Bram Moolenaar30613902019-12-01 22:11:18 +01006529 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6531 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6532 gui.drawarea->window,
6533 FILL_X(gui.scroll_region_left), FILL_Y(row),
6534 gui.char_width * (gui.scroll_region_right
6535 - gui.scroll_region_left + 1) + 1,
6536 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6537
6538 gui_clear_block(row, gui.scroll_region_left,
6539 row + num_lines - 1, gui.scroll_region_right);
6540 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006541#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542}
6543
6544/*
6545 * X Selection stuff, for cutting and pasting text to other windows.
6546 */
6547 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006548clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549{
6550 GdkAtom target;
6551 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006552 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553
6554 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6555 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006556 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6557 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 received_selection = RS_NONE;
6559 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6560
6561 gtk_selection_convert(gui.drawarea,
6562 cbd->gtk_sel_atom, target,
6563 (guint32)GDK_CURRENT_TIME);
6564
Bram Moolenaar30613902019-12-01 22:11:18 +01006565 // Hack: Wait up to three seconds for the selection. A hang was
6566 // noticed here when using the netrw plugin combined with ":gui"
6567 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006568 start = time(NULL);
6569 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006570 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571
6572 if (received_selection != RS_FAIL)
6573 return;
6574 }
6575
Bram Moolenaar30613902019-12-01 22:11:18 +01006576 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006577 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6578 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579}
6580
6581/*
6582 * Disown the selection.
6583 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006585clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006587 if (!in_selection_clear_event)
6588 {
6589 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6590 gui_mch_update();
6591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592}
6593
6594/*
6595 * Own the selection and return OK if it worked.
6596 */
6597 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006598clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599{
6600 int success;
6601
6602 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006603 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 gui_mch_update();
6605 return (success) ? OK : FAIL;
6606}
6607
6608/*
6609 * Send the current selection to the clipboard. Do nothing for X because we
6610 * will fill in the selection only when requested by another app.
6611 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006613clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614{
6615}
6616
Bram Moolenaar113e1072019-01-20 15:30:40 +01006617#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006618 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006619clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006620{
6621 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6622}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006623#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006624
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625
6626#if defined(FEAT_MENU) || defined(PROTO)
6627/*
6628 * Make a menu item appear either active or not active (grey or not grey).
6629 */
6630 void
6631gui_mch_menu_grey(vimmenu_T *menu, int grey)
6632{
6633 if (menu->id == NULL)
6634 return;
6635
6636 if (menu_is_separator(menu->name))
6637 grey = TRUE;
6638
6639 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006640 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006641 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 {
6643 gtk_widget_set_sensitive(menu->id, !grey);
6644 gui_mch_update();
6645 }
6646}
6647
6648/*
6649 * Make menu item hidden or not hidden.
6650 */
6651 void
6652gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6653{
6654 if (menu->id == 0)
6655 return;
6656
6657 if (hidden)
6658 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006659 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 {
6661 gtk_widget_hide(menu->id);
6662 gui_mch_update();
6663 }
6664 }
6665 else
6666 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006667 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668 {
6669 gtk_widget_show(menu->id);
6670 gui_mch_update();
6671 }
6672 }
6673}
6674
6675/*
6676 * This is called after setting all the menus to grey/hidden or not.
6677 */
6678 void
6679gui_mch_draw_menubar(void)
6680{
Bram Moolenaar30613902019-12-01 22:11:18 +01006681 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 gui_mch_update();
6683}
Bram Moolenaar30613902019-12-01 22:11:18 +01006684#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685
6686/*
6687 * Scrollbar stuff.
6688 */
6689 void
6690gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6691{
6692 if (sb->id == NULL)
6693 return;
6694
Bram Moolenaar98921892016-02-23 17:14:37 +01006695 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006696 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697}
6698
6699
6700/*
6701 * Return the RGB value of a pixel as long.
6702 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006703 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704gui_mch_get_rgb(guicolor_T pixel)
6705{
Bram Moolenaar98921892016-02-23 17:14:37 +01006706#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006707 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006708#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006709 GdkColor color;
6710
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6712 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006714 return (guicolor_T)(
6715 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006717 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719}
6720
6721/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006722 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006724 void
6725gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726{
Bram Moolenaar98921892016-02-23 17:14:37 +01006727 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728}
6729
6730 void
6731gui_mch_setmouse(int x, int y)
6732{
Bram Moolenaar30613902019-12-01 22:11:18 +01006733 // Sorry for the Xlib call, but we can't avoid it, since there is no
6734 // internal GDK mechanism present to accomplish this. (and for good
6735 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01006736 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6737 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6738 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739}
6740
6741
6742#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01006743// The last set mouse pointer shape is remembered, to be used when it goes
6744// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745static int last_shape = 0;
6746#endif
6747
6748/*
6749 * Use the blank mouse pointer or not.
6750 *
6751 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6752 */
6753 void
6754gui_mch_mousehide(int hide)
6755{
6756 if (gui.pointer_hidden != hide)
6757 {
6758 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006759 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 {
6761 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006762 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6763 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 else
6765#ifdef FEAT_MOUSESHAPE
6766 mch_set_mouse_shape(last_shape);
6767#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006768 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769#endif
6770 }
6771 }
6772}
6773
6774#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6775
Bram Moolenaar30613902019-12-01 22:11:18 +01006776// Table for shape IDs. Keep in sync with the mshape_names[] table in
6777// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778static const int mshape_ids[] =
6779{
Bram Moolenaar30613902019-12-01 22:11:18 +01006780 GDK_LEFT_PTR, // arrow
6781 GDK_CURSOR_IS_PIXMAP, // blank
6782 GDK_XTERM, // beam
6783 GDK_SB_V_DOUBLE_ARROW, // updown
6784 GDK_SIZING, // udsizing
6785 GDK_SB_H_DOUBLE_ARROW, // leftright
6786 GDK_SIZING, // lrsizing
6787 GDK_WATCH, // busy
6788 GDK_X_CURSOR, // no
6789 GDK_CROSSHAIR, // crosshair
6790 GDK_HAND1, // hand1
6791 GDK_HAND2, // hand2
6792 GDK_PENCIL, // pencil
6793 GDK_QUESTION_ARROW, // question
6794 GDK_RIGHT_PTR, // right-arrow
6795 GDK_CENTER_PTR, // up-arrow
6796 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797};
6798
6799 void
6800mch_set_mouse_shape(int shape)
6801{
6802 int id;
6803 GdkCursor *c;
6804
Bram Moolenaar98921892016-02-23 17:14:37 +01006805 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806 return;
6807
6808 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006809 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6810 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811 else
6812 {
6813 if (shape >= MSHAPE_NUMBERED)
6814 {
6815 id = shape - MSHAPE_NUMBERED;
6816 if (id >= GDK_LAST_CURSOR)
6817 id = GDK_LEFT_PTR;
6818 else
Bram Moolenaar30613902019-12-01 22:11:18 +01006819 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006821 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006823 else
6824 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006826 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006827 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006828# if GTK_CHECK_VERSION(3,0,0)
6829 g_object_unref(G_OBJECT(c));
6830# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006831 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01006832# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 }
6834 if (shape != MSHAPE_HIDE)
6835 last_shape = shape;
6836}
Bram Moolenaar30613902019-12-01 22:11:18 +01006837#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838
6839
6840#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6841/*
6842 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6843 * scaled down if the current font is not big enough, or scaled up if the image
6844 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6845 * will be cut off if the current font is not big enough, or centered if it's
6846 * too small.
6847 */
6848# define SIGN_WIDTH (2 * gui.char_width)
6849# define SIGN_HEIGHT (gui.char_height)
6850# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6851
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 void
6853gui_mch_drawsign(int row, int col, int typenr)
6854{
6855 GdkPixbuf *sign;
6856
6857 sign = (GdkPixbuf *)sign_get_image(typenr);
6858
Bram Moolenaar98921892016-02-23 17:14:37 +01006859 if (sign != NULL && gui.drawarea != NULL
6860 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 {
6862 int width;
6863 int height;
6864 int xoffset;
6865 int yoffset;
6866 int need_scale;
6867
6868 width = gdk_pixbuf_get_width(sign);
6869 height = gdk_pixbuf_get_height(sign);
6870 /*
6871 * Decide whether we need to scale. Allow one pixel of border
6872 * width to be cut off, in order to avoid excessive scaling for
6873 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006874 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875 */
6876 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006877 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 || (width < 3 * SIGN_WIDTH / 4
6879 && height < 3 * SIGN_HEIGHT / 4));
6880 if (need_scale)
6881 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006882 double aspect;
6883 int w = width;
6884 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885
Bram Moolenaar30613902019-12-01 22:11:18 +01006886 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 aspect = (double)height / (double)width;
6888 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6889 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006890 if (((double)(MAX(height, SIGN_HEIGHT)) /
6891 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6892 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006893 // Change the aspect ratio by at most 15% to fill the
6894 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006895 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6896 height = MIN(height, SIGN_HEIGHT);
6897 }
6898 else
6899 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006901 if (w == width && h == height)
6902 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006903 // no change in dimensions; don't decrease reference counter
6904 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006905 need_scale = FALSE;
6906 }
6907 else
6908 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006909 // This doesn't seem to be worth caching, and doing so would
6910 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006911 sign = gdk_pixbuf_scale_simple(sign, width, height,
6912 GDK_INTERP_BILINEAR);
6913 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006914 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916 }
6917
Bram Moolenaar30613902019-12-01 22:11:18 +01006918 // The origin is the upper-left corner of the pixmap. Therefore
6919 // these offset may become negative if the pixmap is smaller than
6920 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 xoffset = (width - SIGN_WIDTH) / 2;
6922 yoffset = (height - SIGN_HEIGHT) / 2;
6923
Bram Moolenaar98921892016-02-23 17:14:37 +01006924# if GTK_CHECK_VERSION(3,0,0)
6925 {
6926 cairo_t *cr;
6927 cairo_surface_t *bg_surf;
6928 cairo_t *bg_cr;
6929 cairo_surface_t *sign_surf;
6930 cairo_t *sign_cr;
6931
6932 cr = cairo_create(gui.surface);
6933
6934 bg_surf = cairo_surface_create_similar(gui.surface,
6935 cairo_surface_get_content(gui.surface),
6936 SIGN_WIDTH, SIGN_HEIGHT);
6937 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006938 cairo_set_source_rgba(bg_cr,
6939 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
6940 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006941 cairo_paint(bg_cr);
6942
6943 sign_surf = cairo_surface_create_similar(gui.surface,
6944 cairo_surface_get_content(gui.surface),
6945 SIGN_WIDTH, SIGN_HEIGHT);
6946 sign_cr = cairo_create(sign_surf);
6947 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
6948 cairo_paint(sign_cr);
6949
6950 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
6951 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
6952 cairo_paint(sign_cr);
6953
6954 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
6955 cairo_paint(cr);
6956
6957 cairo_destroy(sign_cr);
6958 cairo_surface_destroy(sign_surf);
6959 cairo_destroy(bg_cr);
6960 cairo_surface_destroy(bg_surf);
6961 cairo_destroy(cr);
6962
6963 if (!gui.by_signal)
6964 gtk_widget_queue_draw_area(gui.drawarea,
6965 FILL_X(col), FILL_Y(col), width, height);
6966
6967 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006968# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
6970
6971 gdk_draw_rectangle(gui.drawarea->window,
6972 gui.text_gc,
6973 TRUE,
6974 FILL_X(col),
6975 FILL_Y(row),
6976 SIGN_WIDTH,
6977 SIGN_HEIGHT);
6978
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 gdk_pixbuf_render_to_drawable_alpha(sign,
6980 gui.drawarea->window,
6981 MAX(0, xoffset),
6982 MAX(0, yoffset),
6983 FILL_X(col) - MIN(0, xoffset),
6984 FILL_Y(row) - MIN(0, yoffset),
6985 MIN(width, SIGN_WIDTH),
6986 MIN(height, SIGN_HEIGHT),
6987 GDK_PIXBUF_ALPHA_BILEVEL,
6988 127,
6989 GDK_RGB_DITHER_NORMAL,
6990 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01006991# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992 if (need_scale)
6993 g_object_unref(sign);
6994 }
6995}
6996
6997 void *
6998gui_mch_register_sign(char_u *signfile)
6999{
7000 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7001 {
7002 GdkPixbuf *sign;
7003 GError *error = NULL;
7004 char_u *message;
7005
7006 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7007
7008 if (error == NULL)
7009 return sign;
7010
7011 message = (char_u *)error->message;
7012
7013 if (message != NULL && input_conv.vc_type != CONV_NONE)
7014 message = string_convert(&input_conv, message, NULL);
7015
7016 if (message != NULL)
7017 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007018 // The error message is already translated and will be more
7019 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007020 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021
7022 if (input_conv.vc_type != CONV_NONE)
7023 vim_free(message);
7024 }
7025 g_error_free(error);
7026 }
7027
7028 return NULL;
7029}
7030
7031 void
7032gui_mch_destroy_sign(void *sign)
7033{
7034 if (sign != NULL)
7035 g_object_unref(sign);
7036}
7037
Bram Moolenaar30613902019-12-01 22:11:18 +01007038#endif // FEAT_SIGN_ICONS