blob: 4dfa5ff3cbdec401d8bab12c10a4c059404f2c72 [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
Ernie Raeld42b8392022-04-23 19:52:23 +0100399// Comment out the following line to ignore code for resize history tracking.
400#define TRACK_RESIZE_HISTORY
401#ifdef TRACK_RESIZE_HISTORY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402/*
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100403 * Keep a short term resize history so that stale gtk responses can be
404 * discarded.
405 * When a gtk_window_resize() request is sent to gtk, the width/height of
406 * the request is saved. Recent stale requests are kept around in a list.
407 * See https://github.com/vim/vim/issues/10123
408 */
Ernie Raeld42b8392022-04-23 19:52:23 +0100409# if 0 // Change to 1 to enable ch_log() calls for debugging.
Bram Moolenaar4c5678f2022-11-30 18:12:19 +0000410# ifdef FEAT_EVAL
Ernie Raeld42b8392022-04-23 19:52:23 +0100411# define ENABLE_RESIZE_HISTORY_LOG
412# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100413# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100414
415/*
416 * History item of a resize request.
417 * Width and height are of gui.mainwin.
418 */
419typedef struct resize_history {
420 int used; // If true, can't match for discard. Only matches once.
421 int width;
422 int height;
Ernie Raeld42b8392022-04-23 19:52:23 +0100423# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100424 int seq; // for ch_log messages
Ernie Raeld42b8392022-04-23 19:52:23 +0100425# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100426 struct resize_history *next;
427} resize_hist_T;
428
429// never NULL during execution
430static resize_hist_T *latest_resize_hist;
431// list of stale resize requests
432static resize_hist_T *old_resize_hists;
433
434/*
435 * Used when calling gtk_window_resize().
436 * Create a resize request history item, put previous request on stale list.
437 * Width/height are the size of the request for the gui.mainwin.
438 */
439 static void
440alloc_resize_hist(int width, int height)
441{
442 // alloc a new resize hist, save current in list of old history
443 resize_hist_T *prev_hist = latest_resize_hist;
444 resize_hist_T *new_hist = ALLOC_CLEAR_ONE(resize_hist_T);
445
446 new_hist->width = width;
447 new_hist->height = height;
448 latest_resize_hist = new_hist;
449
450 // previous hist item becomes head of list
451 prev_hist->next = old_resize_hists;
452 old_resize_hists = prev_hist;
453
Ernie Raeld42b8392022-04-23 19:52:23 +0100454# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100455 new_hist->seq = prev_hist->seq + 1;
456 ch_log(NULL, "gui_gtk: New resize seq %d (%d, %d) [%d, %d]",
457 new_hist->seq, width, height, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +0100458# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100459}
460
461/*
462 * Free everything on the stale resize history list.
463 * This list is empty when there are no outstanding resize requests.
464 */
465 static void
Yegappan Lakshmanana23a11b2023-02-21 14:27:41 +0000466clear_resize_hists(void)
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100467{
Ernie Raeld42b8392022-04-23 19:52:23 +0100468# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100469 int i = 0;
Ernie Raeld42b8392022-04-23 19:52:23 +0100470# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100471
472 if (latest_resize_hist)
473 latest_resize_hist->used = TRUE;
474 while (old_resize_hists != NULL)
475 {
476 resize_hist_T *next_hist = old_resize_hists->next;
477
478 vim_free(old_resize_hists);
479 old_resize_hists = next_hist;
Ernie Raeld42b8392022-04-23 19:52:23 +0100480# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100481 i++;
Ernie Raeld42b8392022-04-23 19:52:23 +0100482# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100483 }
Ernie Raeld42b8392022-04-23 19:52:23 +0100484# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100485 ch_log(NULL, "gui_gtk: free %d hists", i);
Ernie Raeld42b8392022-04-23 19:52:23 +0100486# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100487}
488
489// true if hist item is unused and matches w,h
Ernie Raeld42b8392022-04-23 19:52:23 +0100490# define MATCH_WIDTH_HEIGHT(hist, w, h) \
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100491 (!hist->used && hist->width == w && hist->height == h)
492
493/*
494 * Search the resize hist list.
495 * Return true if the specified width,height match an item in the list that
496 * has never matched before. Mark the matching item as used so it will
497 * not match again.
498 */
499 static int
500match_stale_width_height(int width, int height)
501{
502 resize_hist_T *hist = old_resize_hists;
503
504 for (hist = old_resize_hists; hist != NULL; hist = hist->next)
505 if (MATCH_WIDTH_HEIGHT(hist, width, height))
506 {
Ernie Raeld42b8392022-04-23 19:52:23 +0100507# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100508 ch_log(NULL, "gui_gtk: discard seq %d, cur seq %d",
509 hist->seq, latest_resize_hist->seq);
Ernie Raeld42b8392022-04-23 19:52:23 +0100510# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100511 hist->used = TRUE;
512 return TRUE;
513 }
514 return FALSE;
515}
516
Ernie Raeld42b8392022-04-23 19:52:23 +0100517# if defined(EXITFREE)
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100518 static void
Yegappan Lakshmanana23a11b2023-02-21 14:27:41 +0000519free_all_resize_hist(void)
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100520{
521 clear_resize_hists();
522 vim_free(latest_resize_hist);
523}
Ernie Raeld42b8392022-04-23 19:52:23 +0100524# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100525#endif
526
527/*
Chris Daltonee93e322021-11-23 12:27:48 +0000528 * GTK doesn't set the GDK_BUTTON1_MASK state when dragging a touch. Add this
529 * state when dragging.
530 */
531static guint dragging_button_state = 0;
532
533/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 * Parse the GUI related command-line arguments. Any arguments used are
535 * deleted from argv, and *argc is decremented accordingly. This is called
536 * when vim is started, whether or not the GUI has been started.
537 */
538 void
539gui_mch_prepare(int *argc, char **argv)
540{
541 const cmdline_option_T *option;
542 int i = 0;
543 int len = 0;
544
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200545#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 /*
547 * Determine the command used to invoke Vim, to be passed as restart
548 * command to the session manager. If argv[0] contains any directory
549 * components try building an absolute path, otherwise leave it as is.
550 */
551 restart_command = argv[0];
552
553 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
554 {
555 char_u buf[MAXPATHL];
556
557 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000558 {
559 abs_restart_command = (char *)vim_strsave(buf);
560 restart_command = abs_restart_command;
561 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 }
563#endif
564
565 /*
566 * Move all the entries in argv which are relevant to GTK+ and GNOME
567 * into gui_argv. Freed later in gui_mch_init().
568 */
569 gui_argc = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200570 gui_argv = ALLOC_MULT(char *, *argc + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571
572 g_return_if_fail(gui_argv != NULL);
573
574 gui_argv[gui_argc++] = argv[i++];
575
576 while (i < *argc)
577 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100578 // Don't waste CPU cycles on non-option arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 if (argv[i][0] != '-' && argv[i][0] != '+')
580 {
581 ++i;
582 continue;
583 }
584
Bram Moolenaar30613902019-12-01 22:11:18 +0100585 // Look for argv[i] in cmdline_options[] table.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 for (option = &cmdline_options[0]; option->name != NULL; ++option)
587 {
588 len = strlen(option->name);
589
590 if (strncmp(argv[i], option->name, len) == 0)
591 {
592 if (argv[i][len] == '\0')
593 break;
Bram Moolenaar30613902019-12-01 22:11:18 +0100594 // allow --foo=bar style
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
596 break;
597#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar30613902019-12-01 22:11:18 +0100598 // darn, -nb has non-standard syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
600 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
601 break;
602#endif
603 }
604 else if ((option->flags & ARG_COMPAT_LONG)
605 && strcmp(argv[i], option->name + 1) == 0)
606 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100607 // Replace the standard X arguments "-name" and "-display"
608 // with their GNU-style long option counterparts.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 argv[i] = (char *)option->name;
610 break;
611 }
612 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100613 if (option->name == NULL) // no match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 {
615 ++i;
616 continue;
617 }
618
619 if (option->flags & ARG_FOR_GTK)
620 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100621 // Move the argument into gui_argv, which
622 // will later be passed to gtk_init_check()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 gui_argv[gui_argc++] = argv[i];
624 }
625 else
626 {
627 char *value = NULL;
628
Bram Moolenaar30613902019-12-01 22:11:18 +0100629 // Extract the option's value if there is one.
630 // Accept both "--foo bar" and "--foo=bar" style.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 if (option->flags & ARG_HAS_VALUE)
632 {
633 if (argv[i][len] == '=')
634 value = &argv[i][len + 1];
635 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
636 value = argv[i + 1];
637 }
638
Bram Moolenaar30613902019-12-01 22:11:18 +0100639 // Check for options handled by Vim itself
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 switch (option->flags & ARG_INDEX_MASK)
641 {
642 case ARG_REVERSE:
643 found_reverse_arg = TRUE;
644 break;
645 case ARG_NOREVERSE:
646 found_reverse_arg = FALSE;
647 break;
648 case ARG_FONT:
649 font_argument = value;
650 break;
651 case ARG_GEOMETRY:
652 if (value != NULL)
653 gui.geom = vim_strsave((char_u *)value);
654 break;
655 case ARG_BACKGROUND:
656 background_argument = value;
657 break;
658 case ARG_FOREGROUND:
659 foreground_argument = value;
660 break;
661 case ARG_ICONIC:
662 found_iconic_arg = TRUE;
663 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 case ARG_ROLE:
Bram Moolenaar30613902019-12-01 22:11:18 +0100665 role_argument = value; // used later in gui_mch_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667#ifdef FEAT_NETBEANS_INTG
668 case ARG_NETBEANS:
Bram Moolenaar30613902019-12-01 22:11:18 +0100669 gui.dofork = FALSE; // don't fork() when starting GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 netbeansArg = argv[i];
671 break;
672#endif
673 default:
674 break;
675 }
676 }
677
Bram Moolenaar30613902019-12-01 22:11:18 +0100678 // These arguments make gnome_program_init() print a message and exit.
679 // Must start the GUI for this, otherwise ":gui" will exit later!
680 // Only when the GUI can start.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200681 if ((option->flags & ARG_NEEDS_GUI)
682 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 gui.starting = TRUE;
684
685 if (option->flags & ARG_KEEP)
686 ++i;
687 else
688 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100689 // Remove the flag from the argument vector.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 if (--*argc > i)
691 {
692 int n_strip = 1;
693
Bram Moolenaar30613902019-12-01 22:11:18 +0100694 // Move the argument's value as well, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if ((option->flags & ARG_HAS_VALUE)
696 && argv[i][len] != '='
697 && strcmp(argv[i + 1], "--") != 0)
698 {
699 ++n_strip;
700 --*argc;
701 if (option->flags & ARG_FOR_GTK)
702 gui_argv[gui_argc++] = argv[i + 1];
703 }
704
705 if (*argc > i)
706 mch_memmove(&argv[i], &argv[i + n_strip],
707 (*argc - i) * sizeof(char *));
708 }
709 argv[*argc] = NULL;
710 }
711 }
712
713 gui_argv[gui_argc] = NULL;
714}
715
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000716#if defined(EXITFREE) || defined(PROTO)
717 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100718gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000719{
720 vim_free(gui_argv);
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200721#if defined(USE_GNOME_SESSION)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000722 vim_free(abs_restart_command);
723#endif
Ernie Raeld42b8392022-04-23 19:52:23 +0100724#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100725 free_all_resize_hist();
Ernie Raeld42b8392022-04-23 19:52:23 +0100726#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000727}
728#endif
729
Bram Moolenaar98921892016-02-23 17:14:37 +0100730#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731/*
732 * This should be maybe completely removed.
733 * Doesn't seem possible, since check_copy_area() relies on
734 * this information. --danielk
735 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000737visibility_event(GtkWidget *widget UNUSED,
738 GdkEventVisibility *event,
739 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740{
741 gui.visibility = event->state;
742 /*
743 * When we do an gdk_window_copy_area(), and the window is partially
744 * obscured, we want to receive an event to tell us whether it worked
745 * or not.
746 */
747 if (gui.text_gc != NULL)
748 gdk_gc_set_exposures(gui.text_gc,
749 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
750 return FALSE;
751}
Bram Moolenaar30613902019-12-01 22:11:18 +0100752#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
754/*
755 * Redraw the corresponding portions of the screen.
756 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100757#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +0100758 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200759draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100760 cairo_t *cr,
761 gpointer user_data UNUSED)
762{
Bram Moolenaar30613902019-12-01 22:11:18 +0100763 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar98921892016-02-23 17:14:37 +0100764 if (gui.starting)
765 return FALSE;
766
Bram Moolenaar30613902019-12-01 22:11:18 +0100767 out_flush(); // make sure all output has been processed
768 // for GTK+ 3, may induce other draw events.
Bram Moolenaar98921892016-02-23 17:14:37 +0100769
770 cairo_set_source_surface(cr, gui.surface, 0, 0);
771
Bram Moolenaar98921892016-02-23 17:14:37 +0100772 {
773 cairo_rectangle_list_t *list = NULL;
774
Bram Moolenaar98921892016-02-23 17:14:37 +0100775 list = cairo_copy_clip_rectangle_list(cr);
776 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
777 {
778 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100779
Bram Moolenaar98921892016-02-23 17:14:37 +0100780 for (i = 0; i < list->num_rectangles; i++)
781 {
presuku9459b8d2021-11-16 20:03:56 +0000782 const cairo_rectangle_t *rect = &list->rectangles[i];
Bram Moolenaar023930d2022-12-01 19:40:55 +0000783 cairo_rectangle(cr, rect->x, rect->y,
784 rect->width, rect->height);
presuku9459b8d2021-11-16 20:03:56 +0000785 cairo_fill(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +0100786 }
787 }
788 cairo_rectangle_list_destroy(list);
Bram Moolenaar98921892016-02-23 17:14:37 +0100789 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100790
791 return FALSE;
792}
Bram Moolenaar30613902019-12-01 22:11:18 +0100793#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000795expose_event(GtkWidget *widget UNUSED,
796 GdkEventExpose *event,
797 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798{
Bram Moolenaar30613902019-12-01 22:11:18 +0100799 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 if (gui.starting)
801 return FALSE;
802
Bram Moolenaar30613902019-12-01 22:11:18 +0100803 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 gui_redraw(event->area.x, event->area.y,
805 event->area.width, event->area.height);
806
Bram Moolenaar30613902019-12-01 22:11:18 +0100807 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 if (event->area.x < FILL_X(0))
809 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
810 if (event->area.y < FILL_Y(0))
811 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
812 if (event->area.x > FILL_X(Columns))
813 gdk_window_clear_area(gui.drawarea->window,
814 FILL_X((int)Columns), 0, 0, 0);
815 if (event->area.y > FILL_Y(Rows))
816 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
817
818 return FALSE;
819}
Bram Moolenaar30613902019-12-01 22:11:18 +0100820#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822#ifdef FEAT_CLIENTSERVER
823/*
824 * Handle changes to the "Comm" property
825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000827property_event(GtkWidget *widget,
828 GdkEventProperty *event,
829 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
831 if (event->type == GDK_PROPERTY_NOTIFY
832 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100833 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 && GET_X_ATOM(event->atom) == commProperty)
835 {
836 XEvent xev;
837
Bram Moolenaar30613902019-12-01 22:11:18 +0100838 // Translate to XLib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 xev.xproperty.type = PropertyNotify;
840 xev.xproperty.atom = commProperty;
841 xev.xproperty.window = commWindow;
842 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100843 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100844 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 }
846 return FALSE;
847}
Bram Moolenaar30613902019-12-01 22:11:18 +0100848#endif // defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200850/*
851 * Handle changes to the "Xft/DPI" setting
852 */
853 static void
854gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100855 GParamSpec *pspec UNUSED,
856 gpointer data UNUSED)
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200857{
858 // Create a new PangoContext for this screen, and initialize it
859 // with the current font if necessary.
860 if (gui.text_context != NULL)
861 g_object_unref(gui.text_context);
862
863 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
864 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
865
866 if (gui.norm_font != NULL)
867 {
868 // force default font
869 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
870 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
871 }
872}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200874typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200875
876/*
877 * Start a timer that will invoke the specified callback.
878 * Returns the ID of the timer.
879 */
880 static guint
881timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
882{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200883 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200884}
885
886 static void
887timeout_remove(guint timer)
888{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200889 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200890}
891
892
Bram Moolenaar30613902019-12-01 22:11:18 +0100893/////////////////////////////////////////////////////////////////////////////
894// Focus handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
896
897/*
898 * This is a simple state machine:
899 * BLINK_NONE not blinking at all
900 * BLINK_OFF blinking, cursor is not shown
901 * BLINK_ON blinking, cursor is shown
902 */
903
904#define BLINK_NONE 0
905#define BLINK_OFF 1
906#define BLINK_ON 2
907
908static int blink_state = BLINK_NONE;
909static long_u blink_waittime = 700;
910static long_u blink_ontime = 400;
911static long_u blink_offtime = 250;
912static guint blink_timer = 0;
913
Bram Moolenaar703a8042016-06-04 16:24:32 +0200914 int
915gui_mch_is_blinking(void)
916{
917 return blink_state != BLINK_NONE;
918}
919
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200920 int
921gui_mch_is_blink_off(void)
922{
923 return blink_state == BLINK_OFF;
924}
925
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 void
927gui_mch_set_blinking(long waittime, long on, long off)
928{
929 blink_waittime = waittime;
930 blink_ontime = on;
931 blink_offtime = off;
932}
933
934/*
935 * Stop the cursor blinking. Show the cursor if it wasn't shown.
936 */
937 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100938gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939{
940 if (blink_timer)
941 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200942 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 blink_timer = 0;
944 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100945 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200946 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000948#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200949 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000950#endif
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 blink_state = BLINK_NONE;
953}
954
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200955 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000956blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957{
958 if (blink_state == BLINK_ON)
959 {
960 gui_undraw_cursor();
961 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200962 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964 else
965 {
966 gui_update_cursor(TRUE, FALSE);
967 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200968 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 }
presuku9459b8d2021-11-16 20:03:56 +0000970#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200971 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
Bram Moolenaar30613902019-12-01 22:11:18 +0100974 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975}
976
977/*
978 * Start the cursor blinking. If it was already blinking, this restarts the
979 * waiting time and shows the cursor.
980 */
981 void
982gui_mch_start_blink(void)
983{
984 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200985 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200986 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200987 blink_timer = 0;
988 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100989 // Only switch blinking on if none of the times is zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
991 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200992 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 blink_state = BLINK_ON;
994 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000995#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200996 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 }
999}
1000
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001002enter_notify_event(GtkWidget *widget UNUSED,
1003 GdkEventCrossing *event UNUSED,
1004 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005{
1006 if (blink_state == BLINK_NONE)
1007 gui_mch_start_blink();
1008
Bram Moolenaar30613902019-12-01 22:11:18 +01001009 // make sure keyboard input goes there
Bram Moolenaar98921892016-02-23 17:14:37 +01001010 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 gtk_widget_grab_focus(gui.drawarea);
1012
1013 return FALSE;
1014}
1015
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001017leave_notify_event(GtkWidget *widget UNUSED,
1018 GdkEventCrossing *event UNUSED,
1019 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020{
1021 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001022 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023
1024 return FALSE;
1025}
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001028focus_in_event(GtkWidget *widget,
1029 GdkEventFocus *event UNUSED,
1030 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031{
1032 gui_focus_change(TRUE);
1033
1034 if (blink_state == BLINK_NONE)
1035 gui_mch_start_blink();
1036
Bram Moolenaar30613902019-12-01 22:11:18 +01001037 // make sure keyboard input goes to the draw area (if this is focus for a
1038 // window)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001039 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001040 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
1042 return TRUE;
1043}
1044
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001046focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001047 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001048 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049{
1050 gui_focus_change(FALSE);
1051
1052 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001053 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
1055 return TRUE;
1056}
1057
1058
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059/*
1060 * Translate a GDK key value to UTF-8 independently of the current locale.
1061 * The output is written to string, which must have room for at least 6 bytes
1062 * plus the NUL terminator. Returns the length in bytes.
1063 *
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001064 * event->string is evil; see here why:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1066 */
1067 static int
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001068keyval_to_string(unsigned int keyval, char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
1070 int len;
1071 guint32 uc;
1072
1073 uc = gdk_keyval_to_unicode(keyval);
1074 if (uc != 0)
1075 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001076 // Translate a normal key to UTF-8. This doesn't work for dead
1077 // keys of course, you _have_ to use an input method for that.
1078 len = utf_char2bytes((int)uc, string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 }
1080 else
1081 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001082 // Translate keys which are represented by ASCII control codes in Vim.
1083 // There are only a few of those; most control keys are translated to
1084 // special terminal-like control sequences.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 len = 1;
1086 switch (keyval)
1087 {
1088 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1089 string[0] = TAB;
1090 break;
1091 case GDK_Linefeed:
1092 string[0] = NL;
1093 break;
1094 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1095 string[0] = CAR;
1096 break;
1097 case GDK_Escape:
1098 string[0] = ESC;
1099 break;
1100 default:
1101 len = 0;
1102 break;
1103 }
1104 }
1105 string[len] = NUL;
1106
1107 return len;
1108}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001110 static int
1111modifiers_gdk2vim(guint state)
1112{
1113 int modifiers = 0;
1114
1115 if (state & GDK_SHIFT_MASK)
1116 modifiers |= MOD_MASK_SHIFT;
1117 if (state & GDK_CONTROL_MASK)
1118 modifiers |= MOD_MASK_CTRL;
1119 if (state & GDK_MOD1_MASK)
1120 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001121#if GTK_CHECK_VERSION(2,10,0)
Casey Tucker92e90a12024-01-25 22:44:00 +01001122 if (state & GDK_META_MASK)
1123 modifiers |= MOD_MASK_META;
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001124 if (state & GDK_SUPER_MASK)
Casey Tucker92e90a12024-01-25 22:44:00 +01001125 modifiers |= MOD_MASK_CMD;
1126#else
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001127 if (state & GDK_MOD4_MASK)
Casey Tucker92e90a12024-01-25 22:44:00 +01001128 modifiers |= MOD_MASK_CMD;
1129#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001130
1131 return modifiers;
1132}
1133
1134 static int
1135modifiers_gdk2mouse(guint state)
1136{
1137 int modifiers = 0;
1138
1139 if (state & GDK_SHIFT_MASK)
1140 modifiers |= MOUSE_SHIFT;
1141 if (state & GDK_CONTROL_MASK)
1142 modifiers |= MOUSE_CTRL;
1143 if (state & GDK_MOD1_MASK)
1144 modifiers |= MOUSE_ALT;
1145
1146 return modifiers;
1147}
1148
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149/*
1150 * Main keyboard handler:
1151 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001153key_press_event(GtkWidget *widget UNUSED,
1154 GdkEventKey *event,
1155 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156{
Bram Moolenaar30613902019-12-01 22:11:18 +01001157 // For GTK+ 2 we know for sure how large the string might get.
1158 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 guint key_sym;
1161 int len;
1162 int i;
1163 int modifiers;
1164 int key;
1165 guint state;
1166 char_u *s, *d;
Anton Sharonov4dd92522022-07-04 10:47:31 +01001167 int ctrl_prefix_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaar20892c12011-06-26 04:49:00 +02001169 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 key_sym = event->keyval;
1171 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
1173#ifdef FEAT_XIM
1174 if (xim_queue_key_press_event(event, TRUE))
1175 return TRUE;
1176#endif
1177
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178#ifdef SunXK_F36
1179 /*
1180 * These keys have bogus lookup strings, and trapping them here is
1181 * easier than trying to XRebindKeysym() on them with every possible
1182 * combination of modifiers.
1183 */
1184 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1185 len = 0;
1186 else
1187#endif
1188 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001189 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190
Bram Moolenaar30613902019-12-01 22:11:18 +01001191 // Careful: convert_input() doesn't handle the NUL character.
1192 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 if (len > 1 && input_conv.vc_type != CONV_NONE)
1194 len = convert_input(string2, len, sizeof(string2));
1195
1196 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 d = string;
1198 for (i = 0; i < len; ++i)
1199 {
1200 *d++ = s[i];
1201 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1202 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001203 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 *d++ = KS_EXTRA;
1205 *d++ = (int)KE_CSI;
1206 }
1207 }
1208 len = d - string;
1209 }
1210
Bram Moolenaar30613902019-12-01 22:11:18 +01001211 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 if (key_sym == GDK_ISO_Left_Tab)
1213 {
1214 key_sym = GDK_Tab;
1215 state |= GDK_SHIFT_MASK;
1216 }
1217
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001219 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1220 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 if ((state & GDK_MOD1_MASK)
1222 && gui.menu_is_active
1223 && (*p_wak == 'y'
1224 || (*p_wak == 'm'
1225 && len == 1
1226 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001227 // For GTK2 we return false to signify that we haven't handled the
1228 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230#endif
1231
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001232 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1233 // done later, the same as it happens for the terminal. Hopefully that
1234 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235
Bram Moolenaar30613902019-12-01 22:11:18 +01001236 // Check for special keys. Also do this when len == 1 (key has an ASCII
1237 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (len == 0 || len == 1)
1239 {
1240 for (i = 0; special_keys[i].key_sym != 0; i++)
1241 {
1242 if (special_keys[i].key_sym == key_sym)
1243 {
1244 string[0] = CSI;
1245 string[1] = special_keys[i].code0;
1246 string[2] = special_keys[i].code1;
1247 len = -3;
1248 break;
1249 }
1250 }
1251 }
1252
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001253#ifdef GDK_KEY_dead_circumflex
Anton Sharonov4dd92522022-07-04 10:47:31 +01001254 // Belgian Ctrl+[ workaround
1255 if (len == 0 && key_sym == GDK_KEY_dead_circumflex)
1256 {
1257 string[0] = CSI;
1258 string[1] = KS_MODIFIER;
1259 string[2] = MOD_MASK_CTRL;
1260 string[3] = '[';
1261 len = 4;
1262 add_to_input_buf(string, len);
1263 // workaround has to return here, otherwise our fake string[] entries
1264 // are confusing code downstream
1265 return TRUE;
1266 }
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001267#endif
Anton Sharonov4dd92522022-07-04 10:47:31 +01001268
Bram Moolenaar30613902019-12-01 22:11:18 +01001269 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 return TRUE;
1271
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001272 // For some keys a shift modifier is translated into another key code.
1273 if (len == -3)
1274 key = TO_SPECIAL(string[1], string[2]);
1275 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001276 {
1277 string[len] = NUL;
1278 key = mb_ptr2char(string);
1279 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001280
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001281 // Handle modifiers.
1282 modifiers = modifiers_gdk2vim(state);
1283
1284 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001285 key = simplify_key(key, &modifiers);
1286 if (key == CSI)
1287 key = K_CSI;
1288 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001290 string[0] = CSI;
1291 string[1] = K_SECOND(key);
1292 string[2] = K_THIRD(key);
1293 len = 3;
1294 }
1295 else
1296 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001297 // Some keys need adjustment when the Ctrl modifier is used.
1298 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001299
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001300 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001301 modifiers = may_remove_shift_modifier(modifiers, key);
1302
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001303 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001306 if (modifiers != 0)
1307 {
1308 string2[0] = CSI;
1309 string2[1] = KS_MODIFIER;
1310 string2[2] = modifiers;
1311 add_to_input_buf(string2, 3);
Anton Sharonov4dd92522022-07-04 10:47:31 +01001312 if (modifiers == 0x4)
1313 ctrl_prefix_added = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
1315
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001316 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001318 int int_ch = check_for_interrupt(key, modifiers);
1319
1320 if (int_ch != NUL)
1321 {
1322 trash_input_buf();
1323 string[0] = int_ch;
1324 len = 1;
1325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 }
1327
Anton Sharonov4dd92522022-07-04 10:47:31 +01001328 // workaround for German keyboard, where instead of '[' char we have code
1329 // sequence of bytes 195, 188 (UTF-8 for "u-umlaut")
1330 if (ctrl_prefix_added && len == 2
1331 && ((int)string[0]) == 195
1332 && ((int)string[1]) == 188)
1333 {
1334 string[0] = 91; // ASCII('[')
1335 len = 1;
1336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 add_to_input_buf(string, len);
1338
Bram Moolenaar30613902019-12-01 22:11:18 +01001339 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 if (p_mh)
1341 gui_mch_mousehide(TRUE);
1342
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 return TRUE;
1344}
1345
Bram Moolenaar98921892016-02-23 17:14:37 +01001346#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001348key_release_event(GtkWidget *widget UNUSED,
Bram Moolenaar0a748d92022-04-28 15:39:08 +01001349 GdkEventKey *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001350 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351{
Bram Moolenaar98921892016-02-23 17:14:37 +01001352# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001353 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 /*
1355 * GTK+ 2 input methods may do fancy stuff on key release events too.
1356 * With the default IM for instance, you can enter any UCS code point
1357 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1358 */
1359 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001360# else
1361 return TRUE;
1362# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363}
1364#endif
1365
1366
Bram Moolenaar30613902019-12-01 22:11:18 +01001367/////////////////////////////////////////////////////////////////////////////
1368// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
Bram Moolenaar30613902019-12-01 22:11:18 +01001370// Remember when clip_lose_selection was called from here, we must not call
1371// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001372static int in_selection_clear_event = FALSE;
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001375selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001377 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001379 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (event->selection == clip_plus.gtk_sel_atom)
1381 clip_lose_selection(&clip_plus);
1382 else
1383 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001384 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 return TRUE;
1387}
1388
Bram Moolenaar30613902019-12-01 22:11:18 +01001389#define RS_NONE 0 // selection_received_cb() not called yet
1390#define RS_OK 1 // selection_received_cb() called and OK
1391#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392static int received_selection = RS_NONE;
1393
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001395selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001397 guint time_ UNUSED,
1398 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001400 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 char_u *text;
1402 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001405 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406
Bram Moolenaar98921892016-02-23 17:14:37 +01001407 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 cbd = &clip_plus;
1409 else
1410 cbd = &clip_star;
1411
Bram Moolenaar98921892016-02-23 17:14:37 +01001412 text = (char_u *)gtk_selection_data_get_data(data);
1413 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415 if (text == NULL || len <= 0)
1416 {
1417 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001418 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 return;
1421 }
1422
Bram Moolenaar98921892016-02-23 17:14:37 +01001423 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 {
1425 motion_type = *text++;
1426 --len;
1427 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001428 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 {
1430 char_u *enc;
1431 vimconv_T conv;
1432
1433 motion_type = *text++;
1434 --len;
1435
1436 enc = text;
1437 text += STRLEN(text) + 1;
1438 len -= text - enc;
1439
Bram Moolenaar30613902019-12-01 22:11:18 +01001440 // If the encoding of the text is different from 'encoding', attempt
1441 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 conv.vc_type = CONV_NONE;
1443 convert_setup(&conv, enc, p_enc);
1444 if (conv.vc_type != CONV_NONE)
1445 {
1446 tmpbuf = string_convert(&conv, text, &len);
1447 if (tmpbuf != NULL)
1448 text = tmpbuf;
1449 convert_setup(&conv, NULL, NULL);
1450 }
1451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaar30613902019-12-01 22:11:18 +01001453 // gtk_selection_data_get_text() handles all the nasty details
1454 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 else
1456 {
1457 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1458 if (tmpbuf_utf8 != NULL)
1459 {
1460 len = STRLEN(tmpbuf_utf8);
1461 if (input_conv.vc_type != CONV_NONE)
1462 {
1463 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1464 if (tmpbuf != NULL)
1465 text = tmpbuf;
1466 }
1467 else
1468 text = tmpbuf_utf8;
1469 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001470 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1471 {
1472 vimconv_T conv;
1473
Bram Moolenaar30613902019-12-01 22:11:18 +01001474 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001475 conv.vc_type = CONV_NONE;
1476 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1477
1478 if (conv.vc_type != CONV_NONE)
1479 {
1480 text += 2;
1481 len -= 2;
1482 tmpbuf = string_convert(&conv, text, &len);
1483 convert_setup(&conv, NULL, NULL);
1484 }
1485 if (tmpbuf != NULL)
1486 text = tmpbuf;
1487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489
Bram Moolenaar30613902019-12-01 22:11:18 +01001490 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001491 while (len > 0 && text[len - 1] == NUL)
1492 --len;
1493
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 clip_yank_selection(motion_type, text, (long)len, cbd);
1495 received_selection = RS_OK;
1496 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498}
1499
1500/*
1501 * Prepare our selection data for passing it to the external selection
1502 * client.
1503 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001505selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 GtkSelectionData *selection_data,
1507 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001508 guint time_ UNUSED,
1509 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510{
1511 char_u *string;
1512 char_u *tmpbuf;
1513 long_u tmplen;
1514 int length;
1515 int motion_type;
1516 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001517 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518
Bram Moolenaar98921892016-02-23 17:14:37 +01001519 if (gtk_selection_data_get_selection(selection_data)
1520 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 cbd = &clip_plus;
1522 else
1523 cbd = &clip_star;
1524
1525 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001526 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
1528 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001529 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 && info != (guint)TARGET_UTF8_STRING
1531 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 && info != (guint)TARGET_VIM
1533 && info != (guint)TARGET_COMPOUND_TEXT
1534 && info != (guint)TARGET_TEXT)
1535 return;
1536
Bram Moolenaar30613902019-12-01 22:11:18 +01001537 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 clip_get_selection(cbd);
1539
1540 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1541 if (motion_type < 0 || string == NULL)
1542 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001543 // Due to int arguments we can't handle more than G_MAXINT. Also
1544 // reserve one extra byte for NUL or the motion type; just in case.
1545 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1547
1548 if (info == (guint)TARGET_VIM)
1549 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001550 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (tmpbuf != NULL)
1552 {
1553 tmpbuf[0] = motion_type;
1554 mch_memmove(tmpbuf + 1, string, (size_t)length);
1555 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001556 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 ++length;
1558 vim_free(string);
1559 string = tmpbuf;
1560 type = vim_atom;
1561 }
1562
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001563 else if (info == (guint)TARGET_HTML)
1564 {
1565 vimconv_T conv;
1566
Bram Moolenaar30613902019-12-01 22:11:18 +01001567 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001568 conv.vc_type = CONV_NONE;
1569 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1570 if (conv.vc_type != CONV_NONE)
1571 {
1572 tmpbuf = string_convert(&conv, string, &length);
1573 convert_setup(&conv, NULL, NULL);
1574 vim_free(string);
1575 string = tmpbuf;
1576 }
1577
Bram Moolenaar30613902019-12-01 22:11:18 +01001578 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001579 if (string != NULL)
1580 {
1581 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001582 if (tmpbuf != NULL)
1583 {
1584 tmpbuf[0] = 0xff;
1585 tmpbuf[1] = 0xfe;
1586 mch_memmove(tmpbuf + 2, string, (size_t)length);
1587 vim_free(string);
1588 string = tmpbuf;
1589 length += 2;
1590 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001591
Bram Moolenaar98921892016-02-23 17:14:37 +01001592#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001593 // Looks redundant even for GTK2 because these values are
1594 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001595 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001596 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001597#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001598 gtk_selection_data_set(selection_data, html_atom, 16,
1599 string, length);
1600 vim_free(string);
1601 }
1602 return;
1603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 else if (info == (guint)TARGET_VIMENC)
1605 {
1606 int l = STRLEN(p_enc);
1607
Bram Moolenaar30613902019-12-01 22:11:18 +01001608 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001609 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 if (tmpbuf != NULL)
1611 {
1612 tmpbuf[0] = motion_type;
1613 STRCPY(tmpbuf + 1, p_enc);
1614 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001615 length += l + 2;
1616 vim_free(string);
1617 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 type = vimenc_atom;
1620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
Bram Moolenaar30613902019-12-01 22:11:18 +01001622 // gtk_selection_data_set_text() handles everything for us. This is
1623 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 else
1625 {
1626 if (output_conv.vc_type != CONV_NONE)
1627 {
1628 tmpbuf = string_convert(&output_conv, string, &length);
1629 vim_free(string);
1630 if (tmpbuf == NULL)
1631 return;
1632 string = tmpbuf;
1633 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001634 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1636 {
1637 gtk_selection_data_set_text(selection_data,
1638 (const char *)string, length);
1639 }
1640 vim_free(string);
1641 return;
1642 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
1644 if (string != NULL)
1645 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001646#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001647 // Looks redundant even for GTK2 because these values are
1648 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001650 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 gtk_selection_data_set(selection_data, type, 8, string, length);
1653 vim_free(string);
1654 }
1655}
1656
1657/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001658 * Check if the GUI can be started. Called before gvimrc is sourced and
1659 * before fork().
1660 * Return OK or FAIL.
1661 */
1662 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001663gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001664{
1665 char_u *p;
1666
Bram Moolenaar30613902019-12-01 22:11:18 +01001667 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001668 p = mch_getenv((char_u *)"DISPLAY");
1669 if (p == NULL || *p == NUL)
1670 {
1671 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001672 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001673 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001674 return FAIL;
1675 }
1676 return OK;
1677}
1678
1679/*
1680 * Check if the GUI can be started. Called before gvimrc is sourced but after
1681 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 * Return OK or FAIL.
1683 */
1684 int
1685gui_mch_init_check(void)
1686{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001687#ifdef USE_GRESOURCE
1688 static int res_registered = FALSE;
1689
1690 if (!res_registered)
1691 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001692 // Call this function in the GUI process; otherwise, the resources
1693 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001694 res_registered = TRUE;
1695 gui_gtk_register_resource();
1696 }
1697#endif
1698
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001699#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001700 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1701 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001702 gdk_set_allowed_backends ("x11");
1703#endif
1704
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705#ifdef FEAT_GUI_GNOME
1706 if (gtk_socket_id == 0)
1707 using_gnome = 1;
1708#endif
1709
Bram Moolenaar30613902019-12-01 22:11:18 +01001710 // This defaults to argv[0], but we want it to match the name of the
1711 // shipped gvim.desktop so that Vim's windows can be associated with this
1712 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001713 g_set_prgname("gvim");
1714
Bram Moolenaar30613902019-12-01 22:11:18 +01001715 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 if (!gtk_init_check(&gui_argc, &gui_argv))
1717 {
1718 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001719 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 return FAIL;
1721 }
1722
1723 return OK;
1724}
1725
Bram Moolenaar30613902019-12-01 22:11:18 +01001726/////////////////////////////////////////////////////////////////////////////
1727// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728
1729
1730static guint mouse_click_timer = 0;
1731static int mouse_timed_out = TRUE;
1732
1733/*
1734 * Timer used to recognize multiple clicks of the mouse button
1735 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001736 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737mouse_click_timer_cb(gpointer data)
1738{
Bram Moolenaar30613902019-12-01 22:11:18 +01001739 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 int *timed_out = (int *) data;
1741
1742 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001743 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744}
1745
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001746static guint motion_repeat_timer = 0;
1747static int motion_repeat_offset = FALSE;
1748static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
1750 static void
1751process_motion_notify(int x, int y, GdkModifierType state)
1752{
1753 int button;
1754 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001755 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756
Chris Daltonee93e322021-11-23 12:27:48 +00001757 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1758 state |= dragging_button_state;
1759
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1761 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1762 GDK_BUTTON5_MASK))
1763 ? MOUSE_DRAG : ' ';
1764
Bram Moolenaar30613902019-12-01 22:11:18 +01001765 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 gui_mch_mousehide(FALSE);
1767
Bram Moolenaar30613902019-12-01 22:11:18 +01001768 // Just moving the rodent above the drawing area without any button
1769 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 if (button != MOUSE_DRAG)
1771 {
1772 gui_mouse_moved(x, y);
1773 return;
1774 }
1775
Bram Moolenaar30613902019-12-01 22:11:18 +01001776 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001777 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778
Bram Moolenaar30613902019-12-01 22:11:18 +01001779 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1781
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 /*
1783 * Auto repeat timer handling.
1784 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001785 gtk_widget_get_allocation(gui.drawarea, &allocation);
1786
1787 if (x < 0 || y < 0
1788 || x >= allocation.width
1789 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 {
1791
1792 int dx;
1793 int dy;
1794 int offshoot;
1795 int delay = 10;
1796
Bram Moolenaar30613902019-12-01 22:11:18 +01001797 // Calculate the maximal distance of the cursor from the drawing area.
1798 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001799 dx = x < 0 ? -x : x - allocation.width;
1800 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801
1802 offshoot = dx > dy ? dx : dy;
1803
Bram Moolenaar30613902019-12-01 22:11:18 +01001804 // Make a linearly decaying timer delay with a threshold of 5 at a
1805 // distance of 127 pixels from the main window.
1806 //
1807 // One could think endlessly about the most ergonomic variant here.
1808 // For example it could make sense to calculate the distance from the
1809 // drags start instead...
1810 //
1811 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 if (offshoot > 127)
1813 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001814 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 delay = 5;
1816 }
1817 else
1818 {
1819 delay = (130 * (127 - offshoot)) / 127 + 5;
1820 }
1821
Bram Moolenaar30613902019-12-01 22:11:18 +01001822 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001824 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1825 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 }
1827}
1828
Bram Moolenaar98921892016-02-23 17:14:37 +01001829#if GTK_CHECK_VERSION(3,0,0)
1830 static GdkDevice *
1831gui_gtk_get_pointer_device(GtkWidget *widget)
1832{
1833 GdkWindow * const win = gtk_widget_get_window(widget);
1834 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001835# if GTK_CHECK_VERSION(3,20,0)
1836 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1837 return gdk_seat_get_pointer(seat);
1838# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001839 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1840 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001841# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001842}
1843
1844 static GdkWindow *
1845gui_gtk_get_pointer(GtkWidget *widget,
1846 gint *x,
1847 gint *y,
1848 GdkModifierType *state)
1849{
1850 GdkWindow * const win = gtk_widget_get_window(widget);
1851 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1852 return gdk_window_get_device_position(win, dev , x, y, state);
1853}
1854
Bram Moolenaar2369c152016-03-04 23:08:25 +01001855# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001856 static GdkWindow *
1857gui_gtk_window_at_position(GtkWidget *widget,
1858 gint *x,
1859 gint *y)
1860{
1861 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1862 return gdk_device_get_window_at_position(dev, x, y);
1863}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001864# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001865#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001866# define gui_gtk_get_pointer(wid, x, y, s) \
1867 gdk_window_get_pointer((wid)->window, x, y, s)
1868# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001869#endif
1870
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871/*
1872 * Timer used to recognize multiple clicks of the mouse button.
1873 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001874 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001875motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876{
1877 int x;
1878 int y;
1879 GdkModifierType state;
1880
Bram Moolenaar98921892016-02-23 17:14:37 +01001881 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882
1883 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1884 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1885 GDK_BUTTON5_MASK)))
1886 {
1887 motion_repeat_timer = 0;
1888 return FALSE;
1889 }
1890
Bram Moolenaar30613902019-12-01 22:11:18 +01001891 // If there already is a mouse click in the input buffer, wait another
1892 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 if (vim_used_in_input_buf() > 10)
1894 return TRUE;
1895
1896 motion_repeat_timer = 0;
1897
1898 /*
1899 * Fake a motion event.
1900 * Trick: Pretend the mouse moved to the next character on every other
1901 * event, otherwise drag events will be discarded, because they are still
1902 * in the same character.
1903 */
1904 if (motion_repeat_offset)
1905 x += gui.char_width;
1906
1907 motion_repeat_offset = !motion_repeat_offset;
1908 process_motion_notify(x, y, state);
1909
Bram Moolenaar30613902019-12-01 22:11:18 +01001910 // Don't happen again. We will get reinstalled in the synthetic event
1911 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 return FALSE;
1913}
1914
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001916motion_notify_event(GtkWidget *widget,
1917 GdkEventMotion *event,
1918 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919{
1920 if (event->is_hint)
1921 {
1922 int x;
1923 int y;
1924 GdkModifierType state;
1925
Bram Moolenaar98921892016-02-23 17:14:37 +01001926 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 process_motion_notify(x, y, state);
1928 }
1929 else
1930 {
1931 process_motion_notify((int)event->x, (int)event->y,
1932 (GdkModifierType)event->state);
1933 }
1934
Bram Moolenaar30613902019-12-01 22:11:18 +01001935 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936}
1937
1938
1939/*
1940 * Mouse button handling. Note please that we are capturing multiple click's
1941 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1942 * This is due to the way the generic VIM code is recognizing multiple clicks.
1943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001945button_press_event(GtkWidget *widget,
1946 GdkEventButton *event,
1947 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948{
1949 int button;
1950 int repeated_click = FALSE;
1951 int x, y;
1952 int_u vim_modifiers;
1953
Bram Moolenaar20892c12011-06-26 04:49:00 +02001954 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001955
Bram Moolenaar30613902019-12-01 22:11:18 +01001956 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001957 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 gtk_widget_grab_focus(widget);
1959
1960 /*
1961 * Don't let additional events about multiple clicks send by GTK to us
1962 * after the initial button press event confuse us.
1963 */
1964 if (event->type != GDK_BUTTON_PRESS)
1965 return FALSE;
1966
1967 x = event->x;
1968 y = event->y;
1969
Bram Moolenaar30613902019-12-01 22:11:18 +01001970 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 if (!mouse_timed_out && mouse_click_timer)
1972 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001973 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 mouse_click_timer = 0;
1975 repeated_click = TRUE;
1976 }
1977
1978 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001979 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1980 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981
1982 switch (event->button)
1983 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001984 // Keep in sync with gui_x11.c.
1985 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001986 case 1:
1987 button = MOUSE_LEFT;
1988 // needed for touch-drag
1989 dragging_button_state |= GDK_BUTTON1_MASK;
1990 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001991 case 2: button = MOUSE_MIDDLE; break;
1992 case 3: button = MOUSE_RIGHT; break;
1993 case 8: button = MOUSE_X1; break;
1994 case 9: button = MOUSE_X2; break;
1995 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001996 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 }
1998
1999#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002000 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 if (im_is_preediting())
2002 xim_reset();
2003#endif
2004
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002005 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006
2007 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008
2009 return TRUE;
2010}
2011
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002013 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002016scroll_event(GtkWidget *widget,
2017 GdkEventScroll *event,
2018 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002021 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022
Bram Moolenaar98921892016-02-23 17:14:37 +01002023 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 gtk_widget_grab_focus(widget);
2025
2026 switch (event->direction)
2027 {
2028 case GDK_SCROLL_UP:
2029 button = MOUSE_4;
2030 break;
2031 case GDK_SCROLL_DOWN:
2032 button = MOUSE_5;
2033 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002034 case GDK_SCROLL_LEFT:
2035 button = MOUSE_7;
2036 break;
2037 case GDK_SCROLL_RIGHT:
2038 button = MOUSE_6;
2039 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01002040 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 return FALSE;
2042 }
2043
2044# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002045 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (im_is_preediting())
2047 xim_reset();
2048# endif
2049
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002050 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
2052 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2053 FALSE, vim_modifiers);
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 return TRUE;
2056}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002060button_release_event(GtkWidget *widget UNUSED,
2061 GdkEventButton *event,
2062 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063{
2064 int x, y;
2065 int_u vim_modifiers;
2066
Bram Moolenaar20892c12011-06-26 04:49:00 +02002067 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002068
Bram Moolenaar30613902019-12-01 22:11:18 +01002069 // Remove any motion "machine gun" timers used for automatic further
2070 // extension of allocation areas if outside of the applications window
2071 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 if (motion_repeat_timer)
2073 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002074 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 motion_repeat_timer = 0;
2076 }
2077
2078 x = event->x;
2079 y = event->y;
2080
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002081 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082
2083 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084
Chris Daltonee93e322021-11-23 12:27:48 +00002085 switch (event->button)
2086 {
2087 case 1: // MOUSE_LEFT
2088 dragging_button_state = 0;
2089 break;
2090 }
2091
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 return TRUE;
2093}
2094
2095
2096#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002097/////////////////////////////////////////////////////////////////////////////
2098// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099
2100/*
2101 * Count how many items there may be and separate them with a NUL.
2102 * Apparently the items are separated with \r\n. This is not documented,
2103 * thus be careful not to go past the end. Also allow separation with
2104 * NUL characters.
2105 */
2106 static int
2107count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2108{
2109 int i;
2110 char_u *p = out;
2111 int count = 0;
2112
2113 for (i = 0; i < len; ++i)
2114 {
2115 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2116 {
2117 if (p > out && p[-1] != NUL)
2118 {
2119 ++count;
2120 *p++ = NUL;
2121 }
2122 }
2123 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2124 {
2125 *p++ = hexhex2nr(raw + i + 1);
2126 i += 2;
2127 }
2128 else
2129 *p++ = raw[i];
2130 }
2131 if (p > out && p[-1] != NUL)
2132 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002133 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 ++count;
2135 }
2136 return count;
2137}
2138
2139/*
2140 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2141 * this process, URI which protocol is not "file:" are removed. Return
2142 * length of array (less than "max").
2143 */
2144 static int
2145filter_uri_list(char_u **outlist, int max, char_u *src)
2146{
2147 int i, j;
2148
2149 for (i = j = 0; i < max; ++i)
2150 {
2151 outlist[i] = NULL;
2152 if (STRNCMP(src, "file:", 5) == 0)
2153 {
2154 src += 5;
2155 if (STRNCMP(src, "//localhost", 11) == 0)
2156 src += 11;
2157 while (src[0] == '/' && src[1] == '/')
2158 ++src;
2159 outlist[j++] = vim_strsave(src);
2160 }
2161 src += STRLEN(src) + 1;
2162 }
2163 return j;
2164}
2165
2166 static char_u **
2167parse_uri_list(int *count, char_u *data, int len)
2168{
2169 int n = 0;
2170 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002171 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002173 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
2175 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002176 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 n = filter_uri_list(array, n, tmp);
2178 }
2179 vim_free(tmp);
2180 *count = n;
2181 return array;
2182}
2183
2184 static void
2185drag_handle_uri_list(GdkDragContext *context,
2186 GtkSelectionData *data,
2187 guint time_,
2188 GdkModifierType state,
2189 gint x,
2190 gint y)
2191{
2192 char_u **fnames;
2193 int nfiles = 0;
2194
Bram Moolenaar98921892016-02-23 17:14:37 +01002195 fnames = parse_uri_list(&nfiles,
2196 (char_u *)gtk_selection_data_get_data(data),
2197 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198
2199 if (fnames != NULL && nfiles > 0)
2200 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002201 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
Bram Moolenaar30613902019-12-01 22:11:18 +01002203 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002205 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206
2207 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2208 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002209 else
2210 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211}
2212
2213 static void
2214drag_handle_text(GdkDragContext *context,
2215 GtkSelectionData *data,
2216 guint time_,
2217 GdkModifierType state)
2218{
2219 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2220 char_u *text;
2221 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
Bram Moolenaar98921892016-02-23 17:14:37 +01002224 text = (char_u *)gtk_selection_data_get_data(data);
2225 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
Bram Moolenaar98921892016-02-23 17:14:37 +01002227 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 if (input_conv.vc_type != CONV_NONE)
2230 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 if (tmpbuf != NULL)
2232 text = tmpbuf;
2233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002236 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002239 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240
2241 if (dropkey[2] != 0)
2242 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2243 else
2244 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245}
2246
2247/*
2248 * DND receiver.
2249 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 static void
2251drag_data_received_cb(GtkWidget *widget,
2252 GdkDragContext *context,
2253 gint x,
2254 gint y,
2255 GtkSelectionData *data,
2256 guint info,
2257 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002258 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259{
2260 GdkModifierType state;
2261
Bram Moolenaar30613902019-12-01 22:11:18 +01002262 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002263 const guchar * const data_data = gtk_selection_data_get_data(data);
2264 const gint data_length = gtk_selection_data_get_length(data);
2265 const gint data_format = gtk_selection_data_get_format(data);
2266
2267 if (data_data == NULL
2268 || data_length <= 0
2269 || data_format != 8
2270 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
2272 gtk_drag_finish(context, FALSE, FALSE, time_);
2273 return;
2274 }
2275
Bram Moolenaar30613902019-12-01 22:11:18 +01002276 // Get the current modifier state for proper distinguishment between
2277 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002278 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279
Bram Moolenaar30613902019-12-01 22:11:18 +01002280 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 if (info == (guint)TARGET_TEXT_URI_LIST)
2282 drag_handle_uri_list(context, data, time_, state, x, y);
2283 else
2284 drag_handle_text(context, data, time_, state);
2285
2286}
Bram Moolenaar30613902019-12-01 22:11:18 +01002287#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288
2289
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002290#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291/*
2292 * GnomeClient interact callback. Check for unsaved buffers that cannot
2293 * be abandoned and pop up a dialog asking the user for confirmation if
2294 * necessary.
2295 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002297sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002299 GnomeDialogType type UNUSED,
2300 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301{
2302 cmdmod_T save_cmdmod;
2303 gboolean shutdown_cancelled;
2304
2305 save_cmdmod = cmdmod;
2306
2307# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002308 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309# endif
2310# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002311 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312# endif
2313 /*
2314 * If there are changed buffers, present the user with
2315 * a dialog if possible, otherwise give an error message.
2316 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002317 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318
2319 exiting = FALSE;
2320 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002321 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 out_flush();
2323 /*
2324 * If the user hit the [Cancel] button the whole shutdown
2325 * will be cancelled. Wow, quite powerful feature (:
2326 */
2327 gnome_interaction_key_return(key, shutdown_cancelled);
2328}
2329
2330/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 * "save_yourself" signal handler. Initiate an interaction to ask the user
2332 * for confirmation if necessary. Save the current editing session and tell
2333 * the session manager how to restart Vim.
2334 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 static gboolean
2336sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002337 gint phase UNUSED,
2338 GnomeSaveStyle save_style UNUSED,
2339 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002341 gboolean fast UNUSED,
2342 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343{
2344 static const char suffix[] = "-session.vim";
2345 char *session_file;
2346 unsigned int len;
2347 gboolean success;
2348
Bram Moolenaar30613902019-12-01 22:11:18 +01002349 // Always request an interaction if possible. check_changed_any()
2350 // won't actually show a dialog unless any buffers have been modified.
2351 // There doesn't seem to be an obvious way to check that without
2352 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 if (interact_style == GNOME_INTERACT_ANY)
2354 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2355 &sm_client_check_changed_any,
2356 NULL);
2357 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002358 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359
Bram Moolenaar30613902019-12-01 22:11:18 +01002360 // The path is unique for each session save. We do neither know nor care
2361 // which session script will actually be used later. This decision is in
2362 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 session_file = gnome_config_get_real_path(
2364 gnome_client_get_config_prefix(client));
2365 len = strlen(session_file);
2366
2367 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002368 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369
2370 session_file = g_renew(char, session_file, len + sizeof(suffix));
2371 memcpy(session_file + len, suffix, sizeof(suffix));
2372
2373 success = write_session_file((char_u *)session_file);
2374
2375 if (success)
2376 {
2377 const char *argv[8];
2378 int i;
2379
Bram Moolenaar30613902019-12-01 22:11:18 +01002380 // Tell the session manager how to wipe out the stored session data.
2381 // This isn't as dangerous as it looks, don't worry :) session_file
2382 // is a unique absolute filename. Usually it'll be something like
2383 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 i = 0;
2385 argv[i++] = "rm";
2386 argv[i++] = session_file;
2387 argv[i] = NULL;
2388
2389 gnome_client_set_discard_command(client, i, (char **)argv);
2390
Bram Moolenaar30613902019-12-01 22:11:18 +01002391 // Tell the session manager how to restore the just saved session.
2392 // This is easily done thanks to Vim's -S option. Pass the -f flag
2393 // since there's no need to fork -- it might even cause confusion.
2394 // Also pass the window role to give the WM something to match on.
2395 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 i = 0;
2397 argv[i++] = restart_command;
2398 argv[i++] = "-f";
2399 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 argv[i++] = "--role";
2401 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 argv[i++] = "-S";
2403 argv[i++] = session_file;
2404 argv[i] = NULL;
2405
2406 gnome_client_set_restart_command(client, i, (char **)argv);
2407 gnome_client_set_clone_command(client, 0, NULL);
2408 }
2409
2410 g_free(session_file);
2411
2412 return success;
2413}
2414
2415/*
2416 * Called when the session manager wants us to die. There isn't much to save
2417 * here since "save_yourself" has been emitted before (unless serious trouble
2418 * is happening).
2419 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002421sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422{
Bram Moolenaar30613902019-12-01 22:11:18 +01002423 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 full_screen = FALSE;
2425
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002426 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002427 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002428 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 preserve_exit();
2430}
2431
2432/*
2433 * Connect our signal handlers to be notified on session save and shutdown.
2434 */
2435 static void
2436setup_save_yourself(void)
2437{
2438 GnomeClient *client;
2439
2440 client = gnome_master_client();
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00002441 if (client == NULL)
2442 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00002444 // Must use the deprecated gtk_signal_connect() for compatibility
2445 // with GNOME 1. Arrgh, zombies!
2446 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2447 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2448 gtk_signal_connect(GTK_OBJECT(client), "die",
2449 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450}
2451
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002452#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453
2454# ifdef USE_XSMP
2455/*
2456 * GTK tells us that XSMP needs attention
2457 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002459local_xsmp_handle_requests(
2460 GIOChannel *source UNUSED,
2461 GIOCondition condition,
2462 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463{
2464 if (condition == G_IO_IN)
2465 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002466 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 if (xsmp_handle_requests() == FAIL)
2468 g_io_channel_unref((GIOChannel *)data);
2469 return TRUE;
2470 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002471 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 g_io_channel_unref((GIOChannel *)data);
2473 xsmp_close();
2474 return TRUE;
2475}
Bram Moolenaar30613902019-12-01 22:11:18 +01002476# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477
2478/*
2479 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2480 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2481 */
2482 static void
2483setup_save_yourself(void)
2484{
2485 Atom *existing_atoms = NULL;
2486 int count = 0;
2487
Bram Moolenaar98921892016-02-23 17:14:37 +01002488# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 if (xsmp_icefd != -1)
2490 {
2491 /*
2492 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2493 * set up GTK IO monitor
2494 */
2495 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2496
2497 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2498 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002499 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 }
2501 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002502# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002504 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505
Bram Moolenaar30613902019-12-01 22:11:18 +01002506 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002507 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2508
2509 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2510 GDK_WINDOW_XID(mainwin_win),
2511 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 {
2513 Atom *new_atoms;
2514 Atom save_yourself_xatom;
2515 int i;
2516
2517 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2518
Bram Moolenaar30613902019-12-01 22:11:18 +01002519 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 for (i = 0; i < count; ++i)
2521 if (existing_atoms[i] == save_yourself_xatom)
2522 break;
2523
2524 if (i == count)
2525 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002526 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002527 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (new_atoms != NULL)
2529 {
2530 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2531 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002532 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2533 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 new_atoms, count + 1);
2535 vim_free(new_atoms);
2536 }
2537 }
2538 XFree(existing_atoms);
2539 }
2540 }
2541}
2542
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543/*
2544 * Installing a global event filter seems to be the only way to catch
2545 * client messages of type WM_PROTOCOLS without overriding GDK's own
2546 * client message event filter. Well, that's still better than trying
2547 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 *
2549 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2550 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2551 * I have the nasty feeling modern session managers just don't send this
2552 * deprecated message anymore. Addition: confirmed by several people.
2553 *
2554 * The GNOME session support is much cooler anyway. Unlike this ugly
2555 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2556 * it should work with KDE as well.
2557 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002559global_event_filter(GdkXEvent *xev,
2560 GdkEvent *event UNUSED,
2561 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
2563 XEvent *xevent = (XEvent *)xev;
2564
2565 if (xevent != NULL
2566 && xevent->type == ClientMessage
2567 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002568 && (long_u)xevent->xclient.data.l[0]
2569 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 {
2571 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002572 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 /*
2574 * Set the window's WM_COMMAND property, to let the window manager
2575 * know we are done saving ourselves. We don't want to be
2576 * restarted, thus set argv to NULL.
2577 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002578 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2579 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 NULL, 0);
2581 return GDK_FILTER_REMOVE;
2582 }
2583
2584 return GDK_FILTER_CONTINUE;
2585}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002586#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587
2588
2589/*
2590 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002593mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594{
Bram Moolenaar30613902019-12-01 22:11:18 +01002595// If you get an error message here, you still need to unpack the runtime
2596// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597#ifdef magick
2598# undef magick
2599#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002600 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602#define magick vim32x32
2603#include "../runtime/vim32x32.xpm"
2604#undef magick
2605#define magick vim16x16
2606#include "../runtime/vim16x16.xpm"
2607#undef magick
2608#define magick vim48x48
2609#include "../runtime/vim48x48.xpm"
2610#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612
Bram Moolenaar98921892016-02-23 17:14:37 +01002613 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002614
Bram Moolenaar30613902019-12-01 22:11:18 +01002615 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 if (echo_wid_arg)
2617 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002618 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 fflush(stdout);
2620 }
2621
2622 if (vim_strchr(p_go, GO_ICON) != NULL)
2623 {
2624 /*
2625 * Add an icon to the main window. For fun and convenience of the user.
2626 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 GList *icons = NULL;
2628
2629 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2630 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2631 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2632
2633 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2634
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002635 // TODO: is this type cast OK?
2636 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 }
2639
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002640#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002641 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002644 // Setup to indicate to the window manager that we want to catch the
2645 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2646 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002647#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 if (using_gnome)
2649#endif
2650 setup_save_yourself();
2651
2652#ifdef FEAT_CLIENTSERVER
2653 if (serverName == NULL && serverDelayedStartName != NULL)
2654 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002655 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002656 commWindow = GDK_WINDOW_XID(mainwin_win);
2657
2658 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2659 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 }
2661 else
2662 {
2663 /*
2664 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2665 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002666 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002668 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2669 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 }
2671 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002672 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2673 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674#endif
2675}
2676
2677 static GdkCursor *
2678create_blank_pointer(void)
2679{
2680 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002681#if GTK_CHECK_VERSION(3,0,0)
2682 GdkPixbuf *blank_mask;
2683#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002687#if GTK_CHECK_VERSION(3,0,0)
Kenny Stauffer660eb9f2023-04-28 16:36:51 +01002688 GdkRGBA color = { 0.0, 0.0, 0.0, 0.0 };
Bram Moolenaar36edf062016-07-21 22:10:12 +02002689#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 GdkColor color = { 0, 0, 0, 0 };
2691 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002694#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002695 {
2696 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2697 GdkScreen * const scrn = gdk_window_get_screen(win);
2698 root_window = gdk_screen_get_root_window(scrn);
2699 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002700#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 root_window = gtk_widget_get_root_window(gui.mainwin);
2702#endif
2703
Bram Moolenaar30613902019-12-01 22:11:18 +01002704 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2705 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002706#if GTK_CHECK_VERSION(3,0,0)
2707 {
2708 cairo_surface_t *surf;
2709 cairo_t *cr;
2710
2711 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2712 cr = cairo_create(surf);
2713
Bram Moolenaar36edf062016-07-21 22:10:12 +02002714 cairo_set_source_rgba(cr,
2715 color.red,
2716 color.green,
2717 color.blue,
2718 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002719 cairo_rectangle(cr, 0, 0, 1, 1);
2720 cairo_fill(cr);
2721 cairo_destroy(cr);
2722
2723 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2724 cairo_surface_destroy(surf);
2725
2726 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2727 blank_mask, 0, 0);
2728 g_object_unref(blank_mask);
2729 }
2730#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2732 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2733 &color, &color, 0, 0);
2734 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736
2737 return cursor;
2738}
2739
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 static void
2741mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002742 GdkScreen *previous_screen UNUSED,
2743 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744{
2745 if (!gtk_widget_has_screen(widget))
2746 return;
2747
2748 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002749 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 */
2751 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002752#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002753 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002754#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757
2758 gui.blank_pointer = create_blank_pointer();
2759
Bram Moolenaar98921892016-02-23 17:14:37 +01002760 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2761 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2762 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763
2764 /*
2765 * Create a new PangoContext for this screen, and initialize it
2766 * with the current font if necessary.
2767 */
2768 if (gui.text_context != NULL)
2769 g_object_unref(gui.text_context);
2770
2771 gui.text_context = gtk_widget_create_pango_context(widget);
2772 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2773
2774 if (gui.norm_font != NULL)
2775 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002776 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002777 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 }
2779}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780
2781/*
2782 * After the drawing area comes up, we calculate all colors and create the
2783 * dummy blank cursor.
2784 *
2785 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2786 * fact that the main VIM engine doesn't take them into account anywhere.
2787 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002789drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790{
2791 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002792 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793
2794#ifdef FEAT_XIM
2795 xim_init();
2796#endif
2797 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002798#if GTK_CHECK_VERSION(3,0,0)
2799 gui.surface = gdk_window_create_similar_surface(
2800 gtk_widget_get_window(widget),
2801 CAIRO_CONTENT_COLOR_ALPHA,
2802 gtk_widget_get_allocated_width(widget),
2803 gtk_widget_get_allocated_height(widget));
2804#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807
2808 gui.blank_pointer = create_blank_pointer();
2809 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002810 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811
Bram Moolenaar30613902019-12-01 22:11:18 +01002812 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2814 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2815 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2816 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002817 gtk_widget_get_allocation(sbar, &allocation);
2818 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2819 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820
2821 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002822 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2823 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824}
2825
2826/*
2827 * Properly clean up on shutdown.
2828 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002830drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831{
Bram Moolenaar30613902019-12-01 22:11:18 +01002832 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 full_screen = FALSE;
2834
2835#ifdef FEAT_XIM
2836 im_shutdown();
2837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 if (gui.ascii_glyphs != NULL)
2839 {
2840 pango_glyph_string_free(gui.ascii_glyphs);
2841 gui.ascii_glyphs = NULL;
2842 }
2843 if (gui.ascii_font != NULL)
2844 {
2845 g_object_unref(gui.ascii_font);
2846 gui.ascii_font = NULL;
2847 }
2848 g_object_unref(gui.text_context);
2849 gui.text_context = NULL;
2850
Bram Moolenaar98921892016-02-23 17:14:37 +01002851#if GTK_CHECK_VERSION(3,0,0)
2852 if (gui.surface != NULL)
2853 {
2854 cairo_surface_destroy(gui.surface);
2855 gui.surface = NULL;
2856 }
2857#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 g_object_unref(gui.text_gc);
2859 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861
Bram Moolenaar98921892016-02-23 17:14:37 +01002862#if GTK_CHECK_VERSION(3,0,0)
2863 g_object_unref(G_OBJECT(gui.blank_pointer));
2864#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868}
2869
Bram Moolenaara859f042016-11-17 19:11:55 +01002870#if GTK_CHECK_VERSION(3,22,2)
2871 static void
2872drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2873 gpointer data UNUSED)
2874#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002876drawarea_style_set_cb(GtkWidget *widget UNUSED,
2877 GtkStyle *previous_style UNUSED,
2878 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880{
2881 gui_mch_new_colors();
2882}
2883
Bram Moolenaar98921892016-02-23 17:14:37 +01002884#if GTK_CHECK_VERSION(3,0,0)
2885 static gboolean
2886drawarea_configure_event_cb(GtkWidget *widget,
2887 GdkEventConfigure *event,
2888 gpointer data UNUSED)
2889{
2890 static int cur_width = 0;
2891 static int cur_height = 0;
2892
2893 g_return_val_if_fail(event
2894 && event->width >= 1 && event->height >= 1, TRUE);
2895
Bram Moolenaar182707a2016-11-21 20:55:58 +01002896# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002897 // As of 3.22.2, GdkWindows have started distributing configure events to
2898 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2899 //
2900 // As can be seen from the implementation of move_native_children() and
2901 // configure_native_child() in gdkwindow.c, those functions actually
2902 // propagate configure events to every child, failing to distinguish
2903 // "native" one from non-native one.
2904 //
2905 // Naturally, configure events propagated to here like that are fallacious
2906 // and, as a matter of fact, they trigger a geometric collapse of
2907 // gui.drawarea in fullscreen and maximized modes.
2908 //
2909 // To filter out such nuisance events, we are making use of the fact that
2910 // the field send_event of such GdkEventConfigures is set to FALSE in
2911 // configure_native_child().
2912 //
2913 // Obviously, this is a terrible hack making GVim depend on GTK's
2914 // implementation details. Therefore, watch out any relevant internal
2915 // changes happening in GTK in the feature (sigh).
2916 //
2917 // Follow-up
2918 // After a few weeks later, the GdkWindow change mentioned above was
2919 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2920 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002921 if (event->send_event == FALSE)
2922 return TRUE;
2923# endif
2924
Bram Moolenaar98921892016-02-23 17:14:37 +01002925 if (event->width == cur_width && event->height == cur_height)
2926 return TRUE;
2927
2928 cur_width = event->width;
2929 cur_height = event->height;
2930
2931 if (gui.surface != NULL)
2932 cairo_surface_destroy(gui.surface);
2933
2934 gui.surface = gdk_window_create_similar_surface(
2935 gtk_widget_get_window(widget),
2936 CAIRO_CONTENT_COLOR_ALPHA,
2937 event->width, event->height);
2938
2939 gtk_widget_queue_draw(widget);
2940
2941 return TRUE;
2942}
2943#endif
2944
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945/*
2946 * Callback routine for the "delete_event" signal on the toplevel window.
2947 * Tries to vim gracefully, or refuses to exit with changed buffers.
2948 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002950delete_event_cb(GtkWidget *widget UNUSED,
2951 GdkEventAny *event UNUSED,
2952 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953{
2954 gui_shell_closed();
2955 return TRUE;
2956}
2957
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002958#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2959 static int
2960get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2961{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002962# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002963 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2964
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002965 if (using_gnome && widget != NULL)
2966 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002967 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002968 BonoboDockItem *dockitem;
2969
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002970 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002971 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2972 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002973 // Only menu & toolbar are dock items. Could tabline be?
2974 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002975 widget = parent;
2976 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002977
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002978 if (dockitem == NULL || dockitem->is_floating)
2979 return 0;
2980 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2981 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002982 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002983# else
2984# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002985# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002986
Bram Moolenaar98921892016-02-23 17:14:37 +01002987 if (widget != NULL
2988 && item_orientation == orientation
2989 && gtk_widget_get_realized(widget)
2990 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002991 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002992# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002993 GtkAllocation allocation;
2994
2995 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002996 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002997# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002998 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2999 return widget->allocation.height;
3000 else
3001 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003002# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003003 }
3004 return 0;
3005}
3006#endif
3007
3008 static int
3009get_menu_tool_width(void)
3010{
3011 int width = 0;
3012
Bram Moolenaar30613902019-12-01 22:11:18 +01003013#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003014# ifdef FEAT_MENU
3015 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3016# endif
3017# ifdef FEAT_TOOLBAR
3018 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3019# endif
3020# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003021 if (gui.tabline != NULL)
3022 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003023# endif
3024#endif
3025
3026 return width;
3027}
3028
3029 static int
3030get_menu_tool_height(void)
3031{
3032 int height = 0;
3033
3034#ifdef FEAT_MENU
3035 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3036#endif
3037#ifdef FEAT_TOOLBAR
3038 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3039#endif
3040#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003041 if (gui.tabline != NULL)
3042 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003043#endif
3044
3045 return height;
3046}
3047
Bram Moolenaar30613902019-12-01 22:11:18 +01003048// This controls whether we can set the real window hints at
3049// start-up when in a GtkPlug.
3050// 0 = normal processing (default)
3051// 1 = init. hints set, no-one's tried to reset since last check
3052// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003053static int init_window_hints_state = 0;
3054
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003055 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003056update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003057{
3058 static int old_width = 0;
3059 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003060 static int old_min_width = 0;
3061 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003062 static int old_char_width = 0;
3063 static int old_char_height = 0;
3064
3065 int width;
3066 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003067 int min_width;
3068 int min_height;
3069
Bram Moolenaar30613902019-12-01 22:11:18 +01003070 // At start-up, don't try to set the hints until the initial
3071 // values have been used (those that dictate our initial size)
3072 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003073 if (!(force_width && force_height) && init_window_hints_state > 0)
3074 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003075 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003076 init_window_hints_state = 2;
3077 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003078 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003079
Bram Moolenaar30613902019-12-01 22:11:18 +01003080 // This also needs to be done when the main window isn't there yet,
3081 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003082 width = gui_get_base_width();
3083 height = gui_get_base_height();
3084# ifdef FEAT_MENU
3085 height += tabline_height() * gui.char_height;
3086# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003087 width += get_menu_tool_width();
3088 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003089
Bram Moolenaar30613902019-12-01 22:11:18 +01003090 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3091 // their actual widget size. When we set our size ourselves (e.g.,
3092 // 'set columns=' or init. -geom) we briefly set the min. to the size
3093 // we wish to be instead of the legitimate minimum so that we actually
3094 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003095 if (force_width && force_height)
3096 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003097 min_width = force_width;
3098 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003099 }
3100 else
3101 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003102 min_width = width + MIN_COLUMNS * gui.char_width;
3103 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003104 }
3105
Bram Moolenaar30613902019-12-01 22:11:18 +01003106 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003107 if (width != old_width
3108 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003109 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003110 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003111 || gui.char_width != old_char_width
3112 || gui.char_height != old_char_height)
3113 {
3114 GdkGeometry geometry;
3115 GdkWindowHints geometry_mask;
3116
3117 geometry.width_inc = gui.char_width;
3118 geometry.height_inc = gui.char_height;
3119 geometry.base_width = width;
3120 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003121 geometry.min_width = min_width;
3122 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003123 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3124 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003125 // Using gui.formwin as geometry widget doesn't work as expected
3126 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
Bram Moolenaarc0da5402023-05-16 22:15:51 +01003127 // in Vim confuse GTK+. For GTK 3 the second argument should be NULL
3128 // to make the width/height inc works, despite the docs saying
3129 // something else.
3130 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), NULL,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003131 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003132 old_width = width;
3133 old_height = height;
3134 old_min_width = min_width;
3135 old_min_height = min_height;
3136 old_char_width = gui.char_width;
3137 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003138 }
3139}
3140
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003141#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3142 void
3143gui_mch_set_dark_theme(int dark)
3144{
3145# if GTK_CHECK_VERSION(3,0,0)
3146 GtkSettings *gtk_settings;
3147
3148 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3149 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3150# endif
3151}
Bram Moolenaar30613902019-12-01 22:11:18 +01003152#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003153
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154#ifdef FEAT_TOOLBAR
3155
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156/*
3157 * This extra effort wouldn't be necessary if we only used stock icons in the
3158 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3159 * shouldn't be treated differently, thus we do need this.
3160 */
3161 static void
3162icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3163{
3164 if (GTK_IS_IMAGE(widget))
3165 {
3166 GtkImage *image = (GtkImage *)widget;
3167
Bram Moolenaar98921892016-02-23 17:14:37 +01003168# if GTK_CHECK_VERSION(3,10,0)
3169 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3170 {
3171 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3172 const gchar *icon_name;
3173
3174 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003175 image = (GtkImage *)gtk_image_new_from_icon_name(
3176 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003177 }
3178# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003179 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3181 {
3182 GtkIconSet *icon_set;
3183 GtkIconSize icon_size;
3184
3185 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3186 icon_size = (GtkIconSize)(long)user_data;
3187
3188 gtk_icon_set_ref(icon_set);
3189 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3190 gtk_icon_set_unref(icon_set);
3191 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003192# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 }
3194 else if (GTK_IS_CONTAINER(widget))
3195 {
3196 gtk_container_foreach((GtkContainer *)widget,
3197 &icon_size_changed_foreach,
3198 user_data);
3199 }
3200}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
3202 static void
3203set_toolbar_style(GtkToolbar *toolbar)
3204{
3205 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 GtkIconSize size;
3207 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3210 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3211 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003212 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3214 style = GTK_TOOLBAR_BOTH;
3215 else if (toolbar_flags & TOOLBAR_TEXT)
3216 style = GTK_TOOLBAR_TEXT;
3217 else
3218 style = GTK_TOOLBAR_ICONS;
3219
3220 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003221# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 switch (tbis_flags)
3226 {
3227 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3228 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3229 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3230 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003231 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3232 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 default: size = GTK_ICON_SIZE_INVALID; break;
3234 }
3235 oldsize = gtk_toolbar_get_icon_size(toolbar);
3236
3237 if (size == GTK_ICON_SIZE_INVALID)
3238 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003239 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240 gtk_toolbar_unset_icon_size(toolbar);
3241 size = gtk_toolbar_get_icon_size(toolbar);
3242 }
3243 if (size != oldsize)
3244 {
3245 gtk_container_foreach(GTK_CONTAINER(toolbar),
3246 &icon_size_changed_foreach,
3247 GINT_TO_POINTER((int)size));
3248 }
3249 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250}
3251
Bram Moolenaar30613902019-12-01 22:11:18 +01003252#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003254#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3255static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003256static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003257# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003258static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003259# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003260static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003261
3262/*
3263 * Handle selecting an item in the tab line popup menu.
3264 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003265 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003266tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003267{
Bram Moolenaar30613902019-12-01 22:11:18 +01003268 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003269 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003270}
3271
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003272 static void
3273add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3274{
3275 GtkWidget *item;
3276 char_u *utf_text;
3277
3278 utf_text = CONVERT_TO_UTF8(text);
3279 item = gtk_menu_item_new_with_label((const char *)utf_text);
3280 gtk_widget_show(item);
3281 CONVERT_TO_UTF8_FREE(utf_text);
3282
3283 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003284 g_signal_connect(G_OBJECT(item), "activate",
3285 G_CALLBACK(tabline_menu_handler),
3286 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003287}
3288
Bram Moolenaara5621492006-02-25 21:55:24 +00003289/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003290 * Create a menu for the tab line.
3291 */
3292 static GtkWidget *
3293create_tabline_menu(void)
3294{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003295 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003296
3297 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003298 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003299 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3300 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003301
3302 return menu;
3303}
3304
3305 static gboolean
3306on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3307{
Bram Moolenaar30613902019-12-01 22:11:18 +01003308 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003309 if (event->type == GDK_BUTTON_PRESS)
3310 {
3311 GdkEventButton *bevent = (GdkEventButton *)event;
3312 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003313 int y = bevent->y;
3314 GtkWidget *tabwidget;
3315 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003316
Bram Moolenaar30613902019-12-01 22:11:18 +01003317 // When ignoring events return TRUE so that the selected page doesn't
3318 // change.
Martin Tournoij7904fa42022-10-04 16:28:45 +01003319 if (hold_gui_events || cmdwin_type != 0)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003320 return TRUE;
3321
Bram Moolenaar98921892016-02-23 17:14:37 +01003322 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003323
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003324 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003325 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3326 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003327
Bram Moolenaar30613902019-12-01 22:11:18 +01003328 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003329 if (bevent->button == 3)
3330 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003331# if GTK_CHECK_VERSION(3,22,2)
3332 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3333# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003334 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3335 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003336# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003337 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003338 return TRUE;
3339 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003340 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003341 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003342 if (clicked_page == 0)
3343 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003344 // Click after all tabs moves to next tab page. When "x" is
3345 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003346 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003347 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003348 }
regomne3bdef102022-09-26 20:48:32 +01003349 else if (bevent->button == 2)
3350 {
3351 if (clicked_page != 0)
3352 // Middle mouse click on tabpage label closes that tab.
3353 send_tabline_menu_event(clicked_page, TABLINE_MENU_CLOSE);
3354 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003355 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003356
Bram Moolenaar30613902019-12-01 22:11:18 +01003357 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003358 return FALSE;
3359}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003360
3361/*
3362 * Handle selecting one of the tabs.
3363 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003364 static void
3365on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003366 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003367 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003368 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003369 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003370{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003371 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003372 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003373}
3374
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003375# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003376/*
3377 * Handle reordering the tabs (using D&D).
3378 */
3379 static void
3380on_tab_reordered(
3381 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003382 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003383 gint idx,
3384 gpointer data UNUSED)
3385{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00003386 if (ignore_tabline_evt)
3387 return;
3388
3389 if ((tabpage_index(curtab) - 1) < idx)
3390 tabpage_move(idx + 1);
3391 else
3392 tabpage_move(idx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003393}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003394# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003395
3396/*
3397 * Show or hide the tabline.
3398 */
3399 void
3400gui_mch_show_tabline(int showit)
3401{
3402 if (gui.tabline == NULL)
3403 return;
3404
3405 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3406 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003407 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003408 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003409 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003410 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003411 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003412 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003413
3414 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003415}
3416
3417/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003418 * Return TRUE when tabline is displayed.
3419 */
3420 int
3421gui_mch_showing_tabline(void)
3422{
3423 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003424 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003425}
3426
3427/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003428 * Update the labels of the tabline.
3429 */
3430 void
3431gui_mch_update_tabline(void)
3432{
3433 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003434 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003435 GtkWidget *label;
3436 tabpage_T *tp;
3437 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003438 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003439 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003440 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003441
3442 if (gui.tabline == NULL)
3443 return;
3444
3445 ignore_tabline_evt = TRUE;
3446
Bram Moolenaar30613902019-12-01 22:11:18 +01003447 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003448 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3449 {
3450 if (tp == curtab)
3451 curtabidx = nr;
3452
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003453 tab_num = nr + 1;
3454
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3456 if (page == NULL)
3457 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003458 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003459# if GTK_CHECK_VERSION(3,2,0)
3460 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3461 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3462# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003463 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003464# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003465 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003466 event_box = gtk_event_box_new();
3467 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003468 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003469# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003470 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003471# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003472 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003473 gtk_widget_show(label);
3474 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3475 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003476 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003477 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003478# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003479 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3480 page,
3481 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003482# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003483 }
3484
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003485 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003486 g_object_set_data(G_OBJECT(event_box), "tab_num",
3487 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003488 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003489 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003490 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003491 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003492 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003493
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003494 get_tabline_label(tp, TRUE);
3495 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003496# if GTK_CHECK_VERSION(3,0,0)
3497 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3498# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003499 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3500 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003501# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003502 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003503 }
3504
Bram Moolenaar30613902019-12-01 22:11:18 +01003505 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003506 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3507 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3508
Bram Moolenaar98921892016-02-23 17:14:37 +01003509 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3510 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003511
Bram Moolenaar30613902019-12-01 22:11:18 +01003512 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003513 gui_mch_update();
3514
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003515 ignore_tabline_evt = FALSE;
3516}
3517
3518/*
3519 * Set the current tab to "nr". First tab is 1.
3520 */
3521 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003522gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003523{
3524 if (gui.tabline == NULL)
3525 return;
3526
3527 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003528 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3529 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003530 ignore_tabline_evt = FALSE;
3531}
3532
Bram Moolenaar30613902019-12-01 22:11:18 +01003533#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003534
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003536 * Add selection targets for PRIMARY and CLIPBOARD selections.
3537 */
3538 void
3539gui_gtk_set_selection_targets(void)
3540{
3541 int i, j = 0;
3542 int n_targets = N_SELECTION_TARGETS;
3543 GtkTargetEntry targets[N_SELECTION_TARGETS];
3544
3545 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3546 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003547 // OpenOffice tries to use TARGET_HTML and fails when we don't
3548 // return something, instead of trying another target. Therefore only
3549 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003550 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3551 n_targets--;
3552 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003553 targets[j++] = selection_targets[i];
3554 }
3555
3556 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3557 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3558 gtk_selection_add_targets(gui.drawarea,
3559 (GdkAtom)GDK_SELECTION_PRIMARY,
3560 targets, n_targets);
3561 gtk_selection_add_targets(gui.drawarea,
3562 (GdkAtom)clip_plus.gtk_sel_atom,
3563 targets, n_targets);
3564}
3565
3566/*
3567 * Set up for receiving DND items.
3568 */
3569 void
3570gui_gtk_set_dnd_targets(void)
3571{
3572 int i, j = 0;
3573 int n_targets = N_DND_TARGETS;
3574 GtkTargetEntry targets[N_DND_TARGETS];
3575
3576 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3577 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003578 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003579 n_targets--;
3580 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003581 targets[j++] = dnd_targets[i];
3582 }
3583
3584 gtk_drag_dest_unset(gui.drawarea);
3585 gtk_drag_dest_set(gui.drawarea,
3586 GTK_DEST_DEFAULT_ALL,
3587 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003588 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003589}
3590
3591/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3593 * Returns OK for success, FAIL when the GUI can't be started.
3594 */
3595 int
3596gui_mch_init(void)
3597{
3598 GtkWidget *vbox;
3599
3600#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003601 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3602 // exits on failure, but that's a non-issue because we already called
3603 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003605 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3607 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar73e28dc2022-09-17 21:08:33 +01003608# if defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003609 {
3610 char *p = setlocale(LC_NUMERIC, NULL);
3611
Bram Moolenaar30613902019-12-01 22:11:18 +01003612 // Make sure strtod() uses a decimal point, not a comma. Gnome
3613 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003614 if (p == NULL || strcmp(p, "C") != 0)
3615 setlocale(LC_NUMERIC, "C");
3616 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003617# endif
3618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003620 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003622#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003623 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 /*
3627 * Force UTF-8 output no matter what the value of 'encoding' is.
3628 * did_set_string_option() in option.c prohibits changing 'termencoding'
3629 * to something else than UTF-8 if the GUI is in use.
3630 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003631 set_option_value_give_err((char_u *)"termencoding",
3632 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003634#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003636#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003637 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3638 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003639#if !GTK_CHECK_VERSION(3,0,0)
3640# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003642# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643#endif
3644
Bram Moolenaar30613902019-12-01 22:11:18 +01003645 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 gui.border_width = 2;
3647 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3648 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003649#if GTK_CHECK_VERSION(3,0,0)
3650 gui.fgcolor = g_new(GdkRGBA, 1);
3651 gui.bgcolor = g_new(GdkRGBA, 1);
3652 gui.spcolor = g_new(GdkRGBA, 1);
3653#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003654 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003656 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003658 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003659 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003660#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661
Bram Moolenaar30613902019-12-01 22:11:18 +01003662 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003663 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665
Bram Moolenaar30613902019-12-01 22:11:18 +01003666 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 gui.norm_pixel = gui.def_norm_pixel;
3668 gui.back_pixel = gui.def_back_pixel;
3669
3670 if (gtk_socket_id != 0)
3671 {
3672 GtkWidget *plug;
3673
Bram Moolenaar30613902019-12-01 22:11:18 +01003674 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3676 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003677 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 {
3679 gui.mainwin = plug;
3680 }
3681 else
3682 {
3683 g_warning("Connection to GTK+ socket (ID %u) failed",
3684 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003685 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 gtk_socket_id = 0;
3687 }
3688 }
3689
3690 if (gtk_socket_id == 0)
3691 {
3692#ifdef FEAT_GUI_GNOME
3693 if (using_gnome)
3694 {
3695 gui.mainwin = gnome_app_new("Vim", NULL);
3696# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003697 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 xsmp_close();
3699# endif
3700 }
3701 else
3702#endif
3703 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3704 }
3705
3706 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3707
Bram Moolenaar30613902019-12-01 22:11:18 +01003708 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3710 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
Bram Moolenaar98921892016-02-23 17:14:37 +01003712 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3714
Bram Moolenaar98921892016-02-23 17:14:37 +01003715 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3716 G_CALLBACK(&delete_event_cb), NULL);
3717
3718 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3719 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003720
3721 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003723
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 gui.accel_group = gtk_accel_group_new();
3725 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726
Bram Moolenaar30613902019-12-01 22:11:18 +01003727 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003728#if GTK_CHECK_VERSION(3,2,0)
3729 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3730 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3731#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734
3735#ifdef FEAT_GUI_GNOME
3736 if (using_gnome)
3737 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003738# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003739 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3741# endif
3742 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3743 }
3744 else
3745#endif
3746 {
3747 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3748 gtk_widget_show(vbox);
3749 }
3750
3751#ifdef FEAT_MENU
3752 /*
3753 * Create the menubar and handle
3754 */
3755 gui.menubar = gtk_menu_bar_new();
3756 gtk_widget_set_name(gui.menubar, "vim-menubar");
3757
Bram Moolenaar30613902019-12-01 22:11:18 +01003758 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003759 {
3760 GtkSettings *gtk_settings;
3761
3762 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3763 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3764 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003765
3766
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767# ifdef FEAT_GUI_GNOME
3768 if (using_gnome)
3769 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 BonoboDockItem *dockitem;
3771
3772 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3773 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3774 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003775 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003776 bonobo_dock_item_set_behavior(dockitem,
3777 bonobo_dock_item_get_behavior(dockitem)
3778 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 }
3781 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003782# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003784 // Always show the menubar, otherwise <F10> doesn't work. It may be
3785 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003786 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3788 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003789#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790
3791#ifdef FEAT_TOOLBAR
3792 /*
3793 * Create the toolbar and handle
3794 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003795 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003796# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003797 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3798 // N.B. Since the default value of GtkToolbar::button-relief is
3799 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003800# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 gtk_rc_parse_string(
3802 "style \"vim-toolbar-style\" {\n"
3803 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3804 "}\n"
3805 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003806# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 gui.toolbar = gtk_toolbar_new();
3808 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3810
3811# ifdef FEAT_GUI_GNOME
3812 if (using_gnome)
3813 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 BonoboDockItem *dockitem;
3815
3816 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3817 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3818 GNOME_APP_TOOLBAR_NAME);
3819 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003820 // When the toolbar is floating it gets stuck. So long as that isn't
3821 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003822 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003823 bonobo_dock_item_get_behavior(dockitem)
3824 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
3827 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003828# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3831 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3832 gtk_widget_show(gui.toolbar);
3833 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3834 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003835#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003837#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003838 /*
3839 * Use a Notebook for the tab pages labels. The labels are hidden by
3840 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003841 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003842 gui.tabline = gtk_notebook_new();
3843 gtk_widget_show(gui.tabline);
3844 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3845 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3846 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003847 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003848# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003849 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003850# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003851
Bram Moolenaar98921892016-02-23 17:14:37 +01003852# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003853 tabline_tooltip = gtk_tooltips_new();
3854 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003855# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003856
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003857 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003858 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003859
Bram Moolenaar30613902019-12-01 22:11:18 +01003860 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003861# if GTK_CHECK_VERSION(3,2,0)
3862 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3863 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3864# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003865 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003866# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003867 gtk_widget_show(page);
3868 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3869 label = gtk_label_new("-Empty-");
3870 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003871 event_box = gtk_event_box_new();
3872 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003873 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003874# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003875 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003876# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003877 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003878 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003879# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003880 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003881# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003882 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003883
Bram Moolenaar98921892016-02-23 17:14:37 +01003884 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3885 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003886# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003887 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3888 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003889# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003890
Bram Moolenaar30613902019-12-01 22:11:18 +01003891 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003892 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003893 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3894 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003895#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003896
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003897 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003898 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003899#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003901#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003902#if GTK_CHECK_VERSION(3,22,2)
3903 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3904#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905
3906 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003907#if GTK_CHECK_VERSION(3,0,0)
3908 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910
Bram Moolenaar30613902019-12-01 22:11:18 +01003911 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 gtk_widget_set_events(gui.drawarea,
3913 GDK_EXPOSURE_MASK |
3914 GDK_ENTER_NOTIFY_MASK |
3915 GDK_LEAVE_NOTIFY_MASK |
3916 GDK_BUTTON_PRESS_MASK |
3917 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 GDK_KEY_PRESS_MASK |
3920 GDK_KEY_RELEASE_MASK |
3921 GDK_POINTER_MOTION_MASK |
3922 GDK_POINTER_MOTION_HINT_MASK);
3923
3924 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003925 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 gtk_widget_show(gui.formwin);
3927 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3928
Bram Moolenaar30613902019-12-01 22:11:18 +01003929 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3930 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003931 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3932 : G_OBJECT(gui.drawarea),
3933 "key-press-event",
3934 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003935#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003936 // Also forward key release events for the benefit of GTK+ 2 input
3937 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3939 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003940 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 G_CALLBACK(&key_release_event), NULL);
3942#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003943 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3944 G_CALLBACK(drawarea_realize_cb), NULL);
3945 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3946 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003947#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003948 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3949 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003950#endif
3951#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003952 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3953 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003954#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003955 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3956 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958
Bram Moolenaar98921892016-02-23 17:14:37 +01003959#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003963#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3965 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3966#endif
3967
3968 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003969 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003970 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971
3972 /*
3973 * Set clipboard specific atoms
3974 */
3975 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3978 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3979
3980 /*
3981 * Start out by adding the configured border width into the border offset.
3982 */
3983 gui.border_offset = gui.border_width;
3984
Bram Moolenaar98921892016-02-23 17:14:37 +01003985#if GTK_CHECK_VERSION(3,0,0)
3986 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3987 G_CALLBACK(draw_event), NULL);
3988#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3990 GTK_SIGNAL_FUNC(visibility_event), NULL);
3991 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3992 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995 /*
3996 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3997 * Only needed for some window managers.
3998 */
3999 if (vim_strchr(p_go, GO_POINTER) != NULL)
4000 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004001 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4002 G_CALLBACK(leave_notify_event), NULL);
4003 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4004 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 }
4006
Bram Moolenaar30613902019-12-01 22:11:18 +01004007 // Real windows can get focus ... GtkPlug, being a mere container can't,
Christian Brabandtee17b6f2023-09-09 11:23:50 +02004008 // only its widgets. Arguably, this could be common code and we do not
4009 // use the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004010 if (gtk_socket_id == 0)
4011 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004012 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4013 G_CALLBACK(focus_out_event), NULL);
4014 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4015 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004016 }
4017 else
4018 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004019 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4020 G_CALLBACK(focus_out_event), NULL);
4021 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4022 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004023#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004024 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4025 G_CALLBACK(focus_out_event), NULL);
4026 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4027 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004028#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
Bram Moolenaar98921892016-02-23 17:14:37 +01004031 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4032 G_CALLBACK(motion_notify_event), NULL);
4033 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4034 G_CALLBACK(button_press_event), NULL);
4035 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4036 G_CALLBACK(button_release_event), NULL);
4037 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4038 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039
4040 /*
4041 * Add selection handler functions.
4042 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004043 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4044 G_CALLBACK(selection_clear_event), NULL);
4045 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4046 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047
Bram Moolenaara76638f2010-06-05 12:49:46 +02004048 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
Bram Moolenaar98921892016-02-23 17:14:37 +01004050 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4051 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052
Bram Moolenaar30613902019-12-01 22:11:18 +01004053 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 gui.in_focus = FALSE;
4055
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004056 // Handle changes to the "Xft/DPI" setting.
4057 {
4058 GtkSettings *gtk_settings =
4059 gtk_settings_get_for_screen(gdk_screen_get_default());
4060
4061 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4062 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4063 }
4064
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 return OK;
4066}
4067
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004068#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069/*
4070 * This is called from gui_start() after a fork() has been done.
4071 * We have to tell the session manager our new PID.
4072 */
4073 void
4074gui_mch_forked(void)
4075{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004076 if (!using_gnome)
4077 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004079 GnomeClient *client;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004081 client = gnome_master_client();
4082
4083 if (client != NULL)
4084 gnome_client_set_process_id(client, getpid());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004086#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087
Bram Moolenaar98921892016-02-23 17:14:37 +01004088#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004089 static GdkRGBA
4090color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004091{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004092 GdkRGBA rgba;
4093 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4094 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4095 rgba.blue = ((color & 0xff)) / 255.0;
4096 rgba.alpha = 1.0;
4097 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004098}
4099
4100 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004101set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004102{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004103 const GdkRGBA rgba = color_to_rgba(color);
4104 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004105}
Bram Moolenaar30613902019-12-01 22:11:18 +01004106#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004107
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108/*
4109 * Called when the foreground or background color has been changed.
4110 * This used to change the graphics contexts directly but we are
4111 * currently manipulating them where desired.
4112 */
4113 void
4114gui_mch_new_colors(void)
4115{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004116 if (gui.drawarea != NULL
4117#if GTK_CHECK_VERSION(3,22,2)
4118 && gui.formwin != NULL
4119#endif
4120 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004122#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004123 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004124#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004125#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004126 GtkStyleContext * const context =
4127 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004128 GtkCssProvider * const provider = gtk_css_provider_new();
4129 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004130 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004131 " background-color: #%.2lx%.2lx%.2lx;\n"
4132 "}\n",
4133 (gui.back_pixel >> 16) & 0xff,
4134 (gui.back_pixel >> 8) & 0xff,
4135 gui.back_pixel & 0xff);
4136
4137 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4138 gtk_style_context_add_provider(context,
4139 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4140
4141 g_free(css);
4142 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004143#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004144 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004145
Bram Moolenaar36edf062016-07-21 22:10:12 +02004146 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004147 {
4148 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004149 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004150 if (pat != NULL)
4151 {
4152 gdk_window_set_background_pattern(da_win, pat);
4153 cairo_pattern_destroy(pat);
4154 }
4155 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004156 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004157 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004158#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 GdkColor color = { 0, 0, 0, 0 };
4160
4161 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004162 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004163#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 }
4165}
4166
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167/*
4168 * This signal informs us about the need to rearrange our sub-widgets.
4169 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004171form_configure_event(GtkWidget *widget UNUSED,
4172 GdkEventConfigure *event,
4173 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174{
Ernie Raeld42b8392022-04-23 19:52:23 +01004175 int usable_height = event->height;
4176#ifdef TRACK_RESIZE_HISTORY
4177 // Resize requests are made for gui.mainwin;
4178 // get its dimensions for searching if this event
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004179 // is a response to a vim request.
Ernie Raeld42b8392022-04-23 19:52:23 +01004180 int w, h;
4181 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004182
Ernie Raeld42b8392022-04-23 19:52:23 +01004183# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004184 ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]",
4185 w, h, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +01004186# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004187
Ernie Raeld42b8392022-04-23 19:52:23 +01004188 // Look through history of recent vim resize requests.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004189 // If this event matches:
4190 // - "latest resize hist" We're caught up;
4191 // clear the history and process this event.
4192 // If history is, old to new, 100, 99, 100, 99. If this event is
4193 // 99 for the stale, it is matched against the current. History
Ernie Raeld42b8392022-04-23 19:52:23 +01004194 // is cleared, we may bounce, but no worse than before.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004195 // - "older/stale hist" If match an unused event in history,
4196 // then discard this event, and mark the matching event as used.
4197 // - "no match" Figure it's a user resize event, clear history.
4198 // NOTE: clear history is default, then all incoming events are processed
4199
4200 if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h)
4201 && match_stale_width_height(w, h))
4202 // discard stale event
4203 return TRUE;
4204 clear_resize_hists();
Ernie Raeld42b8392022-04-23 19:52:23 +01004205#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004206
Bram Moolenaar182707a2016-11-21 20:55:58 +01004207#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004208 // As of 3.22.2, GdkWindows have started distributing configure events to
4209 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4210 //
4211 // As can be seen from the implementation of move_native_children() and
4212 // configure_native_child() in gdkwindow.c, those functions actually
4213 // propagate configure events to every child, failing to distinguish
4214 // "native" one from non-native one.
4215 //
4216 // Naturally, configure events propagated to here like that are fallacious
4217 // and, as a matter of fact, they trigger a geometric collapse of
4218 // gui.formwin.
4219 //
4220 // To filter out such fallacious events, check if the given event is the
4221 // one that was sent out to the right place. Ignore it if not.
4222 //
4223 // Follow-up
4224 // After a few weeks later, the GdkWindow change mentioned above was
4225 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4226 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004227 if (event->window != gtk_widget_get_window(gui.formwin))
4228 return TRUE;
4229#endif
4230
Bram Moolenaar30613902019-12-01 22:11:18 +01004231 // When in a GtkPlug, we can't guarantee valid heights (as a round
4232 // no. of char-heights), so we have to manually sanitise them.
4233 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004234 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004235 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004236
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004237 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004238 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004239 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
4241 return TRUE;
4242}
4243
4244/*
4245 * Function called when window already closed.
4246 * We can't do much more here than to trying to preserve what had been done,
4247 * since the window is already inevitably going away.
4248 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004249 static void
4250mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251{
Bram Moolenaar30613902019-12-01 22:11:18 +01004252 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 full_screen = FALSE;
4254
4255 gui.mainwin = NULL;
4256 gui.drawarea = NULL;
4257
Bram Moolenaar30613902019-12-01 22:11:18 +01004258 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004260 vim_strncpy(IObuff,
4261 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4262 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 preserve_exit();
4264 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004265#ifdef USE_GRESOURCE
4266 gui_gtk_unregister_resource();
4267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268}
4269
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004270 void
4271gui_gtk_get_screen_geom_of_win(
4272 GtkWidget *wid,
4273 int point_x, // x position of window if not initialized
4274 int point_y, // y position of window if not initialized
4275 int *screen_x,
4276 int *screen_y,
4277 int *width,
4278 int *height)
4279{
4280 GdkRectangle geometry;
4281 GdkWindow *win = gtk_widget_get_window(wid);
4282#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004283 GdkDisplay *dpy;
4284 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004285
Bram Moolenaar24001432021-03-20 12:36:46 +01004286 if (wid != NULL && gtk_widget_get_realized(wid))
4287 dpy = gtk_widget_get_display(wid);
4288 else
4289 dpy = gdk_display_get_default();
4290 if (win != NULL)
4291 monitor = gdk_display_get_monitor_at_window(dpy, win);
4292 else
4293 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004294 gdk_monitor_get_geometry(monitor, &geometry);
4295#else
4296 GdkScreen* screen;
4297 int monitor;
4298
4299 if (wid != NULL && gtk_widget_has_screen(wid))
4300 screen = gtk_widget_get_screen(wid);
4301 else
4302 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004303 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004304 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004305 else
4306 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004307 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4308#endif
4309 *screen_x = geometry.x;
4310 *screen_y = geometry.y;
4311 *width = geometry.width;
4312 *height = geometry.height;
4313}
4314
4315/*
4316 * The screen size is used to make sure the initial window doesn't get bigger
4317 * than the screen. This subtracts some room for menubar, toolbar and window
4318 * decorations.
4319 */
4320 static void
4321gui_gtk_get_screen_dimensions(
4322 int point_x,
4323 int point_y,
4324 int *screen_w,
4325 int *screen_h)
4326{
4327 int x, y;
4328
4329 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4330 &x, &y, screen_w, screen_h);
4331
4332 // Subtract 'guiheadroom' from the height to allow some room for the
4333 // window manager (task list and window title bar).
4334 *screen_h -= p_ghr;
4335
4336 /*
4337 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4338 * the toolbar and menubar for GTK, we subtract them from the screen
4339 * height, so that the window size can be made to fit on the screen.
4340 * This should be completely changed later.
4341 */
4342 *screen_w -= get_menu_tool_width();
4343 *screen_h -= get_menu_tool_height();
4344}
4345
4346 void
4347gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4348{
4349 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4350}
4351
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004352
4353/*
4354 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4355 * hints (and thus the required size from -geom), but that after that we
4356 * put the hints back to normal (the actual minimum size) so we may
4357 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004358 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004359 * only way we have of making ourselves bigger (by set lines/columns).
4360 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004361 * second after the final attempt to reset the real minimum hints (done by
4362 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004363 * We'll not let the default hints be set while this timer's active.
4364 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004365 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004366check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004367{
4368 if (init_window_hints_state == 1)
4369 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004370 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004371 init_window_hints_state = 0;
4372 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004373 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004374 }
4375
Bram Moolenaar30613902019-12-01 22:11:18 +01004376 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004377 init_window_hints_state = 1;
4378 return TRUE;
4379}
4380
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381/*
4382 * Open the GUI window which was created by a call to gui_mch_init().
4383 */
4384 int
4385gui_mch_open(void)
4386{
4387 guicolor_T fg_pixel = INVALCOLOR;
4388 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004389 guint pixel_width;
4390 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 /*
4393 * Allow setting a window role on the command line, or invent one
4394 * if none was specified. This is mainly useful for GNOME session
4395 * support; allowing the WM to restore window placement.
4396 */
4397 if (role_argument != NULL)
4398 {
4399 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4400 }
4401 else
4402 {
4403 char *role;
4404
Bram Moolenaar30613902019-12-01 22:11:18 +01004405 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 role = g_strdup_printf("vim-%u-%u-%u",
4407 (unsigned)mch_get_pid(),
4408 (unsigned)g_random_int(),
4409 (unsigned)time(NULL));
4410
4411 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4412 g_free(role);
4413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414
4415 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417
Bram Moolenaar30613902019-12-01 22:11:18 +01004418 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 if (gui.geom != NULL)
4420 {
4421 int mask;
4422 unsigned int w, h;
4423 int x = 0;
4424 int y = 0;
4425
4426 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4427
4428 if (mask & WidthValue)
4429 Columns = w;
4430 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004431 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004432 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004433 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004435 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004436 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004437
4438 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4439 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4440
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004441 pixel_width += get_menu_tool_width();
4442 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004443
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004445 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004446 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004447
4448#ifdef FEAT_GUI_GTK
4449 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4450#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004451 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004452#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004453 hh += p_ghr + get_menu_tool_height();
4454 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004455 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004456 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004457 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004458 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004460 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004461 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004462
Bram Moolenaar30613902019-12-01 22:11:18 +01004463 // From now until everyone's stopped trying to set the window hints
4464 // to their correct minimum values, stop them being set as we need
4465 // them to remain at our required size for the parent GtkSocket to
4466 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004467 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004468 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004469 update_window_manager_hints(pixel_width, pixel_height);
4470 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004471 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 }
4474
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004475 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4476 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004477 // For GTK2 changing the size of the form widget doesn't cause window
4478 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004479 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004480 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004481 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
4483 if (foreground_argument != NULL)
4484 fg_pixel = gui_get_color((char_u *)foreground_argument);
4485 if (fg_pixel == INVALCOLOR)
4486 fg_pixel = gui_get_color((char_u *)"Black");
4487
4488 if (background_argument != NULL)
4489 bg_pixel = gui_get_color((char_u *)background_argument);
4490 if (bg_pixel == INVALCOLOR)
4491 bg_pixel = gui_get_color((char_u *)"White");
4492
4493 if (found_reverse_arg)
4494 {
4495 gui.def_norm_pixel = bg_pixel;
4496 gui.def_back_pixel = fg_pixel;
4497 }
4498 else
4499 {
4500 gui.def_norm_pixel = fg_pixel;
4501 gui.def_back_pixel = bg_pixel;
4502 }
4503
Bram Moolenaar30613902019-12-01 22:11:18 +01004504 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4505 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 set_normal_colors();
4507
Bram Moolenaar30613902019-12-01 22:11:18 +01004508 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 gui_check_colors();
4510
Bram Moolenaar30613902019-12-01 22:11:18 +01004511 // Get the colors for the highlight groups (gui_check_colors() might have
4512 // changed them).
4513 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514
Bram Moolenaar98921892016-02-23 17:14:37 +01004515 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4516 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 /*
4519 * Notify the fixed area about the need to resize the contents of the
4520 * gui.formwin, which we use for random positioning of the included
4521 * components.
4522 *
4523 * We connect this signal deferred finally after anything is in place,
4524 * since this is intended to handle resizements coming from the window
4525 * manager upon us and should not interfere with what VIM is requesting
4526 * upon startup.
4527 */
Ernie Raeld42b8392022-04-23 19:52:23 +01004528#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004529 latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T);
Ernie Raeld42b8392022-04-23 19:52:23 +01004530#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004531 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004532 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533
4534#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004535 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004536 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537
Bram Moolenaar98921892016-02-23 17:14:37 +01004538 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004539 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540#endif
4541
Bram Moolenaar30613902019-12-01 22:11:18 +01004542 // With GTK+ 2, we need to iconify the window before calling show()
4543 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 if (found_iconic_arg && gtk_socket_id == 0)
4545 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546
4547 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004548#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 unsigned long menu_handler = 0;
4550# ifdef FEAT_TOOLBAR
4551 unsigned long tool_handler = 0;
4552# endif
4553 /*
4554 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4555 * show when restoring the saved layout configuration. We can't just
4556 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4557 * a toplevel window and thus will be realized immediately. Instead,
4558 * connect signal handlers to hide the widgets just after they've been
4559 * marked visible, but before the main window is realized.
4560 */
4561 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4562 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4563 G_CALLBACK(&gtk_widget_hide),
4564 NULL);
4565# ifdef FEAT_TOOLBAR
4566 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4567 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4568 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4569 G_CALLBACK(&gtk_widget_hide),
4570 NULL);
4571# endif
4572#endif
4573 gtk_widget_show(gui.mainwin);
4574
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004575#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 if (menu_handler != 0)
4577 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4578# ifdef FEAT_TOOLBAR
4579 if (tool_handler != 0)
4580 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4581# endif
4582#endif
4583 }
4584
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 return OK;
4586}
4587
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004588/*
4589 * Clean up for when exiting Vim.
4590 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004592gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004594 // Clean up, unless we don't want to invoke free().
4595 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597}
4598
4599/*
4600 * Get the position of the top left corner of the window.
4601 */
4602 int
4603gui_mch_get_winpos(int *x, int *y)
4604{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 return OK;
4607}
4608
4609/*
4610 * Set the position of the top left corner of the window to the given
4611 * coordinates.
4612 */
4613 void
4614gui_mch_set_winpos(int x, int y)
4615{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617}
4618
Bram Moolenaar98921892016-02-23 17:14:37 +01004619#if !GTK_CHECK_VERSION(3,0,0)
4620# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621static int resize_idle_installed = FALSE;
4622/*
4623 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4624 * the shell size doesn't exceed the window size, i.e. if the window manager
4625 * ignored our size request. Usually this happens if the window is maximized.
4626 *
4627 * FIXME: It'd be nice if we could find a little more orthodox solution.
4628 * See also the remark below in gui_mch_set_shellsize().
4629 *
4630 * DISABLED: When doing ":set lines+=1" this function would first invoke
4631 * gui_resize_shell() with the old size, then the normal callback would
4632 * report the new size through form_configure_event(). That caused the window
4633 * layout to be messed up.
4634 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 static gboolean
4636force_shell_resize_idle(gpointer data)
4637{
4638 if (gui.mainwin != NULL
4639 && GTK_WIDGET_REALIZED(gui.mainwin)
4640 && GTK_WIDGET_VISIBLE(gui.mainwin))
4641 {
4642 int width;
4643 int height;
4644
4645 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4646
4647 width -= get_menu_tool_width();
4648 height -= get_menu_tool_height();
4649
4650 gui_resize_shell(width, height);
4651 }
4652
4653 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004654 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655}
Bram Moolenaar98921892016-02-23 17:14:37 +01004656# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004657#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658
Bram Moolenaar09736232009-09-23 16:14:49 +00004659/*
4660 * Return TRUE if the main window is maximized.
4661 */
4662 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004663gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004664{
Bram Moolenaar98921892016-02-23 17:14:37 +01004665 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4666 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4667 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004668}
4669
4670/*
4671 * Unmaximize the main window
4672 */
4673 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004674gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004675{
4676 if (gui.mainwin != NULL)
4677 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4678}
Bram Moolenaar09736232009-09-23 16:14:49 +00004679
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004681 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4682 * is set. Compute the new Rows and Columns. This is like resizing the
4683 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004684 */
4685 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004686gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004687{
4688 int w, h;
4689
4690 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4691 w -= get_menu_tool_width();
4692 h -= get_menu_tool_height();
4693 gui_resize_shell(w, h);
4694}
4695
4696/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 * Set the windows size.
4698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 void
4700gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004701 int min_width UNUSED, int min_height UNUSED,
4702 int base_width UNUSED, int base_height UNUSED,
4703 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704{
Bram Moolenaar30613902019-12-01 22:11:18 +01004705 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 gui_mch_update();
4707
Bram Moolenaar30613902019-12-01 22:11:18 +01004708 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004709 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004710 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004711
Bram Moolenaar30613902019-12-01 22:11:18 +01004712 // With GTK+ 2, changing the size of the form widget doesn't resize
4713 // the window. So let's do it the other way around and resize the
4714 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 width += get_menu_tool_width();
4716 height += get_menu_tool_height();
4717
Ernie Raeld42b8392022-04-23 19:52:23 +01004718#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004719 alloc_resize_hist(width, height); // track the resize request
Ernie Raeld42b8392022-04-23 19:52:23 +01004720#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004721 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004722 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004723 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004724 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725
Bram Moolenaar98921892016-02-23 17:14:37 +01004726# if !GTK_CHECK_VERSION(3,0,0)
4727# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 if (!resize_idle_installed)
4729 {
4730 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4731 &force_shell_resize_idle, NULL, NULL);
4732 resize_idle_installed = TRUE;
4733 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004734# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004735# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 /*
4737 * Wait until all events are processed to prevent a crash because the
4738 * real size of the drawing area doesn't reflect Vim's internal ideas.
4739 *
4740 * This is a bit of a hack, since Vim is a terminal application with a GUI
4741 * on top, while the GUI expects to be the boss.
4742 */
4743 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744}
4745
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004747gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 if (title != NULL && output_conv.vc_type != CONV_NONE)
4750 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751
4752 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4753
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 if (output_conv.vc_type != CONV_NONE)
4755 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757
4758#if defined(FEAT_MENU) || defined(PROTO)
4759 void
4760gui_mch_enable_menu(int showit)
4761{
4762 GtkWidget *widget;
4763
4764# ifdef FEAT_GUI_GNOME
4765 if (using_gnome)
4766 widget = gui.menubar_h;
4767 else
4768# endif
4769 widget = gui.menubar;
4770
Bram Moolenaar30613902019-12-01 22:11:18 +01004771 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004772 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 {
4774 if (showit)
4775 gtk_widget_show(widget);
4776 else
4777 gtk_widget_hide(widget);
4778
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004779 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 }
4781}
Bram Moolenaar30613902019-12-01 22:11:18 +01004782#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783
4784#if defined(FEAT_TOOLBAR) || defined(PROTO)
4785 void
4786gui_mch_show_toolbar(int showit)
4787{
4788 GtkWidget *widget;
4789
4790 if (gui.toolbar == NULL)
4791 return;
4792
4793# ifdef FEAT_GUI_GNOME
4794 if (using_gnome)
4795 widget = gui.toolbar_h;
4796 else
4797# endif
4798 widget = gui.toolbar;
4799
4800 if (showit)
4801 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4802
Bram Moolenaar98921892016-02-23 17:14:37 +01004803 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 {
4805 if (showit)
4806 gtk_widget_show(widget);
4807 else
4808 gtk_widget_hide(widget);
4809
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004810 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 }
4812}
Bram Moolenaar30613902019-12-01 22:11:18 +01004813#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815/*
4816 * Check if a given font is a CJK font. This is done in a very crude manner. It
4817 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4818 * font. Consequently, this function cannot be used as a general purpose check
4819 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4820 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4821 */
4822 static int
4823is_cjk_font(PangoFontDescription *font_desc)
4824{
4825 static const char * const cjk_langs[] =
4826 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4827
4828 PangoFont *font;
4829 unsigned i;
4830 int is_cjk = FALSE;
4831
4832 font = pango_context_load_font(gui.text_context, font_desc);
4833
4834 if (font == NULL)
4835 return FALSE;
4836
4837 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4838 {
4839 PangoCoverage *coverage;
4840 gunichar uc;
4841
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004842 // Valgrind reports a leak for pango_language_from_string(), but the
4843 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 coverage = pango_font_get_coverage(
4845 font, pango_language_from_string(cjk_langs[i]));
4846
4847 if (coverage != NULL)
4848 {
4849 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4850 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
James McCoyfe146362023-08-28 21:29:13 +02004851#if PANGO_VERSION_CHECK(1, 52, 0)
4852 g_object_unref(coverage);
4853#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 pango_coverage_unref(coverage);
James McCoyfe146362023-08-28 21:29:13 +02004855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 }
4857 }
4858
4859 g_object_unref(font);
4860
4861 return is_cjk;
4862}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863
Bram Moolenaar231334e2005-07-25 20:46:57 +00004864/*
4865 * Adjust gui.char_height (after 'linespace' was changed).
4866 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004868gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 PangoFontMetrics *metrics;
4871 int ascent;
4872 int descent;
4873
4874 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4875 pango_context_get_language(gui.text_context));
4876 ascent = pango_font_metrics_get_ascent(metrics);
4877 descent = pango_font_metrics_get_descent(metrics);
4878
4879 pango_font_metrics_unref(metrics);
4880
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004881 // Round up when the value is more than about 1/16 of a pixel above a whole
4882 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4883 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4884 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004885 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4887
Bram Moolenaar30613902019-12-01 22:11:18 +01004888 // A not-positive value of char_height may crash Vim. Only happens
4889 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 gui.char_ascent = MAX(gui.char_ascent, 0);
4891 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4892
4893 return OK;
4894}
4895
Bram Moolenaar98921892016-02-23 17:14:37 +01004896#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004897// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004898 static gboolean
4899font_filter(const PangoFontFamily *family,
4900 const PangoFontFace *face UNUSED,
4901 gpointer data UNUSED)
4902{
4903 return pango_font_family_is_monospace((PangoFontFamily *)family);
4904}
4905#endif
4906
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907/*
4908 * Put up a font dialog and return the selected font name in allocated memory.
4909 * "oldval" is the previous value. Return NULL when cancelled.
4910 * This should probably go into gui_gtk.c. Hmm.
4911 * FIXME:
4912 * The GTK2 font selection dialog has no filtering API. So we could either
4913 * a) implement our own (possibly copying the code from somewhere else) or
4914 * b) just live with it.
4915 */
4916 char_u *
4917gui_mch_font_dialog(char_u *oldval)
4918{
4919 GtkWidget *dialog;
4920 int response;
4921 char_u *fontname = NULL;
4922 char_u *oldname;
4923
Bram Moolenaar98921892016-02-23 17:14:37 +01004924#if GTK_CHECK_VERSION(3,2,0)
4925 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4926 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4927 NULL, NULL);
4928#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931
4932 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4933 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4934
4935 if (oldval != NULL && oldval[0] != NUL)
4936 {
4937 if (output_conv.vc_type != CONV_NONE)
4938 oldname = string_convert(&output_conv, oldval, NULL);
4939 else
4940 oldname = oldval;
4941
Bram Moolenaar30613902019-12-01 22:11:18 +01004942 // Annoying bug in GTK (or Pango): if the font name does not include a
4943 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4945 {
4946 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4947
4948 if (p != NULL)
4949 {
4950 STRCPY(p + STRLEN(p), " 10");
4951 if (oldname != oldval)
4952 vim_free(oldname);
4953 oldname = p;
4954 }
4955 }
4956
Bram Moolenaar98921892016-02-23 17:14:37 +01004957#if GTK_CHECK_VERSION(3,2,0)
4958 gtk_font_chooser_set_font(
4959 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4960#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 gtk_font_selection_dialog_set_font_name(
4962 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964
4965 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004966 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004968 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004969#if GTK_CHECK_VERSION(3,2,0)
4970 gtk_font_chooser_set_font(
4971 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4972#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004973 gtk_font_selection_dialog_set_font_name(
4974 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976
4977 response = gtk_dialog_run(GTK_DIALOG(dialog));
4978
4979 if (response == GTK_RESPONSE_OK)
4980 {
4981 char *name;
4982
Bram Moolenaar98921892016-02-23 17:14:37 +01004983#if GTK_CHECK_VERSION(3,2,0)
4984 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4985#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 name = gtk_font_selection_dialog_get_font_name(
4987 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 if (name != NULL)
4990 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004991 char_u *p;
4992
Bram Moolenaar30613902019-12-01 22:11:18 +01004993 // Apparently some font names include a comma, need to escape
4994 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004995 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004997 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004998 {
4999 fontname = string_convert(&input_conv, p, NULL);
5000 vim_free(p);
5001 }
5002 else
5003 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 }
5005 }
5006
5007 if (response != GTK_RESPONSE_NONE)
5008 gtk_widget_destroy(dialog);
5009
5010 return fontname;
5011}
5012
5013/*
5014 * Some monospace fonts don't support a bold weight, and fall back
5015 * silently to the regular weight. But this is no good since our text
5016 * drawing function can emulate bold by overstriking. So let's try
5017 * to detect whether bold weight is actually available and emulate it
5018 * otherwise.
5019 *
5020 * Note that we don't need to check for italic style since Xft can
5021 * emulate italic on its own, provided you have a proper fontconfig
5022 * setup. We wouldn't be able to emulate it in Vim anyway.
5023 */
5024 static void
5025get_styled_font_variants(void)
5026{
5027 PangoFontDescription *bold_font_desc;
5028 PangoFont *plain_font;
5029 PangoFont *bold_font;
5030
5031 gui.font_can_bold = FALSE;
5032
5033 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5034
5035 if (plain_font == NULL)
5036 return;
5037
5038 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5039 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5040
5041 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5042 /*
5043 * The comparison relies on the unique handle nature of a PangoFont*,
5044 * i.e. it's assumed that a different PangoFont* won't refer to the
5045 * same font. Seems to work, and failing here isn't critical anyway.
5046 */
5047 if (bold_font != NULL)
5048 {
5049 gui.font_can_bold = (bold_font != plain_font);
5050 g_object_unref(bold_font);
5051 }
5052
5053 pango_font_description_free(bold_font_desc);
Christian Brabandta5218a72023-11-19 16:25:45 +01005054 if (bold_font != NULL && gui.font_can_bold)
5055 g_object_unref(plain_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056}
5057
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058static PangoEngineShape *default_shape_engine = NULL;
5059
5060/*
5061 * Create a map from ASCII characters in the range [32,126] to glyphs
5062 * of the current font. This is used by gui_gtk2_draw_string() to skip
5063 * the itemize and shaping process for the most common case.
5064 */
5065 static void
5066ascii_glyph_table_init(void)
5067{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005068 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 PangoAttrList *attr_list;
5070 GList *item_list;
5071 int i;
5072
5073 if (gui.ascii_glyphs != NULL)
5074 pango_glyph_string_free(gui.ascii_glyphs);
5075 if (gui.ascii_font != NULL)
5076 g_object_unref(gui.ascii_font);
5077
5078 gui.ascii_glyphs = NULL;
5079 gui.ascii_font = NULL;
5080
Bram Moolenaar30613902019-12-01 22:11:18 +01005081 // For safety, fill in question marks for the control characters.
5082 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005083 for (i = 0; i < 128; ++i)
5084 {
5085 if (i >= 32 && i < 127)
5086 ascii_chars[2 * i] = i;
5087 else
5088 ascii_chars[2 * i] = '?';
5089 ascii_chars[2 * i + 1] = ' ';
5090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091
5092 attr_list = pango_attr_list_new();
5093 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5094 0, sizeof(ascii_chars), attr_list, NULL);
5095
Bram Moolenaar30613902019-12-01 22:11:18 +01005096 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 {
5098 PangoItem *item;
5099 int width;
5100
5101 item = (PangoItem *)item_list->data;
5102 width = gui.char_width * PANGO_SCALE;
5103
Bram Moolenaar30613902019-12-01 22:11:18 +01005104 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 default_shape_engine = item->analysis.shape_engine;
5106
5107 gui.ascii_font = item->analysis.font;
5108 g_object_ref(gui.ascii_font);
5109
5110 gui.ascii_glyphs = pango_glyph_string_new();
5111
5112 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5113 &item->analysis, gui.ascii_glyphs);
5114
5115 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5116
5117 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5118 {
5119 PangoGlyphGeometry *geom;
5120
5121 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5122 geom->x_offset += MAX(0, width - geom->width) / 2;
5123 geom->width = width;
5124 }
5125 }
5126
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02005127 // TODO: is this type cast OK?
5128 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 g_list_free(item_list);
5130 pango_attr_list_unref(attr_list);
5131}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132
5133/*
5134 * Initialize Vim to use the font or fontset with the given name.
5135 * Return FAIL if the font could not be loaded, OK otherwise.
5136 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005138gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 PangoFontDescription *font_desc;
5141 PangoLayout *layout;
5142 int width;
5143
Bram Moolenaar30613902019-12-01 22:11:18 +01005144 // If font_name is NULL, this means to use the default, which should
5145 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 if (font_name == NULL)
5147 font_name = (char_u *)DEFAULT_FONT;
5148
5149 font_desc = gui_mch_get_font(font_name, FALSE);
5150
5151 if (font_desc == NULL)
5152 return FAIL;
5153
5154 gui_mch_free_font(gui.norm_font);
5155 gui.norm_font = font_desc;
5156
5157 pango_context_set_font_description(gui.text_context, font_desc);
5158
5159 layout = pango_layout_new(gui.text_context);
5160 pango_layout_set_text(layout, "MW", 2);
5161 pango_layout_get_size(layout, &width, NULL);
5162 /*
5163 * Set char_width to half the width obtained from pango_layout_get_size()
5164 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5165 * Pango to use the same width for both non-CJK characters (e.g. Latin
5166 * letters and numbers) and CJK characters. This results in 's p a c e d
5167 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5168 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5169 * width for CJK fonts.
5170 *
5171 * For related bugs, see:
5172 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5173 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5174 *
5175 * With this, for all four of the following cases, Vim works fine:
5176 * guifont=CJK_fixed_width_font
5177 * guifont=Non_CJK_fixed_font
5178 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5179 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5180 */
5181 if (is_cjk_font(gui.norm_font))
5182 {
5183 int cjk_width;
5184
Bram Moolenaar30613902019-12-01 22:11:18 +01005185 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5187 pango_layout_get_size(layout, &cjk_width, NULL);
5188
Bram Moolenaar30613902019-12-01 22:11:18 +01005189 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 width /= 2;
5191 }
5192 g_object_unref(layout);
5193
5194 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5195
Bram Moolenaar30613902019-12-01 22:11:18 +01005196 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 if (gui.char_width <= 0)
5198 gui.char_width = 8;
5199
Bram Moolenaar231334e2005-07-25 20:46:57 +00005200 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201
Bram Moolenaar30613902019-12-01 22:11:18 +01005202 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 hl_set_font_name(font_name);
5204
5205 get_styled_font_variants();
5206 ascii_glyph_table_init();
5207
Bram Moolenaar30613902019-12-01 22:11:18 +01005208 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 if (gui.wide_font != NULL
5210 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5211 {
5212 pango_font_description_free(gui.wide_font);
5213 gui.wide_font = NULL;
5214 }
5215
Bram Moolenaare161c792009-11-03 17:13:59 +00005216 if (gui_mch_maximized())
5217 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005218 // Update lines and columns in accordance with the new font, keep the
5219 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005220 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005221 }
5222 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005223 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005224 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005225 update_window_manager_hints(0, 0);
5226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227
5228 return OK;
5229}
5230
5231/*
5232 * Get a reference to the font "name".
5233 * Return zero for failure.
5234 */
5235 GuiFont
5236gui_mch_get_font(char_u *name, int report_error)
5237{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239
Bram Moolenaar30613902019-12-01 22:11:18 +01005240 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 if (!gui.in_use || name == NULL)
5242 return NULL;
5243
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 if (output_conv.vc_type != CONV_NONE)
5245 {
5246 char_u *buf;
5247
5248 buf = string_convert(&output_conv, name, NULL);
5249 if (buf != NULL)
5250 {
5251 font = pango_font_description_from_string((const char *)buf);
5252 vim_free(buf);
5253 }
5254 else
5255 font = NULL;
5256 }
5257 else
5258 font = pango_font_description_from_string((const char *)name);
5259
5260 if (font != NULL)
5261 {
5262 PangoFont *real_font;
5263
Bram Moolenaar30613902019-12-01 22:11:18 +01005264 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 if (pango_font_description_get_size(font) <= 0)
5266 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5267
5268 real_font = pango_context_load_font(gui.text_context, font);
5269
5270 if (real_font == NULL)
5271 {
5272 pango_font_description_free(font);
5273 font = NULL;
5274 }
5275 else
5276 g_object_unref(real_font);
5277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278
5279 if (font == NULL)
5280 {
5281 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005282 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 return NULL;
5284 }
5285
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 return font;
5287}
5288
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005289#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005290/*
5291 * Return the name of font "font" in allocated memory.
5292 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005293 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005294gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005295{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005296 if (font != NOFONT)
5297 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005298 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005299
Bram Moolenaar89d40322006-08-29 15:30:07 +00005300 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005301 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005302 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005303
Bram Moolenaar89d40322006-08-29 15:30:07 +00005304 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005305 return s;
5306 }
5307 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005308 return NULL;
5309}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005310#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005311
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312/*
5313 * If a font is not going to be used, free its structure.
5314 */
5315 void
5316gui_mch_free_font(GuiFont font)
5317{
5318 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320}
5321
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322/*
Yee Cheng Chin290b8872023-10-05 20:54:21 +02005323 * Cmdline expansion for setting 'guifont' / 'guifontwide'. Will enumerate
5324 * through all fonts for completion. When setting 'guifont' it will only show
5325 * monospace fonts as it's unlikely other fonts would be useful.
5326 */
5327 void
5328gui_mch_expand_font(optexpand_T *args, void *param, int (*add_match)(char_u *val))
5329{
5330 PangoFontFamily **font_families = NULL;
5331 int n_families = 0;
5332 int wide = *(int *)param;
5333
5334 if (args->oe_include_orig_val && *args->oe_opt_value == NUL && !wide)
5335 {
5336 // If guifont is empty, and we want to fill in the orig value, suggest
5337 // the default so the user can modify it.
5338 if (add_match((char_u *)DEFAULT_FONT) != OK)
5339 return;
5340 }
5341
5342 pango_context_list_families(
5343 gui.text_context,
5344 &font_families,
5345 &n_families);
5346
5347 for (int i = 0; i < n_families; i++)
5348 {
5349 if (!wide && !pango_font_family_is_monospace(font_families[i]))
5350 continue;
5351
5352 const char* fam_name = pango_font_family_get_name(font_families[i]);
5353 if (input_conv.vc_type != CONV_NONE)
5354 {
5355 char_u *buf = string_convert(&input_conv, (char_u*)fam_name, NULL);
5356 if (buf != NULL)
5357 {
5358 if (add_match(buf) != OK)
5359 {
5360 vim_free(buf);
5361 break;
5362 }
5363 vim_free(buf);
5364 }
5365 else
5366 break;
5367 }
5368 else
5369 {
5370 if (add_match((char_u *)fam_name) != OK)
5371 break;
5372 }
5373 }
5374
5375 g_free(font_families);
5376}
5377
5378/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005379 * Return the Pixel value (color) for the given color name.
5380 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 * Return INVALCOLOR for error.
5382 */
5383 guicolor_T
5384gui_mch_get_color(char_u *name)
5385{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005386 guicolor_T color = INVALCOLOR;
5387
Bram Moolenaar30613902019-12-01 22:11:18 +01005388 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005389 return color;
5390
5391 if (name != NULL)
5392 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393
Bram Moolenaar98921892016-02-23 17:14:37 +01005394#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005395 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005396#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005397 if (color == INVALCOLOR)
5398 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005400 return gui_mch_get_rgb_color(
5401 (color & 0xff0000) >> 16,
5402 (color & 0xff00) >> 8,
5403 color & 0xff);
5404#endif
5405}
5406
5407/*
5408 * Return the Pixel value (color) for the given RGB values.
5409 * Return INVALCOLOR for error.
5410 */
5411 guicolor_T
5412gui_mch_get_rgb_color(int r, int g, int b)
5413{
5414#if GTK_CHECK_VERSION(3,0,0)
5415 return gui_get_rgb_color_cmn(r, g, b);
5416#else
5417 GdkColor gcolor;
5418 int ret;
5419
5420 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5421 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5422 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423
Bram Moolenaar36edf062016-07-21 22:10:12 +02005424 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5425 &gcolor, FALSE, TRUE);
5426
5427 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5428#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429}
5430
5431/*
5432 * Set the current text foreground color.
5433 */
5434 void
5435gui_mch_set_fg_color(guicolor_T color)
5436{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005437#if GTK_CHECK_VERSION(3,0,0)
5438 *gui.fgcolor = color_to_rgba(color);
5439#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442}
5443
5444/*
5445 * Set the current text background color.
5446 */
5447 void
5448gui_mch_set_bg_color(guicolor_T color)
5449{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005450#if GTK_CHECK_VERSION(3,0,0)
5451 *gui.bgcolor = color_to_rgba(color);
5452#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455}
5456
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005457/*
5458 * Set the current text special color.
5459 */
5460 void
5461gui_mch_set_sp_color(guicolor_T color)
5462{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005463#if GTK_CHECK_VERSION(3,0,0)
5464 *gui.spcolor = color_to_rgba(color);
5465#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005466 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005467#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005468}
5469
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470/*
5471 * Function-like convenience macro for the sake of efficiency.
5472 */
5473#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5474 G_STMT_START{ \
5475 PangoAttribute *tmp_attr_; \
5476 tmp_attr_ = (Attribute); \
5477 tmp_attr_->start_index = (Start); \
5478 tmp_attr_->end_index = (End); \
5479 pango_attr_list_insert((AttrList), tmp_attr_); \
5480 }G_STMT_END
5481
5482 static void
5483apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5484{
5485 char_u *start = NULL;
5486 char_u *p;
5487 int uc;
5488
5489 for (p = s; p < s + len; p += utf_byte2len(*p))
5490 {
5491 uc = utf_ptr2char(p);
5492
5493 if (start == NULL)
5494 {
5495 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5496 start = p;
5497 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005498 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5500 {
5501 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5502 attr_list, start - s, p - s);
5503 start = NULL;
5504 }
5505 }
5506
5507 if (start != NULL)
5508 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5509 attr_list, start - s, len);
5510}
5511
5512 static int
5513count_cluster_cells(char_u *s, PangoItem *item,
5514 PangoGlyphString* glyphs, int i,
5515 int *cluster_width,
5516 int *last_glyph_rbearing)
5517{
5518 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005519 int next; // glyph start index of next cluster
5520 int start, end; // string segment of current cluster
5521 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 int uc;
5523 int cellcount = 0;
5524
5525 width = glyphs->glyphs[i].geometry.width;
5526
5527 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5528 {
5529 if (glyphs->glyphs[next].attr.is_cluster_start)
5530 break;
5531 else if (glyphs->glyphs[next].geometry.width > width)
5532 width = glyphs->glyphs[next].geometry.width;
5533 }
5534
5535 start = item->offset + glyphs->log_clusters[i];
5536 end = item->offset + ((next < glyphs->num_glyphs) ?
5537 glyphs->log_clusters[next] : item->length);
5538
5539 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5540 {
5541 uc = utf_ptr2char(p);
5542 if (uc < 0x80)
5543 ++cellcount;
5544 else if (!utf_iscomposing(uc))
5545 cellcount += utf_char2cells(uc);
5546 }
5547
5548 if (last_glyph_rbearing != NULL
5549 && cellcount > 0 && next == glyphs->num_glyphs)
5550 {
5551 PangoRectangle ink_rect;
5552 /*
5553 * If a certain combining mark had to be taken from a non-monospace
5554 * font, we have to compensate manually by adapting x_offset according
5555 * to the ink extents of the previous glyph.
5556 */
5557 pango_font_get_glyph_extents(item->analysis.font,
5558 glyphs->glyphs[i].glyph,
5559 &ink_rect, NULL);
5560
5561 if (PANGO_RBEARING(ink_rect) > 0)
5562 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5563 }
5564
5565 if (cellcount > 0)
5566 *cluster_width = width;
5567
5568 return cellcount;
5569}
5570
5571/*
5572 * If there are only combining characters in the cluster, we cannot just
5573 * change the width of the previous glyph since there is none. Therefore
5574 * some guesswork is needed.
5575 *
5576 * If ink_rect.x is negative Pango apparently has taken care of the composing
5577 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5578 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005579 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 *
5581 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5582 * the position of the previous glyph. Apparently this happens only with old
5583 * X fonts which don't provide the special combining information needed by
5584 * Pango.
5585 */
5586 static void
5587setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5588 int last_cellcount, int last_cluster_width,
5589 int last_glyph_rbearing)
5590{
5591 PangoRectangle ink_rect;
5592 PangoRectangle logical_rect;
5593 int width;
5594
5595 width = last_cellcount * gui.char_width * PANGO_SCALE;
5596 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5597 glyph->geometry.width = 0;
5598
5599 pango_font_get_glyph_extents(item->analysis.font,
5600 glyph->glyph,
5601 &ink_rect, &logical_rect);
5602 if (ink_rect.x < 0)
5603 {
5604 glyph->geometry.x_offset += last_glyph_rbearing;
5605 glyph->geometry.y_offset = logical_rect.height
5606 - (gui.char_height - p_linespace) * PANGO_SCALE;
5607 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005608 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005609 // If the accent width is smaller than the cluster width, position it
5610 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005611 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612}
5613
Bram Moolenaar98921892016-02-23 17:14:37 +01005614#if GTK_CHECK_VERSION(3,0,0)
5615 static void
5616draw_glyph_string(int row, int col, int num_cells, int flags,
5617 PangoFont *font, PangoGlyphString *glyphs,
5618 cairo_t *cr)
5619#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 static void
5621draw_glyph_string(int row, int col, int num_cells, int flags,
5622 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005623#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624{
5625 if (!(flags & DRAW_TRANSP))
5626 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005627#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005628 cairo_set_source_rgba(cr,
5629 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5630 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005631 cairo_rectangle(cr,
5632 FILL_X(col), FILL_Y(row),
5633 num_cells * gui.char_width, gui.char_height);
5634 cairo_fill(cr);
5635#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5637
5638 gdk_draw_rectangle(gui.drawarea->window,
5639 gui.text_gc,
5640 TRUE,
5641 FILL_X(col),
5642 FILL_Y(row),
5643 num_cells * gui.char_width,
5644 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 }
5647
Bram Moolenaar98921892016-02-23 17:14:37 +01005648#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005649 cairo_set_source_rgba(cr,
5650 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5651 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005652 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5653 pango_cairo_show_glyph_string(cr, font, glyphs);
5654#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5656
5657 gdk_draw_glyphs(gui.drawarea->window,
5658 gui.text_gc,
5659 font,
5660 TEXT_X(col),
5661 TEXT_Y(row),
5662 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664
Bram Moolenaar30613902019-12-01 22:11:18 +01005665 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005667#if GTK_CHECK_VERSION(3,0,0)
5668 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005669 cairo_set_source_rgba(cr,
5670 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5671 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005672 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5673 pango_cairo_show_glyph_string(cr, font, glyphs);
5674 }
5675#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 gdk_draw_glyphs(gui.drawarea->window,
5677 gui.text_gc,
5678 font,
5679 TEXT_X(col) + 1,
5680 TEXT_Y(row),
5681 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683}
5684
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005685/*
5686 * Draw underline and undercurl at the bottom of the character cell.
5687 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005688#if GTK_CHECK_VERSION(3,0,0)
5689 static void
5690draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5691#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005692 static void
5693draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005694#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005695{
5696 int i;
5697 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005698 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005699 int y = FILL_Y(row + 1) - 1;
5700
Bram Moolenaar30613902019-12-01 22:11:18 +01005701 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005702 if (flags & DRAW_UNDERC)
5703 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005704#if GTK_CHECK_VERSION(3,0,0)
5705 cairo_set_line_width(cr, 1.0);
5706 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005707 cairo_set_source_rgba(cr,
5708 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5709 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005710 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5711 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005712 {
5713 offset = val[i % 8];
5714 cairo_line_to(cr, i, y - offset + 0.5);
5715 }
5716 cairo_stroke(cr);
5717#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005718 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5719 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5720 {
5721 offset = val[i % 8];
5722 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5723 }
5724 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005725#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005726 }
5727
Bram Moolenaar30613902019-12-01 22:11:18 +01005728 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005729 if (flags & DRAW_STRIKE)
5730 {
5731#if GTK_CHECK_VERSION(3,0,0)
5732 cairo_set_line_width(cr, 1.0);
5733 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5734 cairo_set_source_rgba(cr,
5735 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5736 gui.spcolor->alpha);
5737 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5738 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5739 cairo_stroke(cr);
5740#else
5741 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5742 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5743 FILL_X(col), y + 1 - gui.char_height/2,
5744 FILL_X(col + cells), y + 1 - gui.char_height/2);
5745 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5746#endif
5747 }
5748
Bram Moolenaar30613902019-12-01 22:11:18 +01005749 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005750 if (flags & DRAW_UNDERL)
5751 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005752 // When p_linespace is 0, overwrite the bottom row of pixels.
5753 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005754 if (p_linespace > 1)
5755 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005756#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005757 cairo_set_line_width(cr, 1.0);
5758 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5759 cairo_set_source_rgba(cr,
5760 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5761 gui.fgcolor->alpha);
5762 cairo_move_to(cr, FILL_X(col), y + 0.5);
5763 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5764 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005765#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005766 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5767 FILL_X(col), y,
5768 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005769#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005770 }
5771}
5772
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 int
5774gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5775{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005776 char_u *conv_buf = NULL; // result of UTF-8 conversion
5777 char_u *new_conv_buf;
5778 int convlen;
5779 char_u *sp, *bp;
5780 int plen;
5781 int len_sum; // return value needs to add up since we are
5782 // printing substrings
5783 int byte_sum; // byte position in string
5784 char_u *cs; // current *s pointer
5785 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005786 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005787 int slen;
5788 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005789 int is_utf8;
5790 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791
Bram Moolenaar98921892016-02-23 17:14:37 +01005792 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 return len;
5794
5795 if (output_conv.vc_type != CONV_NONE)
5796 {
5797 /*
5798 * Convert characters from 'encoding' to 'termencoding', which is set
5799 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5800 * prohibits changing this to something else than UTF-8 if the GUI is
5801 * in use.
5802 */
5803 convlen = len;
5804 conv_buf = string_convert(&output_conv, s, &convlen);
5805 g_return_val_if_fail(conv_buf != NULL, len);
5806
Bram Moolenaar30613902019-12-01 22:11:18 +01005807 // Correct for differences in char width: some chars are
5808 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5809 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5811 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005812 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5814 {
5815 new_conv_buf = alloc(convlen + 2);
5816 if (new_conv_buf == NULL)
5817 return len;
5818 plen += bp - conv_buf;
5819 mch_memmove(new_conv_buf, conv_buf, plen);
5820 new_conv_buf[plen] = ' ';
5821 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5822 convlen - plen + 1);
5823 vim_free(conv_buf);
5824 conv_buf = new_conv_buf;
5825 ++convlen;
5826 bp = conv_buf + plen;
5827 plen = 1;
5828 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005829 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 bp += plen;
5831 }
5832 s = conv_buf;
5833 len = convlen;
5834 }
5835
5836 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005837 * Ligature support and complex utf-8 char optimization:
5838 * String received to output to screen can print using pre-cached glyphs
5839 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5840 * Since we receive mixed content string, split it into logical segments
dundargocc57b5bc2022-11-02 13:30:51 +00005841 * that are guaranteed to go through glyphs as much as possible. Since
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005842 * single ligature char prints as ascii, print it that way.
5843 */
5844 len_sum = 0; // return value needs to add up since we are printing
5845 // substrings
5846 byte_sum = 0;
5847 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005848 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5849 // Even if it is ligature char, two chars or more make ligature.
dundargocc57b5bc2022-11-02 13:30:51 +00005850 // Ascii followed by utf8 is also going through pango.
Dusan Popovic3c19b502021-11-20 22:03:30 +00005851 is_utf8 = (*cs & 0x80);
5852 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5853 if (is_ligature)
5854 is_ligature = gui.ligatures_map[*(cs + 1)];
5855 if (!is_utf8 && len > 1)
5856 is_utf8 = (*(cs + 1) & 0x80) != 0;
5857 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005858
5859 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5860 // print glyphs or use Pango
5861 while (cs < s + len)
5862 {
5863 slen = 0;
5864 while (slen < (len - byte_sum))
5865 {
5866 is_ligature = gui.ligatures_map[*(cs + slen)];
5867 // look ahead, single ligature char between ascii is ascii
5868 if (is_ligature && !needs_pango)
5869 {
5870 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005871 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005872 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005873 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005874 }
5875 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005876 // ascii followed by utf8 could be combining
dundargocc57b5bc2022-11-02 13:30:51 +00005877 // if so send it through pango
Dusan Popovic3c19b502021-11-20 22:03:30 +00005878 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5879 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005880 should_need_pango = (is_ligature || is_utf8);
5881 if (needs_pango != should_need_pango) // mode switch
5882 break;
5883 if (needs_pango)
5884 {
5885 if (is_ligature)
5886 {
5887 slen++; // ligature char by char
5888 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005889 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005890 {
5891 if ((*(cs + slen) & 0xC0) == 0x80)
5892 {
5893 // a continuation, find next 0xC0 != 0x80 but don't
5894 // include it
5895 while ((slen < (len - byte_sum))
5896 && ((*(cs + slen) & 0xC0) == 0x80))
5897 {
5898 slen++;
5899 }
5900 }
5901 else if ((*(cs + slen) & 0xE0) == 0xC0)
5902 {
5903 // + one byte utf8
5904 slen++;
5905 }
5906 else if ((*(cs + slen) & 0xF0) == 0xE0)
5907 {
5908 // + two bytes utf8
5909 slen += 2;
5910 }
5911 else if ((*(cs + slen) & 0xF8) == 0xF0)
5912 {
5913 // + three bytes utf8
5914 slen += 3;
5915 }
5916 else
5917 {
5918 // this should not happen, try moving forward, Pango
5919 // will catch it
5920 slen++;
5921 }
5922 }
5923 }
5924 else
5925 {
5926 slen++; // ascii
5927 }
5928 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005929
Bram Moolenaard68a0042021-10-20 23:08:11 +01005930 if (slen < len)
5931 {
5932 // temporarily zero terminate substring, print, restore char, wrap
5933 backup_ch = *(cs + slen);
5934 *(cs + slen) = NUL;
5935 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005936 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5937 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005938 if (slen < len)
5939 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005940 cs += slen;
5941 byte_sum += slen;
5942 needs_pango = should_need_pango;
5943 }
5944 vim_free(conv_buf);
5945 return len_sum;
5946}
5947
5948 int
5949gui_gtk2_draw_string_ext(
5950 int row,
5951 int col,
5952 char_u *s,
5953 int len,
5954 int flags,
5955 int force_pango)
5956{
5957 GdkRectangle area; // area for clip mask
5958 PangoGlyphString *glyphs; // glyphs of current item
5959 int column_offset = 0; // column offset in cells
5960 int i;
5961#if GTK_CHECK_VERSION(3,0,0)
5962 cairo_t *cr;
5963#endif
5964
5965 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 * Restrict all drawing to the current screen line in order to prevent
5967 * fuzzy font lookups from messing up the screen.
5968 */
5969 area.x = gui.border_offset;
5970 area.y = FILL_Y(row);
5971 area.width = gui.num_cols * gui.char_width;
5972 area.height = gui.char_height;
5973
Bram Moolenaar98921892016-02-23 17:14:37 +01005974#if GTK_CHECK_VERSION(3,0,0)
5975 cr = cairo_create(gui.surface);
5976 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5977 cairo_clip(cr);
5978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5980 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982
5983 glyphs = pango_glyph_string_new();
5984
5985 /*
5986 * Optimization hack: If possible, skip the itemize and shaping process
5987 * for pure ASCII strings. This optimization is particularly effective
5988 * because Vim draws space characters to clear parts of the screen.
5989 */
5990 if (!(flags & DRAW_ITALIC)
5991 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005992 && gui.ascii_glyphs != NULL
5993 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 {
5995 char_u *p;
5996
5997 for (p = s; p < s + len; ++p)
5998 if (*p & 0x80)
5999 goto not_ascii;
6000
6001 pango_glyph_string_set_size(glyphs, len);
6002
6003 for (i = 0; i < len; ++i)
6004 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006005 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006006 glyphs->log_clusters[i] = i;
6007 }
6008
Bram Moolenaar98921892016-02-23 17:14:37 +01006009#if GTK_CHECK_VERSION(3,0,0)
6010 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6011#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014
6015 column_offset = len;
6016 }
6017 else
6018not_ascii:
6019 {
6020 PangoAttrList *attr_list;
6021 GList *item_list;
6022 int cluster_width;
6023 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01006024 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025
Bram Moolenaar30613902019-12-01 22:11:18 +01006026 // Safety check: pango crashes when invoked with invalid utf-8
6027 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006028 if (!utf_valid_string(s, s + len))
6029 {
6030 column_offset = len;
6031 goto skipitall;
6032 }
6033
Bram Moolenaar30613902019-12-01 22:11:18 +01006034 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 cluster_width = PANGO_SCALE * gui.char_width;
6036
Bram Moolenaar30613902019-12-01 22:11:18 +01006037 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6039
6040 attr_list = pango_attr_list_new();
6041
Bram Moolenaar30613902019-12-01 22:11:18 +01006042 // If 'guifontwide' is set then use that for double-width characters.
6043 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044 if (gui.wide_font != NULL)
6045 apply_wide_font_attr(s, len, attr_list);
6046
6047 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6048 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6049 attr_list, 0, len);
6050 if (flags & DRAW_ITALIC)
6051 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6052 attr_list, 0, len);
6053 /*
6054 * Break the text into segments with consistent directional level
6055 * and shaping engine. Pure Latin text needs only a single segment,
6056 * so there's no need to worry about the loop's efficiency. Better
6057 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6058 */
6059 item_list = pango_itemize(gui.text_context,
6060 (const char *)s, 0, len, attr_list, NULL);
6061
6062 while (item_list != NULL)
6063 {
6064 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01006065 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066
6067 item = (PangoItem *)item_list->data;
6068 item_list = g_list_delete_link(item_list, item_list);
6069 /*
6070 * Increment the bidirectional embedding level by 1 if it is not
6071 * even. An odd number means the output will be RTL, but we don't
6072 * want that since Vim handles right-to-left text on its own. It
6073 * would probably be sufficient to just set level = 0, but you can
6074 * never know :)
6075 *
6076 * Unfortunately we can't take advantage of Pango's ability to
6077 * render both LTR and RTL at the same time. In order to support
6078 * that, Vim's main screen engine would have to make use of Pango
6079 * functionality.
6080 */
6081 item->analysis.level = (item->analysis.level + 1) & (~1U);
6082
Bram Moolenaar30613902019-12-01 22:11:18 +01006083 // HACK: Overrule the shape engine, we don't want shaping to be
6084 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 item->analysis.shape_engine = default_shape_engine;
6086
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006087#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006088 pango_shape_full((const char *)s + item->offset, item->length,
6089 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006090#else
6091 pango_shape((const char *)s + item->offset, item->length,
6092 &item->analysis, glyphs);
6093#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 /*
6095 * Fixed-width hack: iterate over the array and assign a fixed
6096 * width to each glyph, thus overriding the choice made by the
6097 * shaping engine. We use utf_char2cells() to determine the
6098 * number of cells needed.
6099 *
6100 * Also perform all kind of dark magic to get composing
6101 * characters right (and pretty too of course).
6102 */
6103 for (i = 0; i < glyphs->num_glyphs; ++i)
6104 {
6105 PangoGlyphInfo *glyph;
6106
6107 glyph = &glyphs->glyphs[i];
6108
6109 if (glyph->attr.is_cluster_start)
6110 {
6111 int cellcount;
6112
6113 cellcount = count_cluster_cells(
6114 s, item, glyphs, i, &cluster_width,
6115 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6116
6117 if (cellcount > 0)
6118 {
6119 int width;
6120
6121 width = cellcount * gui.char_width * PANGO_SCALE;
6122 glyph->geometry.x_offset +=
6123 MAX(0, width - cluster_width) / 2;
6124 glyph->geometry.width = width;
6125 }
6126 else
6127 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006128 // If there are only combining characters in the
6129 // cluster, we cannot just change the width of the
6130 // previous glyph since there is none. Therefore
6131 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 setup_zero_width_cluster(item, glyph, cells,
6133 cluster_width,
6134 last_glyph_rbearing);
6135 }
6136
6137 item_cells += cellcount;
6138 cells = cellcount;
6139 }
6140 else if (i > 0)
6141 {
6142 int width;
6143
Bram Moolenaar30613902019-12-01 22:11:18 +01006144 // There is a previous glyph, so we deal with combining
6145 // characters the canonical way.
6146 // In some circumstances Pango uses a positive x_offset,
6147 // then use the width of the previous glyph for this one
6148 // and set the previous width to zero.
6149 // Otherwise we get a negative x_offset, Pango has already
6150 // positioned the combining char, keep the widths as they
6151 // are.
6152 // For both adjust the x_offset to position the glyph in
6153 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006154 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006155 {
6156 glyphs->glyphs[i].geometry.width =
6157 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006158 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 width = cells * gui.char_width * PANGO_SCALE;
6161 glyph->geometry.x_offset +=
6162 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006164 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 {
6166 glyph->geometry.width = 0;
6167 }
6168 }
6169
Bram Moolenaar30613902019-12-01 22:11:18 +01006170 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01006171#if GTK_CHECK_VERSION(3,0,0)
6172 draw_glyph_string(row, col + column_offset, item_cells,
6173 flags, item->analysis.font, glyphs,
6174 cr);
6175#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 draw_glyph_string(row, col + column_offset, item_cells,
6177 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179
6180 pango_item_free(item);
6181
6182 column_offset += item_cells;
6183 }
6184
6185 pango_attr_list_unref(attr_list);
6186 }
6187
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006188skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01006189 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01006190#if GTK_CHECK_VERSION(3,0,0)
6191 draw_under(flags, row, col, column_offset, cr);
6192#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006193 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195
6196 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197
Bram Moolenaar98921892016-02-23 17:14:37 +01006198#if GTK_CHECK_VERSION(3,0,0)
6199 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00006200 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
6201 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006202#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206 return column_offset;
6207}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208
6209/*
6210 * Return OK if the key with the termcap name "name" is supported.
6211 */
6212 int
6213gui_mch_haskey(char_u *name)
6214{
6215 int i;
6216
6217 for (i = 0; special_keys[i].key_sym != 0; i++)
6218 if (name[0] == special_keys[i].code0
6219 && name[1] == special_keys[i].code1)
6220 return OK;
6221 return FAIL;
6222}
6223
rbtnnb850c392022-10-01 15:47:04 +01006224#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225/*
6226 * Return the text window-id and display. Only required for X-based GUI's
6227 */
6228 int
6229gui_get_x11_windis(Window *win, Display **dis)
6230{
Bram Moolenaar98921892016-02-23 17:14:37 +01006231 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006233 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6234 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235 return OK;
6236 }
6237
6238 *dis = NULL;
6239 *win = 0;
6240 return FAIL;
6241}
6242#endif
6243
6244#if defined(FEAT_CLIENTSERVER) \
6245 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6246
6247 Display *
6248gui_mch_get_display(void)
6249{
Bram Moolenaar98921892016-02-23 17:14:37 +01006250 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6251 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 else
6253 return NULL;
6254}
6255#endif
6256
6257 void
6258gui_mch_beep(void)
6259{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 GdkDisplay *display;
6261
Bram Moolenaar98921892016-02-23 17:14:37 +01006262 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 display = gtk_widget_get_display(gui.mainwin);
6264 else
6265 display = gdk_display_get_default();
6266
6267 if (display != NULL)
6268 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269}
6270
6271 void
6272gui_mch_flash(int msec)
6273{
Bram Moolenaar98921892016-02-23 17:14:37 +01006274#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006275 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006276 (void)msec;
6277#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 GdkGCValues values;
6279 GdkGC *invert_gc;
6280
6281 if (gui.drawarea->window == NULL)
6282 return;
6283
6284 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6285 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6286 values.function = GDK_XOR;
6287 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6288 &values,
6289 GDK_GC_FOREGROUND |
6290 GDK_GC_BACKGROUND |
6291 GDK_GC_FUNCTION);
6292 gdk_gc_set_exposures(invert_gc,
6293 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6294 /*
6295 * Do a visual beep by changing back and forth in some undetermined way,
6296 * the foreground and background colors. This is due to the fact that
6297 * there can't be really any prediction about the effects of XOR on
6298 * arbitrary X11 servers. However this seems to be enough for what we
6299 * intend it to do.
6300 */
6301 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6302 TRUE,
6303 0, 0,
6304 FILL_X((int)Columns) + gui.border_offset,
6305 FILL_Y((int)Rows) + gui.border_offset);
6306
6307 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006308 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309
6310 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6311 TRUE,
6312 0, 0,
6313 FILL_X((int)Columns) + gui.border_offset,
6314 FILL_Y((int)Rows) + gui.border_offset);
6315
6316 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318}
6319
6320/*
6321 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6322 */
6323 void
6324gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6325{
Bram Moolenaar98921892016-02-23 17:14:37 +01006326#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006327 const GdkRectangle rect = {
6328 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6329 };
6330 cairo_t * const cr = cairo_create(gui.surface);
6331
Your Name810cb5a2022-09-13 11:25:54 +01006332 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006333# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6334 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6335# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006336 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006337# endif
presuku9459b8d2021-11-16 20:03:56 +00006338 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006339 cairo_fill(cr);
6340
6341 cairo_destroy(cr);
6342
presuku9459b8d2021-11-16 20:03:56 +00006343 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6344 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006345#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 GdkGCValues values;
6347 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348
6349 if (gui.drawarea->window == NULL)
6350 return;
6351
Your Name810cb5a2022-09-13 11:25:54 +01006352 values.function = GDK_INVERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6354 &values,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006356 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6357 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6359 TRUE,
6360 FILL_X(c), FILL_Y(r),
6361 (nc) * gui.char_width, (nr) * gui.char_height);
6362 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364}
6365
6366/*
6367 * Iconify the GUI window.
6368 */
6369 void
6370gui_mch_iconify(void)
6371{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373}
6374
6375#if defined(FEAT_EVAL) || defined(PROTO)
6376/*
6377 * Bring the Vim window to the foreground.
6378 */
6379 void
6380gui_mch_set_foreground(void)
6381{
Bram Moolenaar023930d2022-12-01 19:40:55 +00006382 // Just calling gtk_window_present() used to work in the past, but now this
6383 // sequence appears to be needed:
6384 // - Show the window on top of others.
6385 // - Present the window (also shows it above others).
6386 // - Do not the window on top of others (otherwise it would be stuck there).
6387 gtk_window_set_keep_above(GTK_WINDOW(gui.mainwin), TRUE);
6388 gui_may_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar023930d2022-12-01 19:40:55 +00006390 gui_may_flush();
6391 gtk_window_set_keep_above(GTK_WINDOW(gui.mainwin), FALSE);
6392 gui_may_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393}
6394#endif
6395
6396/*
6397 * Draw a cursor without focus.
6398 */
6399 void
6400gui_mch_draw_hollow_cursor(guicolor_T color)
6401{
6402 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006403#if GTK_CHECK_VERSION(3,0,0)
6404 cairo_t *cr;
6405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406
Bram Moolenaar98921892016-02-23 17:14:37 +01006407 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 return;
6409
Bram Moolenaar98921892016-02-23 17:14:37 +01006410#if GTK_CHECK_VERSION(3,0,0)
6411 cr = cairo_create(gui.surface);
6412#endif
6413
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 gui_mch_set_fg_color(color);
6415
Bram Moolenaar98921892016-02-23 17:14:37 +01006416#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006417 cairo_set_source_rgba(cr,
6418 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6419 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006420#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006422#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 if (mb_lefthalve(gui.row, gui.col))
6424 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006425#if GTK_CHECK_VERSION(3,0,0)
6426 cairo_set_line_width(cr, 1.0);
6427 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6428 cairo_rectangle(cr,
6429 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6430 i * gui.char_width - 1, gui.char_height - 1);
6431 cairo_stroke(cr);
6432 cairo_destroy(cr);
6433#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6435 FALSE,
6436 FILL_X(gui.col), FILL_Y(gui.row),
6437 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439}
6440
6441/*
6442 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6443 * color "color".
6444 */
6445 void
6446gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6447{
Bram Moolenaar98921892016-02-23 17:14:37 +01006448 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 return;
6450
6451 gui_mch_set_fg_color(color);
6452
Bram Moolenaar98921892016-02-23 17:14:37 +01006453#if GTK_CHECK_VERSION(3,0,0)
6454 {
6455 cairo_t *cr;
6456
6457 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006458 cairo_set_source_rgba(cr,
6459 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6460 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006461 cairo_rectangle(cr,
6462# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006463 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006464 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6465# endif
6466 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6467 w, h);
6468 cairo_fill(cr);
6469 cairo_destroy(cr);
6470 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006471#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6473 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6474 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006475# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006476 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 FILL_X(gui.col),
6480 FILL_Y(gui.row) + gui.char_height - h,
6481 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006482#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483}
6484
6485
6486/*
6487 * Catch up with any queued X11 events. This may put keyboard input into the
6488 * input buffer, call resize call-backs, trigger timers etc. If there is
6489 * nothing in the X11 event queue (& no timers pending), then we return
6490 * immediately.
6491 */
6492 void
6493gui_mch_update(void)
6494{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006495 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6496 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497}
6498
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006499 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500input_timer_cb(gpointer data)
6501{
6502 int *timed_out = (int *) data;
6503
Bram Moolenaar30613902019-12-01 22:11:18 +01006504 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 *timed_out = TRUE;
6506
Bram Moolenaar30613902019-12-01 22:11:18 +01006507 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508}
6509
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006510#ifdef FEAT_JOB_CHANNEL
6511 static timeout_cb_type
6512channel_poll_cb(gpointer data UNUSED)
6513{
Bram Moolenaar30613902019-12-01 22:11:18 +01006514 // Using an event handler for a channel that may be disconnected does
6515 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006516 channel_handle_events(TRUE);
6517 parse_queued_messages();
6518
Bram Moolenaar30613902019-12-01 22:11:18 +01006519 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006520}
6521#endif
6522
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523/*
6524 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6525 * from the keyboard.
6526 * wtime == -1 Wait forever.
6527 * wtime == 0 This should never happen.
6528 * wtime > 0 Wait wtime milliseconds for a character.
6529 * Returns OK if a character was found to be available within the given time,
6530 * or FAIL otherwise.
6531 */
6532 int
6533gui_mch_wait_for_chars(long wtime)
6534{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006535 int focus;
6536 guint timer;
6537 static int timed_out;
6538 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006539#ifdef FEAT_JOB_CHANNEL
6540 guint channel_timer = 0;
6541#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542
6543 timed_out = FALSE;
6544
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006545 // This timeout makes sure that we will return if no characters arrived in
6546 // time. If "wtime" is zero just use one.
6547 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006548 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006549 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550 else
6551 timer = 0;
6552
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006553#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006554 // If there is a channel with the keep_open flag we need to poll for input
6555 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006556 if (channel_any_keep_open())
6557 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6558#endif
6559
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560 focus = gui.in_focus;
6561
6562 do
6563 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006564 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565 if (gui.in_focus != focus)
6566 {
6567 if (gui.in_focus)
6568 gui_mch_start_blink();
6569 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006570 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 focus = gui.in_focus;
6572 }
6573
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006574#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006575# ifdef FEAT_TIMERS
6576 did_add_timer = FALSE;
6577# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006578 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006579# ifdef FEAT_TIMERS
6580 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006581 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006582 goto theend;
6583# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006584#endif
6585
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 /*
6587 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006588 * Skip this if input is available anyway (can happen in rare
6589 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006591 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006592 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593
Bram Moolenaar30613902019-12-01 22:11:18 +01006594 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595 if (input_available())
6596 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006597 retval = OK;
6598 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 }
6600 } while (wtime < 0 || !timed_out);
6601
6602 /*
6603 * Flush all eventually pending (drawing) events.
6604 */
6605 gui_mch_update();
6606
Bram Moolenaar4231da42016-06-02 14:30:04 +02006607theend:
6608 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006609 timeout_remove(timer);
6610#ifdef FEAT_JOB_CHANNEL
6611 if (channel_timer != 0)
6612 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006613#endif
6614
6615 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616}
6617
6618
Bram Moolenaar30613902019-12-01 22:11:18 +01006619/////////////////////////////////////////////////////////////////////////////
6620// Output drawing routines.
6621//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622
6623
Bram Moolenaar30613902019-12-01 22:11:18 +01006624// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 void
6626gui_mch_flush(void)
6627{
Bram Moolenaar98921892016-02-23 17:14:37 +01006628 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006629#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006630 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006631#else
6632 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6633#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634}
6635
6636/*
6637 * Clear a rectangular region of the screen from text pos (row1, col1) to
6638 * (row2, col2) inclusive.
6639 */
6640 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006641gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006643
6644 int col1 = check_col(col1arg);
6645 int col2 = check_col(col2arg);
6646 int row1 = check_row(row1arg);
6647 int row2 = check_row(row2arg);
6648
Bram Moolenaar98921892016-02-23 17:14:37 +01006649#if GTK_CHECK_VERSION(3,0,0)
6650 if (gtk_widget_get_window(gui.drawarea) == NULL)
6651 return;
6652#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653 GdkColor color;
6654
6655 if (gui.drawarea->window == NULL)
6656 return;
6657
6658 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660
Bram Moolenaar98921892016-02-23 17:14:37 +01006661#if GTK_CHECK_VERSION(3,0,0)
6662 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006663 // Add one pixel to the far right column in case a double-stroked
6664 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006665 const GdkRectangle rect = {
6666 FILL_X(col1), FILL_Y(row1),
6667 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6668 (row2 - row1 + 1) * gui.char_height
6669 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006670 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006671# if GTK_CHECK_VERSION(3,22,2)
6672 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6673# else
presuku9459b8d2021-11-16 20:03:56 +00006674 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006675 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6676 if (pat != NULL)
6677 cairo_set_source(cr, pat);
6678 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006679 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006680# endif
presuku9459b8d2021-11-16 20:03:56 +00006681 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006682 cairo_fill(cr);
6683 cairo_destroy(cr);
6684
presuku9459b8d2021-11-16 20:03:56 +00006685 gtk_widget_queue_draw_area(gui.drawarea,
6686 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006687 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006688#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689 gdk_gc_set_foreground(gui.text_gc, &color);
6690
Bram Moolenaar30613902019-12-01 22:11:18 +01006691 // Clear one extra pixel at the far right, for when bold characters have
6692 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006693 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6694 FILL_X(col1), FILL_Y(row1),
6695 (col2 - col1 + 1) * gui.char_width
6696 + (col2 == Columns - 1),
6697 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006698#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699}
6700
Bram Moolenaar98921892016-02-23 17:14:37 +01006701#if GTK_CHECK_VERSION(3,0,0)
6702 static void
6703gui_gtk_window_clear(GdkWindow *win)
6704{
6705 const GdkRectangle rect = {
6706 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6707 };
6708 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006709# if GTK_CHECK_VERSION(3,22,2)
6710 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6711# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006712 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6713 if (pat != NULL)
6714 cairo_set_source(cr, pat);
6715 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006716 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006717# endif
presuku9459b8d2021-11-16 20:03:56 +00006718 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006719 cairo_fill(cr);
6720 cairo_destroy(cr);
6721
presuku9459b8d2021-11-16 20:03:56 +00006722 gtk_widget_queue_draw_area(gui.drawarea,
6723 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006724}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006725#else
6726# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006727#endif
6728
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 void
6730gui_mch_clear_all(void)
6731{
Bram Moolenaar98921892016-02-23 17:14:37 +01006732 if (gtk_widget_get_window(gui.drawarea) != NULL)
6733 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734}
6735
Bram Moolenaar98921892016-02-23 17:14:37 +01006736#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737/*
6738 * Redraw any text revealed by scrolling up/down.
6739 */
6740 static void
6741check_copy_area(void)
6742{
6743 GdkEvent *event;
6744 int expose_count;
6745
6746 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6747 return;
6748
Bram Moolenaar30613902019-12-01 22:11:18 +01006749 // Avoid redrawing the cursor while scrolling or it'll end up where
6750 // we don't want it to be. I'm not sure if it's correct to call
6751 // gui_dont_update_cursor() at this point but it works as a quick
6752 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006753 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754
6755 do
6756 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006757 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6759
6760 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006761 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762
6763 gui_redraw(event->expose.area.x, event->expose.area.y,
6764 event->expose.area.width, event->expose.area.height);
6765
6766 expose_count = event->expose.count;
6767 gdk_event_free(event);
6768 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006769 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770
6771 gui_can_update_cursor();
6772}
Bram Moolenaar30613902019-12-01 22:11:18 +01006773#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006774
6775#if GTK_CHECK_VERSION(3,0,0)
6776 static void
6777gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6778 int src_x, int src_y,
6779 int width, int height)
6780{
6781 cairo_t * const cr = cairo_create(gui.surface);
6782
6783 cairo_rectangle(cr, dest_x, dest_y, width, height);
6784 cairo_clip(cr);
6785 cairo_push_group(cr);
6786 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6787 cairo_paint(cr);
6788 cairo_pop_group_to_source(cr);
6789 cairo_paint(cr);
6790
6791 cairo_destroy(cr);
6792}
6793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794
6795/*
6796 * Delete the given number of lines from the given row, scrolling up any
6797 * text further down within the scroll region.
6798 */
6799 void
6800gui_mch_delete_lines(int row, int num_lines)
6801{
Bram Moolenaar98921892016-02-23 17:14:37 +01006802#if GTK_CHECK_VERSION(3,0,0)
6803 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6804 const int nrows = gui.scroll_region_bot - row + 1;
6805 const int src_nrows = nrows - num_lines;
6806
6807 gui_gtk_surface_copy_rect(
6808 FILL_X(gui.scroll_region_left), FILL_Y(row),
6809 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6810 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6811 gui_clear_block(
6812 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6813 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006814 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006815 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006816 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006817#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006819 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820
6821 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6822 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6823
Bram Moolenaar30613902019-12-01 22:11:18 +01006824 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6826 FILL_X(gui.scroll_region_left), FILL_Y(row),
6827 gui.drawarea->window,
6828 FILL_X(gui.scroll_region_left),
6829 FILL_Y(row + num_lines),
6830 gui.char_width * (gui.scroll_region_right
6831 - gui.scroll_region_left + 1) + 1,
6832 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6833
6834 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6835 gui.scroll_region_left,
6836 gui.scroll_region_bot, gui.scroll_region_right);
6837 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006838#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839}
6840
6841/*
6842 * Insert the given number of lines before the given row, scrolling down any
6843 * following text within the scroll region.
6844 */
6845 void
6846gui_mch_insert_lines(int row, int num_lines)
6847{
Bram Moolenaar98921892016-02-23 17:14:37 +01006848#if GTK_CHECK_VERSION(3,0,0)
6849 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6850 const int nrows = gui.scroll_region_bot - row + 1;
6851 const int src_nrows = nrows - num_lines;
6852
6853 gui_gtk_surface_copy_rect(
6854 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6855 FILL_X(gui.scroll_region_left), FILL_Y(row),
6856 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006857 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006858 row, gui.scroll_region_left,
6859 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006860 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006861 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006862 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006863#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006865 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866
6867 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6868 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6869
Bram Moolenaar30613902019-12-01 22:11:18 +01006870 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6872 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6873 gui.drawarea->window,
6874 FILL_X(gui.scroll_region_left), FILL_Y(row),
6875 gui.char_width * (gui.scroll_region_right
6876 - gui.scroll_region_left + 1) + 1,
6877 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6878
6879 gui_clear_block(row, gui.scroll_region_left,
6880 row + num_lines - 1, gui.scroll_region_right);
6881 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006882#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883}
6884
6885/*
6886 * X Selection stuff, for cutting and pasting text to other windows.
6887 */
6888 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006889clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890{
6891 GdkAtom target;
6892 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006893 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894
6895 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6896 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006897 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6898 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 received_selection = RS_NONE;
6900 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6901
6902 gtk_selection_convert(gui.drawarea,
6903 cbd->gtk_sel_atom, target,
6904 (guint32)GDK_CURRENT_TIME);
6905
Bram Moolenaar30613902019-12-01 22:11:18 +01006906 // Hack: Wait up to three seconds for the selection. A hang was
6907 // noticed here when using the netrw plugin combined with ":gui"
6908 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006909 start = time(NULL);
6910 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006911 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912
6913 if (received_selection != RS_FAIL)
6914 return;
6915 }
6916
Bram Moolenaar30613902019-12-01 22:11:18 +01006917 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006918 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6919 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920}
6921
6922/*
6923 * Disown the selection.
6924 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006926clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00006928 if (in_selection_clear_event)
6929 return;
6930
6931 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6932 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933}
6934
6935/*
6936 * Own the selection and return OK if it worked.
6937 */
6938 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006939clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940{
6941 int success;
6942
6943 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006944 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945 gui_mch_update();
6946 return (success) ? OK : FAIL;
6947}
6948
6949/*
6950 * Send the current selection to the clipboard. Do nothing for X because we
6951 * will fill in the selection only when requested by another app.
6952 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006954clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955{
6956}
6957
Bram Moolenaar113e1072019-01-20 15:30:40 +01006958#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006959 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006960clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006961{
6962 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6963}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006964#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006965
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966
6967#if defined(FEAT_MENU) || defined(PROTO)
6968/*
6969 * Make a menu item appear either active or not active (grey or not grey).
6970 */
6971 void
6972gui_mch_menu_grey(vimmenu_T *menu, int grey)
6973{
6974 if (menu->id == NULL)
6975 return;
6976
6977 if (menu_is_separator(menu->name))
6978 grey = TRUE;
6979
6980 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006981 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006982 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983 {
6984 gtk_widget_set_sensitive(menu->id, !grey);
6985 gui_mch_update();
6986 }
6987}
6988
6989/*
6990 * Make menu item hidden or not hidden.
6991 */
6992 void
6993gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6994{
6995 if (menu->id == 0)
6996 return;
6997
6998 if (hidden)
6999 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007000 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 {
7002 gtk_widget_hide(menu->id);
7003 gui_mch_update();
7004 }
7005 }
7006 else
7007 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007008 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 {
7010 gtk_widget_show(menu->id);
7011 gui_mch_update();
7012 }
7013 }
7014}
7015
7016/*
7017 * This is called after setting all the menus to grey/hidden or not.
7018 */
7019 void
7020gui_mch_draw_menubar(void)
7021{
Bram Moolenaar30613902019-12-01 22:11:18 +01007022 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 gui_mch_update();
7024}
Bram Moolenaar30613902019-12-01 22:11:18 +01007025#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026
7027/*
7028 * Scrollbar stuff.
7029 */
7030 void
7031gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7032{
7033 if (sb->id == NULL)
7034 return;
7035
Bram Moolenaar98921892016-02-23 17:14:37 +01007036 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007037 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038}
7039
7040
7041/*
7042 * Return the RGB value of a pixel as long.
7043 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007044 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045gui_mch_get_rgb(guicolor_T pixel)
7046{
Bram Moolenaar98921892016-02-23 17:14:37 +01007047#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007048 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007049#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007050 GdkColor color;
7051
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7053 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007055 return (guicolor_T)(
7056 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007058 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007059#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060}
7061
7062/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007063 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007065 void
7066gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067{
Bram Moolenaar98921892016-02-23 17:14:37 +01007068 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069}
7070
7071 void
7072gui_mch_setmouse(int x, int y)
7073{
Bram Moolenaar30613902019-12-01 22:11:18 +01007074 // Sorry for the Xlib call, but we can't avoid it, since there is no
7075 // internal GDK mechanism present to accomplish this. (and for good
7076 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01007077 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7078 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7079 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080}
7081
7082
7083#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01007084// The last set mouse pointer shape is remembered, to be used when it goes
7085// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086static int last_shape = 0;
7087#endif
7088
7089/*
7090 * Use the blank mouse pointer or not.
7091 *
7092 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7093 */
7094 void
7095gui_mch_mousehide(int hide)
7096{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007097 if (gui.pointer_hidden == hide)
7098 return;
7099
7100 gui.pointer_hidden = hide;
7101 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007103 if (hide)
7104 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7105 gui.blank_pointer);
7106 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107#ifdef FEAT_MOUSESHAPE
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007108 mch_set_mouse_shape(last_shape);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109#else
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007110 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 }
7113}
7114
7115#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7116
Bram Moolenaar30613902019-12-01 22:11:18 +01007117// Table for shape IDs. Keep in sync with the mshape_names[] table in
7118// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119static const int mshape_ids[] =
7120{
Bram Moolenaar30613902019-12-01 22:11:18 +01007121 GDK_LEFT_PTR, // arrow
7122 GDK_CURSOR_IS_PIXMAP, // blank
7123 GDK_XTERM, // beam
7124 GDK_SB_V_DOUBLE_ARROW, // updown
7125 GDK_SIZING, // udsizing
7126 GDK_SB_H_DOUBLE_ARROW, // leftright
7127 GDK_SIZING, // lrsizing
7128 GDK_WATCH, // busy
7129 GDK_X_CURSOR, // no
7130 GDK_CROSSHAIR, // crosshair
7131 GDK_HAND1, // hand1
7132 GDK_HAND2, // hand2
7133 GDK_PENCIL, // pencil
7134 GDK_QUESTION_ARROW, // question
7135 GDK_RIGHT_PTR, // right-arrow
7136 GDK_CENTER_PTR, // up-arrow
7137 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138};
7139
7140 void
7141mch_set_mouse_shape(int shape)
7142{
7143 int id;
7144 GdkCursor *c;
7145
Bram Moolenaar98921892016-02-23 17:14:37 +01007146 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 return;
7148
7149 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007150 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7151 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 else
7153 {
7154 if (shape >= MSHAPE_NUMBERED)
7155 {
7156 id = shape - MSHAPE_NUMBERED;
7157 if (id >= GDK_LAST_CURSOR)
7158 id = GDK_LEFT_PTR;
7159 else
Bram Moolenaar30613902019-12-01 22:11:18 +01007160 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 }
K.Takataeeec2542021-06-02 13:28:16 +02007162 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007164 else
7165 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007167 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007168 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007169# if GTK_CHECK_VERSION(3,0,0)
7170 g_object_unref(G_OBJECT(c));
7171# else
Bram Moolenaar30613902019-12-01 22:11:18 +01007172 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01007173# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174 }
7175 if (shape != MSHAPE_HIDE)
7176 last_shape = shape;
7177}
Bram Moolenaar30613902019-12-01 22:11:18 +01007178#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179
7180
7181#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7182/*
7183 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7184 * scaled down if the current font is not big enough, or scaled up if the image
7185 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7186 * will be cut off if the current font is not big enough, or centered if it's
7187 * too small.
7188 */
7189# define SIGN_WIDTH (2 * gui.char_width)
7190# define SIGN_HEIGHT (gui.char_height)
7191# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7192
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 void
7194gui_mch_drawsign(int row, int col, int typenr)
7195{
7196 GdkPixbuf *sign;
7197
7198 sign = (GdkPixbuf *)sign_get_image(typenr);
7199
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007200 if (sign == NULL || gui.drawarea == NULL
7201 || gtk_widget_get_window(gui.drawarea) == NULL)
7202 return;
7203
7204 int width;
7205 int height;
7206 int xoffset;
7207 int yoffset;
7208 int need_scale;
7209
7210 width = gdk_pixbuf_get_width(sign);
7211 height = gdk_pixbuf_get_height(sign);
7212 /*
7213 * Decide whether we need to scale. Allow one pixel of border
7214 * width to be cut off, in order to avoid excessive scaling for
7215 * tiny differences in font size.
7216 * Do scale to fit the height to avoid gaps because of linespacing.
7217 */
7218 need_scale = (width > SIGN_WIDTH + 2
7219 || height != SIGN_HEIGHT
7220 || (width < 3 * SIGN_WIDTH / 4
7221 && height < 3 * SIGN_HEIGHT / 4));
7222 if (need_scale)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007224 double aspect;
7225 int w = width;
7226 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007228 // Keep the original aspect ratio
7229 aspect = (double)height / (double)width;
7230 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7231 width = MIN(width, SIGN_WIDTH);
7232 if (((double)(MAX(height, SIGN_HEIGHT)) /
7233 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007235 // Change the aspect ratio by at most 15% to fill the
7236 // available space completely.
7237 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7238 height = MIN(height, SIGN_HEIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 }
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007240 else
7241 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007243 if (w == width && h == height)
7244 {
7245 // no change in dimensions; don't decrease reference counter
7246 // (below)
7247 need_scale = FALSE;
7248 }
7249 else
7250 {
7251 // This doesn't seem to be worth caching, and doing so would
7252 // complicate the code quite a bit.
7253 sign = gdk_pixbuf_scale_simple(sign, width, height,
7254 GDK_INTERP_BILINEAR);
7255 if (sign == NULL)
7256 return; // out of memory
7257 }
7258 }
7259
7260 // The origin is the upper-left corner of the pixmap. Therefore
7261 // these offset may become negative if the pixmap is smaller than
7262 // the 2x1 cells reserved for the sign icon.
7263 xoffset = (width - SIGN_WIDTH) / 2;
7264 yoffset = (height - SIGN_HEIGHT) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265
Bram Moolenaar98921892016-02-23 17:14:37 +01007266# if GTK_CHECK_VERSION(3,0,0)
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007267 {
7268 cairo_t *cr;
7269 cairo_surface_t *bg_surf;
7270 cairo_t *bg_cr;
7271 cairo_surface_t *sign_surf;
7272 cairo_t *sign_cr;
Bram Moolenaar98921892016-02-23 17:14:37 +01007273
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007274 cr = cairo_create(gui.surface);
Bram Moolenaar98921892016-02-23 17:14:37 +01007275
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007276 bg_surf = cairo_surface_create_similar(gui.surface,
7277 cairo_surface_get_content(gui.surface),
7278 SIGN_WIDTH, SIGN_HEIGHT);
7279 bg_cr = cairo_create(bg_surf);
7280 cairo_set_source_rgba(bg_cr,
7281 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7282 gui.bgcolor->alpha);
7283 cairo_paint(bg_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007284
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007285 sign_surf = cairo_surface_create_similar(gui.surface,
7286 cairo_surface_get_content(gui.surface),
7287 SIGN_WIDTH, SIGN_HEIGHT);
7288 sign_cr = cairo_create(sign_surf);
7289 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7290 cairo_paint(sign_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007291
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007292 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7293 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7294 cairo_paint(sign_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007295
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007296 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7297 cairo_paint(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007298
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007299 cairo_destroy(sign_cr);
7300 cairo_surface_destroy(sign_surf);
7301 cairo_destroy(bg_cr);
7302 cairo_surface_destroy(bg_surf);
7303 cairo_destroy(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007304
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007305 gtk_widget_queue_draw_area(gui.drawarea,
7306 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007307
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308 }
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007309# else // !GTK_CHECK_VERSION(3,0,0)
7310 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7311
7312 gdk_draw_rectangle(gui.drawarea->window,
7313 gui.text_gc,
7314 TRUE,
7315 FILL_X(col),
7316 FILL_Y(row),
7317 SIGN_WIDTH,
7318 SIGN_HEIGHT);
7319
7320 gdk_pixbuf_render_to_drawable_alpha(sign,
7321 gui.drawarea->window,
7322 MAX(0, xoffset),
7323 MAX(0, yoffset),
7324 FILL_X(col) - MIN(0, xoffset),
7325 FILL_Y(row) - MIN(0, yoffset),
7326 MIN(width, SIGN_WIDTH),
7327 MIN(height, SIGN_HEIGHT),
7328 GDK_PIXBUF_ALPHA_BILEVEL,
7329 127,
7330 GDK_RGB_DITHER_NORMAL,
7331 0, 0);
7332# endif // !GTK_CHECK_VERSION(3,0,0)
7333 if (need_scale)
7334 g_object_unref(sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335}
7336
7337 void *
7338gui_mch_register_sign(char_u *signfile)
7339{
7340 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7341 {
7342 GdkPixbuf *sign;
7343 GError *error = NULL;
7344 char_u *message;
7345
7346 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7347
7348 if (error == NULL)
7349 return sign;
7350
7351 message = (char_u *)error->message;
7352
7353 if (message != NULL && input_conv.vc_type != CONV_NONE)
7354 message = string_convert(&input_conv, message, NULL);
7355
7356 if (message != NULL)
7357 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007358 // The error message is already translated and will be more
7359 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007360 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361
7362 if (input_conv.vc_type != CONV_NONE)
7363 vim_free(message);
7364 }
7365 g_error_free(error);
7366 }
7367
7368 return NULL;
7369}
7370
7371 void
7372gui_mch_destroy_sign(void *sign)
7373{
7374 if (sign != NULL)
7375 g_object_unref(sign);
7376}
7377
Bram Moolenaar30613902019-12-01 22:11:18 +01007378#endif // FEAT_SIGN_ICONS