blob: d756f55294fd175459ff18166115f4ddf8b9be2e [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};
K.Takataeeec2542021-06-02 13:28:16 +0200137#define N_SELECTION_TARGETS ARRAY_LENGTH(selection_targets)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
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};
K.Takataeeec2542021-06-02 13:28:16 +0200152# define N_DND_TARGETS ARRAY_LENGTH(dnd_targets)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153#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/*
Chris Daltonee93e322021-11-23 12:27:48 +0000400 * GTK doesn't set the GDK_BUTTON1_MASK state when dragging a touch. Add this
401 * state when dragging.
402 */
403static guint dragging_button_state = 0;
404
405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 * Parse the GUI related command-line arguments. Any arguments used are
407 * deleted from argv, and *argc is decremented accordingly. This is called
408 * when vim is started, whether or not the GUI has been started.
409 */
410 void
411gui_mch_prepare(int *argc, char **argv)
412{
413 const cmdline_option_T *option;
414 int i = 0;
415 int len = 0;
416
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200417#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 /*
419 * Determine the command used to invoke Vim, to be passed as restart
420 * command to the session manager. If argv[0] contains any directory
421 * components try building an absolute path, otherwise leave it as is.
422 */
423 restart_command = argv[0];
424
425 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
426 {
427 char_u buf[MAXPATHL];
428
429 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000430 {
431 abs_restart_command = (char *)vim_strsave(buf);
432 restart_command = abs_restart_command;
433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 }
435#endif
436
437 /*
438 * Move all the entries in argv which are relevant to GTK+ and GNOME
439 * into gui_argv. Freed later in gui_mch_init().
440 */
441 gui_argc = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200442 gui_argv = ALLOC_MULT(char *, *argc + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
444 g_return_if_fail(gui_argv != NULL);
445
446 gui_argv[gui_argc++] = argv[i++];
447
448 while (i < *argc)
449 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100450 // Don't waste CPU cycles on non-option arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 if (argv[i][0] != '-' && argv[i][0] != '+')
452 {
453 ++i;
454 continue;
455 }
456
Bram Moolenaar30613902019-12-01 22:11:18 +0100457 // Look for argv[i] in cmdline_options[] table.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 for (option = &cmdline_options[0]; option->name != NULL; ++option)
459 {
460 len = strlen(option->name);
461
462 if (strncmp(argv[i], option->name, len) == 0)
463 {
464 if (argv[i][len] == '\0')
465 break;
Bram Moolenaar30613902019-12-01 22:11:18 +0100466 // allow --foo=bar style
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
468 break;
469#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar30613902019-12-01 22:11:18 +0100470 // darn, -nb has non-standard syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
472 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
473 break;
474#endif
475 }
476 else if ((option->flags & ARG_COMPAT_LONG)
477 && strcmp(argv[i], option->name + 1) == 0)
478 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100479 // Replace the standard X arguments "-name" and "-display"
480 // with their GNU-style long option counterparts.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000481 argv[i] = (char *)option->name;
482 break;
483 }
484 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100485 if (option->name == NULL) // no match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 {
487 ++i;
488 continue;
489 }
490
491 if (option->flags & ARG_FOR_GTK)
492 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100493 // Move the argument into gui_argv, which
494 // will later be passed to gtk_init_check()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 gui_argv[gui_argc++] = argv[i];
496 }
497 else
498 {
499 char *value = NULL;
500
Bram Moolenaar30613902019-12-01 22:11:18 +0100501 // Extract the option's value if there is one.
502 // Accept both "--foo bar" and "--foo=bar" style.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 if (option->flags & ARG_HAS_VALUE)
504 {
505 if (argv[i][len] == '=')
506 value = &argv[i][len + 1];
507 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
508 value = argv[i + 1];
509 }
510
Bram Moolenaar30613902019-12-01 22:11:18 +0100511 // Check for options handled by Vim itself
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 switch (option->flags & ARG_INDEX_MASK)
513 {
514 case ARG_REVERSE:
515 found_reverse_arg = TRUE;
516 break;
517 case ARG_NOREVERSE:
518 found_reverse_arg = FALSE;
519 break;
520 case ARG_FONT:
521 font_argument = value;
522 break;
523 case ARG_GEOMETRY:
524 if (value != NULL)
525 gui.geom = vim_strsave((char_u *)value);
526 break;
527 case ARG_BACKGROUND:
528 background_argument = value;
529 break;
530 case ARG_FOREGROUND:
531 foreground_argument = value;
532 break;
533 case ARG_ICONIC:
534 found_iconic_arg = TRUE;
535 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 case ARG_ROLE:
Bram Moolenaar30613902019-12-01 22:11:18 +0100537 role_argument = value; // used later in gui_mch_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539#ifdef FEAT_NETBEANS_INTG
540 case ARG_NETBEANS:
Bram Moolenaar30613902019-12-01 22:11:18 +0100541 gui.dofork = FALSE; // don't fork() when starting GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 netbeansArg = argv[i];
543 break;
544#endif
545 default:
546 break;
547 }
548 }
549
Bram Moolenaar30613902019-12-01 22:11:18 +0100550 // These arguments make gnome_program_init() print a message and exit.
551 // Must start the GUI for this, otherwise ":gui" will exit later!
552 // Only when the GUI can start.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200553 if ((option->flags & ARG_NEEDS_GUI)
554 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 gui.starting = TRUE;
556
557 if (option->flags & ARG_KEEP)
558 ++i;
559 else
560 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100561 // Remove the flag from the argument vector.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 if (--*argc > i)
563 {
564 int n_strip = 1;
565
Bram Moolenaar30613902019-12-01 22:11:18 +0100566 // Move the argument's value as well, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if ((option->flags & ARG_HAS_VALUE)
568 && argv[i][len] != '='
569 && strcmp(argv[i + 1], "--") != 0)
570 {
571 ++n_strip;
572 --*argc;
573 if (option->flags & ARG_FOR_GTK)
574 gui_argv[gui_argc++] = argv[i + 1];
575 }
576
577 if (*argc > i)
578 mch_memmove(&argv[i], &argv[i + n_strip],
579 (*argc - i) * sizeof(char *));
580 }
581 argv[*argc] = NULL;
582 }
583 }
584
585 gui_argv[gui_argc] = NULL;
586}
587
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588#if defined(EXITFREE) || defined(PROTO)
589 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100590gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000591{
592 vim_free(gui_argv);
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200593#if defined(USE_GNOME_SESSION)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000594 vim_free(abs_restart_command);
595#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000596}
597#endif
598
Bram Moolenaar98921892016-02-23 17:14:37 +0100599#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600/*
601 * This should be maybe completely removed.
602 * Doesn't seem possible, since check_copy_area() relies on
603 * this information. --danielk
604 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000606visibility_event(GtkWidget *widget UNUSED,
607 GdkEventVisibility *event,
608 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609{
610 gui.visibility = event->state;
611 /*
612 * When we do an gdk_window_copy_area(), and the window is partially
613 * obscured, we want to receive an event to tell us whether it worked
614 * or not.
615 */
616 if (gui.text_gc != NULL)
617 gdk_gc_set_exposures(gui.text_gc,
618 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
619 return FALSE;
620}
Bram Moolenaar30613902019-12-01 22:11:18 +0100621#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622
623/*
624 * Redraw the corresponding portions of the screen.
625 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100626#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +0100627 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200628draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100629 cairo_t *cr,
630 gpointer user_data UNUSED)
631{
Bram Moolenaar30613902019-12-01 22:11:18 +0100632 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar98921892016-02-23 17:14:37 +0100633 if (gui.starting)
634 return FALSE;
635
Bram Moolenaar30613902019-12-01 22:11:18 +0100636 out_flush(); // make sure all output has been processed
637 // for GTK+ 3, may induce other draw events.
Bram Moolenaar98921892016-02-23 17:14:37 +0100638
639 cairo_set_source_surface(cr, gui.surface, 0, 0);
640
Bram Moolenaar98921892016-02-23 17:14:37 +0100641 {
642 cairo_rectangle_list_t *list = NULL;
643
Bram Moolenaar98921892016-02-23 17:14:37 +0100644 list = cairo_copy_clip_rectangle_list(cr);
645 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
646 {
647 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100648
Bram Moolenaar98921892016-02-23 17:14:37 +0100649 for (i = 0; i < list->num_rectangles; i++)
650 {
presuku9459b8d2021-11-16 20:03:56 +0000651 const cairo_rectangle_t *rect = &list->rectangles[i];
652 cairo_rectangle(cr, rect->x, rect->y, rect->width, rect->height);
653 cairo_fill(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +0100654 }
655 }
656 cairo_rectangle_list_destroy(list);
Bram Moolenaar98921892016-02-23 17:14:37 +0100657 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100658
659 return FALSE;
660}
Bram Moolenaar30613902019-12-01 22:11:18 +0100661#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000663expose_event(GtkWidget *widget UNUSED,
664 GdkEventExpose *event,
665 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666{
Bram Moolenaar30613902019-12-01 22:11:18 +0100667 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 if (gui.starting)
669 return FALSE;
670
Bram Moolenaar30613902019-12-01 22:11:18 +0100671 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 gui_redraw(event->area.x, event->area.y,
673 event->area.width, event->area.height);
674
Bram Moolenaar30613902019-12-01 22:11:18 +0100675 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 if (event->area.x < FILL_X(0))
677 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
678 if (event->area.y < FILL_Y(0))
679 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
680 if (event->area.x > FILL_X(Columns))
681 gdk_window_clear_area(gui.drawarea->window,
682 FILL_X((int)Columns), 0, 0, 0);
683 if (event->area.y > FILL_Y(Rows))
684 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
685
686 return FALSE;
687}
Bram Moolenaar30613902019-12-01 22:11:18 +0100688#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
690#ifdef FEAT_CLIENTSERVER
691/*
692 * Handle changes to the "Comm" property
693 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000695property_event(GtkWidget *widget,
696 GdkEventProperty *event,
697 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
699 if (event->type == GDK_PROPERTY_NOTIFY
700 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100701 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 && GET_X_ATOM(event->atom) == commProperty)
703 {
704 XEvent xev;
705
Bram Moolenaar30613902019-12-01 22:11:18 +0100706 // Translate to XLib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 xev.xproperty.type = PropertyNotify;
708 xev.xproperty.atom = commProperty;
709 xev.xproperty.window = commWindow;
710 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100711 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
712 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 }
714 return FALSE;
715}
Bram Moolenaar30613902019-12-01 22:11:18 +0100716#endif // defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200718/*
719 * Handle changes to the "Xft/DPI" setting
720 */
721 static void
722gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
723 GParamSpec *pspec UNUSED,
724 gpointer data UNUSED)
725{
726 // Create a new PangoContext for this screen, and initialize it
727 // with the current font if necessary.
728 if (gui.text_context != NULL)
729 g_object_unref(gui.text_context);
730
731 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
732 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
733
734 if (gui.norm_font != NULL)
735 {
736 // force default font
737 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
738 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
739 }
740}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200742typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200743
744/*
745 * Start a timer that will invoke the specified callback.
746 * Returns the ID of the timer.
747 */
748 static guint
749timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
750{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200751 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200752}
753
754 static void
755timeout_remove(guint timer)
756{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200757 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200758}
759
760
Bram Moolenaar30613902019-12-01 22:11:18 +0100761/////////////////////////////////////////////////////////////////////////////
762// Focus handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763
764
765/*
766 * This is a simple state machine:
767 * BLINK_NONE not blinking at all
768 * BLINK_OFF blinking, cursor is not shown
769 * BLINK_ON blinking, cursor is shown
770 */
771
772#define BLINK_NONE 0
773#define BLINK_OFF 1
774#define BLINK_ON 2
775
776static int blink_state = BLINK_NONE;
777static long_u blink_waittime = 700;
778static long_u blink_ontime = 400;
779static long_u blink_offtime = 250;
780static guint blink_timer = 0;
781
Bram Moolenaar703a8042016-06-04 16:24:32 +0200782 int
783gui_mch_is_blinking(void)
784{
785 return blink_state != BLINK_NONE;
786}
787
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200788 int
789gui_mch_is_blink_off(void)
790{
791 return blink_state == BLINK_OFF;
792}
793
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 void
795gui_mch_set_blinking(long waittime, long on, long off)
796{
797 blink_waittime = waittime;
798 blink_ontime = on;
799 blink_offtime = off;
800}
801
802/*
803 * Stop the cursor blinking. Show the cursor if it wasn't shown.
804 */
805 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100806gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807{
808 if (blink_timer)
809 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200810 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 blink_timer = 0;
812 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100813 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200814 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000816#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200817 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000818#endif
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 blink_state = BLINK_NONE;
821}
822
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200823 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000824blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825{
826 if (blink_state == BLINK_ON)
827 {
828 gui_undraw_cursor();
829 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200830 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
832 else
833 {
834 gui_update_cursor(TRUE, FALSE);
835 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200836 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 }
presuku9459b8d2021-11-16 20:03:56 +0000838#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200839 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000840#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
Bram Moolenaar30613902019-12-01 22:11:18 +0100842 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843}
844
845/*
846 * Start the cursor blinking. If it was already blinking, this restarts the
847 * waiting time and shows the cursor.
848 */
849 void
850gui_mch_start_blink(void)
851{
852 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200853 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200854 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200855 blink_timer = 0;
856 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100857 // Only switch blinking on if none of the times is zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
859 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200860 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 blink_state = BLINK_ON;
862 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000863#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200864 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 }
867}
868
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000870enter_notify_event(GtkWidget *widget UNUSED,
871 GdkEventCrossing *event UNUSED,
872 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873{
874 if (blink_state == BLINK_NONE)
875 gui_mch_start_blink();
876
Bram Moolenaar30613902019-12-01 22:11:18 +0100877 // make sure keyboard input goes there
Bram Moolenaar98921892016-02-23 17:14:37 +0100878 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 gtk_widget_grab_focus(gui.drawarea);
880
881 return FALSE;
882}
883
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000885leave_notify_event(GtkWidget *widget UNUSED,
886 GdkEventCrossing *event UNUSED,
887 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100890 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
892 return FALSE;
893}
894
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000896focus_in_event(GtkWidget *widget,
897 GdkEventFocus *event UNUSED,
898 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 gui_focus_change(TRUE);
901
902 if (blink_state == BLINK_NONE)
903 gui_mch_start_blink();
904
Bram Moolenaar30613902019-12-01 22:11:18 +0100905 // make sure keyboard input goes to the draw area (if this is focus for a
906 // window)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000907 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000908 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
910 return TRUE;
911}
912
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000914focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200915 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000916 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917{
918 gui_focus_change(FALSE);
919
920 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100921 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
923 return TRUE;
924}
925
926
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927/*
928 * Translate a GDK key value to UTF-8 independently of the current locale.
929 * The output is written to string, which must have room for at least 6 bytes
930 * plus the NUL terminator. Returns the length in bytes.
931 *
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200932 * event->string is evil; see here why:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
934 */
935 static int
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200936keyval_to_string(unsigned int keyval, char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937{
938 int len;
939 guint32 uc;
940
941 uc = gdk_keyval_to_unicode(keyval);
942 if (uc != 0)
943 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200944 // Translate a normal key to UTF-8. This doesn't work for dead
945 // keys of course, you _have_ to use an input method for that.
946 len = utf_char2bytes((int)uc, string);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 }
948 else
949 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100950 // Translate keys which are represented by ASCII control codes in Vim.
951 // There are only a few of those; most control keys are translated to
952 // special terminal-like control sequences.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 len = 1;
954 switch (keyval)
955 {
956 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
957 string[0] = TAB;
958 break;
959 case GDK_Linefeed:
960 string[0] = NL;
961 break;
962 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
963 string[0] = CAR;
964 break;
965 case GDK_Escape:
966 string[0] = ESC;
967 break;
968 default:
969 len = 0;
970 break;
971 }
972 }
973 string[len] = NUL;
974
975 return len;
976}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000978 static int
979modifiers_gdk2vim(guint state)
980{
981 int modifiers = 0;
982
983 if (state & GDK_SHIFT_MASK)
984 modifiers |= MOD_MASK_SHIFT;
985 if (state & GDK_CONTROL_MASK)
986 modifiers |= MOD_MASK_CTRL;
987 if (state & GDK_MOD1_MASK)
988 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +0200989#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +0200990 if (state & GDK_SUPER_MASK)
991 modifiers |= MOD_MASK_META;
992#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000993 if (state & GDK_MOD4_MASK)
994 modifiers |= MOD_MASK_META;
995
996 return modifiers;
997}
998
999 static int
1000modifiers_gdk2mouse(guint state)
1001{
1002 int modifiers = 0;
1003
1004 if (state & GDK_SHIFT_MASK)
1005 modifiers |= MOUSE_SHIFT;
1006 if (state & GDK_CONTROL_MASK)
1007 modifiers |= MOUSE_CTRL;
1008 if (state & GDK_MOD1_MASK)
1009 modifiers |= MOUSE_ALT;
1010
1011 return modifiers;
1012}
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*
1015 * Main keyboard handler:
1016 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001018key_press_event(GtkWidget *widget UNUSED,
1019 GdkEventKey *event,
1020 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021{
Bram Moolenaar30613902019-12-01 22:11:18 +01001022 // For GTK+ 2 we know for sure how large the string might get.
1023 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 guint key_sym;
1026 int len;
1027 int i;
1028 int modifiers;
1029 int key;
1030 guint state;
1031 char_u *s, *d;
1032
Bram Moolenaar20892c12011-06-26 04:49:00 +02001033 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 key_sym = event->keyval;
1035 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036
1037#ifdef FEAT_XIM
1038 if (xim_queue_key_press_event(event, TRUE))
1039 return TRUE;
1040#endif
1041
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042#ifdef SunXK_F36
1043 /*
1044 * These keys have bogus lookup strings, and trapping them here is
1045 * easier than trying to XRebindKeysym() on them with every possible
1046 * combination of modifiers.
1047 */
1048 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1049 len = 0;
1050 else
1051#endif
1052 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001053 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
Bram Moolenaar30613902019-12-01 22:11:18 +01001055 // Careful: convert_input() doesn't handle the NUL character.
1056 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 if (len > 1 && input_conv.vc_type != CONV_NONE)
1058 len = convert_input(string2, len, sizeof(string2));
1059
1060 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 d = string;
1062 for (i = 0; i < len; ++i)
1063 {
1064 *d++ = s[i];
1065 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1066 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001067 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 *d++ = KS_EXTRA;
1069 *d++ = (int)KE_CSI;
1070 }
1071 }
1072 len = d - string;
1073 }
1074
Bram Moolenaar30613902019-12-01 22:11:18 +01001075 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 if (key_sym == GDK_ISO_Left_Tab)
1077 {
1078 key_sym = GDK_Tab;
1079 state |= GDK_SHIFT_MASK;
1080 }
1081
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001083 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1084 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 if ((state & GDK_MOD1_MASK)
1086 && gui.menu_is_active
1087 && (*p_wak == 'y'
1088 || (*p_wak == 'm'
1089 && len == 1
1090 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001091 // For GTK2 we return false to signify that we haven't handled the
1092 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094#endif
1095
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001096 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1097 // done later, the same as it happens for the terminal. Hopefully that
1098 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099
Bram Moolenaar30613902019-12-01 22:11:18 +01001100 // Check for special keys. Also do this when len == 1 (key has an ASCII
1101 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 if (len == 0 || len == 1)
1103 {
1104 for (i = 0; special_keys[i].key_sym != 0; i++)
1105 {
1106 if (special_keys[i].key_sym == key_sym)
1107 {
1108 string[0] = CSI;
1109 string[1] = special_keys[i].code0;
1110 string[2] = special_keys[i].code1;
1111 len = -3;
1112 break;
1113 }
1114 }
1115 }
1116
Bram Moolenaar30613902019-12-01 22:11:18 +01001117 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 return TRUE;
1119
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001120 // For some keys a shift modifier is translated into another key code.
1121 if (len == -3)
1122 key = TO_SPECIAL(string[1], string[2]);
1123 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001124 {
1125 string[len] = NUL;
1126 key = mb_ptr2char(string);
1127 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001128
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001129 // Handle modifiers.
1130 modifiers = modifiers_gdk2vim(state);
1131
1132 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001133 key = simplify_key(key, &modifiers);
1134 if (key == CSI)
1135 key = K_CSI;
1136 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001138 string[0] = CSI;
1139 string[1] = K_SECOND(key);
1140 string[2] = K_THIRD(key);
1141 len = 3;
1142 }
1143 else
1144 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001145 // Some keys need adjustment when the Ctrl modifier is used.
1146 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001147
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001148 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001149 modifiers = may_remove_shift_modifier(modifiers, key);
1150
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001151 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001154 if (modifiers != 0)
1155 {
1156 string2[0] = CSI;
1157 string2[1] = KS_MODIFIER;
1158 string2[2] = modifiers;
1159 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 }
1161
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001162 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001164 int int_ch = check_for_interrupt(key, modifiers);
1165
1166 if (int_ch != NUL)
1167 {
1168 trash_input_buf();
1169 string[0] = int_ch;
1170 len = 1;
1171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 }
1173
1174 add_to_input_buf(string, len);
1175
Bram Moolenaar30613902019-12-01 22:11:18 +01001176 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 if (p_mh)
1178 gui_mch_mousehide(TRUE);
1179
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 return TRUE;
1181}
1182
Bram Moolenaar98921892016-02-23 17:14:37 +01001183#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001185key_release_event(GtkWidget *widget UNUSED,
1186 GdkEventKey *event,
1187 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188{
Bram Moolenaar98921892016-02-23 17:14:37 +01001189# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001190 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 /*
1192 * GTK+ 2 input methods may do fancy stuff on key release events too.
1193 * With the default IM for instance, you can enter any UCS code point
1194 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1195 */
1196 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001197# else
1198 return TRUE;
1199# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200}
1201#endif
1202
1203
Bram Moolenaar30613902019-12-01 22:11:18 +01001204/////////////////////////////////////////////////////////////////////////////
1205// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206
Bram Moolenaar30613902019-12-01 22:11:18 +01001207// Remember when clip_lose_selection was called from here, we must not call
1208// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001209static int in_selection_clear_event = FALSE;
1210
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001212selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001214 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001216 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 if (event->selection == clip_plus.gtk_sel_atom)
1218 clip_lose_selection(&clip_plus);
1219 else
1220 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001221 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 return TRUE;
1224}
1225
Bram Moolenaar30613902019-12-01 22:11:18 +01001226#define RS_NONE 0 // selection_received_cb() not called yet
1227#define RS_OK 1 // selection_received_cb() called and OK
1228#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229static int received_selection = RS_NONE;
1230
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001232selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001234 guint time_ UNUSED,
1235 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001237 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 char_u *text;
1239 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001242 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243
Bram Moolenaar98921892016-02-23 17:14:37 +01001244 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 cbd = &clip_plus;
1246 else
1247 cbd = &clip_star;
1248
Bram Moolenaar98921892016-02-23 17:14:37 +01001249 text = (char_u *)gtk_selection_data_get_data(data);
1250 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251
1252 if (text == NULL || len <= 0)
1253 {
1254 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001255 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 return;
1258 }
1259
Bram Moolenaar98921892016-02-23 17:14:37 +01001260 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 {
1262 motion_type = *text++;
1263 --len;
1264 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001265 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 {
1267 char_u *enc;
1268 vimconv_T conv;
1269
1270 motion_type = *text++;
1271 --len;
1272
1273 enc = text;
1274 text += STRLEN(text) + 1;
1275 len -= text - enc;
1276
Bram Moolenaar30613902019-12-01 22:11:18 +01001277 // If the encoding of the text is different from 'encoding', attempt
1278 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 conv.vc_type = CONV_NONE;
1280 convert_setup(&conv, enc, p_enc);
1281 if (conv.vc_type != CONV_NONE)
1282 {
1283 tmpbuf = string_convert(&conv, text, &len);
1284 if (tmpbuf != NULL)
1285 text = tmpbuf;
1286 convert_setup(&conv, NULL, NULL);
1287 }
1288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289
Bram Moolenaar30613902019-12-01 22:11:18 +01001290 // gtk_selection_data_get_text() handles all the nasty details
1291 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 else
1293 {
1294 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1295 if (tmpbuf_utf8 != NULL)
1296 {
1297 len = STRLEN(tmpbuf_utf8);
1298 if (input_conv.vc_type != CONV_NONE)
1299 {
1300 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1301 if (tmpbuf != NULL)
1302 text = tmpbuf;
1303 }
1304 else
1305 text = tmpbuf_utf8;
1306 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001307 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1308 {
1309 vimconv_T conv;
1310
Bram Moolenaar30613902019-12-01 22:11:18 +01001311 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001312 conv.vc_type = CONV_NONE;
1313 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1314
1315 if (conv.vc_type != CONV_NONE)
1316 {
1317 text += 2;
1318 len -= 2;
1319 tmpbuf = string_convert(&conv, text, &len);
1320 convert_setup(&conv, NULL, NULL);
1321 }
1322 if (tmpbuf != NULL)
1323 text = tmpbuf;
1324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326
Bram Moolenaar30613902019-12-01 22:11:18 +01001327 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001328 while (len > 0 && text[len - 1] == NUL)
1329 --len;
1330
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 clip_yank_selection(motion_type, text, (long)len, cbd);
1332 received_selection = RS_OK;
1333 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335}
1336
1337/*
1338 * Prepare our selection data for passing it to the external selection
1339 * client.
1340 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001342selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 GtkSelectionData *selection_data,
1344 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001345 guint time_ UNUSED,
1346 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
1348 char_u *string;
1349 char_u *tmpbuf;
1350 long_u tmplen;
1351 int length;
1352 int motion_type;
1353 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001354 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar98921892016-02-23 17:14:37 +01001356 if (gtk_selection_data_get_selection(selection_data)
1357 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 cbd = &clip_plus;
1359 else
1360 cbd = &clip_star;
1361
1362 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001363 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364
1365 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001366 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 && info != (guint)TARGET_UTF8_STRING
1368 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 && info != (guint)TARGET_VIM
1370 && info != (guint)TARGET_COMPOUND_TEXT
1371 && info != (guint)TARGET_TEXT)
1372 return;
1373
Bram Moolenaar30613902019-12-01 22:11:18 +01001374 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 clip_get_selection(cbd);
1376
1377 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1378 if (motion_type < 0 || string == NULL)
1379 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001380 // Due to int arguments we can't handle more than G_MAXINT. Also
1381 // reserve one extra byte for NUL or the motion type; just in case.
1382 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1384
1385 if (info == (guint)TARGET_VIM)
1386 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001387 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 if (tmpbuf != NULL)
1389 {
1390 tmpbuf[0] = motion_type;
1391 mch_memmove(tmpbuf + 1, string, (size_t)length);
1392 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001393 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 ++length;
1395 vim_free(string);
1396 string = tmpbuf;
1397 type = vim_atom;
1398 }
1399
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001400 else if (info == (guint)TARGET_HTML)
1401 {
1402 vimconv_T conv;
1403
Bram Moolenaar30613902019-12-01 22:11:18 +01001404 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001405 conv.vc_type = CONV_NONE;
1406 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1407 if (conv.vc_type != CONV_NONE)
1408 {
1409 tmpbuf = string_convert(&conv, string, &length);
1410 convert_setup(&conv, NULL, NULL);
1411 vim_free(string);
1412 string = tmpbuf;
1413 }
1414
Bram Moolenaar30613902019-12-01 22:11:18 +01001415 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001416 if (string != NULL)
1417 {
1418 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001419 if (tmpbuf != NULL)
1420 {
1421 tmpbuf[0] = 0xff;
1422 tmpbuf[1] = 0xfe;
1423 mch_memmove(tmpbuf + 2, string, (size_t)length);
1424 vim_free(string);
1425 string = tmpbuf;
1426 length += 2;
1427 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001428
Bram Moolenaar98921892016-02-23 17:14:37 +01001429#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001430 // Looks redundant even for GTK2 because these values are
1431 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001432 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001433 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001434#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001435 gtk_selection_data_set(selection_data, html_atom, 16,
1436 string, length);
1437 vim_free(string);
1438 }
1439 return;
1440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 else if (info == (guint)TARGET_VIMENC)
1442 {
1443 int l = STRLEN(p_enc);
1444
Bram Moolenaar30613902019-12-01 22:11:18 +01001445 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001446 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 if (tmpbuf != NULL)
1448 {
1449 tmpbuf[0] = motion_type;
1450 STRCPY(tmpbuf + 1, p_enc);
1451 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001452 length += l + 2;
1453 vim_free(string);
1454 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 type = vimenc_atom;
1457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458
Bram Moolenaar30613902019-12-01 22:11:18 +01001459 // gtk_selection_data_set_text() handles everything for us. This is
1460 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 else
1462 {
1463 if (output_conv.vc_type != CONV_NONE)
1464 {
1465 tmpbuf = string_convert(&output_conv, string, &length);
1466 vim_free(string);
1467 if (tmpbuf == NULL)
1468 return;
1469 string = tmpbuf;
1470 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001471 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1473 {
1474 gtk_selection_data_set_text(selection_data,
1475 (const char *)string, length);
1476 }
1477 vim_free(string);
1478 return;
1479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480
1481 if (string != NULL)
1482 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001483#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001484 // Looks redundant even for GTK2 because these values are
1485 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001487 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 gtk_selection_data_set(selection_data, type, 8, string, length);
1490 vim_free(string);
1491 }
1492}
1493
1494/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001495 * Check if the GUI can be started. Called before gvimrc is sourced and
1496 * before fork().
1497 * Return OK or FAIL.
1498 */
1499 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001500gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001501{
1502 char_u *p;
1503
Bram Moolenaar30613902019-12-01 22:11:18 +01001504 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001505 p = mch_getenv((char_u *)"DISPLAY");
1506 if (p == NULL || *p == NUL)
1507 {
1508 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001509 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001510 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001511 return FAIL;
1512 }
1513 return OK;
1514}
1515
1516/*
1517 * Check if the GUI can be started. Called before gvimrc is sourced but after
1518 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 * Return OK or FAIL.
1520 */
1521 int
1522gui_mch_init_check(void)
1523{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001524#ifdef USE_GRESOURCE
1525 static int res_registered = FALSE;
1526
1527 if (!res_registered)
1528 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001529 // Call this function in the GUI process; otherwise, the resources
1530 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001531 res_registered = TRUE;
1532 gui_gtk_register_resource();
1533 }
1534#endif
1535
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001536#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001537 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1538 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001539 gdk_set_allowed_backends ("x11");
1540#endif
1541
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542#ifdef FEAT_GUI_GNOME
1543 if (gtk_socket_id == 0)
1544 using_gnome = 1;
1545#endif
1546
Bram Moolenaar30613902019-12-01 22:11:18 +01001547 // This defaults to argv[0], but we want it to match the name of the
1548 // shipped gvim.desktop so that Vim's windows can be associated with this
1549 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001550 g_set_prgname("gvim");
1551
Bram Moolenaar30613902019-12-01 22:11:18 +01001552 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if (!gtk_init_check(&gui_argc, &gui_argv))
1554 {
1555 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001556 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 return FAIL;
1558 }
1559
1560 return OK;
1561}
1562
Bram Moolenaar30613902019-12-01 22:11:18 +01001563/////////////////////////////////////////////////////////////////////////////
1564// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565
1566
1567static guint mouse_click_timer = 0;
1568static int mouse_timed_out = TRUE;
1569
1570/*
1571 * Timer used to recognize multiple clicks of the mouse button
1572 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001573 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574mouse_click_timer_cb(gpointer data)
1575{
Bram Moolenaar30613902019-12-01 22:11:18 +01001576 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 int *timed_out = (int *) data;
1578
1579 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001580 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581}
1582
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001583static guint motion_repeat_timer = 0;
1584static int motion_repeat_offset = FALSE;
1585static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
1587 static void
1588process_motion_notify(int x, int y, GdkModifierType state)
1589{
1590 int button;
1591 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001592 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
Chris Daltonee93e322021-11-23 12:27:48 +00001594 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1595 state |= dragging_button_state;
1596
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1598 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1599 GDK_BUTTON5_MASK))
1600 ? MOUSE_DRAG : ' ';
1601
Bram Moolenaar30613902019-12-01 22:11:18 +01001602 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 gui_mch_mousehide(FALSE);
1604
Bram Moolenaar30613902019-12-01 22:11:18 +01001605 // Just moving the rodent above the drawing area without any button
1606 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (button != MOUSE_DRAG)
1608 {
1609 gui_mouse_moved(x, y);
1610 return;
1611 }
1612
Bram Moolenaar30613902019-12-01 22:11:18 +01001613 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001614 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615
Bram Moolenaar30613902019-12-01 22:11:18 +01001616 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 /*
1620 * Auto repeat timer handling.
1621 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001622 gtk_widget_get_allocation(gui.drawarea, &allocation);
1623
1624 if (x < 0 || y < 0
1625 || x >= allocation.width
1626 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 {
1628
1629 int dx;
1630 int dy;
1631 int offshoot;
1632 int delay = 10;
1633
Bram Moolenaar30613902019-12-01 22:11:18 +01001634 // Calculate the maximal distance of the cursor from the drawing area.
1635 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001636 dx = x < 0 ? -x : x - allocation.width;
1637 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
1639 offshoot = dx > dy ? dx : dy;
1640
Bram Moolenaar30613902019-12-01 22:11:18 +01001641 // Make a linearly decaying timer delay with a threshold of 5 at a
1642 // distance of 127 pixels from the main window.
1643 //
1644 // One could think endlessly about the most ergonomic variant here.
1645 // For example it could make sense to calculate the distance from the
1646 // drags start instead...
1647 //
1648 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 if (offshoot > 127)
1650 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001651 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 delay = 5;
1653 }
1654 else
1655 {
1656 delay = (130 * (127 - offshoot)) / 127 + 5;
1657 }
1658
Bram Moolenaar30613902019-12-01 22:11:18 +01001659 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001661 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1662 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 }
1664}
1665
Bram Moolenaar98921892016-02-23 17:14:37 +01001666#if GTK_CHECK_VERSION(3,0,0)
1667 static GdkDevice *
1668gui_gtk_get_pointer_device(GtkWidget *widget)
1669{
1670 GdkWindow * const win = gtk_widget_get_window(widget);
1671 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001672# if GTK_CHECK_VERSION(3,20,0)
1673 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1674 return gdk_seat_get_pointer(seat);
1675# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001676 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1677 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001678# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001679}
1680
1681 static GdkWindow *
1682gui_gtk_get_pointer(GtkWidget *widget,
1683 gint *x,
1684 gint *y,
1685 GdkModifierType *state)
1686{
1687 GdkWindow * const win = gtk_widget_get_window(widget);
1688 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1689 return gdk_window_get_device_position(win, dev , x, y, state);
1690}
1691
Bram Moolenaar2369c152016-03-04 23:08:25 +01001692# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001693 static GdkWindow *
1694gui_gtk_window_at_position(GtkWidget *widget,
1695 gint *x,
1696 gint *y)
1697{
1698 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1699 return gdk_device_get_window_at_position(dev, x, y);
1700}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001701# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001702#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001703# define gui_gtk_get_pointer(wid, x, y, s) \
1704 gdk_window_get_pointer((wid)->window, x, y, s)
1705# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001706#endif
1707
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708/*
1709 * Timer used to recognize multiple clicks of the mouse button.
1710 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001711 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001712motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
1714 int x;
1715 int y;
1716 GdkModifierType state;
1717
Bram Moolenaar98921892016-02-23 17:14:37 +01001718 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719
1720 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1721 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1722 GDK_BUTTON5_MASK)))
1723 {
1724 motion_repeat_timer = 0;
1725 return FALSE;
1726 }
1727
Bram Moolenaar30613902019-12-01 22:11:18 +01001728 // If there already is a mouse click in the input buffer, wait another
1729 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 if (vim_used_in_input_buf() > 10)
1731 return TRUE;
1732
1733 motion_repeat_timer = 0;
1734
1735 /*
1736 * Fake a motion event.
1737 * Trick: Pretend the mouse moved to the next character on every other
1738 * event, otherwise drag events will be discarded, because they are still
1739 * in the same character.
1740 */
1741 if (motion_repeat_offset)
1742 x += gui.char_width;
1743
1744 motion_repeat_offset = !motion_repeat_offset;
1745 process_motion_notify(x, y, state);
1746
Bram Moolenaar30613902019-12-01 22:11:18 +01001747 // Don't happen again. We will get reinstalled in the synthetic event
1748 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 return FALSE;
1750}
1751
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001753motion_notify_event(GtkWidget *widget,
1754 GdkEventMotion *event,
1755 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756{
1757 if (event->is_hint)
1758 {
1759 int x;
1760 int y;
1761 GdkModifierType state;
1762
Bram Moolenaar98921892016-02-23 17:14:37 +01001763 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 process_motion_notify(x, y, state);
1765 }
1766 else
1767 {
1768 process_motion_notify((int)event->x, (int)event->y,
1769 (GdkModifierType)event->state);
1770 }
1771
Bram Moolenaar30613902019-12-01 22:11:18 +01001772 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773}
1774
1775
1776/*
1777 * Mouse button handling. Note please that we are capturing multiple click's
1778 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1779 * This is due to the way the generic VIM code is recognizing multiple clicks.
1780 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001782button_press_event(GtkWidget *widget,
1783 GdkEventButton *event,
1784 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785{
1786 int button;
1787 int repeated_click = FALSE;
1788 int x, y;
1789 int_u vim_modifiers;
1790
Bram Moolenaar20892c12011-06-26 04:49:00 +02001791 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001792
Bram Moolenaar30613902019-12-01 22:11:18 +01001793 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001794 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 gtk_widget_grab_focus(widget);
1796
1797 /*
1798 * Don't let additional events about multiple clicks send by GTK to us
1799 * after the initial button press event confuse us.
1800 */
1801 if (event->type != GDK_BUTTON_PRESS)
1802 return FALSE;
1803
1804 x = event->x;
1805 y = event->y;
1806
Bram Moolenaar30613902019-12-01 22:11:18 +01001807 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 if (!mouse_timed_out && mouse_click_timer)
1809 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001810 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 mouse_click_timer = 0;
1812 repeated_click = TRUE;
1813 }
1814
1815 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001816 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1817 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818
1819 switch (event->button)
1820 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001821 // Keep in sync with gui_x11.c.
1822 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001823 case 1:
1824 button = MOUSE_LEFT;
1825 // needed for touch-drag
1826 dragging_button_state |= GDK_BUTTON1_MASK;
1827 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001828 case 2: button = MOUSE_MIDDLE; break;
1829 case 3: button = MOUSE_RIGHT; break;
1830 case 8: button = MOUSE_X1; break;
1831 case 9: button = MOUSE_X2; break;
1832 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001833 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 }
1835
1836#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001837 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (im_is_preediting())
1839 xim_reset();
1840#endif
1841
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001842 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843
1844 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845
1846 return TRUE;
1847}
1848
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001850 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001853scroll_event(GtkWidget *widget,
1854 GdkEventScroll *event,
1855 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001858 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859
Bram Moolenaar98921892016-02-23 17:14:37 +01001860 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 gtk_widget_grab_focus(widget);
1862
1863 switch (event->direction)
1864 {
1865 case GDK_SCROLL_UP:
1866 button = MOUSE_4;
1867 break;
1868 case GDK_SCROLL_DOWN:
1869 button = MOUSE_5;
1870 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001871 case GDK_SCROLL_LEFT:
1872 button = MOUSE_7;
1873 break;
1874 case GDK_SCROLL_RIGHT:
1875 button = MOUSE_6;
1876 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001877 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 return FALSE;
1879 }
1880
1881# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001882 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 if (im_is_preediting())
1884 xim_reset();
1885# endif
1886
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001887 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
1889 gui_send_mouse_event(button, (int)event->x, (int)event->y,
1890 FALSE, vim_modifiers);
1891
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 return TRUE;
1893}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894
1895
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001897button_release_event(GtkWidget *widget UNUSED,
1898 GdkEventButton *event,
1899 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900{
1901 int x, y;
1902 int_u vim_modifiers;
1903
Bram Moolenaar20892c12011-06-26 04:49:00 +02001904 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001905
Bram Moolenaar30613902019-12-01 22:11:18 +01001906 // Remove any motion "machine gun" timers used for automatic further
1907 // extension of allocation areas if outside of the applications window
1908 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 if (motion_repeat_timer)
1910 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001911 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 motion_repeat_timer = 0;
1913 }
1914
1915 x = event->x;
1916 y = event->y;
1917
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001918 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919
1920 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921
Chris Daltonee93e322021-11-23 12:27:48 +00001922 switch (event->button)
1923 {
1924 case 1: // MOUSE_LEFT
1925 dragging_button_state = 0;
1926 break;
1927 }
1928
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 return TRUE;
1930}
1931
1932
1933#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01001934/////////////////////////////////////////////////////////////////////////////
1935// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936
1937/*
1938 * Count how many items there may be and separate them with a NUL.
1939 * Apparently the items are separated with \r\n. This is not documented,
1940 * thus be careful not to go past the end. Also allow separation with
1941 * NUL characters.
1942 */
1943 static int
1944count_and_decode_uri_list(char_u *out, char_u *raw, int len)
1945{
1946 int i;
1947 char_u *p = out;
1948 int count = 0;
1949
1950 for (i = 0; i < len; ++i)
1951 {
1952 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
1953 {
1954 if (p > out && p[-1] != NUL)
1955 {
1956 ++count;
1957 *p++ = NUL;
1958 }
1959 }
1960 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
1961 {
1962 *p++ = hexhex2nr(raw + i + 1);
1963 i += 2;
1964 }
1965 else
1966 *p++ = raw[i];
1967 }
1968 if (p > out && p[-1] != NUL)
1969 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001970 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 ++count;
1972 }
1973 return count;
1974}
1975
1976/*
1977 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
1978 * this process, URI which protocol is not "file:" are removed. Return
1979 * length of array (less than "max").
1980 */
1981 static int
1982filter_uri_list(char_u **outlist, int max, char_u *src)
1983{
1984 int i, j;
1985
1986 for (i = j = 0; i < max; ++i)
1987 {
1988 outlist[i] = NULL;
1989 if (STRNCMP(src, "file:", 5) == 0)
1990 {
1991 src += 5;
1992 if (STRNCMP(src, "//localhost", 11) == 0)
1993 src += 11;
1994 while (src[0] == '/' && src[1] == '/')
1995 ++src;
1996 outlist[j++] = vim_strsave(src);
1997 }
1998 src += STRLEN(src) + 1;
1999 }
2000 return j;
2001}
2002
2003 static char_u **
2004parse_uri_list(int *count, char_u *data, int len)
2005{
2006 int n = 0;
2007 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002008 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002010 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 {
2012 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002013 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 n = filter_uri_list(array, n, tmp);
2015 }
2016 vim_free(tmp);
2017 *count = n;
2018 return array;
2019}
2020
2021 static void
2022drag_handle_uri_list(GdkDragContext *context,
2023 GtkSelectionData *data,
2024 guint time_,
2025 GdkModifierType state,
2026 gint x,
2027 gint y)
2028{
2029 char_u **fnames;
2030 int nfiles = 0;
2031
Bram Moolenaar98921892016-02-23 17:14:37 +01002032 fnames = parse_uri_list(&nfiles,
2033 (char_u *)gtk_selection_data_get_data(data),
2034 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035
2036 if (fnames != NULL && nfiles > 0)
2037 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002038 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039
Bram Moolenaar30613902019-12-01 22:11:18 +01002040 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002042 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043
2044 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2045 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002046 else
2047 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048}
2049
2050 static void
2051drag_handle_text(GdkDragContext *context,
2052 GtkSelectionData *data,
2053 guint time_,
2054 GdkModifierType state)
2055{
2056 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2057 char_u *text;
2058 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
Bram Moolenaar98921892016-02-23 17:14:37 +01002061 text = (char_u *)gtk_selection_data_get_data(data);
2062 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063
Bram Moolenaar98921892016-02-23 17:14:37 +01002064 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 if (input_conv.vc_type != CONV_NONE)
2067 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (tmpbuf != NULL)
2069 text = tmpbuf;
2070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
2072 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002073 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002076 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 if (dropkey[2] != 0)
2079 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2080 else
2081 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082}
2083
2084/*
2085 * DND receiver.
2086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 static void
2088drag_data_received_cb(GtkWidget *widget,
2089 GdkDragContext *context,
2090 gint x,
2091 gint y,
2092 GtkSelectionData *data,
2093 guint info,
2094 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002095 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096{
2097 GdkModifierType state;
2098
Bram Moolenaar30613902019-12-01 22:11:18 +01002099 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002100 const guchar * const data_data = gtk_selection_data_get_data(data);
2101 const gint data_length = gtk_selection_data_get_length(data);
2102 const gint data_format = gtk_selection_data_get_format(data);
2103
2104 if (data_data == NULL
2105 || data_length <= 0
2106 || data_format != 8
2107 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 {
2109 gtk_drag_finish(context, FALSE, FALSE, time_);
2110 return;
2111 }
2112
Bram Moolenaar30613902019-12-01 22:11:18 +01002113 // Get the current modifier state for proper distinguishment between
2114 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002115 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
Bram Moolenaar30613902019-12-01 22:11:18 +01002117 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 if (info == (guint)TARGET_TEXT_URI_LIST)
2119 drag_handle_uri_list(context, data, time_, state, x, y);
2120 else
2121 drag_handle_text(context, data, time_, state);
2122
2123}
Bram Moolenaar30613902019-12-01 22:11:18 +01002124#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125
2126
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002127#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128/*
2129 * GnomeClient interact callback. Check for unsaved buffers that cannot
2130 * be abandoned and pop up a dialog asking the user for confirmation if
2131 * necessary.
2132 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002134sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002136 GnomeDialogType type UNUSED,
2137 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138{
2139 cmdmod_T save_cmdmod;
2140 gboolean shutdown_cancelled;
2141
2142 save_cmdmod = cmdmod;
2143
2144# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002145 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146# endif
2147# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002148 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149# endif
2150 /*
2151 * If there are changed buffers, present the user with
2152 * a dialog if possible, otherwise give an error message.
2153 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002154 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 exiting = FALSE;
2157 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002158 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 out_flush();
2160 /*
2161 * If the user hit the [Cancel] button the whole shutdown
2162 * will be cancelled. Wow, quite powerful feature (:
2163 */
2164 gnome_interaction_key_return(key, shutdown_cancelled);
2165}
2166
2167/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 * "save_yourself" signal handler. Initiate an interaction to ask the user
2169 * for confirmation if necessary. Save the current editing session and tell
2170 * the session manager how to restart Vim.
2171 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 static gboolean
2173sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002174 gint phase UNUSED,
2175 GnomeSaveStyle save_style UNUSED,
2176 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002178 gboolean fast UNUSED,
2179 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180{
2181 static const char suffix[] = "-session.vim";
2182 char *session_file;
2183 unsigned int len;
2184 gboolean success;
2185
Bram Moolenaar30613902019-12-01 22:11:18 +01002186 // Always request an interaction if possible. check_changed_any()
2187 // won't actually show a dialog unless any buffers have been modified.
2188 // There doesn't seem to be an obvious way to check that without
2189 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 if (interact_style == GNOME_INTERACT_ANY)
2191 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2192 &sm_client_check_changed_any,
2193 NULL);
2194 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002195 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 // The path is unique for each session save. We do neither know nor care
2198 // which session script will actually be used later. This decision is in
2199 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 session_file = gnome_config_get_real_path(
2201 gnome_client_get_config_prefix(client));
2202 len = strlen(session_file);
2203
2204 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002205 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206
2207 session_file = g_renew(char, session_file, len + sizeof(suffix));
2208 memcpy(session_file + len, suffix, sizeof(suffix));
2209
2210 success = write_session_file((char_u *)session_file);
2211
2212 if (success)
2213 {
2214 const char *argv[8];
2215 int i;
2216
Bram Moolenaar30613902019-12-01 22:11:18 +01002217 // Tell the session manager how to wipe out the stored session data.
2218 // This isn't as dangerous as it looks, don't worry :) session_file
2219 // is a unique absolute filename. Usually it'll be something like
2220 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 i = 0;
2222 argv[i++] = "rm";
2223 argv[i++] = session_file;
2224 argv[i] = NULL;
2225
2226 gnome_client_set_discard_command(client, i, (char **)argv);
2227
Bram Moolenaar30613902019-12-01 22:11:18 +01002228 // Tell the session manager how to restore the just saved session.
2229 // This is easily done thanks to Vim's -S option. Pass the -f flag
2230 // since there's no need to fork -- it might even cause confusion.
2231 // Also pass the window role to give the WM something to match on.
2232 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 i = 0;
2234 argv[i++] = restart_command;
2235 argv[i++] = "-f";
2236 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 argv[i++] = "--role";
2238 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 argv[i++] = "-S";
2240 argv[i++] = session_file;
2241 argv[i] = NULL;
2242
2243 gnome_client_set_restart_command(client, i, (char **)argv);
2244 gnome_client_set_clone_command(client, 0, NULL);
2245 }
2246
2247 g_free(session_file);
2248
2249 return success;
2250}
2251
2252/*
2253 * Called when the session manager wants us to die. There isn't much to save
2254 * here since "save_yourself" has been emitted before (unless serious trouble
2255 * is happening).
2256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002258sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259{
Bram Moolenaar30613902019-12-01 22:11:18 +01002260 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 full_screen = FALSE;
2262
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002263 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002264 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002265 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 preserve_exit();
2267}
2268
2269/*
2270 * Connect our signal handlers to be notified on session save and shutdown.
2271 */
2272 static void
2273setup_save_yourself(void)
2274{
2275 GnomeClient *client;
2276
2277 client = gnome_master_client();
2278
2279 if (client != NULL)
2280 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002281 // Must use the deprecated gtk_signal_connect() for compatibility
2282 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2284 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2285 gtk_signal_connect(GTK_OBJECT(client), "die",
2286 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2287 }
2288}
2289
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002290#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291
2292# ifdef USE_XSMP
2293/*
2294 * GTK tells us that XSMP needs attention
2295 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002297local_xsmp_handle_requests(
2298 GIOChannel *source UNUSED,
2299 GIOCondition condition,
2300 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301{
2302 if (condition == G_IO_IN)
2303 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002304 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 if (xsmp_handle_requests() == FAIL)
2306 g_io_channel_unref((GIOChannel *)data);
2307 return TRUE;
2308 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002309 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 g_io_channel_unref((GIOChannel *)data);
2311 xsmp_close();
2312 return TRUE;
2313}
Bram Moolenaar30613902019-12-01 22:11:18 +01002314# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315
2316/*
2317 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2318 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2319 */
2320 static void
2321setup_save_yourself(void)
2322{
2323 Atom *existing_atoms = NULL;
2324 int count = 0;
2325
Bram Moolenaar98921892016-02-23 17:14:37 +01002326# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 if (xsmp_icefd != -1)
2328 {
2329 /*
2330 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2331 * set up GTK IO monitor
2332 */
2333 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2334
2335 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2336 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002337 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 }
2339 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002340# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002342 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343
Bram Moolenaar30613902019-12-01 22:11:18 +01002344 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002345 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2346
2347 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2348 GDK_WINDOW_XID(mainwin_win),
2349 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 {
2351 Atom *new_atoms;
2352 Atom save_yourself_xatom;
2353 int i;
2354
2355 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2356
Bram Moolenaar30613902019-12-01 22:11:18 +01002357 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 for (i = 0; i < count; ++i)
2359 if (existing_atoms[i] == save_yourself_xatom)
2360 break;
2361
2362 if (i == count)
2363 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002364 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002365 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 if (new_atoms != NULL)
2367 {
2368 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2369 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002370 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2371 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 new_atoms, count + 1);
2373 vim_free(new_atoms);
2374 }
2375 }
2376 XFree(existing_atoms);
2377 }
2378 }
2379}
2380
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381/*
2382 * Installing a global event filter seems to be the only way to catch
2383 * client messages of type WM_PROTOCOLS without overriding GDK's own
2384 * client message event filter. Well, that's still better than trying
2385 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 *
2387 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2388 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2389 * I have the nasty feeling modern session managers just don't send this
2390 * deprecated message anymore. Addition: confirmed by several people.
2391 *
2392 * The GNOME session support is much cooler anyway. Unlike this ugly
2393 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2394 * it should work with KDE as well.
2395 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002397global_event_filter(GdkXEvent *xev,
2398 GdkEvent *event UNUSED,
2399 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400{
2401 XEvent *xevent = (XEvent *)xev;
2402
2403 if (xevent != NULL
2404 && xevent->type == ClientMessage
2405 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002406 && (long_u)xevent->xclient.data.l[0]
2407 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 {
2409 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002410 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 /*
2412 * Set the window's WM_COMMAND property, to let the window manager
2413 * know we are done saving ourselves. We don't want to be
2414 * restarted, thus set argv to NULL.
2415 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002416 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2417 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 NULL, 0);
2419 return GDK_FILTER_REMOVE;
2420 }
2421
2422 return GDK_FILTER_CONTINUE;
2423}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002424#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
2426
2427/*
2428 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002431mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432{
Bram Moolenaar30613902019-12-01 22:11:18 +01002433// If you get an error message here, you still need to unpack the runtime
2434// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435#ifdef magick
2436# undef magick
2437#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002438 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440#define magick vim32x32
2441#include "../runtime/vim32x32.xpm"
2442#undef magick
2443#define magick vim16x16
2444#include "../runtime/vim16x16.xpm"
2445#undef magick
2446#define magick vim48x48
2447#include "../runtime/vim48x48.xpm"
2448#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
Bram Moolenaar98921892016-02-23 17:14:37 +01002451 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002452
Bram Moolenaar30613902019-12-01 22:11:18 +01002453 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 if (echo_wid_arg)
2455 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002456 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 fflush(stdout);
2458 }
2459
2460 if (vim_strchr(p_go, GO_ICON) != NULL)
2461 {
2462 /*
2463 * Add an icon to the main window. For fun and convenience of the user.
2464 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 GList *icons = NULL;
2466
2467 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2468 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2469 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2470
2471 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2472
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002473 // TODO: is this type cast OK?
2474 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 }
2477
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002478#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002479 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002482 // Setup to indicate to the window manager that we want to catch the
2483 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2484 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002485#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 if (using_gnome)
2487#endif
2488 setup_save_yourself();
2489
2490#ifdef FEAT_CLIENTSERVER
2491 if (serverName == NULL && serverDelayedStartName != NULL)
2492 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002493 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002494 commWindow = GDK_WINDOW_XID(mainwin_win);
2495
2496 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2497 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 }
2499 else
2500 {
2501 /*
2502 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2503 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002504 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002506 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2507 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 }
2509 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002510 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2511 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512#endif
2513}
2514
2515 static GdkCursor *
2516create_blank_pointer(void)
2517{
2518 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002519#if GTK_CHECK_VERSION(3,0,0)
2520 GdkPixbuf *blank_mask;
2521#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002523#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002525#if GTK_CHECK_VERSION(3,0,0)
2526 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2527#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 GdkColor color = { 0, 0, 0, 0 };
2529 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002530#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002532#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002533 {
2534 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2535 GdkScreen * const scrn = gdk_window_get_screen(win);
2536 root_window = gdk_screen_get_root_window(scrn);
2537 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002538#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 root_window = gtk_widget_get_root_window(gui.mainwin);
2540#endif
2541
Bram Moolenaar30613902019-12-01 22:11:18 +01002542 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2543 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002544#if GTK_CHECK_VERSION(3,0,0)
2545 {
2546 cairo_surface_t *surf;
2547 cairo_t *cr;
2548
2549 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2550 cr = cairo_create(surf);
2551
Bram Moolenaar36edf062016-07-21 22:10:12 +02002552 cairo_set_source_rgba(cr,
2553 color.red,
2554 color.green,
2555 color.blue,
2556 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002557 cairo_rectangle(cr, 0, 0, 1, 1);
2558 cairo_fill(cr);
2559 cairo_destroy(cr);
2560
2561 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2562 cairo_surface_destroy(surf);
2563
2564 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2565 blank_mask, 0, 0);
2566 g_object_unref(blank_mask);
2567 }
2568#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2570 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2571 &color, &color, 0, 0);
2572 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002573#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574
2575 return cursor;
2576}
2577
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 static void
2579mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002580 GdkScreen *previous_screen UNUSED,
2581 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583 if (!gtk_widget_has_screen(widget))
2584 return;
2585
2586 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002587 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 */
2589 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002590#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002591 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002592#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002594#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595
2596 gui.blank_pointer = create_blank_pointer();
2597
Bram Moolenaar98921892016-02-23 17:14:37 +01002598 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2599 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2600 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601
2602 /*
2603 * Create a new PangoContext for this screen, and initialize it
2604 * with the current font if necessary.
2605 */
2606 if (gui.text_context != NULL)
2607 g_object_unref(gui.text_context);
2608
2609 gui.text_context = gtk_widget_create_pango_context(widget);
2610 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2611
2612 if (gui.norm_font != NULL)
2613 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002614 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002615 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 }
2617}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618
2619/*
2620 * After the drawing area comes up, we calculate all colors and create the
2621 * dummy blank cursor.
2622 *
2623 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2624 * fact that the main VIM engine doesn't take them into account anywhere.
2625 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002627drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628{
2629 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002630 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631
2632#ifdef FEAT_XIM
2633 xim_init();
2634#endif
2635 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002636#if GTK_CHECK_VERSION(3,0,0)
2637 gui.surface = gdk_window_create_similar_surface(
2638 gtk_widget_get_window(widget),
2639 CAIRO_CONTENT_COLOR_ALPHA,
2640 gtk_widget_get_allocated_width(widget),
2641 gtk_widget_get_allocated_height(widget));
2642#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645
2646 gui.blank_pointer = create_blank_pointer();
2647 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002648 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649
Bram Moolenaar30613902019-12-01 22:11:18 +01002650 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2652 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2653 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2654 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002655 gtk_widget_get_allocation(sbar, &allocation);
2656 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2657 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658
2659 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002660 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2661 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662}
2663
2664/*
2665 * Properly clean up on shutdown.
2666 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002668drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669{
Bram Moolenaar30613902019-12-01 22:11:18 +01002670 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 full_screen = FALSE;
2672
2673#ifdef FEAT_XIM
2674 im_shutdown();
2675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 if (gui.ascii_glyphs != NULL)
2677 {
2678 pango_glyph_string_free(gui.ascii_glyphs);
2679 gui.ascii_glyphs = NULL;
2680 }
2681 if (gui.ascii_font != NULL)
2682 {
2683 g_object_unref(gui.ascii_font);
2684 gui.ascii_font = NULL;
2685 }
2686 g_object_unref(gui.text_context);
2687 gui.text_context = NULL;
2688
Bram Moolenaar98921892016-02-23 17:14:37 +01002689#if GTK_CHECK_VERSION(3,0,0)
2690 if (gui.surface != NULL)
2691 {
2692 cairo_surface_destroy(gui.surface);
2693 gui.surface = NULL;
2694 }
2695#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 g_object_unref(gui.text_gc);
2697 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002698#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699
Bram Moolenaar98921892016-02-23 17:14:37 +01002700#if GTK_CHECK_VERSION(3,0,0)
2701 g_object_unref(G_OBJECT(gui.blank_pointer));
2702#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706}
2707
Bram Moolenaara859f042016-11-17 19:11:55 +01002708#if GTK_CHECK_VERSION(3,22,2)
2709 static void
2710drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2711 gpointer data UNUSED)
2712#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002714drawarea_style_set_cb(GtkWidget *widget UNUSED,
2715 GtkStyle *previous_style UNUSED,
2716 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718{
2719 gui_mch_new_colors();
2720}
2721
Bram Moolenaar98921892016-02-23 17:14:37 +01002722#if GTK_CHECK_VERSION(3,0,0)
2723 static gboolean
2724drawarea_configure_event_cb(GtkWidget *widget,
2725 GdkEventConfigure *event,
2726 gpointer data UNUSED)
2727{
2728 static int cur_width = 0;
2729 static int cur_height = 0;
2730
2731 g_return_val_if_fail(event
2732 && event->width >= 1 && event->height >= 1, TRUE);
2733
Bram Moolenaar182707a2016-11-21 20:55:58 +01002734# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002735 // As of 3.22.2, GdkWindows have started distributing configure events to
2736 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2737 //
2738 // As can be seen from the implementation of move_native_children() and
2739 // configure_native_child() in gdkwindow.c, those functions actually
2740 // propagate configure events to every child, failing to distinguish
2741 // "native" one from non-native one.
2742 //
2743 // Naturally, configure events propagated to here like that are fallacious
2744 // and, as a matter of fact, they trigger a geometric collapse of
2745 // gui.drawarea in fullscreen and maximized modes.
2746 //
2747 // To filter out such nuisance events, we are making use of the fact that
2748 // the field send_event of such GdkEventConfigures is set to FALSE in
2749 // configure_native_child().
2750 //
2751 // Obviously, this is a terrible hack making GVim depend on GTK's
2752 // implementation details. Therefore, watch out any relevant internal
2753 // changes happening in GTK in the feature (sigh).
2754 //
2755 // Follow-up
2756 // After a few weeks later, the GdkWindow change mentioned above was
2757 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2758 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002759 if (event->send_event == FALSE)
2760 return TRUE;
2761# endif
2762
Bram Moolenaar98921892016-02-23 17:14:37 +01002763 if (event->width == cur_width && event->height == cur_height)
2764 return TRUE;
2765
2766 cur_width = event->width;
2767 cur_height = event->height;
2768
2769 if (gui.surface != NULL)
2770 cairo_surface_destroy(gui.surface);
2771
2772 gui.surface = gdk_window_create_similar_surface(
2773 gtk_widget_get_window(widget),
2774 CAIRO_CONTENT_COLOR_ALPHA,
2775 event->width, event->height);
2776
2777 gtk_widget_queue_draw(widget);
2778
2779 return TRUE;
2780}
2781#endif
2782
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783/*
2784 * Callback routine for the "delete_event" signal on the toplevel window.
2785 * Tries to vim gracefully, or refuses to exit with changed buffers.
2786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002788delete_event_cb(GtkWidget *widget UNUSED,
2789 GdkEventAny *event UNUSED,
2790 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791{
2792 gui_shell_closed();
2793 return TRUE;
2794}
2795
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002796#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2797 static int
2798get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2799{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002800# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002801 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2802
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002803 if (using_gnome && widget != NULL)
2804 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002805 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002806 BonoboDockItem *dockitem;
2807
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002808 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002809 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2810 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002811 // Only menu & toolbar are dock items. Could tabline be?
2812 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002813 widget = parent;
2814 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002815
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002816 if (dockitem == NULL || dockitem->is_floating)
2817 return 0;
2818 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2819 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002820 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002821# else
2822# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002823# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002824
Bram Moolenaar98921892016-02-23 17:14:37 +01002825 if (widget != NULL
2826 && item_orientation == orientation
2827 && gtk_widget_get_realized(widget)
2828 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002829 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002830# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002831 GtkAllocation allocation;
2832
2833 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002834 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002835# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002836 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2837 return widget->allocation.height;
2838 else
2839 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002840# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002841 }
2842 return 0;
2843}
2844#endif
2845
2846 static int
2847get_menu_tool_width(void)
2848{
2849 int width = 0;
2850
Bram Moolenaar30613902019-12-01 22:11:18 +01002851#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002852# ifdef FEAT_MENU
2853 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2854# endif
2855# ifdef FEAT_TOOLBAR
2856 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2857# endif
2858# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002859 if (gui.tabline != NULL)
2860 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002861# endif
2862#endif
2863
2864 return width;
2865}
2866
2867 static int
2868get_menu_tool_height(void)
2869{
2870 int height = 0;
2871
2872#ifdef FEAT_MENU
2873 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2874#endif
2875#ifdef FEAT_TOOLBAR
2876 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2877#endif
2878#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002879 if (gui.tabline != NULL)
2880 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002881#endif
2882
2883 return height;
2884}
2885
Bram Moolenaar30613902019-12-01 22:11:18 +01002886// This controls whether we can set the real window hints at
2887// start-up when in a GtkPlug.
2888// 0 = normal processing (default)
2889// 1 = init. hints set, no-one's tried to reset since last check
2890// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002891static int init_window_hints_state = 0;
2892
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002893 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002894update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002895{
2896 static int old_width = 0;
2897 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002898 static int old_min_width = 0;
2899 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002900 static int old_char_width = 0;
2901 static int old_char_height = 0;
2902
2903 int width;
2904 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002905 int min_width;
2906 int min_height;
2907
Bram Moolenaar30613902019-12-01 22:11:18 +01002908 // At start-up, don't try to set the hints until the initial
2909 // values have been used (those that dictate our initial size)
2910 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002911 if (!(force_width && force_height) && init_window_hints_state > 0)
2912 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002913 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002914 init_window_hints_state = 2;
2915 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002916 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002917
Bram Moolenaar30613902019-12-01 22:11:18 +01002918 // This also needs to be done when the main window isn't there yet,
2919 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002920 width = gui_get_base_width();
2921 height = gui_get_base_height();
2922# ifdef FEAT_MENU
2923 height += tabline_height() * gui.char_height;
2924# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002925 width += get_menu_tool_width();
2926 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002927
Bram Moolenaar30613902019-12-01 22:11:18 +01002928 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
2929 // their actual widget size. When we set our size ourselves (e.g.,
2930 // 'set columns=' or init. -geom) we briefly set the min. to the size
2931 // we wish to be instead of the legitimate minimum so that we actually
2932 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002933 if (force_width && force_height)
2934 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002935 min_width = force_width;
2936 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002937 }
2938 else
2939 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002940 min_width = width + MIN_COLUMNS * gui.char_width;
2941 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002942 }
2943
Bram Moolenaar30613902019-12-01 22:11:18 +01002944 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002945 if (width != old_width
2946 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002947 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002948 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002949 || gui.char_width != old_char_width
2950 || gui.char_height != old_char_height)
2951 {
2952 GdkGeometry geometry;
2953 GdkWindowHints geometry_mask;
2954
2955 geometry.width_inc = gui.char_width;
2956 geometry.height_inc = gui.char_height;
2957 geometry.base_width = width;
2958 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002959 geometry.min_width = min_width;
2960 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002961 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
2962 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002963 // Using gui.formwin as geometry widget doesn't work as expected
2964 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
2965 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002966 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
2967 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002968 old_width = width;
2969 old_height = height;
2970 old_min_width = min_width;
2971 old_min_height = min_height;
2972 old_char_width = gui.char_width;
2973 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002974 }
2975}
2976
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02002977#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
2978 void
2979gui_mch_set_dark_theme(int dark)
2980{
2981# if GTK_CHECK_VERSION(3,0,0)
2982 GtkSettings *gtk_settings;
2983
2984 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
2985 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
2986# endif
2987}
Bram Moolenaar30613902019-12-01 22:11:18 +01002988#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02002989
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990#ifdef FEAT_TOOLBAR
2991
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992/*
2993 * This extra effort wouldn't be necessary if we only used stock icons in the
2994 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
2995 * shouldn't be treated differently, thus we do need this.
2996 */
2997 static void
2998icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
2999{
3000 if (GTK_IS_IMAGE(widget))
3001 {
3002 GtkImage *image = (GtkImage *)widget;
3003
Bram Moolenaar98921892016-02-23 17:14:37 +01003004# if GTK_CHECK_VERSION(3,10,0)
3005 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3006 {
3007 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3008 const gchar *icon_name;
3009
3010 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003011 image = (GtkImage *)gtk_image_new_from_icon_name(
3012 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003013 }
3014# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003015 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3017 {
3018 GtkIconSet *icon_set;
3019 GtkIconSize icon_size;
3020
3021 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3022 icon_size = (GtkIconSize)(long)user_data;
3023
3024 gtk_icon_set_ref(icon_set);
3025 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3026 gtk_icon_set_unref(icon_set);
3027 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 }
3030 else if (GTK_IS_CONTAINER(widget))
3031 {
3032 gtk_container_foreach((GtkContainer *)widget,
3033 &icon_size_changed_foreach,
3034 user_data);
3035 }
3036}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037
3038 static void
3039set_toolbar_style(GtkToolbar *toolbar)
3040{
3041 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 GtkIconSize size;
3043 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3046 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3047 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003048 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3050 style = GTK_TOOLBAR_BOTH;
3051 else if (toolbar_flags & TOOLBAR_TEXT)
3052 style = GTK_TOOLBAR_TEXT;
3053 else
3054 style = GTK_TOOLBAR_ICONS;
3055
3056 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003057# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 switch (tbis_flags)
3062 {
3063 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3064 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3065 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3066 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003067 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3068 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 default: size = GTK_ICON_SIZE_INVALID; break;
3070 }
3071 oldsize = gtk_toolbar_get_icon_size(toolbar);
3072
3073 if (size == GTK_ICON_SIZE_INVALID)
3074 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003075 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 gtk_toolbar_unset_icon_size(toolbar);
3077 size = gtk_toolbar_get_icon_size(toolbar);
3078 }
3079 if (size != oldsize)
3080 {
3081 gtk_container_foreach(GTK_CONTAINER(toolbar),
3082 &icon_size_changed_foreach,
3083 GINT_TO_POINTER((int)size));
3084 }
3085 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086}
3087
Bram Moolenaar30613902019-12-01 22:11:18 +01003088#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003090#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3091static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003092static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003093# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003094static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003095# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003096static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003097
3098/*
3099 * Handle selecting an item in the tab line popup menu.
3100 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003101 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003102tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003103{
Bram Moolenaar30613902019-12-01 22:11:18 +01003104 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003105 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003106}
3107
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003108 static void
3109add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3110{
3111 GtkWidget *item;
3112 char_u *utf_text;
3113
3114 utf_text = CONVERT_TO_UTF8(text);
3115 item = gtk_menu_item_new_with_label((const char *)utf_text);
3116 gtk_widget_show(item);
3117 CONVERT_TO_UTF8_FREE(utf_text);
3118
3119 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003120 g_signal_connect(G_OBJECT(item), "activate",
3121 G_CALLBACK(tabline_menu_handler),
3122 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003123}
3124
Bram Moolenaara5621492006-02-25 21:55:24 +00003125/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003126 * Create a menu for the tab line.
3127 */
3128 static GtkWidget *
3129create_tabline_menu(void)
3130{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003131 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003132
3133 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003134 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003135 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3136 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003137
3138 return menu;
3139}
3140
3141 static gboolean
3142on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3143{
Bram Moolenaar30613902019-12-01 22:11:18 +01003144 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003145 if (event->type == GDK_BUTTON_PRESS)
3146 {
3147 GdkEventButton *bevent = (GdkEventButton *)event;
3148 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003149 int y = bevent->y;
3150 GtkWidget *tabwidget;
3151 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003152
Bram Moolenaar30613902019-12-01 22:11:18 +01003153 // When ignoring events return TRUE so that the selected page doesn't
3154 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003155 if (hold_gui_events
3156# ifdef FEAT_CMDWIN
3157 || cmdwin_type != 0
3158# endif
3159 )
3160 return TRUE;
3161
Bram Moolenaar98921892016-02-23 17:14:37 +01003162 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003163
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003164 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003165 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3166 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003167
Bram Moolenaar30613902019-12-01 22:11:18 +01003168 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003169 if (bevent->button == 3)
3170 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003171# if GTK_CHECK_VERSION(3,22,2)
3172 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3173# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003174 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3175 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003176# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003177 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003178 return TRUE;
3179 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003180 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003181 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003182 if (clicked_page == 0)
3183 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003184 // Click after all tabs moves to next tab page. When "x" is
3185 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003186 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003187 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003188 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003189 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003190
Bram Moolenaar30613902019-12-01 22:11:18 +01003191 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003192 return FALSE;
3193}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194
3195/*
3196 * Handle selecting one of the tabs.
3197 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003198 static void
3199on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003200 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003201 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003202 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003203 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003204{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003205 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003206 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003207}
3208
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003209# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003210/*
3211 * Handle reordering the tabs (using D&D).
3212 */
3213 static void
3214on_tab_reordered(
3215 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003216 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003217 gint idx,
3218 gpointer data UNUSED)
3219{
3220 if (!ignore_tabline_evt)
3221 {
3222 if ((tabpage_index(curtab) - 1) < idx)
3223 tabpage_move(idx + 1);
3224 else
3225 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003226 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003227}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003228# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229
3230/*
3231 * Show or hide the tabline.
3232 */
3233 void
3234gui_mch_show_tabline(int showit)
3235{
3236 if (gui.tabline == NULL)
3237 return;
3238
3239 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3240 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003241 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003242 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003243 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003244 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003245 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003246 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003247
3248 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003249}
3250
3251/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003252 * Return TRUE when tabline is displayed.
3253 */
3254 int
3255gui_mch_showing_tabline(void)
3256{
3257 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003258 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003259}
3260
3261/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003262 * Update the labels of the tabline.
3263 */
3264 void
3265gui_mch_update_tabline(void)
3266{
3267 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003268 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003269 GtkWidget *label;
3270 tabpage_T *tp;
3271 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003272 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003273 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003274 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003275
3276 if (gui.tabline == NULL)
3277 return;
3278
3279 ignore_tabline_evt = TRUE;
3280
Bram Moolenaar30613902019-12-01 22:11:18 +01003281 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003282 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3283 {
3284 if (tp == curtab)
3285 curtabidx = nr;
3286
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003287 tab_num = nr + 1;
3288
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003289 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3290 if (page == NULL)
3291 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003292 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003293# if GTK_CHECK_VERSION(3,2,0)
3294 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3295 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3296# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003297 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003298# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003299 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003300 event_box = gtk_event_box_new();
3301 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003302 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003303# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003304 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003305# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003306 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003307 gtk_widget_show(label);
3308 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3309 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003310 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003311 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003312# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003313 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3314 page,
3315 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003316# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003317 }
3318
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003319 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003320 g_object_set_data(G_OBJECT(event_box), "tab_num",
3321 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003322 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003323 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003324 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003325 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003326 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003327
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003328 get_tabline_label(tp, TRUE);
3329 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003330# if GTK_CHECK_VERSION(3,0,0)
3331 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3332# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003333 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3334 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003335# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003336 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003337 }
3338
Bram Moolenaar30613902019-12-01 22:11:18 +01003339 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003340 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3341 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3342
Bram Moolenaar98921892016-02-23 17:14:37 +01003343 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3344 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003345
Bram Moolenaar30613902019-12-01 22:11:18 +01003346 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003347 gui_mch_update();
3348
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003349 ignore_tabline_evt = FALSE;
3350}
3351
3352/*
3353 * Set the current tab to "nr". First tab is 1.
3354 */
3355 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003356gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003357{
3358 if (gui.tabline == NULL)
3359 return;
3360
3361 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003362 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3363 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003364 ignore_tabline_evt = FALSE;
3365}
3366
Bram Moolenaar30613902019-12-01 22:11:18 +01003367#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003368
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003370 * Add selection targets for PRIMARY and CLIPBOARD selections.
3371 */
3372 void
3373gui_gtk_set_selection_targets(void)
3374{
3375 int i, j = 0;
3376 int n_targets = N_SELECTION_TARGETS;
3377 GtkTargetEntry targets[N_SELECTION_TARGETS];
3378
3379 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3380 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003381 // OpenOffice tries to use TARGET_HTML and fails when we don't
3382 // return something, instead of trying another target. Therefore only
3383 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003384 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3385 n_targets--;
3386 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003387 targets[j++] = selection_targets[i];
3388 }
3389
3390 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3391 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3392 gtk_selection_add_targets(gui.drawarea,
3393 (GdkAtom)GDK_SELECTION_PRIMARY,
3394 targets, n_targets);
3395 gtk_selection_add_targets(gui.drawarea,
3396 (GdkAtom)clip_plus.gtk_sel_atom,
3397 targets, n_targets);
3398}
3399
3400/*
3401 * Set up for receiving DND items.
3402 */
3403 void
3404gui_gtk_set_dnd_targets(void)
3405{
3406 int i, j = 0;
3407 int n_targets = N_DND_TARGETS;
3408 GtkTargetEntry targets[N_DND_TARGETS];
3409
3410 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3411 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003412 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003413 n_targets--;
3414 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003415 targets[j++] = dnd_targets[i];
3416 }
3417
3418 gtk_drag_dest_unset(gui.drawarea);
3419 gtk_drag_dest_set(gui.drawarea,
3420 GTK_DEST_DEFAULT_ALL,
3421 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003422 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003423}
3424
3425/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3427 * Returns OK for success, FAIL when the GUI can't be started.
3428 */
3429 int
3430gui_mch_init(void)
3431{
3432 GtkWidget *vbox;
3433
3434#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003435 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3436 // exits on failure, but that's a non-issue because we already called
3437 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003439 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3441 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003442# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003443 {
3444 char *p = setlocale(LC_NUMERIC, NULL);
3445
Bram Moolenaar30613902019-12-01 22:11:18 +01003446 // Make sure strtod() uses a decimal point, not a comma. Gnome
3447 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003448 if (p == NULL || strcmp(p, "C") != 0)
3449 setlocale(LC_NUMERIC, "C");
3450 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003451# endif
3452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003454 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003456#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003457 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 /*
3461 * Force UTF-8 output no matter what the value of 'encoding' is.
3462 * did_set_string_option() in option.c prohibits changing 'termencoding'
3463 * to something else than UTF-8 if the GUI is in use.
3464 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003465 set_option_value_give_err((char_u *)"termencoding",
3466 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003468#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003470#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003471 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3472 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003473#if !GTK_CHECK_VERSION(3,0,0)
3474# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003476# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477#endif
3478
Bram Moolenaar30613902019-12-01 22:11:18 +01003479 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 gui.border_width = 2;
3481 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3482 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003483#if GTK_CHECK_VERSION(3,0,0)
3484 gui.fgcolor = g_new(GdkRGBA, 1);
3485 gui.bgcolor = g_new(GdkRGBA, 1);
3486 gui.spcolor = g_new(GdkRGBA, 1);
3487#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003488 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003490 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003492 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003493 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495
Bram Moolenaar30613902019-12-01 22:11:18 +01003496 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003497 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
Bram Moolenaar30613902019-12-01 22:11:18 +01003500 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 gui.norm_pixel = gui.def_norm_pixel;
3502 gui.back_pixel = gui.def_back_pixel;
3503
3504 if (gtk_socket_id != 0)
3505 {
3506 GtkWidget *plug;
3507
Bram Moolenaar30613902019-12-01 22:11:18 +01003508 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3510 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003511 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 {
3513 gui.mainwin = plug;
3514 }
3515 else
3516 {
3517 g_warning("Connection to GTK+ socket (ID %u) failed",
3518 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003519 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 gtk_socket_id = 0;
3521 }
3522 }
3523
3524 if (gtk_socket_id == 0)
3525 {
3526#ifdef FEAT_GUI_GNOME
3527 if (using_gnome)
3528 {
3529 gui.mainwin = gnome_app_new("Vim", NULL);
3530# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003531 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 xsmp_close();
3533# endif
3534 }
3535 else
3536#endif
3537 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3538 }
3539
3540 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3541
Bram Moolenaar30613902019-12-01 22:11:18 +01003542 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3544 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545
Bram Moolenaar98921892016-02-23 17:14:37 +01003546 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3548
Bram Moolenaar98921892016-02-23 17:14:37 +01003549 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3550 G_CALLBACK(&delete_event_cb), NULL);
3551
3552 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3553 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003554
3555 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003557
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 gui.accel_group = gtk_accel_group_new();
3559 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560
Bram Moolenaar30613902019-12-01 22:11:18 +01003561 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003562#if GTK_CHECK_VERSION(3,2,0)
3563 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3564 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3565#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568
3569#ifdef FEAT_GUI_GNOME
3570 if (using_gnome)
3571 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003572# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003573 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3575# endif
3576 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3577 }
3578 else
3579#endif
3580 {
3581 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3582 gtk_widget_show(vbox);
3583 }
3584
3585#ifdef FEAT_MENU
3586 /*
3587 * Create the menubar and handle
3588 */
3589 gui.menubar = gtk_menu_bar_new();
3590 gtk_widget_set_name(gui.menubar, "vim-menubar");
3591
Bram Moolenaar30613902019-12-01 22:11:18 +01003592 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003593 {
3594 GtkSettings *gtk_settings;
3595
3596 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3597 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3598 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003599
3600
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601# ifdef FEAT_GUI_GNOME
3602 if (using_gnome)
3603 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 BonoboDockItem *dockitem;
3605
3606 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3607 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3608 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003609 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003610 bonobo_dock_item_set_behavior(dockitem,
3611 bonobo_dock_item_get_behavior(dockitem)
3612 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 }
3615 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003616# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003618 // Always show the menubar, otherwise <F10> doesn't work. It may be
3619 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003620 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3622 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003623#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
3625#ifdef FEAT_TOOLBAR
3626 /*
3627 * Create the toolbar and handle
3628 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003629 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003630# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003631 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3632 // N.B. Since the default value of GtkToolbar::button-relief is
3633 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003634# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 gtk_rc_parse_string(
3636 "style \"vim-toolbar-style\" {\n"
3637 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3638 "}\n"
3639 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003640# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 gui.toolbar = gtk_toolbar_new();
3642 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3644
3645# ifdef FEAT_GUI_GNOME
3646 if (using_gnome)
3647 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 BonoboDockItem *dockitem;
3649
3650 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3651 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3652 GNOME_APP_TOOLBAR_NAME);
3653 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003654 // When the toolbar is floating it gets stuck. So long as that isn't
3655 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003656 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003657 bonobo_dock_item_get_behavior(dockitem)
3658 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003662# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3665 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3666 gtk_widget_show(gui.toolbar);
3667 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3668 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003669#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003671#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003672 /*
3673 * Use a Notebook for the tab pages labels. The labels are hidden by
3674 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003675 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003676 gui.tabline = gtk_notebook_new();
3677 gtk_widget_show(gui.tabline);
3678 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3679 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3680 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003681 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003682# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003683 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003684# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003685
Bram Moolenaar98921892016-02-23 17:14:37 +01003686# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003687 tabline_tooltip = gtk_tooltips_new();
3688 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003689# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003690
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003692 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003693
Bram Moolenaar30613902019-12-01 22:11:18 +01003694 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003695# if GTK_CHECK_VERSION(3,2,0)
3696 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3697 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3698# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003699 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003700# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003701 gtk_widget_show(page);
3702 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3703 label = gtk_label_new("-Empty-");
3704 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003705 event_box = gtk_event_box_new();
3706 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003707 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003708# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003709 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003710# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003711 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003712 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003713# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003714 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003715# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003716 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003717
Bram Moolenaar98921892016-02-23 17:14:37 +01003718 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3719 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003720# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003721 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3722 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003723# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003724
Bram Moolenaar30613902019-12-01 22:11:18 +01003725 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003726 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003727 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3728 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003729#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003730
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003731 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003732 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003733#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003735#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003736#if GTK_CHECK_VERSION(3,22,2)
3737 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739
3740 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003741#if GTK_CHECK_VERSION(3,0,0)
3742 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003743#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744
Bram Moolenaar30613902019-12-01 22:11:18 +01003745 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 gtk_widget_set_events(gui.drawarea,
3747 GDK_EXPOSURE_MASK |
3748 GDK_ENTER_NOTIFY_MASK |
3749 GDK_LEAVE_NOTIFY_MASK |
3750 GDK_BUTTON_PRESS_MASK |
3751 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 GDK_KEY_PRESS_MASK |
3754 GDK_KEY_RELEASE_MASK |
3755 GDK_POINTER_MOTION_MASK |
3756 GDK_POINTER_MOTION_HINT_MASK);
3757
3758 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003759 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 gtk_widget_show(gui.formwin);
3761 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3762
Bram Moolenaar30613902019-12-01 22:11:18 +01003763 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3764 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003765 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3766 : G_OBJECT(gui.drawarea),
3767 "key-press-event",
3768 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003769#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003770 // Also forward key release events for the benefit of GTK+ 2 input
3771 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3773 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003774 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 G_CALLBACK(&key_release_event), NULL);
3776#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003777 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3778 G_CALLBACK(drawarea_realize_cb), NULL);
3779 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3780 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003781#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003782 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3783 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003784#endif
3785#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003786 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3787 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003788#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003789 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3790 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003791#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792
Bram Moolenaar98921892016-02-23 17:14:37 +01003793#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003795#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003797#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3799 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3800#endif
3801
3802 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003803 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003804 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805
3806 /*
3807 * Set clipboard specific atoms
3808 */
3809 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3812 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3813
3814 /*
3815 * Start out by adding the configured border width into the border offset.
3816 */
3817 gui.border_offset = gui.border_width;
3818
Bram Moolenaar98921892016-02-23 17:14:37 +01003819#if GTK_CHECK_VERSION(3,0,0)
3820 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3821 G_CALLBACK(draw_event), NULL);
3822#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3824 GTK_SIGNAL_FUNC(visibility_event), NULL);
3825 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3826 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
3829 /*
3830 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3831 * Only needed for some window managers.
3832 */
3833 if (vim_strchr(p_go, GO_POINTER) != NULL)
3834 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003835 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3836 G_CALLBACK(leave_notify_event), NULL);
3837 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3838 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 }
3840
Bram Moolenaar30613902019-12-01 22:11:18 +01003841 // Real windows can get focus ... GtkPlug, being a mere container can't,
3842 // only its widgets. Arguably, this could be common code and we not use
3843 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003844 if (gtk_socket_id == 0)
3845 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003846 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3847 G_CALLBACK(focus_out_event), NULL);
3848 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3849 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003850 }
3851 else
3852 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003853 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3854 G_CALLBACK(focus_out_event), NULL);
3855 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3856 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003857#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003858 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3859 G_CALLBACK(focus_out_event), NULL);
3860 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
3861 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01003862#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864
Bram Moolenaar98921892016-02-23 17:14:37 +01003865 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
3866 G_CALLBACK(motion_notify_event), NULL);
3867 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
3868 G_CALLBACK(button_press_event), NULL);
3869 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
3870 G_CALLBACK(button_release_event), NULL);
3871 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
3872 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873
3874 /*
3875 * Add selection handler functions.
3876 */
Bram Moolenaar98921892016-02-23 17:14:37 +01003877 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
3878 G_CALLBACK(selection_clear_event), NULL);
3879 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
3880 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881
Bram Moolenaara76638f2010-06-05 12:49:46 +02003882 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
Bram Moolenaar98921892016-02-23 17:14:37 +01003884 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
3885 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886
Bram Moolenaar30613902019-12-01 22:11:18 +01003887 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 gui.in_focus = FALSE;
3889
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02003890 // Handle changes to the "Xft/DPI" setting.
3891 {
3892 GtkSettings *gtk_settings =
3893 gtk_settings_get_for_screen(gdk_screen_get_default());
3894
3895 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
3896 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
3897 }
3898
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 return OK;
3900}
3901
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003902#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903/*
3904 * This is called from gui_start() after a fork() has been done.
3905 * We have to tell the session manager our new PID.
3906 */
3907 void
3908gui_mch_forked(void)
3909{
3910 if (using_gnome)
3911 {
3912 GnomeClient *client;
3913
3914 client = gnome_master_client();
3915
3916 if (client != NULL)
3917 gnome_client_set_process_id(client, getpid());
3918 }
3919}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003920#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
Bram Moolenaar98921892016-02-23 17:14:37 +01003922#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02003923 static GdkRGBA
3924color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01003925{
Bram Moolenaar36edf062016-07-21 22:10:12 +02003926 GdkRGBA rgba;
3927 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
3928 rgba.green = ((color & 0xff00) >> 8) / 255.0;
3929 rgba.blue = ((color & 0xff)) / 255.0;
3930 rgba.alpha = 1.0;
3931 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01003932}
3933
3934 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02003935set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01003936{
Bram Moolenaar36edf062016-07-21 22:10:12 +02003937 const GdkRGBA rgba = color_to_rgba(color);
3938 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003939}
Bram Moolenaar30613902019-12-01 22:11:18 +01003940#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003941
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942/*
3943 * Called when the foreground or background color has been changed.
3944 * This used to change the graphics contexts directly but we are
3945 * currently manipulating them where desired.
3946 */
3947 void
3948gui_mch_new_colors(void)
3949{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003950 if (gui.drawarea != NULL
3951#if GTK_CHECK_VERSION(3,22,2)
3952 && gui.formwin != NULL
3953#endif
3954 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02003956#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003957 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003958#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01003959#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003960 GtkStyleContext * const context =
3961 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01003962 GtkCssProvider * const provider = gtk_css_provider_new();
3963 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003964 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01003965 " background-color: #%.2lx%.2lx%.2lx;\n"
3966 "}\n",
3967 (gui.back_pixel >> 16) & 0xff,
3968 (gui.back_pixel >> 8) & 0xff,
3969 gui.back_pixel & 0xff);
3970
3971 gtk_css_provider_load_from_data(provider, css, -1, NULL);
3972 gtk_style_context_add_provider(context,
3973 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
3974
3975 g_free(css);
3976 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01003977#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02003978 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01003979
Bram Moolenaar36edf062016-07-21 22:10:12 +02003980 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01003981 {
3982 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02003983 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003984 if (pat != NULL)
3985 {
3986 gdk_window_set_background_pattern(da_win, pat);
3987 cairo_pattern_destroy(pat);
3988 }
3989 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02003990 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01003991 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003992#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 GdkColor color = { 0, 0, 0, 0 };
3994
3995 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01003996 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01003997#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 }
3999}
4000
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001/*
4002 * This signal informs us about the need to rearrange our sub-widgets.
4003 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004005form_configure_event(GtkWidget *widget UNUSED,
4006 GdkEventConfigure *event,
4007 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004009 int usable_height = event->height;
4010
Bram Moolenaar182707a2016-11-21 20:55:58 +01004011#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004012 // As of 3.22.2, GdkWindows have started distributing configure events to
4013 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4014 //
4015 // As can be seen from the implementation of move_native_children() and
4016 // configure_native_child() in gdkwindow.c, those functions actually
4017 // propagate configure events to every child, failing to distinguish
4018 // "native" one from non-native one.
4019 //
4020 // Naturally, configure events propagated to here like that are fallacious
4021 // and, as a matter of fact, they trigger a geometric collapse of
4022 // gui.formwin.
4023 //
4024 // To filter out such fallacious events, check if the given event is the
4025 // one that was sent out to the right place. Ignore it if not.
4026 //
4027 // Follow-up
4028 // After a few weeks later, the GdkWindow change mentioned above was
4029 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4030 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004031 if (event->window != gtk_widget_get_window(gui.formwin))
4032 return TRUE;
4033#endif
4034
Bram Moolenaar30613902019-12-01 22:11:18 +01004035 // When in a GtkPlug, we can't guarantee valid heights (as a round
4036 // no. of char-heights), so we have to manually sanitise them.
4037 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004038 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004039 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004040
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004041 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004042 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004043 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 return TRUE;
4046}
4047
4048/*
4049 * Function called when window already closed.
4050 * We can't do much more here than to trying to preserve what had been done,
4051 * since the window is already inevitably going away.
4052 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004053 static void
4054mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055{
Bram Moolenaar30613902019-12-01 22:11:18 +01004056 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 full_screen = FALSE;
4058
4059 gui.mainwin = NULL;
4060 gui.drawarea = NULL;
4061
Bram Moolenaar30613902019-12-01 22:11:18 +01004062 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004064 vim_strncpy(IObuff,
4065 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4066 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 preserve_exit();
4068 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004069#ifdef USE_GRESOURCE
4070 gui_gtk_unregister_resource();
4071#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072}
4073
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004074 void
4075gui_gtk_get_screen_geom_of_win(
4076 GtkWidget *wid,
4077 int point_x, // x position of window if not initialized
4078 int point_y, // y position of window if not initialized
4079 int *screen_x,
4080 int *screen_y,
4081 int *width,
4082 int *height)
4083{
4084 GdkRectangle geometry;
4085 GdkWindow *win = gtk_widget_get_window(wid);
4086#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004087 GdkDisplay *dpy;
4088 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004089
Bram Moolenaar24001432021-03-20 12:36:46 +01004090 if (wid != NULL && gtk_widget_get_realized(wid))
4091 dpy = gtk_widget_get_display(wid);
4092 else
4093 dpy = gdk_display_get_default();
4094 if (win != NULL)
4095 monitor = gdk_display_get_monitor_at_window(dpy, win);
4096 else
4097 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004098 gdk_monitor_get_geometry(monitor, &geometry);
4099#else
4100 GdkScreen* screen;
4101 int monitor;
4102
4103 if (wid != NULL && gtk_widget_has_screen(wid))
4104 screen = gtk_widget_get_screen(wid);
4105 else
4106 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004107 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004108 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004109 else
4110 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004111 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4112#endif
4113 *screen_x = geometry.x;
4114 *screen_y = geometry.y;
4115 *width = geometry.width;
4116 *height = geometry.height;
4117}
4118
4119/*
4120 * The screen size is used to make sure the initial window doesn't get bigger
4121 * than the screen. This subtracts some room for menubar, toolbar and window
4122 * decorations.
4123 */
4124 static void
4125gui_gtk_get_screen_dimensions(
4126 int point_x,
4127 int point_y,
4128 int *screen_w,
4129 int *screen_h)
4130{
4131 int x, y;
4132
4133 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4134 &x, &y, screen_w, screen_h);
4135
4136 // Subtract 'guiheadroom' from the height to allow some room for the
4137 // window manager (task list and window title bar).
4138 *screen_h -= p_ghr;
4139
4140 /*
4141 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4142 * the toolbar and menubar for GTK, we subtract them from the screen
4143 * height, so that the window size can be made to fit on the screen.
4144 * This should be completely changed later.
4145 */
4146 *screen_w -= get_menu_tool_width();
4147 *screen_h -= get_menu_tool_height();
4148}
4149
4150 void
4151gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4152{
4153 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4154}
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;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004251
4252#ifdef FEAT_GUI_GTK
4253 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4254#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004255 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004256#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004257 hh += p_ghr + get_menu_tool_height();
4258 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004259 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004260 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004261 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004262 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004264 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004265 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004266
Bram Moolenaar30613902019-12-01 22:11:18 +01004267 // From now until everyone's stopped trying to set the window hints
4268 // to their correct minimum values, stop them being set as we need
4269 // them to remain at our required size for the parent GtkSocket to
4270 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004271 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004272 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004273 update_window_manager_hints(pixel_width, pixel_height);
4274 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004275 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 }
4278
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004279 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4280 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004281 // For GTK2 changing the size of the form widget doesn't cause window
4282 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004283 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004284 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004285 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286
4287 if (foreground_argument != NULL)
4288 fg_pixel = gui_get_color((char_u *)foreground_argument);
4289 if (fg_pixel == INVALCOLOR)
4290 fg_pixel = gui_get_color((char_u *)"Black");
4291
4292 if (background_argument != NULL)
4293 bg_pixel = gui_get_color((char_u *)background_argument);
4294 if (bg_pixel == INVALCOLOR)
4295 bg_pixel = gui_get_color((char_u *)"White");
4296
4297 if (found_reverse_arg)
4298 {
4299 gui.def_norm_pixel = bg_pixel;
4300 gui.def_back_pixel = fg_pixel;
4301 }
4302 else
4303 {
4304 gui.def_norm_pixel = fg_pixel;
4305 gui.def_back_pixel = bg_pixel;
4306 }
4307
Bram Moolenaar30613902019-12-01 22:11:18 +01004308 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4309 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 set_normal_colors();
4311
Bram Moolenaar30613902019-12-01 22:11:18 +01004312 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 gui_check_colors();
4314
Bram Moolenaar30613902019-12-01 22:11:18 +01004315 // Get the colors for the highlight groups (gui_check_colors() might have
4316 // changed them).
4317 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318
Bram Moolenaar98921892016-02-23 17:14:37 +01004319 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4320 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 /*
4323 * Notify the fixed area about the need to resize the contents of the
4324 * gui.formwin, which we use for random positioning of the included
4325 * components.
4326 *
4327 * We connect this signal deferred finally after anything is in place,
4328 * since this is intended to handle resizements coming from the window
4329 * manager upon us and should not interfere with what VIM is requesting
4330 * upon startup.
4331 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004332 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4333 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334
4335#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004336 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004337 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338
Bram Moolenaar98921892016-02-23 17:14:37 +01004339 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4340 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341#endif
4342
Bram Moolenaar30613902019-12-01 22:11:18 +01004343 // With GTK+ 2, we need to iconify the window before calling show()
4344 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 if (found_iconic_arg && gtk_socket_id == 0)
4346 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347
4348 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004349#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 unsigned long menu_handler = 0;
4351# ifdef FEAT_TOOLBAR
4352 unsigned long tool_handler = 0;
4353# endif
4354 /*
4355 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4356 * show when restoring the saved layout configuration. We can't just
4357 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4358 * a toplevel window and thus will be realized immediately. Instead,
4359 * connect signal handlers to hide the widgets just after they've been
4360 * marked visible, but before the main window is realized.
4361 */
4362 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4363 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4364 G_CALLBACK(&gtk_widget_hide),
4365 NULL);
4366# ifdef FEAT_TOOLBAR
4367 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4368 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4369 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4370 G_CALLBACK(&gtk_widget_hide),
4371 NULL);
4372# endif
4373#endif
4374 gtk_widget_show(gui.mainwin);
4375
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004376#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 if (menu_handler != 0)
4378 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4379# ifdef FEAT_TOOLBAR
4380 if (tool_handler != 0)
4381 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4382# endif
4383#endif
4384 }
4385
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 return OK;
4387}
4388
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004389/*
4390 * Clean up for when exiting Vim.
4391 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004393gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004395 // Clean up, unless we don't want to invoke free().
4396 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398}
4399
4400/*
4401 * Get the position of the top left corner of the window.
4402 */
4403 int
4404gui_mch_get_winpos(int *x, int *y)
4405{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 return OK;
4408}
4409
4410/*
4411 * Set the position of the top left corner of the window to the given
4412 * coordinates.
4413 */
4414 void
4415gui_mch_set_winpos(int x, int y)
4416{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418}
4419
Bram Moolenaar98921892016-02-23 17:14:37 +01004420#if !GTK_CHECK_VERSION(3,0,0)
4421# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422static int resize_idle_installed = FALSE;
4423/*
4424 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4425 * the shell size doesn't exceed the window size, i.e. if the window manager
4426 * ignored our size request. Usually this happens if the window is maximized.
4427 *
4428 * FIXME: It'd be nice if we could find a little more orthodox solution.
4429 * See also the remark below in gui_mch_set_shellsize().
4430 *
4431 * DISABLED: When doing ":set lines+=1" this function would first invoke
4432 * gui_resize_shell() with the old size, then the normal callback would
4433 * report the new size through form_configure_event(). That caused the window
4434 * layout to be messed up.
4435 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 static gboolean
4437force_shell_resize_idle(gpointer data)
4438{
4439 if (gui.mainwin != NULL
4440 && GTK_WIDGET_REALIZED(gui.mainwin)
4441 && GTK_WIDGET_VISIBLE(gui.mainwin))
4442 {
4443 int width;
4444 int height;
4445
4446 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4447
4448 width -= get_menu_tool_width();
4449 height -= get_menu_tool_height();
4450
4451 gui_resize_shell(width, height);
4452 }
4453
4454 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004455 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456}
Bram Moolenaar98921892016-02-23 17:14:37 +01004457# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004458#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459
Bram Moolenaar09736232009-09-23 16:14:49 +00004460/*
4461 * Return TRUE if the main window is maximized.
4462 */
4463 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004464gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004465{
Bram Moolenaar98921892016-02-23 17:14:37 +01004466 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4467 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4468 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004469}
4470
4471/*
4472 * Unmaximize the main window
4473 */
4474 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004475gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004476{
4477 if (gui.mainwin != NULL)
4478 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4479}
Bram Moolenaar09736232009-09-23 16:14:49 +00004480
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004482 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4483 * is set. Compute the new Rows and Columns. This is like resizing the
4484 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004485 */
4486 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004487gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004488{
4489 int w, h;
4490
4491 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4492 w -= get_menu_tool_width();
4493 h -= get_menu_tool_height();
4494 gui_resize_shell(w, h);
4495}
4496
4497/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 * Set the windows size.
4499 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 void
4501gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004502 int min_width UNUSED, int min_height UNUSED,
4503 int base_width UNUSED, int base_height UNUSED,
4504 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505{
Bram Moolenaar30613902019-12-01 22:11:18 +01004506 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 gui_mch_update();
4508
Bram Moolenaar30613902019-12-01 22:11:18 +01004509 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004510 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004511 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004512
Bram Moolenaar30613902019-12-01 22:11:18 +01004513 // With GTK+ 2, changing the size of the form widget doesn't resize
4514 // the window. So let's do it the other way around and resize the
4515 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 width += get_menu_tool_width();
4517 height += get_menu_tool_height();
4518
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004519 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004520 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004521 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004522 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523
Bram Moolenaar98921892016-02-23 17:14:37 +01004524# if !GTK_CHECK_VERSION(3,0,0)
4525# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 if (!resize_idle_installed)
4527 {
4528 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4529 &force_shell_resize_idle, NULL, NULL);
4530 resize_idle_installed = TRUE;
4531 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004532# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004533# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 /*
4535 * Wait until all events are processed to prevent a crash because the
4536 * real size of the drawing area doesn't reflect Vim's internal ideas.
4537 *
4538 * This is a bit of a hack, since Vim is a terminal application with a GUI
4539 * on top, while the GUI expects to be the boss.
4540 */
4541 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542}
4543
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004545gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 if (title != NULL && output_conv.vc_type != CONV_NONE)
4548 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549
4550 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4551
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 if (output_conv.vc_type != CONV_NONE)
4553 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555
4556#if defined(FEAT_MENU) || defined(PROTO)
4557 void
4558gui_mch_enable_menu(int showit)
4559{
4560 GtkWidget *widget;
4561
4562# ifdef FEAT_GUI_GNOME
4563 if (using_gnome)
4564 widget = gui.menubar_h;
4565 else
4566# endif
4567 widget = gui.menubar;
4568
Bram Moolenaar30613902019-12-01 22:11:18 +01004569 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004570 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 {
4572 if (showit)
4573 gtk_widget_show(widget);
4574 else
4575 gtk_widget_hide(widget);
4576
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004577 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 }
4579}
Bram Moolenaar30613902019-12-01 22:11:18 +01004580#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581
4582#if defined(FEAT_TOOLBAR) || defined(PROTO)
4583 void
4584gui_mch_show_toolbar(int showit)
4585{
4586 GtkWidget *widget;
4587
4588 if (gui.toolbar == NULL)
4589 return;
4590
4591# ifdef FEAT_GUI_GNOME
4592 if (using_gnome)
4593 widget = gui.toolbar_h;
4594 else
4595# endif
4596 widget = gui.toolbar;
4597
4598 if (showit)
4599 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4600
Bram Moolenaar98921892016-02-23 17:14:37 +01004601 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 {
4603 if (showit)
4604 gtk_widget_show(widget);
4605 else
4606 gtk_widget_hide(widget);
4607
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004608 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 }
4610}
Bram Moolenaar30613902019-12-01 22:11:18 +01004611#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613/*
4614 * Check if a given font is a CJK font. This is done in a very crude manner. It
4615 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4616 * font. Consequently, this function cannot be used as a general purpose check
4617 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4618 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4619 */
4620 static int
4621is_cjk_font(PangoFontDescription *font_desc)
4622{
4623 static const char * const cjk_langs[] =
4624 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4625
4626 PangoFont *font;
4627 unsigned i;
4628 int is_cjk = FALSE;
4629
4630 font = pango_context_load_font(gui.text_context, font_desc);
4631
4632 if (font == NULL)
4633 return FALSE;
4634
4635 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4636 {
4637 PangoCoverage *coverage;
4638 gunichar uc;
4639
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004640 // Valgrind reports a leak for pango_language_from_string(), but the
4641 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 coverage = pango_font_get_coverage(
4643 font, pango_language_from_string(cjk_langs[i]));
4644
4645 if (coverage != NULL)
4646 {
4647 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4648 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4649 pango_coverage_unref(coverage);
4650 }
4651 }
4652
4653 g_object_unref(font);
4654
4655 return is_cjk;
4656}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
Bram Moolenaar231334e2005-07-25 20:46:57 +00004658/*
4659 * Adjust gui.char_height (after 'linespace' was changed).
4660 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004662gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 PangoFontMetrics *metrics;
4665 int ascent;
4666 int descent;
4667
4668 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4669 pango_context_get_language(gui.text_context));
4670 ascent = pango_font_metrics_get_ascent(metrics);
4671 descent = pango_font_metrics_get_descent(metrics);
4672
4673 pango_font_metrics_unref(metrics);
4674
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004675 // Round up when the value is more than about 1/16 of a pixel above a whole
4676 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4677 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4678 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004679 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4681
Bram Moolenaar30613902019-12-01 22:11:18 +01004682 // A not-positive value of char_height may crash Vim. Only happens
4683 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 gui.char_ascent = MAX(gui.char_ascent, 0);
4685 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4686
4687 return OK;
4688}
4689
Bram Moolenaar98921892016-02-23 17:14:37 +01004690#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004691// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004692 static gboolean
4693font_filter(const PangoFontFamily *family,
4694 const PangoFontFace *face UNUSED,
4695 gpointer data UNUSED)
4696{
4697 return pango_font_family_is_monospace((PangoFontFamily *)family);
4698}
4699#endif
4700
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701/*
4702 * Put up a font dialog and return the selected font name in allocated memory.
4703 * "oldval" is the previous value. Return NULL when cancelled.
4704 * This should probably go into gui_gtk.c. Hmm.
4705 * FIXME:
4706 * The GTK2 font selection dialog has no filtering API. So we could either
4707 * a) implement our own (possibly copying the code from somewhere else) or
4708 * b) just live with it.
4709 */
4710 char_u *
4711gui_mch_font_dialog(char_u *oldval)
4712{
4713 GtkWidget *dialog;
4714 int response;
4715 char_u *fontname = NULL;
4716 char_u *oldname;
4717
Bram Moolenaar98921892016-02-23 17:14:37 +01004718#if GTK_CHECK_VERSION(3,2,0)
4719 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4720 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4721 NULL, NULL);
4722#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725
4726 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4727 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4728
4729 if (oldval != NULL && oldval[0] != NUL)
4730 {
4731 if (output_conv.vc_type != CONV_NONE)
4732 oldname = string_convert(&output_conv, oldval, NULL);
4733 else
4734 oldname = oldval;
4735
Bram Moolenaar30613902019-12-01 22:11:18 +01004736 // Annoying bug in GTK (or Pango): if the font name does not include a
4737 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4739 {
4740 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4741
4742 if (p != NULL)
4743 {
4744 STRCPY(p + STRLEN(p), " 10");
4745 if (oldname != oldval)
4746 vim_free(oldname);
4747 oldname = p;
4748 }
4749 }
4750
Bram Moolenaar98921892016-02-23 17:14:37 +01004751#if GTK_CHECK_VERSION(3,2,0)
4752 gtk_font_chooser_set_font(
4753 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4754#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 gtk_font_selection_dialog_set_font_name(
4756 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004757#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758
4759 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004760 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004762 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004763#if GTK_CHECK_VERSION(3,2,0)
4764 gtk_font_chooser_set_font(
4765 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4766#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004767 gtk_font_selection_dialog_set_font_name(
4768 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004769#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770
4771 response = gtk_dialog_run(GTK_DIALOG(dialog));
4772
4773 if (response == GTK_RESPONSE_OK)
4774 {
4775 char *name;
4776
Bram Moolenaar98921892016-02-23 17:14:37 +01004777#if GTK_CHECK_VERSION(3,2,0)
4778 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4779#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 name = gtk_font_selection_dialog_get_font_name(
4781 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 if (name != NULL)
4784 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004785 char_u *p;
4786
Bram Moolenaar30613902019-12-01 22:11:18 +01004787 // Apparently some font names include a comma, need to escape
4788 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004789 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004791 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004792 {
4793 fontname = string_convert(&input_conv, p, NULL);
4794 vim_free(p);
4795 }
4796 else
4797 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 }
4799 }
4800
4801 if (response != GTK_RESPONSE_NONE)
4802 gtk_widget_destroy(dialog);
4803
4804 return fontname;
4805}
4806
4807/*
4808 * Some monospace fonts don't support a bold weight, and fall back
4809 * silently to the regular weight. But this is no good since our text
4810 * drawing function can emulate bold by overstriking. So let's try
4811 * to detect whether bold weight is actually available and emulate it
4812 * otherwise.
4813 *
4814 * Note that we don't need to check for italic style since Xft can
4815 * emulate italic on its own, provided you have a proper fontconfig
4816 * setup. We wouldn't be able to emulate it in Vim anyway.
4817 */
4818 static void
4819get_styled_font_variants(void)
4820{
4821 PangoFontDescription *bold_font_desc;
4822 PangoFont *plain_font;
4823 PangoFont *bold_font;
4824
4825 gui.font_can_bold = FALSE;
4826
4827 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4828
4829 if (plain_font == NULL)
4830 return;
4831
4832 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4833 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4834
4835 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4836 /*
4837 * The comparison relies on the unique handle nature of a PangoFont*,
4838 * i.e. it's assumed that a different PangoFont* won't refer to the
4839 * same font. Seems to work, and failing here isn't critical anyway.
4840 */
4841 if (bold_font != NULL)
4842 {
4843 gui.font_can_bold = (bold_font != plain_font);
4844 g_object_unref(bold_font);
4845 }
4846
4847 pango_font_description_free(bold_font_desc);
4848 g_object_unref(plain_font);
4849}
4850
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851static PangoEngineShape *default_shape_engine = NULL;
4852
4853/*
4854 * Create a map from ASCII characters in the range [32,126] to glyphs
4855 * of the current font. This is used by gui_gtk2_draw_string() to skip
4856 * the itemize and shaping process for the most common case.
4857 */
4858 static void
4859ascii_glyph_table_init(void)
4860{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004861 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 PangoAttrList *attr_list;
4863 GList *item_list;
4864 int i;
4865
4866 if (gui.ascii_glyphs != NULL)
4867 pango_glyph_string_free(gui.ascii_glyphs);
4868 if (gui.ascii_font != NULL)
4869 g_object_unref(gui.ascii_font);
4870
4871 gui.ascii_glyphs = NULL;
4872 gui.ascii_font = NULL;
4873
Bram Moolenaar30613902019-12-01 22:11:18 +01004874 // For safety, fill in question marks for the control characters.
4875 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004876 for (i = 0; i < 128; ++i)
4877 {
4878 if (i >= 32 && i < 127)
4879 ascii_chars[2 * i] = i;
4880 else
4881 ascii_chars[2 * i] = '?';
4882 ascii_chars[2 * i + 1] = ' ';
4883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
4885 attr_list = pango_attr_list_new();
4886 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4887 0, sizeof(ascii_chars), attr_list, NULL);
4888
Bram Moolenaar30613902019-12-01 22:11:18 +01004889 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 {
4891 PangoItem *item;
4892 int width;
4893
4894 item = (PangoItem *)item_list->data;
4895 width = gui.char_width * PANGO_SCALE;
4896
Bram Moolenaar30613902019-12-01 22:11:18 +01004897 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 default_shape_engine = item->analysis.shape_engine;
4899
4900 gui.ascii_font = item->analysis.font;
4901 g_object_ref(gui.ascii_font);
4902
4903 gui.ascii_glyphs = pango_glyph_string_new();
4904
4905 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4906 &item->analysis, gui.ascii_glyphs);
4907
4908 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4909
4910 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4911 {
4912 PangoGlyphGeometry *geom;
4913
4914 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4915 geom->x_offset += MAX(0, width - geom->width) / 2;
4916 geom->width = width;
4917 }
4918 }
4919
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02004920 // TODO: is this type cast OK?
4921 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 g_list_free(item_list);
4923 pango_attr_list_unref(attr_list);
4924}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925
4926/*
4927 * Initialize Vim to use the font or fontset with the given name.
4928 * Return FAIL if the font could not be loaded, OK otherwise.
4929 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004931gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 PangoFontDescription *font_desc;
4934 PangoLayout *layout;
4935 int width;
4936
Bram Moolenaar30613902019-12-01 22:11:18 +01004937 // If font_name is NULL, this means to use the default, which should
4938 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 if (font_name == NULL)
4940 font_name = (char_u *)DEFAULT_FONT;
4941
4942 font_desc = gui_mch_get_font(font_name, FALSE);
4943
4944 if (font_desc == NULL)
4945 return FAIL;
4946
4947 gui_mch_free_font(gui.norm_font);
4948 gui.norm_font = font_desc;
4949
4950 pango_context_set_font_description(gui.text_context, font_desc);
4951
4952 layout = pango_layout_new(gui.text_context);
4953 pango_layout_set_text(layout, "MW", 2);
4954 pango_layout_get_size(layout, &width, NULL);
4955 /*
4956 * Set char_width to half the width obtained from pango_layout_get_size()
4957 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
4958 * Pango to use the same width for both non-CJK characters (e.g. Latin
4959 * letters and numbers) and CJK characters. This results in 's p a c e d
4960 * o u t' rendering when a CJK 'fixed width' font is used. To work around
4961 * that, divide the width returned by Pango by 2 if cjk_width is equal to
4962 * width for CJK fonts.
4963 *
4964 * For related bugs, see:
4965 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
4966 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
4967 *
4968 * With this, for all four of the following cases, Vim works fine:
4969 * guifont=CJK_fixed_width_font
4970 * guifont=Non_CJK_fixed_font
4971 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
4972 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
4973 */
4974 if (is_cjk_font(gui.norm_font))
4975 {
4976 int cjk_width;
4977
Bram Moolenaar30613902019-12-01 22:11:18 +01004978 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
4980 pango_layout_get_size(layout, &cjk_width, NULL);
4981
Bram Moolenaar30613902019-12-01 22:11:18 +01004982 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 width /= 2;
4984 }
4985 g_object_unref(layout);
4986
4987 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
4988
Bram Moolenaar30613902019-12-01 22:11:18 +01004989 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 if (gui.char_width <= 0)
4991 gui.char_width = 8;
4992
Bram Moolenaar231334e2005-07-25 20:46:57 +00004993 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994
Bram Moolenaar30613902019-12-01 22:11:18 +01004995 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 hl_set_font_name(font_name);
4997
4998 get_styled_font_variants();
4999 ascii_glyph_table_init();
5000
Bram Moolenaar30613902019-12-01 22:11:18 +01005001 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 if (gui.wide_font != NULL
5003 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5004 {
5005 pango_font_description_free(gui.wide_font);
5006 gui.wide_font = NULL;
5007 }
5008
Bram Moolenaare161c792009-11-03 17:13:59 +00005009 if (gui_mch_maximized())
5010 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005011 // Update lines and columns in accordance with the new font, keep the
5012 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005013 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005014 }
5015 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005016 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005017 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005018 update_window_manager_hints(0, 0);
5019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020
5021 return OK;
5022}
5023
5024/*
5025 * Get a reference to the font "name".
5026 * Return zero for failure.
5027 */
5028 GuiFont
5029gui_mch_get_font(char_u *name, int report_error)
5030{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032
Bram Moolenaar30613902019-12-01 22:11:18 +01005033 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 if (!gui.in_use || name == NULL)
5035 return NULL;
5036
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 if (output_conv.vc_type != CONV_NONE)
5038 {
5039 char_u *buf;
5040
5041 buf = string_convert(&output_conv, name, NULL);
5042 if (buf != NULL)
5043 {
5044 font = pango_font_description_from_string((const char *)buf);
5045 vim_free(buf);
5046 }
5047 else
5048 font = NULL;
5049 }
5050 else
5051 font = pango_font_description_from_string((const char *)name);
5052
5053 if (font != NULL)
5054 {
5055 PangoFont *real_font;
5056
Bram Moolenaar30613902019-12-01 22:11:18 +01005057 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 if (pango_font_description_get_size(font) <= 0)
5059 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5060
5061 real_font = pango_context_load_font(gui.text_context, font);
5062
5063 if (real_font == NULL)
5064 {
5065 pango_font_description_free(font);
5066 font = NULL;
5067 }
5068 else
5069 g_object_unref(real_font);
5070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071
5072 if (font == NULL)
5073 {
5074 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005075 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 return NULL;
5077 }
5078
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 return font;
5080}
5081
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005082#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005083/*
5084 * Return the name of font "font" in allocated memory.
5085 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005086 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005087gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005088{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005089 if (font != NOFONT)
5090 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005091 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005092
Bram Moolenaar89d40322006-08-29 15:30:07 +00005093 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005094 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005095 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005096
Bram Moolenaar89d40322006-08-29 15:30:07 +00005097 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005098 return s;
5099 }
5100 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005101 return NULL;
5102}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005103#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005104
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105/*
5106 * If a font is not going to be used, free its structure.
5107 */
5108 void
5109gui_mch_free_font(GuiFont font)
5110{
5111 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113}
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005116 * Return the Pixel value (color) for the given color name.
5117 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 * Return INVALCOLOR for error.
5119 */
5120 guicolor_T
5121gui_mch_get_color(char_u *name)
5122{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005123 guicolor_T color = INVALCOLOR;
5124
Bram Moolenaar30613902019-12-01 22:11:18 +01005125 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005126 return color;
5127
5128 if (name != NULL)
5129 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130
Bram Moolenaar98921892016-02-23 17:14:37 +01005131#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005132 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005133#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005134 if (color == INVALCOLOR)
5135 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005137 return gui_mch_get_rgb_color(
5138 (color & 0xff0000) >> 16,
5139 (color & 0xff00) >> 8,
5140 color & 0xff);
5141#endif
5142}
5143
5144/*
5145 * Return the Pixel value (color) for the given RGB values.
5146 * Return INVALCOLOR for error.
5147 */
5148 guicolor_T
5149gui_mch_get_rgb_color(int r, int g, int b)
5150{
5151#if GTK_CHECK_VERSION(3,0,0)
5152 return gui_get_rgb_color_cmn(r, g, b);
5153#else
5154 GdkColor gcolor;
5155 int ret;
5156
5157 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5158 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5159 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
Bram Moolenaar36edf062016-07-21 22:10:12 +02005161 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5162 &gcolor, FALSE, TRUE);
5163
5164 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5165#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166}
5167
5168/*
5169 * Set the current text foreground color.
5170 */
5171 void
5172gui_mch_set_fg_color(guicolor_T color)
5173{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005174#if GTK_CHECK_VERSION(3,0,0)
5175 *gui.fgcolor = color_to_rgba(color);
5176#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179}
5180
5181/*
5182 * Set the current text background color.
5183 */
5184 void
5185gui_mch_set_bg_color(guicolor_T color)
5186{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005187#if GTK_CHECK_VERSION(3,0,0)
5188 *gui.bgcolor = color_to_rgba(color);
5189#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005191#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192}
5193
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005194/*
5195 * Set the current text special color.
5196 */
5197 void
5198gui_mch_set_sp_color(guicolor_T color)
5199{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005200#if GTK_CHECK_VERSION(3,0,0)
5201 *gui.spcolor = color_to_rgba(color);
5202#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005203 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005204#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005205}
5206
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207/*
5208 * Function-like convenience macro for the sake of efficiency.
5209 */
5210#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5211 G_STMT_START{ \
5212 PangoAttribute *tmp_attr_; \
5213 tmp_attr_ = (Attribute); \
5214 tmp_attr_->start_index = (Start); \
5215 tmp_attr_->end_index = (End); \
5216 pango_attr_list_insert((AttrList), tmp_attr_); \
5217 }G_STMT_END
5218
5219 static void
5220apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5221{
5222 char_u *start = NULL;
5223 char_u *p;
5224 int uc;
5225
5226 for (p = s; p < s + len; p += utf_byte2len(*p))
5227 {
5228 uc = utf_ptr2char(p);
5229
5230 if (start == NULL)
5231 {
5232 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5233 start = p;
5234 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005235 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5237 {
5238 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5239 attr_list, start - s, p - s);
5240 start = NULL;
5241 }
5242 }
5243
5244 if (start != NULL)
5245 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5246 attr_list, start - s, len);
5247}
5248
5249 static int
5250count_cluster_cells(char_u *s, PangoItem *item,
5251 PangoGlyphString* glyphs, int i,
5252 int *cluster_width,
5253 int *last_glyph_rbearing)
5254{
5255 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005256 int next; // glyph start index of next cluster
5257 int start, end; // string segment of current cluster
5258 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 int uc;
5260 int cellcount = 0;
5261
5262 width = glyphs->glyphs[i].geometry.width;
5263
5264 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5265 {
5266 if (glyphs->glyphs[next].attr.is_cluster_start)
5267 break;
5268 else if (glyphs->glyphs[next].geometry.width > width)
5269 width = glyphs->glyphs[next].geometry.width;
5270 }
5271
5272 start = item->offset + glyphs->log_clusters[i];
5273 end = item->offset + ((next < glyphs->num_glyphs) ?
5274 glyphs->log_clusters[next] : item->length);
5275
5276 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5277 {
5278 uc = utf_ptr2char(p);
5279 if (uc < 0x80)
5280 ++cellcount;
5281 else if (!utf_iscomposing(uc))
5282 cellcount += utf_char2cells(uc);
5283 }
5284
5285 if (last_glyph_rbearing != NULL
5286 && cellcount > 0 && next == glyphs->num_glyphs)
5287 {
5288 PangoRectangle ink_rect;
5289 /*
5290 * If a certain combining mark had to be taken from a non-monospace
5291 * font, we have to compensate manually by adapting x_offset according
5292 * to the ink extents of the previous glyph.
5293 */
5294 pango_font_get_glyph_extents(item->analysis.font,
5295 glyphs->glyphs[i].glyph,
5296 &ink_rect, NULL);
5297
5298 if (PANGO_RBEARING(ink_rect) > 0)
5299 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5300 }
5301
5302 if (cellcount > 0)
5303 *cluster_width = width;
5304
5305 return cellcount;
5306}
5307
5308/*
5309 * If there are only combining characters in the cluster, we cannot just
5310 * change the width of the previous glyph since there is none. Therefore
5311 * some guesswork is needed.
5312 *
5313 * If ink_rect.x is negative Pango apparently has taken care of the composing
5314 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5315 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005316 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 *
5318 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5319 * the position of the previous glyph. Apparently this happens only with old
5320 * X fonts which don't provide the special combining information needed by
5321 * Pango.
5322 */
5323 static void
5324setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5325 int last_cellcount, int last_cluster_width,
5326 int last_glyph_rbearing)
5327{
5328 PangoRectangle ink_rect;
5329 PangoRectangle logical_rect;
5330 int width;
5331
5332 width = last_cellcount * gui.char_width * PANGO_SCALE;
5333 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5334 glyph->geometry.width = 0;
5335
5336 pango_font_get_glyph_extents(item->analysis.font,
5337 glyph->glyph,
5338 &ink_rect, &logical_rect);
5339 if (ink_rect.x < 0)
5340 {
5341 glyph->geometry.x_offset += last_glyph_rbearing;
5342 glyph->geometry.y_offset = logical_rect.height
5343 - (gui.char_height - p_linespace) * PANGO_SCALE;
5344 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005345 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005346 // If the accent width is smaller than the cluster width, position it
5347 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005348 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349}
5350
Bram Moolenaar98921892016-02-23 17:14:37 +01005351#if GTK_CHECK_VERSION(3,0,0)
5352 static void
5353draw_glyph_string(int row, int col, int num_cells, int flags,
5354 PangoFont *font, PangoGlyphString *glyphs,
5355 cairo_t *cr)
5356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 static void
5358draw_glyph_string(int row, int col, int num_cells, int flags,
5359 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361{
5362 if (!(flags & DRAW_TRANSP))
5363 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005364#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005365 cairo_set_source_rgba(cr,
5366 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5367 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005368 cairo_rectangle(cr,
5369 FILL_X(col), FILL_Y(row),
5370 num_cells * gui.char_width, gui.char_height);
5371 cairo_fill(cr);
5372#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5374
5375 gdk_draw_rectangle(gui.drawarea->window,
5376 gui.text_gc,
5377 TRUE,
5378 FILL_X(col),
5379 FILL_Y(row),
5380 num_cells * gui.char_width,
5381 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005382#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 }
5384
Bram Moolenaar98921892016-02-23 17:14:37 +01005385#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005386 cairo_set_source_rgba(cr,
5387 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5388 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005389 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5390 pango_cairo_show_glyph_string(cr, font, glyphs);
5391#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5393
5394 gdk_draw_glyphs(gui.drawarea->window,
5395 gui.text_gc,
5396 font,
5397 TEXT_X(col),
5398 TEXT_Y(row),
5399 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401
Bram Moolenaar30613902019-12-01 22:11:18 +01005402 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005404#if GTK_CHECK_VERSION(3,0,0)
5405 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005406 cairo_set_source_rgba(cr,
5407 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5408 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005409 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5410 pango_cairo_show_glyph_string(cr, font, glyphs);
5411 }
5412#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 gdk_draw_glyphs(gui.drawarea->window,
5414 gui.text_gc,
5415 font,
5416 TEXT_X(col) + 1,
5417 TEXT_Y(row),
5418 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420}
5421
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005422/*
5423 * Draw underline and undercurl at the bottom of the character cell.
5424 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005425#if GTK_CHECK_VERSION(3,0,0)
5426 static void
5427draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5428#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005429 static void
5430draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005431#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005432{
5433 int i;
5434 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005435 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005436 int y = FILL_Y(row + 1) - 1;
5437
Bram Moolenaar30613902019-12-01 22:11:18 +01005438 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005439 if (flags & DRAW_UNDERC)
5440 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005441#if GTK_CHECK_VERSION(3,0,0)
5442 cairo_set_line_width(cr, 1.0);
5443 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005444 cairo_set_source_rgba(cr,
5445 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5446 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005447 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5448 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005449 {
5450 offset = val[i % 8];
5451 cairo_line_to(cr, i, y - offset + 0.5);
5452 }
5453 cairo_stroke(cr);
5454#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005455 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5456 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5457 {
5458 offset = val[i % 8];
5459 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5460 }
5461 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005462#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005463 }
5464
Bram Moolenaar30613902019-12-01 22:11:18 +01005465 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005466 if (flags & DRAW_STRIKE)
5467 {
5468#if GTK_CHECK_VERSION(3,0,0)
5469 cairo_set_line_width(cr, 1.0);
5470 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5471 cairo_set_source_rgba(cr,
5472 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5473 gui.spcolor->alpha);
5474 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5475 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5476 cairo_stroke(cr);
5477#else
5478 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5479 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5480 FILL_X(col), y + 1 - gui.char_height/2,
5481 FILL_X(col + cells), y + 1 - gui.char_height/2);
5482 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5483#endif
5484 }
5485
Bram Moolenaar30613902019-12-01 22:11:18 +01005486 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005487 if (flags & DRAW_UNDERL)
5488 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005489 // When p_linespace is 0, overwrite the bottom row of pixels.
5490 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005491 if (p_linespace > 1)
5492 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005493#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005494 cairo_set_line_width(cr, 1.0);
5495 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5496 cairo_set_source_rgba(cr,
5497 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5498 gui.fgcolor->alpha);
5499 cairo_move_to(cr, FILL_X(col), y + 0.5);
5500 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5501 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005502#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005503 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5504 FILL_X(col), y,
5505 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005506#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005507 }
5508}
5509
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 int
5511gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5512{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005513 char_u *conv_buf = NULL; // result of UTF-8 conversion
5514 char_u *new_conv_buf;
5515 int convlen;
5516 char_u *sp, *bp;
5517 int plen;
5518 int len_sum; // return value needs to add up since we are
5519 // printing substrings
5520 int byte_sum; // byte position in string
5521 char_u *cs; // current *s pointer
5522 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005523 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005524 int slen;
5525 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005526 int is_utf8;
5527 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528
Bram Moolenaar98921892016-02-23 17:14:37 +01005529 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 return len;
5531
5532 if (output_conv.vc_type != CONV_NONE)
5533 {
5534 /*
5535 * Convert characters from 'encoding' to 'termencoding', which is set
5536 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5537 * prohibits changing this to something else than UTF-8 if the GUI is
5538 * in use.
5539 */
5540 convlen = len;
5541 conv_buf = string_convert(&output_conv, s, &convlen);
5542 g_return_val_if_fail(conv_buf != NULL, len);
5543
Bram Moolenaar30613902019-12-01 22:11:18 +01005544 // Correct for differences in char width: some chars are
5545 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5546 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5548 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005549 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5551 {
5552 new_conv_buf = alloc(convlen + 2);
5553 if (new_conv_buf == NULL)
5554 return len;
5555 plen += bp - conv_buf;
5556 mch_memmove(new_conv_buf, conv_buf, plen);
5557 new_conv_buf[plen] = ' ';
5558 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5559 convlen - plen + 1);
5560 vim_free(conv_buf);
5561 conv_buf = new_conv_buf;
5562 ++convlen;
5563 bp = conv_buf + plen;
5564 plen = 1;
5565 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005566 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 bp += plen;
5568 }
5569 s = conv_buf;
5570 len = convlen;
5571 }
5572
5573 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005574 * Ligature support and complex utf-8 char optimization:
5575 * String received to output to screen can print using pre-cached glyphs
5576 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5577 * Since we receive mixed content string, split it into logical segments
5578 * that are guaranteed to go trough glyphs as much as possible. Since
5579 * single ligature char prints as ascii, print it that way.
5580 */
5581 len_sum = 0; // return value needs to add up since we are printing
5582 // substrings
5583 byte_sum = 0;
5584 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005585 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5586 // Even if it is ligature char, two chars or more make ligature.
5587 // Ascii followed by utf8 is also going trough pango.
5588 is_utf8 = (*cs & 0x80);
5589 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5590 if (is_ligature)
5591 is_ligature = gui.ligatures_map[*(cs + 1)];
5592 if (!is_utf8 && len > 1)
5593 is_utf8 = (*(cs + 1) & 0x80) != 0;
5594 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005595
5596 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5597 // print glyphs or use Pango
5598 while (cs < s + len)
5599 {
5600 slen = 0;
5601 while (slen < (len - byte_sum))
5602 {
5603 is_ligature = gui.ligatures_map[*(cs + slen)];
5604 // look ahead, single ligature char between ascii is ascii
5605 if (is_ligature && !needs_pango)
5606 {
5607 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005608 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005609 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005610 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005611 }
5612 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005613 // ascii followed by utf8 could be combining
5614 // if so send it trough pango
5615 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5616 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005617 should_need_pango = (is_ligature || is_utf8);
5618 if (needs_pango != should_need_pango) // mode switch
5619 break;
5620 if (needs_pango)
5621 {
5622 if (is_ligature)
5623 {
5624 slen++; // ligature char by char
5625 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005626 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005627 {
5628 if ((*(cs + slen) & 0xC0) == 0x80)
5629 {
5630 // a continuation, find next 0xC0 != 0x80 but don't
5631 // include it
5632 while ((slen < (len - byte_sum))
5633 && ((*(cs + slen) & 0xC0) == 0x80))
5634 {
5635 slen++;
5636 }
5637 }
5638 else if ((*(cs + slen) & 0xE0) == 0xC0)
5639 {
5640 // + one byte utf8
5641 slen++;
5642 }
5643 else if ((*(cs + slen) & 0xF0) == 0xE0)
5644 {
5645 // + two bytes utf8
5646 slen += 2;
5647 }
5648 else if ((*(cs + slen) & 0xF8) == 0xF0)
5649 {
5650 // + three bytes utf8
5651 slen += 3;
5652 }
5653 else
5654 {
5655 // this should not happen, try moving forward, Pango
5656 // will catch it
5657 slen++;
5658 }
5659 }
5660 }
5661 else
5662 {
5663 slen++; // ascii
5664 }
5665 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005666
Bram Moolenaard68a0042021-10-20 23:08:11 +01005667 if (slen < len)
5668 {
5669 // temporarily zero terminate substring, print, restore char, wrap
5670 backup_ch = *(cs + slen);
5671 *(cs + slen) = NUL;
5672 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005673 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5674 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005675 if (slen < len)
5676 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005677 cs += slen;
5678 byte_sum += slen;
5679 needs_pango = should_need_pango;
5680 }
5681 vim_free(conv_buf);
5682 return len_sum;
5683}
5684
5685 int
5686gui_gtk2_draw_string_ext(
5687 int row,
5688 int col,
5689 char_u *s,
5690 int len,
5691 int flags,
5692 int force_pango)
5693{
5694 GdkRectangle area; // area for clip mask
5695 PangoGlyphString *glyphs; // glyphs of current item
5696 int column_offset = 0; // column offset in cells
5697 int i;
5698#if GTK_CHECK_VERSION(3,0,0)
5699 cairo_t *cr;
5700#endif
5701
5702 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 * Restrict all drawing to the current screen line in order to prevent
5704 * fuzzy font lookups from messing up the screen.
5705 */
5706 area.x = gui.border_offset;
5707 area.y = FILL_Y(row);
5708 area.width = gui.num_cols * gui.char_width;
5709 area.height = gui.char_height;
5710
Bram Moolenaar98921892016-02-23 17:14:37 +01005711#if GTK_CHECK_VERSION(3,0,0)
5712 cr = cairo_create(gui.surface);
5713 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5714 cairo_clip(cr);
5715#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5717 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719
5720 glyphs = pango_glyph_string_new();
5721
5722 /*
5723 * Optimization hack: If possible, skip the itemize and shaping process
5724 * for pure ASCII strings. This optimization is particularly effective
5725 * because Vim draws space characters to clear parts of the screen.
5726 */
5727 if (!(flags & DRAW_ITALIC)
5728 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005729 && gui.ascii_glyphs != NULL
5730 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 {
5732 char_u *p;
5733
5734 for (p = s; p < s + len; ++p)
5735 if (*p & 0x80)
5736 goto not_ascii;
5737
5738 pango_glyph_string_set_size(glyphs, len);
5739
5740 for (i = 0; i < len; ++i)
5741 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005742 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 glyphs->log_clusters[i] = i;
5744 }
5745
Bram Moolenaar98921892016-02-23 17:14:37 +01005746#if GTK_CHECK_VERSION(3,0,0)
5747 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5748#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751
5752 column_offset = len;
5753 }
5754 else
5755not_ascii:
5756 {
5757 PangoAttrList *attr_list;
5758 GList *item_list;
5759 int cluster_width;
5760 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005761 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762
Bram Moolenaar30613902019-12-01 22:11:18 +01005763 // Safety check: pango crashes when invoked with invalid utf-8
5764 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005765 if (!utf_valid_string(s, s + len))
5766 {
5767 column_offset = len;
5768 goto skipitall;
5769 }
5770
Bram Moolenaar30613902019-12-01 22:11:18 +01005771 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 cluster_width = PANGO_SCALE * gui.char_width;
5773
Bram Moolenaar30613902019-12-01 22:11:18 +01005774 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5776
5777 attr_list = pango_attr_list_new();
5778
Bram Moolenaar30613902019-12-01 22:11:18 +01005779 // If 'guifontwide' is set then use that for double-width characters.
5780 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 if (gui.wide_font != NULL)
5782 apply_wide_font_attr(s, len, attr_list);
5783
5784 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5785 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5786 attr_list, 0, len);
5787 if (flags & DRAW_ITALIC)
5788 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5789 attr_list, 0, len);
5790 /*
5791 * Break the text into segments with consistent directional level
5792 * and shaping engine. Pure Latin text needs only a single segment,
5793 * so there's no need to worry about the loop's efficiency. Better
5794 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5795 */
5796 item_list = pango_itemize(gui.text_context,
5797 (const char *)s, 0, len, attr_list, NULL);
5798
5799 while (item_list != NULL)
5800 {
5801 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005802 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803
5804 item = (PangoItem *)item_list->data;
5805 item_list = g_list_delete_link(item_list, item_list);
5806 /*
5807 * Increment the bidirectional embedding level by 1 if it is not
5808 * even. An odd number means the output will be RTL, but we don't
5809 * want that since Vim handles right-to-left text on its own. It
5810 * would probably be sufficient to just set level = 0, but you can
5811 * never know :)
5812 *
5813 * Unfortunately we can't take advantage of Pango's ability to
5814 * render both LTR and RTL at the same time. In order to support
5815 * that, Vim's main screen engine would have to make use of Pango
5816 * functionality.
5817 */
5818 item->analysis.level = (item->analysis.level + 1) & (~1U);
5819
Bram Moolenaar30613902019-12-01 22:11:18 +01005820 // HACK: Overrule the shape engine, we don't want shaping to be
5821 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 item->analysis.shape_engine = default_shape_engine;
5823
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005824#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005825 pango_shape_full((const char *)s + item->offset, item->length,
5826 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005827#else
5828 pango_shape((const char *)s + item->offset, item->length,
5829 &item->analysis, glyphs);
5830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 /*
5832 * Fixed-width hack: iterate over the array and assign a fixed
5833 * width to each glyph, thus overriding the choice made by the
5834 * shaping engine. We use utf_char2cells() to determine the
5835 * number of cells needed.
5836 *
5837 * Also perform all kind of dark magic to get composing
5838 * characters right (and pretty too of course).
5839 */
5840 for (i = 0; i < glyphs->num_glyphs; ++i)
5841 {
5842 PangoGlyphInfo *glyph;
5843
5844 glyph = &glyphs->glyphs[i];
5845
5846 if (glyph->attr.is_cluster_start)
5847 {
5848 int cellcount;
5849
5850 cellcount = count_cluster_cells(
5851 s, item, glyphs, i, &cluster_width,
5852 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5853
5854 if (cellcount > 0)
5855 {
5856 int width;
5857
5858 width = cellcount * gui.char_width * PANGO_SCALE;
5859 glyph->geometry.x_offset +=
5860 MAX(0, width - cluster_width) / 2;
5861 glyph->geometry.width = width;
5862 }
5863 else
5864 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005865 // If there are only combining characters in the
5866 // cluster, we cannot just change the width of the
5867 // previous glyph since there is none. Therefore
5868 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 setup_zero_width_cluster(item, glyph, cells,
5870 cluster_width,
5871 last_glyph_rbearing);
5872 }
5873
5874 item_cells += cellcount;
5875 cells = cellcount;
5876 }
5877 else if (i > 0)
5878 {
5879 int width;
5880
Bram Moolenaar30613902019-12-01 22:11:18 +01005881 // There is a previous glyph, so we deal with combining
5882 // characters the canonical way.
5883 // In some circumstances Pango uses a positive x_offset,
5884 // then use the width of the previous glyph for this one
5885 // and set the previous width to zero.
5886 // Otherwise we get a negative x_offset, Pango has already
5887 // positioned the combining char, keep the widths as they
5888 // are.
5889 // For both adjust the x_offset to position the glyph in
5890 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005891 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005892 {
5893 glyphs->glyphs[i].geometry.width =
5894 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005895 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 width = cells * gui.char_width * PANGO_SCALE;
5898 glyph->geometry.x_offset +=
5899 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005901 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 {
5903 glyph->geometry.width = 0;
5904 }
5905 }
5906
Bram Moolenaar30613902019-12-01 22:11:18 +01005907 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01005908#if GTK_CHECK_VERSION(3,0,0)
5909 draw_glyph_string(row, col + column_offset, item_cells,
5910 flags, item->analysis.font, glyphs,
5911 cr);
5912#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 draw_glyph_string(row, col + column_offset, item_cells,
5914 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916
5917 pango_item_free(item);
5918
5919 column_offset += item_cells;
5920 }
5921
5922 pango_attr_list_unref(attr_list);
5923 }
5924
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005925skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01005926 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01005927#if GTK_CHECK_VERSION(3,0,0)
5928 draw_under(flags, row, col, column_offset, cr);
5929#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005930 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932
5933 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934
Bram Moolenaar98921892016-02-23 17:14:37 +01005935#if GTK_CHECK_VERSION(3,0,0)
5936 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00005937 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
5938 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005939#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942
5943 return column_offset;
5944}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945
5946/*
5947 * Return OK if the key with the termcap name "name" is supported.
5948 */
5949 int
5950gui_mch_haskey(char_u *name)
5951{
5952 int i;
5953
5954 for (i = 0; special_keys[i].key_sym != 0; i++)
5955 if (name[0] == special_keys[i].code0
5956 && name[1] == special_keys[i].code1)
5957 return OK;
5958 return FAIL;
5959}
5960
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005961#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962/*
5963 * Return the text window-id and display. Only required for X-based GUI's
5964 */
5965 int
5966gui_get_x11_windis(Window *win, Display **dis)
5967{
Bram Moolenaar98921892016-02-23 17:14:37 +01005968 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005970 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5971 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972 return OK;
5973 }
5974
5975 *dis = NULL;
5976 *win = 0;
5977 return FAIL;
5978}
5979#endif
5980
5981#if defined(FEAT_CLIENTSERVER) \
5982 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5983
5984 Display *
5985gui_mch_get_display(void)
5986{
Bram Moolenaar98921892016-02-23 17:14:37 +01005987 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5988 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 else
5990 return NULL;
5991}
5992#endif
5993
5994 void
5995gui_mch_beep(void)
5996{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 GdkDisplay *display;
5998
Bram Moolenaar98921892016-02-23 17:14:37 +01005999 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 display = gtk_widget_get_display(gui.mainwin);
6001 else
6002 display = gdk_display_get_default();
6003
6004 if (display != NULL)
6005 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006006}
6007
6008 void
6009gui_mch_flash(int msec)
6010{
Bram Moolenaar98921892016-02-23 17:14:37 +01006011#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006012 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006013 (void)msec;
6014#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 GdkGCValues values;
6016 GdkGC *invert_gc;
6017
6018 if (gui.drawarea->window == NULL)
6019 return;
6020
6021 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6022 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6023 values.function = GDK_XOR;
6024 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6025 &values,
6026 GDK_GC_FOREGROUND |
6027 GDK_GC_BACKGROUND |
6028 GDK_GC_FUNCTION);
6029 gdk_gc_set_exposures(invert_gc,
6030 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6031 /*
6032 * Do a visual beep by changing back and forth in some undetermined way,
6033 * the foreground and background colors. This is due to the fact that
6034 * there can't be really any prediction about the effects of XOR on
6035 * arbitrary X11 servers. However this seems to be enough for what we
6036 * intend it to do.
6037 */
6038 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6039 TRUE,
6040 0, 0,
6041 FILL_X((int)Columns) + gui.border_offset,
6042 FILL_Y((int)Rows) + gui.border_offset);
6043
6044 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006045 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046
6047 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6048 TRUE,
6049 0, 0,
6050 FILL_X((int)Columns) + gui.border_offset,
6051 FILL_Y((int)Rows) + gui.border_offset);
6052
6053 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006054#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055}
6056
6057/*
6058 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6059 */
6060 void
6061gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6062{
Bram Moolenaar98921892016-02-23 17:14:37 +01006063#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006064 const GdkRectangle rect = {
6065 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6066 };
6067 cairo_t * const cr = cairo_create(gui.surface);
6068
Bram Moolenaar36edf062016-07-21 22:10:12 +02006069 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006070# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6071 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6072# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006073 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006074# endif
presuku9459b8d2021-11-16 20:03:56 +00006075 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006076 cairo_fill(cr);
6077
6078 cairo_destroy(cr);
6079
presuku9459b8d2021-11-16 20:03:56 +00006080 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6081 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006082#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 GdkGCValues values;
6084 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085
6086 if (gui.drawarea->window == NULL)
6087 return;
6088
Bram Moolenaar89d40322006-08-29 15:30:07 +00006089 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6090 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 values.function = GDK_XOR;
6092 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6093 &values,
6094 GDK_GC_FOREGROUND |
6095 GDK_GC_BACKGROUND |
6096 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006097 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6098 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6100 TRUE,
6101 FILL_X(c), FILL_Y(r),
6102 (nc) * gui.char_width, (nr) * gui.char_height);
6103 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105}
6106
6107/*
6108 * Iconify the GUI window.
6109 */
6110 void
6111gui_mch_iconify(void)
6112{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114}
6115
6116#if defined(FEAT_EVAL) || defined(PROTO)
6117/*
6118 * Bring the Vim window to the foreground.
6119 */
6120 void
6121gui_mch_set_foreground(void)
6122{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124}
6125#endif
6126
6127/*
6128 * Draw a cursor without focus.
6129 */
6130 void
6131gui_mch_draw_hollow_cursor(guicolor_T color)
6132{
6133 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006134#if GTK_CHECK_VERSION(3,0,0)
6135 cairo_t *cr;
6136#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137
Bram Moolenaar98921892016-02-23 17:14:37 +01006138 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 return;
6140
Bram Moolenaar98921892016-02-23 17:14:37 +01006141#if GTK_CHECK_VERSION(3,0,0)
6142 cr = cairo_create(gui.surface);
6143#endif
6144
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145 gui_mch_set_fg_color(color);
6146
Bram Moolenaar98921892016-02-23 17:14:37 +01006147#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006148 cairo_set_source_rgba(cr,
6149 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6150 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006151#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 if (mb_lefthalve(gui.row, gui.col))
6155 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006156#if GTK_CHECK_VERSION(3,0,0)
6157 cairo_set_line_width(cr, 1.0);
6158 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6159 cairo_rectangle(cr,
6160 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6161 i * gui.char_width - 1, gui.char_height - 1);
6162 cairo_stroke(cr);
6163 cairo_destroy(cr);
6164#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6166 FALSE,
6167 FILL_X(gui.col), FILL_Y(gui.row),
6168 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006169#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170}
6171
6172/*
6173 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6174 * color "color".
6175 */
6176 void
6177gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6178{
Bram Moolenaar98921892016-02-23 17:14:37 +01006179 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 return;
6181
6182 gui_mch_set_fg_color(color);
6183
Bram Moolenaar98921892016-02-23 17:14:37 +01006184#if GTK_CHECK_VERSION(3,0,0)
6185 {
6186 cairo_t *cr;
6187
6188 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006189 cairo_set_source_rgba(cr,
6190 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6191 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006192 cairo_rectangle(cr,
6193# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006194 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006195 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6196# endif
6197 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6198 w, h);
6199 cairo_fill(cr);
6200 cairo_destroy(cr);
6201 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006202#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6204 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6205 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006206# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006207 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006209# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 FILL_X(gui.col),
6211 FILL_Y(gui.row) + gui.char_height - h,
6212 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006213#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214}
6215
6216
6217/*
6218 * Catch up with any queued X11 events. This may put keyboard input into the
6219 * input buffer, call resize call-backs, trigger timers etc. If there is
6220 * nothing in the X11 event queue (& no timers pending), then we return
6221 * immediately.
6222 */
6223 void
6224gui_mch_update(void)
6225{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006226 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6227 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228}
6229
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006230 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231input_timer_cb(gpointer data)
6232{
6233 int *timed_out = (int *) data;
6234
Bram Moolenaar30613902019-12-01 22:11:18 +01006235 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236 *timed_out = TRUE;
6237
Bram Moolenaar30613902019-12-01 22:11:18 +01006238 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239}
6240
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006241#ifdef FEAT_JOB_CHANNEL
6242 static timeout_cb_type
6243channel_poll_cb(gpointer data UNUSED)
6244{
Bram Moolenaar30613902019-12-01 22:11:18 +01006245 // Using an event handler for a channel that may be disconnected does
6246 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006247 channel_handle_events(TRUE);
6248 parse_queued_messages();
6249
Bram Moolenaar30613902019-12-01 22:11:18 +01006250 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006251}
6252#endif
6253
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254/*
6255 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6256 * from the keyboard.
6257 * wtime == -1 Wait forever.
6258 * wtime == 0 This should never happen.
6259 * wtime > 0 Wait wtime milliseconds for a character.
6260 * Returns OK if a character was found to be available within the given time,
6261 * or FAIL otherwise.
6262 */
6263 int
6264gui_mch_wait_for_chars(long wtime)
6265{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006266 int focus;
6267 guint timer;
6268 static int timed_out;
6269 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006270#ifdef FEAT_JOB_CHANNEL
6271 guint channel_timer = 0;
6272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273
6274 timed_out = FALSE;
6275
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006276 // This timeout makes sure that we will return if no characters arrived in
6277 // time. If "wtime" is zero just use one.
6278 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006279 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006280 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 else
6282 timer = 0;
6283
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006284#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006285 // If there is a channel with the keep_open flag we need to poll for input
6286 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006287 if (channel_any_keep_open())
6288 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6289#endif
6290
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 focus = gui.in_focus;
6292
6293 do
6294 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006295 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 if (gui.in_focus != focus)
6297 {
6298 if (gui.in_focus)
6299 gui_mch_start_blink();
6300 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006301 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 focus = gui.in_focus;
6303 }
6304
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006305#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006306# ifdef FEAT_TIMERS
6307 did_add_timer = FALSE;
6308# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006309 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006310# ifdef FEAT_TIMERS
6311 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006312 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006313 goto theend;
6314# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006315#endif
6316
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 /*
6318 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006319 * Skip this if input is available anyway (can happen in rare
6320 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006322 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006323 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324
Bram Moolenaar30613902019-12-01 22:11:18 +01006325 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 if (input_available())
6327 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006328 retval = OK;
6329 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 }
6331 } while (wtime < 0 || !timed_out);
6332
6333 /*
6334 * Flush all eventually pending (drawing) events.
6335 */
6336 gui_mch_update();
6337
Bram Moolenaar4231da42016-06-02 14:30:04 +02006338theend:
6339 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006340 timeout_remove(timer);
6341#ifdef FEAT_JOB_CHANNEL
6342 if (channel_timer != 0)
6343 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006344#endif
6345
6346 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347}
6348
6349
Bram Moolenaar30613902019-12-01 22:11:18 +01006350/////////////////////////////////////////////////////////////////////////////
6351// Output drawing routines.
6352//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353
6354
Bram Moolenaar30613902019-12-01 22:11:18 +01006355// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 void
6357gui_mch_flush(void)
6358{
Bram Moolenaar98921892016-02-23 17:14:37 +01006359 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006360#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006361 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006362#else
6363 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365}
6366
6367/*
6368 * Clear a rectangular region of the screen from text pos (row1, col1) to
6369 * (row2, col2) inclusive.
6370 */
6371 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006372gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006374
6375 int col1 = check_col(col1arg);
6376 int col2 = check_col(col2arg);
6377 int row1 = check_row(row1arg);
6378 int row2 = check_row(row2arg);
6379
Bram Moolenaar98921892016-02-23 17:14:37 +01006380#if GTK_CHECK_VERSION(3,0,0)
6381 if (gtk_widget_get_window(gui.drawarea) == NULL)
6382 return;
6383#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 GdkColor color;
6385
6386 if (gui.drawarea->window == NULL)
6387 return;
6388
6389 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006390#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391
Bram Moolenaar98921892016-02-23 17:14:37 +01006392#if GTK_CHECK_VERSION(3,0,0)
6393 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006394 // Add one pixel to the far right column in case a double-stroked
6395 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006396 const GdkRectangle rect = {
6397 FILL_X(col1), FILL_Y(row1),
6398 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6399 (row2 - row1 + 1) * gui.char_height
6400 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006401 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006402# if GTK_CHECK_VERSION(3,22,2)
6403 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6404# else
presuku9459b8d2021-11-16 20:03:56 +00006405 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006406 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6407 if (pat != NULL)
6408 cairo_set_source(cr, pat);
6409 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006410 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006411# endif
presuku9459b8d2021-11-16 20:03:56 +00006412 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006413 cairo_fill(cr);
6414 cairo_destroy(cr);
6415
presuku9459b8d2021-11-16 20:03:56 +00006416 gtk_widget_queue_draw_area(gui.drawarea,
6417 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006418 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006419#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 gdk_gc_set_foreground(gui.text_gc, &color);
6421
Bram Moolenaar30613902019-12-01 22:11:18 +01006422 // Clear one extra pixel at the far right, for when bold characters have
6423 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6425 FILL_X(col1), FILL_Y(row1),
6426 (col2 - col1 + 1) * gui.char_width
6427 + (col2 == Columns - 1),
6428 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006429#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430}
6431
Bram Moolenaar98921892016-02-23 17:14:37 +01006432#if GTK_CHECK_VERSION(3,0,0)
6433 static void
6434gui_gtk_window_clear(GdkWindow *win)
6435{
6436 const GdkRectangle rect = {
6437 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6438 };
6439 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006440# if GTK_CHECK_VERSION(3,22,2)
6441 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6442# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006443 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6444 if (pat != NULL)
6445 cairo_set_source(cr, pat);
6446 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006447 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006448# endif
presuku9459b8d2021-11-16 20:03:56 +00006449 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006450 cairo_fill(cr);
6451 cairo_destroy(cr);
6452
presuku9459b8d2021-11-16 20:03:56 +00006453 gtk_widget_queue_draw_area(gui.drawarea,
6454 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006455}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006456#else
6457# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006458#endif
6459
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 void
6461gui_mch_clear_all(void)
6462{
Bram Moolenaar98921892016-02-23 17:14:37 +01006463 if (gtk_widget_get_window(gui.drawarea) != NULL)
6464 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465}
6466
Bram Moolenaar98921892016-02-23 17:14:37 +01006467#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468/*
6469 * Redraw any text revealed by scrolling up/down.
6470 */
6471 static void
6472check_copy_area(void)
6473{
6474 GdkEvent *event;
6475 int expose_count;
6476
6477 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6478 return;
6479
Bram Moolenaar30613902019-12-01 22:11:18 +01006480 // Avoid redrawing the cursor while scrolling or it'll end up where
6481 // we don't want it to be. I'm not sure if it's correct to call
6482 // gui_dont_update_cursor() at this point but it works as a quick
6483 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006484 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485
6486 do
6487 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006488 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6490
6491 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006492 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493
6494 gui_redraw(event->expose.area.x, event->expose.area.y,
6495 event->expose.area.width, event->expose.area.height);
6496
6497 expose_count = event->expose.count;
6498 gdk_event_free(event);
6499 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006500 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501
6502 gui_can_update_cursor();
6503}
Bram Moolenaar30613902019-12-01 22:11:18 +01006504#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006505
6506#if GTK_CHECK_VERSION(3,0,0)
6507 static void
6508gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6509 int src_x, int src_y,
6510 int width, int height)
6511{
6512 cairo_t * const cr = cairo_create(gui.surface);
6513
6514 cairo_rectangle(cr, dest_x, dest_y, width, height);
6515 cairo_clip(cr);
6516 cairo_push_group(cr);
6517 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6518 cairo_paint(cr);
6519 cairo_pop_group_to_source(cr);
6520 cairo_paint(cr);
6521
6522 cairo_destroy(cr);
6523}
6524#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525
6526/*
6527 * Delete the given number of lines from the given row, scrolling up any
6528 * text further down within the scroll region.
6529 */
6530 void
6531gui_mch_delete_lines(int row, int num_lines)
6532{
Bram Moolenaar98921892016-02-23 17:14:37 +01006533#if GTK_CHECK_VERSION(3,0,0)
6534 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6535 const int nrows = gui.scroll_region_bot - row + 1;
6536 const int src_nrows = nrows - num_lines;
6537
6538 gui_gtk_surface_copy_rect(
6539 FILL_X(gui.scroll_region_left), FILL_Y(row),
6540 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6541 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6542 gui_clear_block(
6543 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6544 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006545 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006546 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006547 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006548#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006550 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551
6552 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6553 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6554
Bram Moolenaar30613902019-12-01 22:11:18 +01006555 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6557 FILL_X(gui.scroll_region_left), FILL_Y(row),
6558 gui.drawarea->window,
6559 FILL_X(gui.scroll_region_left),
6560 FILL_Y(row + num_lines),
6561 gui.char_width * (gui.scroll_region_right
6562 - gui.scroll_region_left + 1) + 1,
6563 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6564
6565 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6566 gui.scroll_region_left,
6567 gui.scroll_region_bot, gui.scroll_region_right);
6568 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006569#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570}
6571
6572/*
6573 * Insert the given number of lines before the given row, scrolling down any
6574 * following text within the scroll region.
6575 */
6576 void
6577gui_mch_insert_lines(int row, int num_lines)
6578{
Bram Moolenaar98921892016-02-23 17:14:37 +01006579#if GTK_CHECK_VERSION(3,0,0)
6580 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6581 const int nrows = gui.scroll_region_bot - row + 1;
6582 const int src_nrows = nrows - num_lines;
6583
6584 gui_gtk_surface_copy_rect(
6585 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6586 FILL_X(gui.scroll_region_left), FILL_Y(row),
6587 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006588 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006589 row, gui.scroll_region_left,
6590 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006591 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006592 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006593 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006594#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006596 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597
6598 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6599 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6600
Bram Moolenaar30613902019-12-01 22:11:18 +01006601 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6603 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6604 gui.drawarea->window,
6605 FILL_X(gui.scroll_region_left), FILL_Y(row),
6606 gui.char_width * (gui.scroll_region_right
6607 - gui.scroll_region_left + 1) + 1,
6608 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6609
6610 gui_clear_block(row, gui.scroll_region_left,
6611 row + num_lines - 1, gui.scroll_region_right);
6612 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006613#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614}
6615
6616/*
6617 * X Selection stuff, for cutting and pasting text to other windows.
6618 */
6619 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006620clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621{
6622 GdkAtom target;
6623 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006624 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625
6626 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6627 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006628 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6629 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 received_selection = RS_NONE;
6631 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6632
6633 gtk_selection_convert(gui.drawarea,
6634 cbd->gtk_sel_atom, target,
6635 (guint32)GDK_CURRENT_TIME);
6636
Bram Moolenaar30613902019-12-01 22:11:18 +01006637 // Hack: Wait up to three seconds for the selection. A hang was
6638 // noticed here when using the netrw plugin combined with ":gui"
6639 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006640 start = time(NULL);
6641 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006642 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643
6644 if (received_selection != RS_FAIL)
6645 return;
6646 }
6647
Bram Moolenaar30613902019-12-01 22:11:18 +01006648 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006649 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6650 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651}
6652
6653/*
6654 * Disown the selection.
6655 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006657clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006659 if (!in_selection_clear_event)
6660 {
6661 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6662 gui_mch_update();
6663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006664}
6665
6666/*
6667 * Own the selection and return OK if it worked.
6668 */
6669 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006670clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671{
6672 int success;
6673
6674 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006675 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 gui_mch_update();
6677 return (success) ? OK : FAIL;
6678}
6679
6680/*
6681 * Send the current selection to the clipboard. Do nothing for X because we
6682 * will fill in the selection only when requested by another app.
6683 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006685clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686{
6687}
6688
Bram Moolenaar113e1072019-01-20 15:30:40 +01006689#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006690 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006691clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006692{
6693 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6694}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006695#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006696
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697
6698#if defined(FEAT_MENU) || defined(PROTO)
6699/*
6700 * Make a menu item appear either active or not active (grey or not grey).
6701 */
6702 void
6703gui_mch_menu_grey(vimmenu_T *menu, int grey)
6704{
6705 if (menu->id == NULL)
6706 return;
6707
6708 if (menu_is_separator(menu->name))
6709 grey = TRUE;
6710
6711 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006712 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006713 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 {
6715 gtk_widget_set_sensitive(menu->id, !grey);
6716 gui_mch_update();
6717 }
6718}
6719
6720/*
6721 * Make menu item hidden or not hidden.
6722 */
6723 void
6724gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6725{
6726 if (menu->id == 0)
6727 return;
6728
6729 if (hidden)
6730 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006731 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732 {
6733 gtk_widget_hide(menu->id);
6734 gui_mch_update();
6735 }
6736 }
6737 else
6738 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006739 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 {
6741 gtk_widget_show(menu->id);
6742 gui_mch_update();
6743 }
6744 }
6745}
6746
6747/*
6748 * This is called after setting all the menus to grey/hidden or not.
6749 */
6750 void
6751gui_mch_draw_menubar(void)
6752{
Bram Moolenaar30613902019-12-01 22:11:18 +01006753 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 gui_mch_update();
6755}
Bram Moolenaar30613902019-12-01 22:11:18 +01006756#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757
6758/*
6759 * Scrollbar stuff.
6760 */
6761 void
6762gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6763{
6764 if (sb->id == NULL)
6765 return;
6766
Bram Moolenaar98921892016-02-23 17:14:37 +01006767 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006768 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769}
6770
6771
6772/*
6773 * Return the RGB value of a pixel as long.
6774 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006775 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776gui_mch_get_rgb(guicolor_T pixel)
6777{
Bram Moolenaar98921892016-02-23 17:14:37 +01006778#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006779 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006780#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006781 GdkColor color;
6782
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6784 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006786 return (guicolor_T)(
6787 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006789 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791}
6792
6793/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006794 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006796 void
6797gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798{
Bram Moolenaar98921892016-02-23 17:14:37 +01006799 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800}
6801
6802 void
6803gui_mch_setmouse(int x, int y)
6804{
Bram Moolenaar30613902019-12-01 22:11:18 +01006805 // Sorry for the Xlib call, but we can't avoid it, since there is no
6806 // internal GDK mechanism present to accomplish this. (and for good
6807 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01006808 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6809 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6810 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811}
6812
6813
6814#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01006815// The last set mouse pointer shape is remembered, to be used when it goes
6816// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817static int last_shape = 0;
6818#endif
6819
6820/*
6821 * Use the blank mouse pointer or not.
6822 *
6823 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6824 */
6825 void
6826gui_mch_mousehide(int hide)
6827{
6828 if (gui.pointer_hidden != hide)
6829 {
6830 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006831 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 {
6833 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006834 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6835 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836 else
6837#ifdef FEAT_MOUSESHAPE
6838 mch_set_mouse_shape(last_shape);
6839#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006840 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841#endif
6842 }
6843 }
6844}
6845
6846#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6847
Bram Moolenaar30613902019-12-01 22:11:18 +01006848// Table for shape IDs. Keep in sync with the mshape_names[] table in
6849// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850static const int mshape_ids[] =
6851{
Bram Moolenaar30613902019-12-01 22:11:18 +01006852 GDK_LEFT_PTR, // arrow
6853 GDK_CURSOR_IS_PIXMAP, // blank
6854 GDK_XTERM, // beam
6855 GDK_SB_V_DOUBLE_ARROW, // updown
6856 GDK_SIZING, // udsizing
6857 GDK_SB_H_DOUBLE_ARROW, // leftright
6858 GDK_SIZING, // lrsizing
6859 GDK_WATCH, // busy
6860 GDK_X_CURSOR, // no
6861 GDK_CROSSHAIR, // crosshair
6862 GDK_HAND1, // hand1
6863 GDK_HAND2, // hand2
6864 GDK_PENCIL, // pencil
6865 GDK_QUESTION_ARROW, // question
6866 GDK_RIGHT_PTR, // right-arrow
6867 GDK_CENTER_PTR, // up-arrow
6868 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869};
6870
6871 void
6872mch_set_mouse_shape(int shape)
6873{
6874 int id;
6875 GdkCursor *c;
6876
Bram Moolenaar98921892016-02-23 17:14:37 +01006877 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 return;
6879
6880 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006881 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6882 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 else
6884 {
6885 if (shape >= MSHAPE_NUMBERED)
6886 {
6887 id = shape - MSHAPE_NUMBERED;
6888 if (id >= GDK_LAST_CURSOR)
6889 id = GDK_LEFT_PTR;
6890 else
Bram Moolenaar30613902019-12-01 22:11:18 +01006891 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892 }
K.Takataeeec2542021-06-02 13:28:16 +02006893 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006895 else
6896 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006898 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006899 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006900# if GTK_CHECK_VERSION(3,0,0)
6901 g_object_unref(G_OBJECT(c));
6902# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006903 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01006904# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 }
6906 if (shape != MSHAPE_HIDE)
6907 last_shape = shape;
6908}
Bram Moolenaar30613902019-12-01 22:11:18 +01006909#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910
6911
6912#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6913/*
6914 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6915 * scaled down if the current font is not big enough, or scaled up if the image
6916 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6917 * will be cut off if the current font is not big enough, or centered if it's
6918 * too small.
6919 */
6920# define SIGN_WIDTH (2 * gui.char_width)
6921# define SIGN_HEIGHT (gui.char_height)
6922# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6923
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 void
6925gui_mch_drawsign(int row, int col, int typenr)
6926{
6927 GdkPixbuf *sign;
6928
6929 sign = (GdkPixbuf *)sign_get_image(typenr);
6930
Bram Moolenaar98921892016-02-23 17:14:37 +01006931 if (sign != NULL && gui.drawarea != NULL
6932 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 {
6934 int width;
6935 int height;
6936 int xoffset;
6937 int yoffset;
6938 int need_scale;
6939
6940 width = gdk_pixbuf_get_width(sign);
6941 height = gdk_pixbuf_get_height(sign);
6942 /*
6943 * Decide whether we need to scale. Allow one pixel of border
6944 * width to be cut off, in order to avoid excessive scaling for
6945 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006946 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 */
6948 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006949 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 || (width < 3 * SIGN_WIDTH / 4
6951 && height < 3 * SIGN_HEIGHT / 4));
6952 if (need_scale)
6953 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006954 double aspect;
6955 int w = width;
6956 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957
Bram Moolenaar30613902019-12-01 22:11:18 +01006958 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959 aspect = (double)height / (double)width;
6960 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6961 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006962 if (((double)(MAX(height, SIGN_HEIGHT)) /
6963 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6964 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006965 // Change the aspect ratio by at most 15% to fill the
6966 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006967 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6968 height = MIN(height, SIGN_HEIGHT);
6969 }
6970 else
6971 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006973 if (w == width && h == height)
6974 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006975 // no change in dimensions; don't decrease reference counter
6976 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006977 need_scale = FALSE;
6978 }
6979 else
6980 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006981 // This doesn't seem to be worth caching, and doing so would
6982 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006983 sign = gdk_pixbuf_scale_simple(sign, width, height,
6984 GDK_INTERP_BILINEAR);
6985 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006986 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988 }
6989
Bram Moolenaar30613902019-12-01 22:11:18 +01006990 // The origin is the upper-left corner of the pixmap. Therefore
6991 // these offset may become negative if the pixmap is smaller than
6992 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993 xoffset = (width - SIGN_WIDTH) / 2;
6994 yoffset = (height - SIGN_HEIGHT) / 2;
6995
Bram Moolenaar98921892016-02-23 17:14:37 +01006996# if GTK_CHECK_VERSION(3,0,0)
6997 {
6998 cairo_t *cr;
6999 cairo_surface_t *bg_surf;
7000 cairo_t *bg_cr;
7001 cairo_surface_t *sign_surf;
7002 cairo_t *sign_cr;
7003
7004 cr = cairo_create(gui.surface);
7005
7006 bg_surf = cairo_surface_create_similar(gui.surface,
7007 cairo_surface_get_content(gui.surface),
7008 SIGN_WIDTH, SIGN_HEIGHT);
7009 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007010 cairo_set_source_rgba(bg_cr,
7011 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7012 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007013 cairo_paint(bg_cr);
7014
7015 sign_surf = cairo_surface_create_similar(gui.surface,
7016 cairo_surface_get_content(gui.surface),
7017 SIGN_WIDTH, SIGN_HEIGHT);
7018 sign_cr = cairo_create(sign_surf);
7019 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7020 cairo_paint(sign_cr);
7021
7022 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7023 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7024 cairo_paint(sign_cr);
7025
7026 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7027 cairo_paint(cr);
7028
7029 cairo_destroy(sign_cr);
7030 cairo_surface_destroy(sign_surf);
7031 cairo_destroy(bg_cr);
7032 cairo_surface_destroy(bg_surf);
7033 cairo_destroy(cr);
7034
presuku9459b8d2021-11-16 20:03:56 +00007035 gtk_widget_queue_draw_area(gui.drawarea,
7036 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007037
7038 }
Bram Moolenaar30613902019-12-01 22:11:18 +01007039# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7041
7042 gdk_draw_rectangle(gui.drawarea->window,
7043 gui.text_gc,
7044 TRUE,
7045 FILL_X(col),
7046 FILL_Y(row),
7047 SIGN_WIDTH,
7048 SIGN_HEIGHT);
7049
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 gdk_pixbuf_render_to_drawable_alpha(sign,
7051 gui.drawarea->window,
7052 MAX(0, xoffset),
7053 MAX(0, yoffset),
7054 FILL_X(col) - MIN(0, xoffset),
7055 FILL_Y(row) - MIN(0, yoffset),
7056 MIN(width, SIGN_WIDTH),
7057 MIN(height, SIGN_HEIGHT),
7058 GDK_PIXBUF_ALPHA_BILEVEL,
7059 127,
7060 GDK_RGB_DITHER_NORMAL,
7061 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007062# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 if (need_scale)
7064 g_object_unref(sign);
7065 }
7066}
7067
7068 void *
7069gui_mch_register_sign(char_u *signfile)
7070{
7071 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7072 {
7073 GdkPixbuf *sign;
7074 GError *error = NULL;
7075 char_u *message;
7076
7077 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7078
7079 if (error == NULL)
7080 return sign;
7081
7082 message = (char_u *)error->message;
7083
7084 if (message != NULL && input_conv.vc_type != CONV_NONE)
7085 message = string_convert(&input_conv, message, NULL);
7086
7087 if (message != NULL)
7088 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007089 // The error message is already translated and will be more
7090 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007091 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092
7093 if (input_conv.vc_type != CONV_NONE)
7094 vim_free(message);
7095 }
7096 g_error_free(error);
7097 }
7098
7099 return NULL;
7100}
7101
7102 void
7103gui_mch_destroy_sign(void *sign)
7104{
7105 if (sign != NULL)
7106 g_object_unref(sign);
7107}
7108
Bram Moolenaar30613902019-12-01 22:11:18 +01007109#endif // FEAT_SIGN_ICONS