blob: 1f8b2ebcc76afd255a27a358dafc05776ca3469b [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)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001122 if (state & GDK_SUPER_MASK)
1123 modifiers |= MOD_MASK_META;
1124#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001125 if (state & GDK_MOD4_MASK)
1126 modifiers |= MOD_MASK_META;
1127
1128 return modifiers;
1129}
1130
1131 static int
1132modifiers_gdk2mouse(guint state)
1133{
1134 int modifiers = 0;
1135
1136 if (state & GDK_SHIFT_MASK)
1137 modifiers |= MOUSE_SHIFT;
1138 if (state & GDK_CONTROL_MASK)
1139 modifiers |= MOUSE_CTRL;
1140 if (state & GDK_MOD1_MASK)
1141 modifiers |= MOUSE_ALT;
1142
1143 return modifiers;
1144}
1145
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146/*
1147 * Main keyboard handler:
1148 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001150key_press_event(GtkWidget *widget UNUSED,
1151 GdkEventKey *event,
1152 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153{
Bram Moolenaar30613902019-12-01 22:11:18 +01001154 // For GTK+ 2 we know for sure how large the string might get.
1155 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 guint key_sym;
1158 int len;
1159 int i;
1160 int modifiers;
1161 int key;
1162 guint state;
1163 char_u *s, *d;
Anton Sharonov4dd92522022-07-04 10:47:31 +01001164 int ctrl_prefix_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165
Bram Moolenaar20892c12011-06-26 04:49:00 +02001166 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 key_sym = event->keyval;
1168 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170#ifdef FEAT_XIM
1171 if (xim_queue_key_press_event(event, TRUE))
1172 return TRUE;
1173#endif
1174
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175#ifdef SunXK_F36
1176 /*
1177 * These keys have bogus lookup strings, and trapping them here is
1178 * easier than trying to XRebindKeysym() on them with every possible
1179 * combination of modifiers.
1180 */
1181 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1182 len = 0;
1183 else
1184#endif
1185 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001186 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187
Bram Moolenaar30613902019-12-01 22:11:18 +01001188 // Careful: convert_input() doesn't handle the NUL character.
1189 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 if (len > 1 && input_conv.vc_type != CONV_NONE)
1191 len = convert_input(string2, len, sizeof(string2));
1192
1193 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 d = string;
1195 for (i = 0; i < len; ++i)
1196 {
1197 *d++ = s[i];
1198 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1199 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001200 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 *d++ = KS_EXTRA;
1202 *d++ = (int)KE_CSI;
1203 }
1204 }
1205 len = d - string;
1206 }
1207
Bram Moolenaar30613902019-12-01 22:11:18 +01001208 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 if (key_sym == GDK_ISO_Left_Tab)
1210 {
1211 key_sym = GDK_Tab;
1212 state |= GDK_SHIFT_MASK;
1213 }
1214
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001216 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1217 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 if ((state & GDK_MOD1_MASK)
1219 && gui.menu_is_active
1220 && (*p_wak == 'y'
1221 || (*p_wak == 'm'
1222 && len == 1
1223 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001224 // For GTK2 we return false to signify that we haven't handled the
1225 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227#endif
1228
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001229 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1230 // done later, the same as it happens for the terminal. Hopefully that
1231 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
Bram Moolenaar30613902019-12-01 22:11:18 +01001233 // Check for special keys. Also do this when len == 1 (key has an ASCII
1234 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (len == 0 || len == 1)
1236 {
1237 for (i = 0; special_keys[i].key_sym != 0; i++)
1238 {
1239 if (special_keys[i].key_sym == key_sym)
1240 {
1241 string[0] = CSI;
1242 string[1] = special_keys[i].code0;
1243 string[2] = special_keys[i].code1;
1244 len = -3;
1245 break;
1246 }
1247 }
1248 }
1249
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001250#ifdef GDK_KEY_dead_circumflex
Anton Sharonov4dd92522022-07-04 10:47:31 +01001251 // Belgian Ctrl+[ workaround
1252 if (len == 0 && key_sym == GDK_KEY_dead_circumflex)
1253 {
1254 string[0] = CSI;
1255 string[1] = KS_MODIFIER;
1256 string[2] = MOD_MASK_CTRL;
1257 string[3] = '[';
1258 len = 4;
1259 add_to_input_buf(string, len);
1260 // workaround has to return here, otherwise our fake string[] entries
1261 // are confusing code downstream
1262 return TRUE;
1263 }
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001264#endif
Anton Sharonov4dd92522022-07-04 10:47:31 +01001265
Bram Moolenaar30613902019-12-01 22:11:18 +01001266 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 return TRUE;
1268
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001269 // For some keys a shift modifier is translated into another key code.
1270 if (len == -3)
1271 key = TO_SPECIAL(string[1], string[2]);
1272 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001273 {
1274 string[len] = NUL;
1275 key = mb_ptr2char(string);
1276 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001277
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001278 // Handle modifiers.
1279 modifiers = modifiers_gdk2vim(state);
1280
1281 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001282 key = simplify_key(key, &modifiers);
1283 if (key == CSI)
1284 key = K_CSI;
1285 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001287 string[0] = CSI;
1288 string[1] = K_SECOND(key);
1289 string[2] = K_THIRD(key);
1290 len = 3;
1291 }
1292 else
1293 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001294 // Some keys need adjustment when the Ctrl modifier is used.
1295 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001296
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001297 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001298 modifiers = may_remove_shift_modifier(modifiers, key);
1299
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001300 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001303 if (modifiers != 0)
1304 {
1305 string2[0] = CSI;
1306 string2[1] = KS_MODIFIER;
1307 string2[2] = modifiers;
1308 add_to_input_buf(string2, 3);
Anton Sharonov4dd92522022-07-04 10:47:31 +01001309 if (modifiers == 0x4)
1310 ctrl_prefix_added = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 }
1312
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001313 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001315 int int_ch = check_for_interrupt(key, modifiers);
1316
1317 if (int_ch != NUL)
1318 {
1319 trash_input_buf();
1320 string[0] = int_ch;
1321 len = 1;
1322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 }
1324
Anton Sharonov4dd92522022-07-04 10:47:31 +01001325 // workaround for German keyboard, where instead of '[' char we have code
1326 // sequence of bytes 195, 188 (UTF-8 for "u-umlaut")
1327 if (ctrl_prefix_added && len == 2
1328 && ((int)string[0]) == 195
1329 && ((int)string[1]) == 188)
1330 {
1331 string[0] = 91; // ASCII('[')
1332 len = 1;
1333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 add_to_input_buf(string, len);
1335
Bram Moolenaar30613902019-12-01 22:11:18 +01001336 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (p_mh)
1338 gui_mch_mousehide(TRUE);
1339
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 return TRUE;
1341}
1342
Bram Moolenaar98921892016-02-23 17:14:37 +01001343#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001345key_release_event(GtkWidget *widget UNUSED,
Bram Moolenaar0a748d92022-04-28 15:39:08 +01001346 GdkEventKey *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001347 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348{
Bram Moolenaar98921892016-02-23 17:14:37 +01001349# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001350 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * GTK+ 2 input methods may do fancy stuff on key release events too.
1353 * With the default IM for instance, you can enter any UCS code point
1354 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1355 */
1356 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001357# else
1358 return TRUE;
1359# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360}
1361#endif
1362
1363
Bram Moolenaar30613902019-12-01 22:11:18 +01001364/////////////////////////////////////////////////////////////////////////////
1365// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366
Bram Moolenaar30613902019-12-01 22:11:18 +01001367// Remember when clip_lose_selection was called from here, we must not call
1368// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001369static int in_selection_clear_event = FALSE;
1370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001372selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001374 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001376 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 if (event->selection == clip_plus.gtk_sel_atom)
1378 clip_lose_selection(&clip_plus);
1379 else
1380 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001381 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 return TRUE;
1384}
1385
Bram Moolenaar30613902019-12-01 22:11:18 +01001386#define RS_NONE 0 // selection_received_cb() not called yet
1387#define RS_OK 1 // selection_received_cb() called and OK
1388#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389static int received_selection = RS_NONE;
1390
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001392selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001394 guint time_ UNUSED,
1395 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001397 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 char_u *text;
1399 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001402 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar98921892016-02-23 17:14:37 +01001404 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 cbd = &clip_plus;
1406 else
1407 cbd = &clip_star;
1408
Bram Moolenaar98921892016-02-23 17:14:37 +01001409 text = (char_u *)gtk_selection_data_get_data(data);
1410 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411
1412 if (text == NULL || len <= 0)
1413 {
1414 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001415 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 return;
1418 }
1419
Bram Moolenaar98921892016-02-23 17:14:37 +01001420 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 {
1422 motion_type = *text++;
1423 --len;
1424 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001425 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 {
1427 char_u *enc;
1428 vimconv_T conv;
1429
1430 motion_type = *text++;
1431 --len;
1432
1433 enc = text;
1434 text += STRLEN(text) + 1;
1435 len -= text - enc;
1436
Bram Moolenaar30613902019-12-01 22:11:18 +01001437 // If the encoding of the text is different from 'encoding', attempt
1438 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 conv.vc_type = CONV_NONE;
1440 convert_setup(&conv, enc, p_enc);
1441 if (conv.vc_type != CONV_NONE)
1442 {
1443 tmpbuf = string_convert(&conv, text, &len);
1444 if (tmpbuf != NULL)
1445 text = tmpbuf;
1446 convert_setup(&conv, NULL, NULL);
1447 }
1448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449
Bram Moolenaar30613902019-12-01 22:11:18 +01001450 // gtk_selection_data_get_text() handles all the nasty details
1451 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 else
1453 {
1454 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1455 if (tmpbuf_utf8 != NULL)
1456 {
1457 len = STRLEN(tmpbuf_utf8);
1458 if (input_conv.vc_type != CONV_NONE)
1459 {
1460 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1461 if (tmpbuf != NULL)
1462 text = tmpbuf;
1463 }
1464 else
1465 text = tmpbuf_utf8;
1466 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001467 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1468 {
1469 vimconv_T conv;
1470
Bram Moolenaar30613902019-12-01 22:11:18 +01001471 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001472 conv.vc_type = CONV_NONE;
1473 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1474
1475 if (conv.vc_type != CONV_NONE)
1476 {
1477 text += 2;
1478 len -= 2;
1479 tmpbuf = string_convert(&conv, text, &len);
1480 convert_setup(&conv, NULL, NULL);
1481 }
1482 if (tmpbuf != NULL)
1483 text = tmpbuf;
1484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar30613902019-12-01 22:11:18 +01001487 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001488 while (len > 0 && text[len - 1] == NUL)
1489 --len;
1490
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 clip_yank_selection(motion_type, text, (long)len, cbd);
1492 received_selection = RS_OK;
1493 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495}
1496
1497/*
1498 * Prepare our selection data for passing it to the external selection
1499 * client.
1500 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001502selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 GtkSelectionData *selection_data,
1504 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001505 guint time_ UNUSED,
1506 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507{
1508 char_u *string;
1509 char_u *tmpbuf;
1510 long_u tmplen;
1511 int length;
1512 int motion_type;
1513 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001514 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515
Bram Moolenaar98921892016-02-23 17:14:37 +01001516 if (gtk_selection_data_get_selection(selection_data)
1517 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 cbd = &clip_plus;
1519 else
1520 cbd = &clip_star;
1521
1522 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001523 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524
1525 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001526 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 && info != (guint)TARGET_UTF8_STRING
1528 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 && info != (guint)TARGET_VIM
1530 && info != (guint)TARGET_COMPOUND_TEXT
1531 && info != (guint)TARGET_TEXT)
1532 return;
1533
Bram Moolenaar30613902019-12-01 22:11:18 +01001534 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 clip_get_selection(cbd);
1536
1537 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1538 if (motion_type < 0 || string == NULL)
1539 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001540 // Due to int arguments we can't handle more than G_MAXINT. Also
1541 // reserve one extra byte for NUL or the motion type; just in case.
1542 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1544
1545 if (info == (guint)TARGET_VIM)
1546 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001547 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (tmpbuf != NULL)
1549 {
1550 tmpbuf[0] = motion_type;
1551 mch_memmove(tmpbuf + 1, string, (size_t)length);
1552 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001553 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 ++length;
1555 vim_free(string);
1556 string = tmpbuf;
1557 type = vim_atom;
1558 }
1559
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001560 else if (info == (guint)TARGET_HTML)
1561 {
1562 vimconv_T conv;
1563
Bram Moolenaar30613902019-12-01 22:11:18 +01001564 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001565 conv.vc_type = CONV_NONE;
1566 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1567 if (conv.vc_type != CONV_NONE)
1568 {
1569 tmpbuf = string_convert(&conv, string, &length);
1570 convert_setup(&conv, NULL, NULL);
1571 vim_free(string);
1572 string = tmpbuf;
1573 }
1574
Bram Moolenaar30613902019-12-01 22:11:18 +01001575 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001576 if (string != NULL)
1577 {
1578 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001579 if (tmpbuf != NULL)
1580 {
1581 tmpbuf[0] = 0xff;
1582 tmpbuf[1] = 0xfe;
1583 mch_memmove(tmpbuf + 2, string, (size_t)length);
1584 vim_free(string);
1585 string = tmpbuf;
1586 length += 2;
1587 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001588
Bram Moolenaar98921892016-02-23 17:14:37 +01001589#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001590 // Looks redundant even for GTK2 because these values are
1591 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001592 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001593 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001594#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001595 gtk_selection_data_set(selection_data, html_atom, 16,
1596 string, length);
1597 vim_free(string);
1598 }
1599 return;
1600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 else if (info == (guint)TARGET_VIMENC)
1602 {
1603 int l = STRLEN(p_enc);
1604
Bram Moolenaar30613902019-12-01 22:11:18 +01001605 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001606 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (tmpbuf != NULL)
1608 {
1609 tmpbuf[0] = motion_type;
1610 STRCPY(tmpbuf + 1, p_enc);
1611 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001612 length += l + 2;
1613 vim_free(string);
1614 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 type = vimenc_atom;
1617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar30613902019-12-01 22:11:18 +01001619 // gtk_selection_data_set_text() handles everything for us. This is
1620 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 else
1622 {
1623 if (output_conv.vc_type != CONV_NONE)
1624 {
1625 tmpbuf = string_convert(&output_conv, string, &length);
1626 vim_free(string);
1627 if (tmpbuf == NULL)
1628 return;
1629 string = tmpbuf;
1630 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001631 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1633 {
1634 gtk_selection_data_set_text(selection_data,
1635 (const char *)string, length);
1636 }
1637 vim_free(string);
1638 return;
1639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
1641 if (string != NULL)
1642 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001643#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001644 // Looks redundant even for GTK2 because these values are
1645 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001647 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 gtk_selection_data_set(selection_data, type, 8, string, length);
1650 vim_free(string);
1651 }
1652}
1653
1654/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001655 * Check if the GUI can be started. Called before gvimrc is sourced and
1656 * before fork().
1657 * Return OK or FAIL.
1658 */
1659 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001660gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001661{
1662 char_u *p;
1663
Bram Moolenaar30613902019-12-01 22:11:18 +01001664 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001665 p = mch_getenv((char_u *)"DISPLAY");
1666 if (p == NULL || *p == NUL)
1667 {
1668 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001669 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001670 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001671 return FAIL;
1672 }
1673 return OK;
1674}
1675
1676/*
1677 * Check if the GUI can be started. Called before gvimrc is sourced but after
1678 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 * Return OK or FAIL.
1680 */
1681 int
1682gui_mch_init_check(void)
1683{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001684#ifdef USE_GRESOURCE
1685 static int res_registered = FALSE;
1686
1687 if (!res_registered)
1688 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001689 // Call this function in the GUI process; otherwise, the resources
1690 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001691 res_registered = TRUE;
1692 gui_gtk_register_resource();
1693 }
1694#endif
1695
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001696#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001697 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1698 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001699 gdk_set_allowed_backends ("x11");
1700#endif
1701
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702#ifdef FEAT_GUI_GNOME
1703 if (gtk_socket_id == 0)
1704 using_gnome = 1;
1705#endif
1706
Bram Moolenaar30613902019-12-01 22:11:18 +01001707 // This defaults to argv[0], but we want it to match the name of the
1708 // shipped gvim.desktop so that Vim's windows can be associated with this
1709 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001710 g_set_prgname("gvim");
1711
Bram Moolenaar30613902019-12-01 22:11:18 +01001712 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 if (!gtk_init_check(&gui_argc, &gui_argv))
1714 {
1715 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001716 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 return FAIL;
1718 }
1719
1720 return OK;
1721}
1722
Bram Moolenaar30613902019-12-01 22:11:18 +01001723/////////////////////////////////////////////////////////////////////////////
1724// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
1726
1727static guint mouse_click_timer = 0;
1728static int mouse_timed_out = TRUE;
1729
1730/*
1731 * Timer used to recognize multiple clicks of the mouse button
1732 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001733 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734mouse_click_timer_cb(gpointer data)
1735{
Bram Moolenaar30613902019-12-01 22:11:18 +01001736 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 int *timed_out = (int *) data;
1738
1739 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001740 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741}
1742
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001743static guint motion_repeat_timer = 0;
1744static int motion_repeat_offset = FALSE;
1745static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
1747 static void
1748process_motion_notify(int x, int y, GdkModifierType state)
1749{
1750 int button;
1751 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001752 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753
Chris Daltonee93e322021-11-23 12:27:48 +00001754 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1755 state |= dragging_button_state;
1756
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1758 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1759 GDK_BUTTON5_MASK))
1760 ? MOUSE_DRAG : ' ';
1761
Bram Moolenaar30613902019-12-01 22:11:18 +01001762 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 gui_mch_mousehide(FALSE);
1764
Bram Moolenaar30613902019-12-01 22:11:18 +01001765 // Just moving the rodent above the drawing area without any button
1766 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 if (button != MOUSE_DRAG)
1768 {
1769 gui_mouse_moved(x, y);
1770 return;
1771 }
1772
Bram Moolenaar30613902019-12-01 22:11:18 +01001773 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001774 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775
Bram Moolenaar30613902019-12-01 22:11:18 +01001776 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1778
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 /*
1780 * Auto repeat timer handling.
1781 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001782 gtk_widget_get_allocation(gui.drawarea, &allocation);
1783
1784 if (x < 0 || y < 0
1785 || x >= allocation.width
1786 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 {
1788
1789 int dx;
1790 int dy;
1791 int offshoot;
1792 int delay = 10;
1793
Bram Moolenaar30613902019-12-01 22:11:18 +01001794 // Calculate the maximal distance of the cursor from the drawing area.
1795 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001796 dx = x < 0 ? -x : x - allocation.width;
1797 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798
1799 offshoot = dx > dy ? dx : dy;
1800
Bram Moolenaar30613902019-12-01 22:11:18 +01001801 // Make a linearly decaying timer delay with a threshold of 5 at a
1802 // distance of 127 pixels from the main window.
1803 //
1804 // One could think endlessly about the most ergonomic variant here.
1805 // For example it could make sense to calculate the distance from the
1806 // drags start instead...
1807 //
1808 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (offshoot > 127)
1810 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001811 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 delay = 5;
1813 }
1814 else
1815 {
1816 delay = (130 * (127 - offshoot)) / 127 + 5;
1817 }
1818
Bram Moolenaar30613902019-12-01 22:11:18 +01001819 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001821 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1822 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 }
1824}
1825
Bram Moolenaar98921892016-02-23 17:14:37 +01001826#if GTK_CHECK_VERSION(3,0,0)
1827 static GdkDevice *
1828gui_gtk_get_pointer_device(GtkWidget *widget)
1829{
1830 GdkWindow * const win = gtk_widget_get_window(widget);
1831 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001832# if GTK_CHECK_VERSION(3,20,0)
1833 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1834 return gdk_seat_get_pointer(seat);
1835# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001836 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1837 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001838# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001839}
1840
1841 static GdkWindow *
1842gui_gtk_get_pointer(GtkWidget *widget,
1843 gint *x,
1844 gint *y,
1845 GdkModifierType *state)
1846{
1847 GdkWindow * const win = gtk_widget_get_window(widget);
1848 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1849 return gdk_window_get_device_position(win, dev , x, y, state);
1850}
1851
Bram Moolenaar2369c152016-03-04 23:08:25 +01001852# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001853 static GdkWindow *
1854gui_gtk_window_at_position(GtkWidget *widget,
1855 gint *x,
1856 gint *y)
1857{
1858 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1859 return gdk_device_get_window_at_position(dev, x, y);
1860}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001861# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001862#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001863# define gui_gtk_get_pointer(wid, x, y, s) \
1864 gdk_window_get_pointer((wid)->window, x, y, s)
1865# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001866#endif
1867
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868/*
1869 * Timer used to recognize multiple clicks of the mouse button.
1870 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001871 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001872motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873{
1874 int x;
1875 int y;
1876 GdkModifierType state;
1877
Bram Moolenaar98921892016-02-23 17:14:37 +01001878 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879
1880 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1881 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1882 GDK_BUTTON5_MASK)))
1883 {
1884 motion_repeat_timer = 0;
1885 return FALSE;
1886 }
1887
Bram Moolenaar30613902019-12-01 22:11:18 +01001888 // If there already is a mouse click in the input buffer, wait another
1889 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 if (vim_used_in_input_buf() > 10)
1891 return TRUE;
1892
1893 motion_repeat_timer = 0;
1894
1895 /*
1896 * Fake a motion event.
1897 * Trick: Pretend the mouse moved to the next character on every other
1898 * event, otherwise drag events will be discarded, because they are still
1899 * in the same character.
1900 */
1901 if (motion_repeat_offset)
1902 x += gui.char_width;
1903
1904 motion_repeat_offset = !motion_repeat_offset;
1905 process_motion_notify(x, y, state);
1906
Bram Moolenaar30613902019-12-01 22:11:18 +01001907 // Don't happen again. We will get reinstalled in the synthetic event
1908 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 return FALSE;
1910}
1911
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001913motion_notify_event(GtkWidget *widget,
1914 GdkEventMotion *event,
1915 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 if (event->is_hint)
1918 {
1919 int x;
1920 int y;
1921 GdkModifierType state;
1922
Bram Moolenaar98921892016-02-23 17:14:37 +01001923 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 process_motion_notify(x, y, state);
1925 }
1926 else
1927 {
1928 process_motion_notify((int)event->x, (int)event->y,
1929 (GdkModifierType)event->state);
1930 }
1931
Bram Moolenaar30613902019-12-01 22:11:18 +01001932 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933}
1934
1935
1936/*
1937 * Mouse button handling. Note please that we are capturing multiple click's
1938 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1939 * This is due to the way the generic VIM code is recognizing multiple clicks.
1940 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001942button_press_event(GtkWidget *widget,
1943 GdkEventButton *event,
1944 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
1946 int button;
1947 int repeated_click = FALSE;
1948 int x, y;
1949 int_u vim_modifiers;
1950
Bram Moolenaar20892c12011-06-26 04:49:00 +02001951 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001952
Bram Moolenaar30613902019-12-01 22:11:18 +01001953 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001954 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 gtk_widget_grab_focus(widget);
1956
1957 /*
1958 * Don't let additional events about multiple clicks send by GTK to us
1959 * after the initial button press event confuse us.
1960 */
1961 if (event->type != GDK_BUTTON_PRESS)
1962 return FALSE;
1963
1964 x = event->x;
1965 y = event->y;
1966
Bram Moolenaar30613902019-12-01 22:11:18 +01001967 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 if (!mouse_timed_out && mouse_click_timer)
1969 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001970 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 mouse_click_timer = 0;
1972 repeated_click = TRUE;
1973 }
1974
1975 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001976 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1977 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978
1979 switch (event->button)
1980 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001981 // Keep in sync with gui_x11.c.
1982 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001983 case 1:
1984 button = MOUSE_LEFT;
1985 // needed for touch-drag
1986 dragging_button_state |= GDK_BUTTON1_MASK;
1987 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001988 case 2: button = MOUSE_MIDDLE; break;
1989 case 3: button = MOUSE_RIGHT; break;
1990 case 8: button = MOUSE_X1; break;
1991 case 9: button = MOUSE_X2; break;
1992 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001993 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 }
1995
1996#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001997 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (im_is_preediting())
1999 xim_reset();
2000#endif
2001
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002002 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003
2004 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005
2006 return TRUE;
2007}
2008
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002010 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002013scroll_event(GtkWidget *widget,
2014 GdkEventScroll *event,
2015 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016{
2017 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002018 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
Bram Moolenaar98921892016-02-23 17:14:37 +01002020 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 gtk_widget_grab_focus(widget);
2022
2023 switch (event->direction)
2024 {
2025 case GDK_SCROLL_UP:
2026 button = MOUSE_4;
2027 break;
2028 case GDK_SCROLL_DOWN:
2029 button = MOUSE_5;
2030 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002031 case GDK_SCROLL_LEFT:
2032 button = MOUSE_7;
2033 break;
2034 case GDK_SCROLL_RIGHT:
2035 button = MOUSE_6;
2036 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01002037 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 return FALSE;
2039 }
2040
2041# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002042 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 if (im_is_preediting())
2044 xim_reset();
2045# endif
2046
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002047 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2050 FALSE, vim_modifiers);
2051
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 return TRUE;
2053}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054
2055
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002057button_release_event(GtkWidget *widget UNUSED,
2058 GdkEventButton *event,
2059 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
2061 int x, y;
2062 int_u vim_modifiers;
2063
Bram Moolenaar20892c12011-06-26 04:49:00 +02002064 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002065
Bram Moolenaar30613902019-12-01 22:11:18 +01002066 // Remove any motion "machine gun" timers used for automatic further
2067 // extension of allocation areas if outside of the applications window
2068 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 if (motion_repeat_timer)
2070 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002071 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 motion_repeat_timer = 0;
2073 }
2074
2075 x = event->x;
2076 y = event->y;
2077
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002078 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079
2080 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081
Chris Daltonee93e322021-11-23 12:27:48 +00002082 switch (event->button)
2083 {
2084 case 1: // MOUSE_LEFT
2085 dragging_button_state = 0;
2086 break;
2087 }
2088
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 return TRUE;
2090}
2091
2092
2093#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002094/////////////////////////////////////////////////////////////////////////////
2095// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096
2097/*
2098 * Count how many items there may be and separate them with a NUL.
2099 * Apparently the items are separated with \r\n. This is not documented,
2100 * thus be careful not to go past the end. Also allow separation with
2101 * NUL characters.
2102 */
2103 static int
2104count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2105{
2106 int i;
2107 char_u *p = out;
2108 int count = 0;
2109
2110 for (i = 0; i < len; ++i)
2111 {
2112 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2113 {
2114 if (p > out && p[-1] != NUL)
2115 {
2116 ++count;
2117 *p++ = NUL;
2118 }
2119 }
2120 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2121 {
2122 *p++ = hexhex2nr(raw + i + 1);
2123 i += 2;
2124 }
2125 else
2126 *p++ = raw[i];
2127 }
2128 if (p > out && p[-1] != NUL)
2129 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002130 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 ++count;
2132 }
2133 return count;
2134}
2135
2136/*
2137 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2138 * this process, URI which protocol is not "file:" are removed. Return
2139 * length of array (less than "max").
2140 */
2141 static int
2142filter_uri_list(char_u **outlist, int max, char_u *src)
2143{
2144 int i, j;
2145
2146 for (i = j = 0; i < max; ++i)
2147 {
2148 outlist[i] = NULL;
2149 if (STRNCMP(src, "file:", 5) == 0)
2150 {
2151 src += 5;
2152 if (STRNCMP(src, "//localhost", 11) == 0)
2153 src += 11;
2154 while (src[0] == '/' && src[1] == '/')
2155 ++src;
2156 outlist[j++] = vim_strsave(src);
2157 }
2158 src += STRLEN(src) + 1;
2159 }
2160 return j;
2161}
2162
2163 static char_u **
2164parse_uri_list(int *count, char_u *data, int len)
2165{
2166 int n = 0;
2167 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002168 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002170 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 {
2172 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002173 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 n = filter_uri_list(array, n, tmp);
2175 }
2176 vim_free(tmp);
2177 *count = n;
2178 return array;
2179}
2180
2181 static void
2182drag_handle_uri_list(GdkDragContext *context,
2183 GtkSelectionData *data,
2184 guint time_,
2185 GdkModifierType state,
2186 gint x,
2187 gint y)
2188{
2189 char_u **fnames;
2190 int nfiles = 0;
2191
Bram Moolenaar98921892016-02-23 17:14:37 +01002192 fnames = parse_uri_list(&nfiles,
2193 (char_u *)gtk_selection_data_get_data(data),
2194 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195
2196 if (fnames != NULL && nfiles > 0)
2197 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002198 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199
Bram Moolenaar30613902019-12-01 22:11:18 +01002200 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002202 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
2204 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2205 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002206 else
2207 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208}
2209
2210 static void
2211drag_handle_text(GdkDragContext *context,
2212 GtkSelectionData *data,
2213 guint time_,
2214 GdkModifierType state)
2215{
2216 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2217 char_u *text;
2218 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220
Bram Moolenaar98921892016-02-23 17:14:37 +01002221 text = (char_u *)gtk_selection_data_get_data(data);
2222 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
Bram Moolenaar98921892016-02-23 17:14:37 +01002224 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 if (input_conv.vc_type != CONV_NONE)
2227 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (tmpbuf != NULL)
2229 text = tmpbuf;
2230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231
2232 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002233 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002236 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
2238 if (dropkey[2] != 0)
2239 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2240 else
2241 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242}
2243
2244/*
2245 * DND receiver.
2246 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 static void
2248drag_data_received_cb(GtkWidget *widget,
2249 GdkDragContext *context,
2250 gint x,
2251 gint y,
2252 GtkSelectionData *data,
2253 guint info,
2254 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002255 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256{
2257 GdkModifierType state;
2258
Bram Moolenaar30613902019-12-01 22:11:18 +01002259 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002260 const guchar * const data_data = gtk_selection_data_get_data(data);
2261 const gint data_length = gtk_selection_data_get_length(data);
2262 const gint data_format = gtk_selection_data_get_format(data);
2263
2264 if (data_data == NULL
2265 || data_length <= 0
2266 || data_format != 8
2267 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 {
2269 gtk_drag_finish(context, FALSE, FALSE, time_);
2270 return;
2271 }
2272
Bram Moolenaar30613902019-12-01 22:11:18 +01002273 // Get the current modifier state for proper distinguishment between
2274 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002275 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276
Bram Moolenaar30613902019-12-01 22:11:18 +01002277 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 if (info == (guint)TARGET_TEXT_URI_LIST)
2279 drag_handle_uri_list(context, data, time_, state, x, y);
2280 else
2281 drag_handle_text(context, data, time_, state);
2282
2283}
Bram Moolenaar30613902019-12-01 22:11:18 +01002284#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
2286
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002287#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288/*
2289 * GnomeClient interact callback. Check for unsaved buffers that cannot
2290 * be abandoned and pop up a dialog asking the user for confirmation if
2291 * necessary.
2292 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002294sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002296 GnomeDialogType type UNUSED,
2297 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298{
2299 cmdmod_T save_cmdmod;
2300 gboolean shutdown_cancelled;
2301
2302 save_cmdmod = cmdmod;
2303
2304# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002305 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306# endif
2307# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002308 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309# endif
2310 /*
2311 * If there are changed buffers, present the user with
2312 * a dialog if possible, otherwise give an error message.
2313 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002314 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315
2316 exiting = FALSE;
2317 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002318 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 out_flush();
2320 /*
2321 * If the user hit the [Cancel] button the whole shutdown
2322 * will be cancelled. Wow, quite powerful feature (:
2323 */
2324 gnome_interaction_key_return(key, shutdown_cancelled);
2325}
2326
2327/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 * "save_yourself" signal handler. Initiate an interaction to ask the user
2329 * for confirmation if necessary. Save the current editing session and tell
2330 * the session manager how to restart Vim.
2331 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 static gboolean
2333sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002334 gint phase UNUSED,
2335 GnomeSaveStyle save_style UNUSED,
2336 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002338 gboolean fast UNUSED,
2339 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340{
2341 static const char suffix[] = "-session.vim";
2342 char *session_file;
2343 unsigned int len;
2344 gboolean success;
2345
Bram Moolenaar30613902019-12-01 22:11:18 +01002346 // Always request an interaction if possible. check_changed_any()
2347 // won't actually show a dialog unless any buffers have been modified.
2348 // There doesn't seem to be an obvious way to check that without
2349 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 if (interact_style == GNOME_INTERACT_ANY)
2351 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2352 &sm_client_check_changed_any,
2353 NULL);
2354 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002355 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356
Bram Moolenaar30613902019-12-01 22:11:18 +01002357 // The path is unique for each session save. We do neither know nor care
2358 // which session script will actually be used later. This decision is in
2359 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 session_file = gnome_config_get_real_path(
2361 gnome_client_get_config_prefix(client));
2362 len = strlen(session_file);
2363
2364 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002365 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366
2367 session_file = g_renew(char, session_file, len + sizeof(suffix));
2368 memcpy(session_file + len, suffix, sizeof(suffix));
2369
2370 success = write_session_file((char_u *)session_file);
2371
2372 if (success)
2373 {
2374 const char *argv[8];
2375 int i;
2376
Bram Moolenaar30613902019-12-01 22:11:18 +01002377 // Tell the session manager how to wipe out the stored session data.
2378 // This isn't as dangerous as it looks, don't worry :) session_file
2379 // is a unique absolute filename. Usually it'll be something like
2380 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 i = 0;
2382 argv[i++] = "rm";
2383 argv[i++] = session_file;
2384 argv[i] = NULL;
2385
2386 gnome_client_set_discard_command(client, i, (char **)argv);
2387
Bram Moolenaar30613902019-12-01 22:11:18 +01002388 // Tell the session manager how to restore the just saved session.
2389 // This is easily done thanks to Vim's -S option. Pass the -f flag
2390 // since there's no need to fork -- it might even cause confusion.
2391 // Also pass the window role to give the WM something to match on.
2392 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 i = 0;
2394 argv[i++] = restart_command;
2395 argv[i++] = "-f";
2396 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 argv[i++] = "--role";
2398 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 argv[i++] = "-S";
2400 argv[i++] = session_file;
2401 argv[i] = NULL;
2402
2403 gnome_client_set_restart_command(client, i, (char **)argv);
2404 gnome_client_set_clone_command(client, 0, NULL);
2405 }
2406
2407 g_free(session_file);
2408
2409 return success;
2410}
2411
2412/*
2413 * Called when the session manager wants us to die. There isn't much to save
2414 * here since "save_yourself" has been emitted before (unless serious trouble
2415 * is happening).
2416 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002418sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419{
Bram Moolenaar30613902019-12-01 22:11:18 +01002420 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 full_screen = FALSE;
2422
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002423 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002424 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002425 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 preserve_exit();
2427}
2428
2429/*
2430 * Connect our signal handlers to be notified on session save and shutdown.
2431 */
2432 static void
2433setup_save_yourself(void)
2434{
2435 GnomeClient *client;
2436
2437 client = gnome_master_client();
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00002438 if (client == NULL)
2439 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00002441 // Must use the deprecated gtk_signal_connect() for compatibility
2442 // with GNOME 1. Arrgh, zombies!
2443 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2444 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2445 gtk_signal_connect(GTK_OBJECT(client), "die",
2446 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447}
2448
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002449#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451# ifdef USE_XSMP
2452/*
2453 * GTK tells us that XSMP needs attention
2454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002456local_xsmp_handle_requests(
2457 GIOChannel *source UNUSED,
2458 GIOCondition condition,
2459 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460{
2461 if (condition == G_IO_IN)
2462 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002463 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 if (xsmp_handle_requests() == FAIL)
2465 g_io_channel_unref((GIOChannel *)data);
2466 return TRUE;
2467 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002468 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 g_io_channel_unref((GIOChannel *)data);
2470 xsmp_close();
2471 return TRUE;
2472}
Bram Moolenaar30613902019-12-01 22:11:18 +01002473# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474
2475/*
2476 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2477 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2478 */
2479 static void
2480setup_save_yourself(void)
2481{
2482 Atom *existing_atoms = NULL;
2483 int count = 0;
2484
Bram Moolenaar98921892016-02-23 17:14:37 +01002485# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 if (xsmp_icefd != -1)
2487 {
2488 /*
2489 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2490 * set up GTK IO monitor
2491 */
2492 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2493
2494 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2495 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002496 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 }
2498 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002499# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002501 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
Bram Moolenaar30613902019-12-01 22:11:18 +01002503 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002504 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2505
2506 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2507 GDK_WINDOW_XID(mainwin_win),
2508 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 {
2510 Atom *new_atoms;
2511 Atom save_yourself_xatom;
2512 int i;
2513
2514 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2515
Bram Moolenaar30613902019-12-01 22:11:18 +01002516 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 for (i = 0; i < count; ++i)
2518 if (existing_atoms[i] == save_yourself_xatom)
2519 break;
2520
2521 if (i == count)
2522 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002523 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002524 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 if (new_atoms != NULL)
2526 {
2527 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2528 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002529 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2530 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 new_atoms, count + 1);
2532 vim_free(new_atoms);
2533 }
2534 }
2535 XFree(existing_atoms);
2536 }
2537 }
2538}
2539
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540/*
2541 * Installing a global event filter seems to be the only way to catch
2542 * client messages of type WM_PROTOCOLS without overriding GDK's own
2543 * client message event filter. Well, that's still better than trying
2544 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 *
2546 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2547 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2548 * I have the nasty feeling modern session managers just don't send this
2549 * deprecated message anymore. Addition: confirmed by several people.
2550 *
2551 * The GNOME session support is much cooler anyway. Unlike this ugly
2552 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2553 * it should work with KDE as well.
2554 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002556global_event_filter(GdkXEvent *xev,
2557 GdkEvent *event UNUSED,
2558 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559{
2560 XEvent *xevent = (XEvent *)xev;
2561
2562 if (xevent != NULL
2563 && xevent->type == ClientMessage
2564 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002565 && (long_u)xevent->xclient.data.l[0]
2566 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 {
2568 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002569 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 /*
2571 * Set the window's WM_COMMAND property, to let the window manager
2572 * know we are done saving ourselves. We don't want to be
2573 * restarted, thus set argv to NULL.
2574 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002575 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2576 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 NULL, 0);
2578 return GDK_FILTER_REMOVE;
2579 }
2580
2581 return GDK_FILTER_CONTINUE;
2582}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002583#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584
2585
2586/*
2587 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2588 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002590mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591{
Bram Moolenaar30613902019-12-01 22:11:18 +01002592// If you get an error message here, you still need to unpack the runtime
2593// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594#ifdef magick
2595# undef magick
2596#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002597 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599#define magick vim32x32
2600#include "../runtime/vim32x32.xpm"
2601#undef magick
2602#define magick vim16x16
2603#include "../runtime/vim16x16.xpm"
2604#undef magick
2605#define magick vim48x48
2606#include "../runtime/vim48x48.xpm"
2607#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609
Bram Moolenaar98921892016-02-23 17:14:37 +01002610 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002611
Bram Moolenaar30613902019-12-01 22:11:18 +01002612 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 if (echo_wid_arg)
2614 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002615 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 fflush(stdout);
2617 }
2618
2619 if (vim_strchr(p_go, GO_ICON) != NULL)
2620 {
2621 /*
2622 * Add an icon to the main window. For fun and convenience of the user.
2623 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 GList *icons = NULL;
2625
2626 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2627 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2628 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2629
2630 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2631
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002632 // TODO: is this type cast OK?
2633 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 }
2636
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002637#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002638 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002641 // Setup to indicate to the window manager that we want to catch the
2642 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2643 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002644#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 if (using_gnome)
2646#endif
2647 setup_save_yourself();
2648
2649#ifdef FEAT_CLIENTSERVER
2650 if (serverName == NULL && serverDelayedStartName != NULL)
2651 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002652 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002653 commWindow = GDK_WINDOW_XID(mainwin_win);
2654
2655 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2656 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
2658 else
2659 {
2660 /*
2661 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2662 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002663 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002665 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2666 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 }
2668 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002669 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2670 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671#endif
2672}
2673
2674 static GdkCursor *
2675create_blank_pointer(void)
2676{
2677 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002678#if GTK_CHECK_VERSION(3,0,0)
2679 GdkPixbuf *blank_mask;
2680#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002684#if GTK_CHECK_VERSION(3,0,0)
Kenny Stauffer660eb9f2023-04-28 16:36:51 +01002685 GdkRGBA color = { 0.0, 0.0, 0.0, 0.0 };
Bram Moolenaar36edf062016-07-21 22:10:12 +02002686#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 GdkColor color = { 0, 0, 0, 0 };
2688 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002691#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002692 {
2693 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2694 GdkScreen * const scrn = gdk_window_get_screen(win);
2695 root_window = gdk_screen_get_root_window(scrn);
2696 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002697#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 root_window = gtk_widget_get_root_window(gui.mainwin);
2699#endif
2700
Bram Moolenaar30613902019-12-01 22:11:18 +01002701 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2702 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002703#if GTK_CHECK_VERSION(3,0,0)
2704 {
2705 cairo_surface_t *surf;
2706 cairo_t *cr;
2707
2708 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2709 cr = cairo_create(surf);
2710
Bram Moolenaar36edf062016-07-21 22:10:12 +02002711 cairo_set_source_rgba(cr,
2712 color.red,
2713 color.green,
2714 color.blue,
2715 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002716 cairo_rectangle(cr, 0, 0, 1, 1);
2717 cairo_fill(cr);
2718 cairo_destroy(cr);
2719
2720 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2721 cairo_surface_destroy(surf);
2722
2723 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2724 blank_mask, 0, 0);
2725 g_object_unref(blank_mask);
2726 }
2727#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2729 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2730 &color, &color, 0, 0);
2731 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733
2734 return cursor;
2735}
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 static void
2738mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002739 GdkScreen *previous_screen UNUSED,
2740 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741{
2742 if (!gtk_widget_has_screen(widget))
2743 return;
2744
2745 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002746 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 */
2748 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002749#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002750 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002751#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754
2755 gui.blank_pointer = create_blank_pointer();
2756
Bram Moolenaar98921892016-02-23 17:14:37 +01002757 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2758 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2759 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760
2761 /*
2762 * Create a new PangoContext for this screen, and initialize it
2763 * with the current font if necessary.
2764 */
2765 if (gui.text_context != NULL)
2766 g_object_unref(gui.text_context);
2767
2768 gui.text_context = gtk_widget_create_pango_context(widget);
2769 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2770
2771 if (gui.norm_font != NULL)
2772 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002773 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002774 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 }
2776}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
2778/*
2779 * After the drawing area comes up, we calculate all colors and create the
2780 * dummy blank cursor.
2781 *
2782 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2783 * fact that the main VIM engine doesn't take them into account anywhere.
2784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002786drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787{
2788 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002789 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790
2791#ifdef FEAT_XIM
2792 xim_init();
2793#endif
2794 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002795#if GTK_CHECK_VERSION(3,0,0)
2796 gui.surface = gdk_window_create_similar_surface(
2797 gtk_widget_get_window(widget),
2798 CAIRO_CONTENT_COLOR_ALPHA,
2799 gtk_widget_get_allocated_width(widget),
2800 gtk_widget_get_allocated_height(widget));
2801#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804
2805 gui.blank_pointer = create_blank_pointer();
2806 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002807 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808
Bram Moolenaar30613902019-12-01 22:11:18 +01002809 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2811 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2812 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2813 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002814 gtk_widget_get_allocation(sbar, &allocation);
2815 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2816 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817
2818 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002819 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2820 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821}
2822
2823/*
2824 * Properly clean up on shutdown.
2825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002827drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828{
Bram Moolenaar30613902019-12-01 22:11:18 +01002829 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 full_screen = FALSE;
2831
2832#ifdef FEAT_XIM
2833 im_shutdown();
2834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 if (gui.ascii_glyphs != NULL)
2836 {
2837 pango_glyph_string_free(gui.ascii_glyphs);
2838 gui.ascii_glyphs = NULL;
2839 }
2840 if (gui.ascii_font != NULL)
2841 {
2842 g_object_unref(gui.ascii_font);
2843 gui.ascii_font = NULL;
2844 }
2845 g_object_unref(gui.text_context);
2846 gui.text_context = NULL;
2847
Bram Moolenaar98921892016-02-23 17:14:37 +01002848#if GTK_CHECK_VERSION(3,0,0)
2849 if (gui.surface != NULL)
2850 {
2851 cairo_surface_destroy(gui.surface);
2852 gui.surface = NULL;
2853 }
2854#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 g_object_unref(gui.text_gc);
2856 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858
Bram Moolenaar98921892016-02-23 17:14:37 +01002859#if GTK_CHECK_VERSION(3,0,0)
2860 g_object_unref(G_OBJECT(gui.blank_pointer));
2861#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002863#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865}
2866
Bram Moolenaara859f042016-11-17 19:11:55 +01002867#if GTK_CHECK_VERSION(3,22,2)
2868 static void
2869drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2870 gpointer data UNUSED)
2871#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002873drawarea_style_set_cb(GtkWidget *widget UNUSED,
2874 GtkStyle *previous_style UNUSED,
2875 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
2878 gui_mch_new_colors();
2879}
2880
Bram Moolenaar98921892016-02-23 17:14:37 +01002881#if GTK_CHECK_VERSION(3,0,0)
2882 static gboolean
2883drawarea_configure_event_cb(GtkWidget *widget,
2884 GdkEventConfigure *event,
2885 gpointer data UNUSED)
2886{
2887 static int cur_width = 0;
2888 static int cur_height = 0;
2889
2890 g_return_val_if_fail(event
2891 && event->width >= 1 && event->height >= 1, TRUE);
2892
Bram Moolenaar182707a2016-11-21 20:55:58 +01002893# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002894 // As of 3.22.2, GdkWindows have started distributing configure events to
2895 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2896 //
2897 // As can be seen from the implementation of move_native_children() and
2898 // configure_native_child() in gdkwindow.c, those functions actually
2899 // propagate configure events to every child, failing to distinguish
2900 // "native" one from non-native one.
2901 //
2902 // Naturally, configure events propagated to here like that are fallacious
2903 // and, as a matter of fact, they trigger a geometric collapse of
2904 // gui.drawarea in fullscreen and maximized modes.
2905 //
2906 // To filter out such nuisance events, we are making use of the fact that
2907 // the field send_event of such GdkEventConfigures is set to FALSE in
2908 // configure_native_child().
2909 //
2910 // Obviously, this is a terrible hack making GVim depend on GTK's
2911 // implementation details. Therefore, watch out any relevant internal
2912 // changes happening in GTK in the feature (sigh).
2913 //
2914 // Follow-up
2915 // After a few weeks later, the GdkWindow change mentioned above was
2916 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2917 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002918 if (event->send_event == FALSE)
2919 return TRUE;
2920# endif
2921
Bram Moolenaar98921892016-02-23 17:14:37 +01002922 if (event->width == cur_width && event->height == cur_height)
2923 return TRUE;
2924
2925 cur_width = event->width;
2926 cur_height = event->height;
2927
2928 if (gui.surface != NULL)
2929 cairo_surface_destroy(gui.surface);
2930
2931 gui.surface = gdk_window_create_similar_surface(
2932 gtk_widget_get_window(widget),
2933 CAIRO_CONTENT_COLOR_ALPHA,
2934 event->width, event->height);
2935
2936 gtk_widget_queue_draw(widget);
2937
2938 return TRUE;
2939}
2940#endif
2941
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942/*
2943 * Callback routine for the "delete_event" signal on the toplevel window.
2944 * Tries to vim gracefully, or refuses to exit with changed buffers.
2945 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002947delete_event_cb(GtkWidget *widget UNUSED,
2948 GdkEventAny *event UNUSED,
2949 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
2951 gui_shell_closed();
2952 return TRUE;
2953}
2954
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002955#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2956 static int
2957get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2958{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002959# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002960 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2961
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002962 if (using_gnome && widget != NULL)
2963 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002964 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002965 BonoboDockItem *dockitem;
2966
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002967 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002968 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2969 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002970 // Only menu & toolbar are dock items. Could tabline be?
2971 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002972 widget = parent;
2973 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002974
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002975 if (dockitem == NULL || dockitem->is_floating)
2976 return 0;
2977 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2978 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002979 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002980# else
2981# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002982# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002983
Bram Moolenaar98921892016-02-23 17:14:37 +01002984 if (widget != NULL
2985 && item_orientation == orientation
2986 && gtk_widget_get_realized(widget)
2987 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002988 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002989# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002990 GtkAllocation allocation;
2991
2992 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002993 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002994# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002995 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2996 return widget->allocation.height;
2997 else
2998 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002999# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003000 }
3001 return 0;
3002}
3003#endif
3004
3005 static int
3006get_menu_tool_width(void)
3007{
3008 int width = 0;
3009
Bram Moolenaar30613902019-12-01 22:11:18 +01003010#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003011# ifdef FEAT_MENU
3012 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3013# endif
3014# ifdef FEAT_TOOLBAR
3015 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3016# endif
3017# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003018 if (gui.tabline != NULL)
3019 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003020# endif
3021#endif
3022
3023 return width;
3024}
3025
3026 static int
3027get_menu_tool_height(void)
3028{
3029 int height = 0;
3030
3031#ifdef FEAT_MENU
3032 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3033#endif
3034#ifdef FEAT_TOOLBAR
3035 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3036#endif
3037#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003038 if (gui.tabline != NULL)
3039 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003040#endif
3041
3042 return height;
3043}
3044
Bram Moolenaar30613902019-12-01 22:11:18 +01003045// This controls whether we can set the real window hints at
3046// start-up when in a GtkPlug.
3047// 0 = normal processing (default)
3048// 1 = init. hints set, no-one's tried to reset since last check
3049// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003050static int init_window_hints_state = 0;
3051
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003052 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003053update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003054{
3055 static int old_width = 0;
3056 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003057 static int old_min_width = 0;
3058 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003059 static int old_char_width = 0;
3060 static int old_char_height = 0;
3061
3062 int width;
3063 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003064 int min_width;
3065 int min_height;
3066
Bram Moolenaar30613902019-12-01 22:11:18 +01003067 // At start-up, don't try to set the hints until the initial
3068 // values have been used (those that dictate our initial size)
3069 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003070 if (!(force_width && force_height) && init_window_hints_state > 0)
3071 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003072 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003073 init_window_hints_state = 2;
3074 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003075 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003076
Bram Moolenaar30613902019-12-01 22:11:18 +01003077 // This also needs to be done when the main window isn't there yet,
3078 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003079 width = gui_get_base_width();
3080 height = gui_get_base_height();
3081# ifdef FEAT_MENU
3082 height += tabline_height() * gui.char_height;
3083# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003084 width += get_menu_tool_width();
3085 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003086
Bram Moolenaar30613902019-12-01 22:11:18 +01003087 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3088 // their actual widget size. When we set our size ourselves (e.g.,
3089 // 'set columns=' or init. -geom) we briefly set the min. to the size
3090 // we wish to be instead of the legitimate minimum so that we actually
3091 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003092 if (force_width && force_height)
3093 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003094 min_width = force_width;
3095 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003096 }
3097 else
3098 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003099 min_width = width + MIN_COLUMNS * gui.char_width;
3100 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003101 }
3102
Bram Moolenaar30613902019-12-01 22:11:18 +01003103 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003104 if (width != old_width
3105 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003106 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003107 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003108 || gui.char_width != old_char_width
3109 || gui.char_height != old_char_height)
3110 {
3111 GdkGeometry geometry;
3112 GdkWindowHints geometry_mask;
3113
3114 geometry.width_inc = gui.char_width;
3115 geometry.height_inc = gui.char_height;
3116 geometry.base_width = width;
3117 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003118 geometry.min_width = min_width;
3119 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003120 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3121 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003122 // Using gui.formwin as geometry widget doesn't work as expected
3123 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
Bram Moolenaarc0da5402023-05-16 22:15:51 +01003124 // in Vim confuse GTK+. For GTK 3 the second argument should be NULL
3125 // to make the width/height inc works, despite the docs saying
3126 // something else.
3127 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), NULL,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003128 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003129 old_width = width;
3130 old_height = height;
3131 old_min_width = min_width;
3132 old_min_height = min_height;
3133 old_char_width = gui.char_width;
3134 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003135 }
3136}
3137
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003138#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3139 void
3140gui_mch_set_dark_theme(int dark)
3141{
3142# if GTK_CHECK_VERSION(3,0,0)
3143 GtkSettings *gtk_settings;
3144
3145 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3146 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3147# endif
3148}
Bram Moolenaar30613902019-12-01 22:11:18 +01003149#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151#ifdef FEAT_TOOLBAR
3152
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153/*
3154 * This extra effort wouldn't be necessary if we only used stock icons in the
3155 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3156 * shouldn't be treated differently, thus we do need this.
3157 */
3158 static void
3159icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3160{
3161 if (GTK_IS_IMAGE(widget))
3162 {
3163 GtkImage *image = (GtkImage *)widget;
3164
Bram Moolenaar98921892016-02-23 17:14:37 +01003165# if GTK_CHECK_VERSION(3,10,0)
3166 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3167 {
3168 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3169 const gchar *icon_name;
3170
3171 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003172 image = (GtkImage *)gtk_image_new_from_icon_name(
3173 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003174 }
3175# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003176 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3178 {
3179 GtkIconSet *icon_set;
3180 GtkIconSize icon_size;
3181
3182 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3183 icon_size = (GtkIconSize)(long)user_data;
3184
3185 gtk_icon_set_ref(icon_set);
3186 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3187 gtk_icon_set_unref(icon_set);
3188 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003189# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 }
3191 else if (GTK_IS_CONTAINER(widget))
3192 {
3193 gtk_container_foreach((GtkContainer *)widget,
3194 &icon_size_changed_foreach,
3195 user_data);
3196 }
3197}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198
3199 static void
3200set_toolbar_style(GtkToolbar *toolbar)
3201{
3202 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 GtkIconSize size;
3204 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3207 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3208 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003209 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3211 style = GTK_TOOLBAR_BOTH;
3212 else if (toolbar_flags & TOOLBAR_TEXT)
3213 style = GTK_TOOLBAR_TEXT;
3214 else
3215 style = GTK_TOOLBAR_ICONS;
3216
3217 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003218# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003220# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 switch (tbis_flags)
3223 {
3224 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3225 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3226 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3227 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003228 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3229 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 default: size = GTK_ICON_SIZE_INVALID; break;
3231 }
3232 oldsize = gtk_toolbar_get_icon_size(toolbar);
3233
3234 if (size == GTK_ICON_SIZE_INVALID)
3235 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003236 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 gtk_toolbar_unset_icon_size(toolbar);
3238 size = gtk_toolbar_get_icon_size(toolbar);
3239 }
3240 if (size != oldsize)
3241 {
3242 gtk_container_foreach(GTK_CONTAINER(toolbar),
3243 &icon_size_changed_foreach,
3244 GINT_TO_POINTER((int)size));
3245 }
3246 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247}
3248
Bram Moolenaar30613902019-12-01 22:11:18 +01003249#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003251#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3252static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003253static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003254# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003255static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003256# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003257static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003258
3259/*
3260 * Handle selecting an item in the tab line popup menu.
3261 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003262 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003263tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003264{
Bram Moolenaar30613902019-12-01 22:11:18 +01003265 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003266 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003267}
3268
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003269 static void
3270add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3271{
3272 GtkWidget *item;
3273 char_u *utf_text;
3274
3275 utf_text = CONVERT_TO_UTF8(text);
3276 item = gtk_menu_item_new_with_label((const char *)utf_text);
3277 gtk_widget_show(item);
3278 CONVERT_TO_UTF8_FREE(utf_text);
3279
3280 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003281 g_signal_connect(G_OBJECT(item), "activate",
3282 G_CALLBACK(tabline_menu_handler),
3283 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003284}
3285
Bram Moolenaara5621492006-02-25 21:55:24 +00003286/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003287 * Create a menu for the tab line.
3288 */
3289 static GtkWidget *
3290create_tabline_menu(void)
3291{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003292 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003293
3294 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003295 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003296 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3297 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003298
3299 return menu;
3300}
3301
3302 static gboolean
3303on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3304{
Bram Moolenaar30613902019-12-01 22:11:18 +01003305 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003306 if (event->type == GDK_BUTTON_PRESS)
3307 {
3308 GdkEventButton *bevent = (GdkEventButton *)event;
3309 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003310 int y = bevent->y;
3311 GtkWidget *tabwidget;
3312 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003313
Bram Moolenaar30613902019-12-01 22:11:18 +01003314 // When ignoring events return TRUE so that the selected page doesn't
3315 // change.
Martin Tournoij7904fa42022-10-04 16:28:45 +01003316 if (hold_gui_events || cmdwin_type != 0)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003317 return TRUE;
3318
Bram Moolenaar98921892016-02-23 17:14:37 +01003319 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003320
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003321 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003322 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3323 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003324
Bram Moolenaar30613902019-12-01 22:11:18 +01003325 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003326 if (bevent->button == 3)
3327 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003328# if GTK_CHECK_VERSION(3,22,2)
3329 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3330# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003331 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3332 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003333# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003334 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003335 return TRUE;
3336 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003337 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003338 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003339 if (clicked_page == 0)
3340 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003341 // Click after all tabs moves to next tab page. When "x" is
3342 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003343 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003344 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003345 }
regomne3bdef102022-09-26 20:48:32 +01003346 else if (bevent->button == 2)
3347 {
3348 if (clicked_page != 0)
3349 // Middle mouse click on tabpage label closes that tab.
3350 send_tabline_menu_event(clicked_page, TABLINE_MENU_CLOSE);
3351 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003352 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003353
Bram Moolenaar30613902019-12-01 22:11:18 +01003354 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003355 return FALSE;
3356}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003357
3358/*
3359 * Handle selecting one of the tabs.
3360 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003361 static void
3362on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003363 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003364 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003365 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003366 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003367{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003368 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003369 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003370}
3371
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003372# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003373/*
3374 * Handle reordering the tabs (using D&D).
3375 */
3376 static void
3377on_tab_reordered(
3378 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003379 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003380 gint idx,
3381 gpointer data UNUSED)
3382{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00003383 if (ignore_tabline_evt)
3384 return;
3385
3386 if ((tabpage_index(curtab) - 1) < idx)
3387 tabpage_move(idx + 1);
3388 else
3389 tabpage_move(idx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003390}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003391# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003392
3393/*
3394 * Show or hide the tabline.
3395 */
3396 void
3397gui_mch_show_tabline(int showit)
3398{
3399 if (gui.tabline == NULL)
3400 return;
3401
3402 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3403 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003404 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003405 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003406 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003407 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003408 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003409 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003410
3411 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003412}
3413
3414/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003415 * Return TRUE when tabline is displayed.
3416 */
3417 int
3418gui_mch_showing_tabline(void)
3419{
3420 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003421 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003422}
3423
3424/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003425 * Update the labels of the tabline.
3426 */
3427 void
3428gui_mch_update_tabline(void)
3429{
3430 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003431 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003432 GtkWidget *label;
3433 tabpage_T *tp;
3434 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003435 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003436 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003437 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003438
3439 if (gui.tabline == NULL)
3440 return;
3441
3442 ignore_tabline_evt = TRUE;
3443
Bram Moolenaar30613902019-12-01 22:11:18 +01003444 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003445 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3446 {
3447 if (tp == curtab)
3448 curtabidx = nr;
3449
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003450 tab_num = nr + 1;
3451
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003452 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3453 if (page == NULL)
3454 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003455 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003456# if GTK_CHECK_VERSION(3,2,0)
3457 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3458 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3459# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003460 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003461# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003462 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003463 event_box = gtk_event_box_new();
3464 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003465 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003466# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003467 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003468# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003469 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003470 gtk_widget_show(label);
3471 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3472 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003473 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003474 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003475# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003476 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3477 page,
3478 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003479# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003480 }
3481
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003482 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003483 g_object_set_data(G_OBJECT(event_box), "tab_num",
3484 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003485 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003486 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003487 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003488 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003489 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003490
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003491 get_tabline_label(tp, TRUE);
3492 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003493# if GTK_CHECK_VERSION(3,0,0)
3494 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3495# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003496 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3497 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003498# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003499 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003500 }
3501
Bram Moolenaar30613902019-12-01 22:11:18 +01003502 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003503 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3504 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3505
Bram Moolenaar98921892016-02-23 17:14:37 +01003506 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3507 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003508
Bram Moolenaar30613902019-12-01 22:11:18 +01003509 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003510 gui_mch_update();
3511
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003512 ignore_tabline_evt = FALSE;
3513}
3514
3515/*
3516 * Set the current tab to "nr". First tab is 1.
3517 */
3518 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003519gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003520{
3521 if (gui.tabline == NULL)
3522 return;
3523
3524 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003525 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3526 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003527 ignore_tabline_evt = FALSE;
3528}
3529
Bram Moolenaar30613902019-12-01 22:11:18 +01003530#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003531
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003533 * Add selection targets for PRIMARY and CLIPBOARD selections.
3534 */
3535 void
3536gui_gtk_set_selection_targets(void)
3537{
3538 int i, j = 0;
3539 int n_targets = N_SELECTION_TARGETS;
3540 GtkTargetEntry targets[N_SELECTION_TARGETS];
3541
3542 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3543 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003544 // OpenOffice tries to use TARGET_HTML and fails when we don't
3545 // return something, instead of trying another target. Therefore only
3546 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003547 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3548 n_targets--;
3549 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003550 targets[j++] = selection_targets[i];
3551 }
3552
3553 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3554 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3555 gtk_selection_add_targets(gui.drawarea,
3556 (GdkAtom)GDK_SELECTION_PRIMARY,
3557 targets, n_targets);
3558 gtk_selection_add_targets(gui.drawarea,
3559 (GdkAtom)clip_plus.gtk_sel_atom,
3560 targets, n_targets);
3561}
3562
3563/*
3564 * Set up for receiving DND items.
3565 */
3566 void
3567gui_gtk_set_dnd_targets(void)
3568{
3569 int i, j = 0;
3570 int n_targets = N_DND_TARGETS;
3571 GtkTargetEntry targets[N_DND_TARGETS];
3572
3573 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3574 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003575 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003576 n_targets--;
3577 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003578 targets[j++] = dnd_targets[i];
3579 }
3580
3581 gtk_drag_dest_unset(gui.drawarea);
3582 gtk_drag_dest_set(gui.drawarea,
3583 GTK_DEST_DEFAULT_ALL,
3584 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003585 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003586}
3587
3588/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3590 * Returns OK for success, FAIL when the GUI can't be started.
3591 */
3592 int
3593gui_mch_init(void)
3594{
3595 GtkWidget *vbox;
3596
3597#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003598 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3599 // exits on failure, but that's a non-issue because we already called
3600 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003602 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3604 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar73e28dc2022-09-17 21:08:33 +01003605# if defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003606 {
3607 char *p = setlocale(LC_NUMERIC, NULL);
3608
Bram Moolenaar30613902019-12-01 22:11:18 +01003609 // Make sure strtod() uses a decimal point, not a comma. Gnome
3610 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003611 if (p == NULL || strcmp(p, "C") != 0)
3612 setlocale(LC_NUMERIC, "C");
3613 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003614# endif
3615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003617 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003619#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003620 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003622#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 /*
3624 * Force UTF-8 output no matter what the value of 'encoding' is.
3625 * did_set_string_option() in option.c prohibits changing 'termencoding'
3626 * to something else than UTF-8 if the GUI is in use.
3627 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003628 set_option_value_give_err((char_u *)"termencoding",
3629 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003631#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003633#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003634 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3635 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003636#if !GTK_CHECK_VERSION(3,0,0)
3637# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003639# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640#endif
3641
Bram Moolenaar30613902019-12-01 22:11:18 +01003642 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 gui.border_width = 2;
3644 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3645 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003646#if GTK_CHECK_VERSION(3,0,0)
3647 gui.fgcolor = g_new(GdkRGBA, 1);
3648 gui.bgcolor = g_new(GdkRGBA, 1);
3649 gui.spcolor = g_new(GdkRGBA, 1);
3650#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003651 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003653 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003655 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003656 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003657#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658
Bram Moolenaar30613902019-12-01 22:11:18 +01003659 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003660 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662
Bram Moolenaar30613902019-12-01 22:11:18 +01003663 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 gui.norm_pixel = gui.def_norm_pixel;
3665 gui.back_pixel = gui.def_back_pixel;
3666
3667 if (gtk_socket_id != 0)
3668 {
3669 GtkWidget *plug;
3670
Bram Moolenaar30613902019-12-01 22:11:18 +01003671 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3673 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003674 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 {
3676 gui.mainwin = plug;
3677 }
3678 else
3679 {
3680 g_warning("Connection to GTK+ socket (ID %u) failed",
3681 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003682 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 gtk_socket_id = 0;
3684 }
3685 }
3686
3687 if (gtk_socket_id == 0)
3688 {
3689#ifdef FEAT_GUI_GNOME
3690 if (using_gnome)
3691 {
3692 gui.mainwin = gnome_app_new("Vim", NULL);
3693# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003694 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 xsmp_close();
3696# endif
3697 }
3698 else
3699#endif
3700 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3701 }
3702
3703 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3704
Bram Moolenaar30613902019-12-01 22:11:18 +01003705 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3707 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708
Bram Moolenaar98921892016-02-23 17:14:37 +01003709 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3711
Bram Moolenaar98921892016-02-23 17:14:37 +01003712 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3713 G_CALLBACK(&delete_event_cb), NULL);
3714
3715 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3716 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003717
3718 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003720
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 gui.accel_group = gtk_accel_group_new();
3722 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723
Bram Moolenaar30613902019-12-01 22:11:18 +01003724 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003725#if GTK_CHECK_VERSION(3,2,0)
3726 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3727 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3728#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731
3732#ifdef FEAT_GUI_GNOME
3733 if (using_gnome)
3734 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003735# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003736 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3738# endif
3739 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3740 }
3741 else
3742#endif
3743 {
3744 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3745 gtk_widget_show(vbox);
3746 }
3747
3748#ifdef FEAT_MENU
3749 /*
3750 * Create the menubar and handle
3751 */
3752 gui.menubar = gtk_menu_bar_new();
3753 gtk_widget_set_name(gui.menubar, "vim-menubar");
3754
Bram Moolenaar30613902019-12-01 22:11:18 +01003755 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003756 {
3757 GtkSettings *gtk_settings;
3758
3759 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3760 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3761 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003762
3763
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764# ifdef FEAT_GUI_GNOME
3765 if (using_gnome)
3766 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 BonoboDockItem *dockitem;
3768
3769 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3770 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3771 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003772 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003773 bonobo_dock_item_set_behavior(dockitem,
3774 bonobo_dock_item_get_behavior(dockitem)
3775 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 }
3778 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003779# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003781 // Always show the menubar, otherwise <F10> doesn't work. It may be
3782 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003783 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3785 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003786#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787
3788#ifdef FEAT_TOOLBAR
3789 /*
3790 * Create the toolbar and handle
3791 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003792 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003793# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003794 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3795 // N.B. Since the default value of GtkToolbar::button-relief is
3796 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003797# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 gtk_rc_parse_string(
3799 "style \"vim-toolbar-style\" {\n"
3800 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3801 "}\n"
3802 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003803# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 gui.toolbar = gtk_toolbar_new();
3805 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3807
3808# ifdef FEAT_GUI_GNOME
3809 if (using_gnome)
3810 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 BonoboDockItem *dockitem;
3812
3813 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3814 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3815 GNOME_APP_TOOLBAR_NAME);
3816 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003817 // When the toolbar is floating it gets stuck. So long as that isn't
3818 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003819 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003820 bonobo_dock_item_get_behavior(dockitem)
3821 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 }
3824 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003825# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3828 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3829 gtk_widget_show(gui.toolbar);
3830 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3831 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003832#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003834#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003835 /*
3836 * Use a Notebook for the tab pages labels. The labels are hidden by
3837 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003838 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003839 gui.tabline = gtk_notebook_new();
3840 gtk_widget_show(gui.tabline);
3841 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3842 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3843 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003844 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003845# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003846 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003847# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003848
Bram Moolenaar98921892016-02-23 17:14:37 +01003849# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003850 tabline_tooltip = gtk_tooltips_new();
3851 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003852# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003853
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003854 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003855 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003856
Bram Moolenaar30613902019-12-01 22:11:18 +01003857 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003858# if GTK_CHECK_VERSION(3,2,0)
3859 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3860 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3861# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003862 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003863# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003864 gtk_widget_show(page);
3865 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3866 label = gtk_label_new("-Empty-");
3867 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003868 event_box = gtk_event_box_new();
3869 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003870 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003871# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003872 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003873# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003874 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003875 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003876# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003877 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003878# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003879 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003880
Bram Moolenaar98921892016-02-23 17:14:37 +01003881 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3882 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003883# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003884 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3885 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003886# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003887
Bram Moolenaar30613902019-12-01 22:11:18 +01003888 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003889 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003890 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3891 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003892#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003893
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003894 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003895 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003896#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003898#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003899#if GTK_CHECK_VERSION(3,22,2)
3900 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902
3903 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003904#if GTK_CHECK_VERSION(3,0,0)
3905 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907
Bram Moolenaar30613902019-12-01 22:11:18 +01003908 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 gtk_widget_set_events(gui.drawarea,
3910 GDK_EXPOSURE_MASK |
3911 GDK_ENTER_NOTIFY_MASK |
3912 GDK_LEAVE_NOTIFY_MASK |
3913 GDK_BUTTON_PRESS_MASK |
3914 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 GDK_KEY_PRESS_MASK |
3917 GDK_KEY_RELEASE_MASK |
3918 GDK_POINTER_MOTION_MASK |
3919 GDK_POINTER_MOTION_HINT_MASK);
3920
3921 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003922 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 gtk_widget_show(gui.formwin);
3924 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3925
Bram Moolenaar30613902019-12-01 22:11:18 +01003926 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3927 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003928 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3929 : G_OBJECT(gui.drawarea),
3930 "key-press-event",
3931 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003932#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003933 // Also forward key release events for the benefit of GTK+ 2 input
3934 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3936 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003937 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 G_CALLBACK(&key_release_event), NULL);
3939#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003940 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3941 G_CALLBACK(drawarea_realize_cb), NULL);
3942 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3943 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003944#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003945 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3946 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003947#endif
3948#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003949 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3950 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003951#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003952 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3953 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955
Bram Moolenaar98921892016-02-23 17:14:37 +01003956#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003960#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3962 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3963#endif
3964
3965 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003966 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003967 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968
3969 /*
3970 * Set clipboard specific atoms
3971 */
3972 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3975 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3976
3977 /*
3978 * Start out by adding the configured border width into the border offset.
3979 */
3980 gui.border_offset = gui.border_width;
3981
Bram Moolenaar98921892016-02-23 17:14:37 +01003982#if GTK_CHECK_VERSION(3,0,0)
3983 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3984 G_CALLBACK(draw_event), NULL);
3985#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3987 GTK_SIGNAL_FUNC(visibility_event), NULL);
3988 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3989 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991
3992 /*
3993 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3994 * Only needed for some window managers.
3995 */
3996 if (vim_strchr(p_go, GO_POINTER) != NULL)
3997 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003998 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3999 G_CALLBACK(leave_notify_event), NULL);
4000 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4001 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 }
4003
Bram Moolenaar30613902019-12-01 22:11:18 +01004004 // Real windows can get focus ... GtkPlug, being a mere container can't,
4005 // only its widgets. Arguably, this could be common code and we not use
4006 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004007 if (gtk_socket_id == 0)
4008 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004009 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4010 G_CALLBACK(focus_out_event), NULL);
4011 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4012 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004013 }
4014 else
4015 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004016 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4017 G_CALLBACK(focus_out_event), NULL);
4018 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4019 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004020#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004021 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4022 G_CALLBACK(focus_out_event), NULL);
4023 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4024 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004025#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027
Bram Moolenaar98921892016-02-23 17:14:37 +01004028 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4029 G_CALLBACK(motion_notify_event), NULL);
4030 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4031 G_CALLBACK(button_press_event), NULL);
4032 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4033 G_CALLBACK(button_release_event), NULL);
4034 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4035 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037 /*
4038 * Add selection handler functions.
4039 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004040 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4041 G_CALLBACK(selection_clear_event), NULL);
4042 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4043 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
Bram Moolenaara76638f2010-06-05 12:49:46 +02004045 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046
Bram Moolenaar98921892016-02-23 17:14:37 +01004047 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4048 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
Bram Moolenaar30613902019-12-01 22:11:18 +01004050 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 gui.in_focus = FALSE;
4052
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004053 // Handle changes to the "Xft/DPI" setting.
4054 {
4055 GtkSettings *gtk_settings =
4056 gtk_settings_get_for_screen(gdk_screen_get_default());
4057
4058 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4059 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4060 }
4061
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 return OK;
4063}
4064
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004065#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066/*
4067 * This is called from gui_start() after a fork() has been done.
4068 * We have to tell the session manager our new PID.
4069 */
4070 void
4071gui_mch_forked(void)
4072{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004073 if (!using_gnome)
4074 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004076 GnomeClient *client;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00004078 client = gnome_master_client();
4079
4080 if (client != NULL)
4081 gnome_client_set_process_id(client, getpid());
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004083#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084
Bram Moolenaar98921892016-02-23 17:14:37 +01004085#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004086 static GdkRGBA
4087color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004088{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004089 GdkRGBA rgba;
4090 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4091 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4092 rgba.blue = ((color & 0xff)) / 255.0;
4093 rgba.alpha = 1.0;
4094 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004095}
4096
4097 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004098set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004099{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004100 const GdkRGBA rgba = color_to_rgba(color);
4101 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004102}
Bram Moolenaar30613902019-12-01 22:11:18 +01004103#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004104
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105/*
4106 * Called when the foreground or background color has been changed.
4107 * This used to change the graphics contexts directly but we are
4108 * currently manipulating them where desired.
4109 */
4110 void
4111gui_mch_new_colors(void)
4112{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004113 if (gui.drawarea != NULL
4114#if GTK_CHECK_VERSION(3,22,2)
4115 && gui.formwin != NULL
4116#endif
4117 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004119#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004120 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004121#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004122#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004123 GtkStyleContext * const context =
4124 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004125 GtkCssProvider * const provider = gtk_css_provider_new();
4126 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004127 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004128 " background-color: #%.2lx%.2lx%.2lx;\n"
4129 "}\n",
4130 (gui.back_pixel >> 16) & 0xff,
4131 (gui.back_pixel >> 8) & 0xff,
4132 gui.back_pixel & 0xff);
4133
4134 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4135 gtk_style_context_add_provider(context,
4136 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4137
4138 g_free(css);
4139 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004140#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004141 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004142
Bram Moolenaar36edf062016-07-21 22:10:12 +02004143 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004144 {
4145 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004146 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004147 if (pat != NULL)
4148 {
4149 gdk_window_set_background_pattern(da_win, pat);
4150 cairo_pattern_destroy(pat);
4151 }
4152 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004153 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004154 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004155#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 GdkColor color = { 0, 0, 0, 0 };
4157
4158 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004159 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004160#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 }
4162}
4163
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164/*
4165 * This signal informs us about the need to rearrange our sub-widgets.
4166 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004168form_configure_event(GtkWidget *widget UNUSED,
4169 GdkEventConfigure *event,
4170 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171{
Ernie Raeld42b8392022-04-23 19:52:23 +01004172 int usable_height = event->height;
4173#ifdef TRACK_RESIZE_HISTORY
4174 // Resize requests are made for gui.mainwin;
4175 // get its dimensions for searching if this event
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004176 // is a response to a vim request.
Ernie Raeld42b8392022-04-23 19:52:23 +01004177 int w, h;
4178 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004179
Ernie Raeld42b8392022-04-23 19:52:23 +01004180# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004181 ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]",
4182 w, h, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +01004183# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004184
Ernie Raeld42b8392022-04-23 19:52:23 +01004185 // Look through history of recent vim resize requests.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004186 // If this event matches:
4187 // - "latest resize hist" We're caught up;
4188 // clear the history and process this event.
4189 // If history is, old to new, 100, 99, 100, 99. If this event is
4190 // 99 for the stale, it is matched against the current. History
Ernie Raeld42b8392022-04-23 19:52:23 +01004191 // is cleared, we may bounce, but no worse than before.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004192 // - "older/stale hist" If match an unused event in history,
4193 // then discard this event, and mark the matching event as used.
4194 // - "no match" Figure it's a user resize event, clear history.
4195 // NOTE: clear history is default, then all incoming events are processed
4196
4197 if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h)
4198 && match_stale_width_height(w, h))
4199 // discard stale event
4200 return TRUE;
4201 clear_resize_hists();
Ernie Raeld42b8392022-04-23 19:52:23 +01004202#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004203
Bram Moolenaar182707a2016-11-21 20:55:58 +01004204#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004205 // As of 3.22.2, GdkWindows have started distributing configure events to
4206 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4207 //
4208 // As can be seen from the implementation of move_native_children() and
4209 // configure_native_child() in gdkwindow.c, those functions actually
4210 // propagate configure events to every child, failing to distinguish
4211 // "native" one from non-native one.
4212 //
4213 // Naturally, configure events propagated to here like that are fallacious
4214 // and, as a matter of fact, they trigger a geometric collapse of
4215 // gui.formwin.
4216 //
4217 // To filter out such fallacious events, check if the given event is the
4218 // one that was sent out to the right place. Ignore it if not.
4219 //
4220 // Follow-up
4221 // After a few weeks later, the GdkWindow change mentioned above was
4222 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4223 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004224 if (event->window != gtk_widget_get_window(gui.formwin))
4225 return TRUE;
4226#endif
4227
Bram Moolenaar30613902019-12-01 22:11:18 +01004228 // When in a GtkPlug, we can't guarantee valid heights (as a round
4229 // no. of char-heights), so we have to manually sanitise them.
4230 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004231 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004232 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004233
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004234 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004235 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004236 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237
4238 return TRUE;
4239}
4240
4241/*
4242 * Function called when window already closed.
4243 * We can't do much more here than to trying to preserve what had been done,
4244 * since the window is already inevitably going away.
4245 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004246 static void
4247mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248{
Bram Moolenaar30613902019-12-01 22:11:18 +01004249 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 full_screen = FALSE;
4251
4252 gui.mainwin = NULL;
4253 gui.drawarea = NULL;
4254
Bram Moolenaar30613902019-12-01 22:11:18 +01004255 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004257 vim_strncpy(IObuff,
4258 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4259 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 preserve_exit();
4261 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004262#ifdef USE_GRESOURCE
4263 gui_gtk_unregister_resource();
4264#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265}
4266
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004267 void
4268gui_gtk_get_screen_geom_of_win(
4269 GtkWidget *wid,
4270 int point_x, // x position of window if not initialized
4271 int point_y, // y position of window if not initialized
4272 int *screen_x,
4273 int *screen_y,
4274 int *width,
4275 int *height)
4276{
4277 GdkRectangle geometry;
4278 GdkWindow *win = gtk_widget_get_window(wid);
4279#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004280 GdkDisplay *dpy;
4281 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004282
Bram Moolenaar24001432021-03-20 12:36:46 +01004283 if (wid != NULL && gtk_widget_get_realized(wid))
4284 dpy = gtk_widget_get_display(wid);
4285 else
4286 dpy = gdk_display_get_default();
4287 if (win != NULL)
4288 monitor = gdk_display_get_monitor_at_window(dpy, win);
4289 else
4290 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004291 gdk_monitor_get_geometry(monitor, &geometry);
4292#else
4293 GdkScreen* screen;
4294 int monitor;
4295
4296 if (wid != NULL && gtk_widget_has_screen(wid))
4297 screen = gtk_widget_get_screen(wid);
4298 else
4299 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004300 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004301 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004302 else
4303 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004304 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4305#endif
4306 *screen_x = geometry.x;
4307 *screen_y = geometry.y;
4308 *width = geometry.width;
4309 *height = geometry.height;
4310}
4311
4312/*
4313 * The screen size is used to make sure the initial window doesn't get bigger
4314 * than the screen. This subtracts some room for menubar, toolbar and window
4315 * decorations.
4316 */
4317 static void
4318gui_gtk_get_screen_dimensions(
4319 int point_x,
4320 int point_y,
4321 int *screen_w,
4322 int *screen_h)
4323{
4324 int x, y;
4325
4326 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4327 &x, &y, screen_w, screen_h);
4328
4329 // Subtract 'guiheadroom' from the height to allow some room for the
4330 // window manager (task list and window title bar).
4331 *screen_h -= p_ghr;
4332
4333 /*
4334 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4335 * the toolbar and menubar for GTK, we subtract them from the screen
4336 * height, so that the window size can be made to fit on the screen.
4337 * This should be completely changed later.
4338 */
4339 *screen_w -= get_menu_tool_width();
4340 *screen_h -= get_menu_tool_height();
4341}
4342
4343 void
4344gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4345{
4346 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4347}
4348
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004349
4350/*
4351 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4352 * hints (and thus the required size from -geom), but that after that we
4353 * put the hints back to normal (the actual minimum size) so we may
4354 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004355 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004356 * only way we have of making ourselves bigger (by set lines/columns).
4357 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004358 * second after the final attempt to reset the real minimum hints (done by
4359 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004360 * We'll not let the default hints be set while this timer's active.
4361 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004362 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004363check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004364{
4365 if (init_window_hints_state == 1)
4366 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004367 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004368 init_window_hints_state = 0;
4369 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004370 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004371 }
4372
Bram Moolenaar30613902019-12-01 22:11:18 +01004373 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004374 init_window_hints_state = 1;
4375 return TRUE;
4376}
4377
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378/*
4379 * Open the GUI window which was created by a call to gui_mch_init().
4380 */
4381 int
4382gui_mch_open(void)
4383{
4384 guicolor_T fg_pixel = INVALCOLOR;
4385 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004386 guint pixel_width;
4387 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 /*
4390 * Allow setting a window role on the command line, or invent one
4391 * if none was specified. This is mainly useful for GNOME session
4392 * support; allowing the WM to restore window placement.
4393 */
4394 if (role_argument != NULL)
4395 {
4396 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4397 }
4398 else
4399 {
4400 char *role;
4401
Bram Moolenaar30613902019-12-01 22:11:18 +01004402 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 role = g_strdup_printf("vim-%u-%u-%u",
4404 (unsigned)mch_get_pid(),
4405 (unsigned)g_random_int(),
4406 (unsigned)time(NULL));
4407
4408 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4409 g_free(role);
4410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411
4412 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414
Bram Moolenaar30613902019-12-01 22:11:18 +01004415 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 if (gui.geom != NULL)
4417 {
4418 int mask;
4419 unsigned int w, h;
4420 int x = 0;
4421 int y = 0;
4422
4423 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4424
4425 if (mask & WidthValue)
4426 Columns = w;
4427 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004428 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004429 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004430 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004432 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004433 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004434
4435 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4436 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4437
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004438 pixel_width += get_menu_tool_width();
4439 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004440
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004442 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004443 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004444
4445#ifdef FEAT_GUI_GTK
4446 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4447#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004448 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004449#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004450 hh += p_ghr + get_menu_tool_height();
4451 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004452 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004453 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004454 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004455 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004457 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004458 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004459
Bram Moolenaar30613902019-12-01 22:11:18 +01004460 // From now until everyone's stopped trying to set the window hints
4461 // to their correct minimum values, stop them being set as we need
4462 // them to remain at our required size for the parent GtkSocket to
4463 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004464 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004465 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004466 update_window_manager_hints(pixel_width, pixel_height);
4467 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004468 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 }
4471
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004472 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4473 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004474 // For GTK2 changing the size of the form widget doesn't cause window
4475 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004476 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004477 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004478 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479
4480 if (foreground_argument != NULL)
4481 fg_pixel = gui_get_color((char_u *)foreground_argument);
4482 if (fg_pixel == INVALCOLOR)
4483 fg_pixel = gui_get_color((char_u *)"Black");
4484
4485 if (background_argument != NULL)
4486 bg_pixel = gui_get_color((char_u *)background_argument);
4487 if (bg_pixel == INVALCOLOR)
4488 bg_pixel = gui_get_color((char_u *)"White");
4489
4490 if (found_reverse_arg)
4491 {
4492 gui.def_norm_pixel = bg_pixel;
4493 gui.def_back_pixel = fg_pixel;
4494 }
4495 else
4496 {
4497 gui.def_norm_pixel = fg_pixel;
4498 gui.def_back_pixel = bg_pixel;
4499 }
4500
Bram Moolenaar30613902019-12-01 22:11:18 +01004501 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4502 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 set_normal_colors();
4504
Bram Moolenaar30613902019-12-01 22:11:18 +01004505 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 gui_check_colors();
4507
Bram Moolenaar30613902019-12-01 22:11:18 +01004508 // Get the colors for the highlight groups (gui_check_colors() might have
4509 // changed them).
4510 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511
Bram Moolenaar98921892016-02-23 17:14:37 +01004512 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4513 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 /*
4516 * Notify the fixed area about the need to resize the contents of the
4517 * gui.formwin, which we use for random positioning of the included
4518 * components.
4519 *
4520 * We connect this signal deferred finally after anything is in place,
4521 * since this is intended to handle resizements coming from the window
4522 * manager upon us and should not interfere with what VIM is requesting
4523 * upon startup.
4524 */
Ernie Raeld42b8392022-04-23 19:52:23 +01004525#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004526 latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T);
Ernie Raeld42b8392022-04-23 19:52:23 +01004527#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004528 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004529 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530
4531#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004532 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004533 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534
Bram Moolenaar98921892016-02-23 17:14:37 +01004535 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004536 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537#endif
4538
Bram Moolenaar30613902019-12-01 22:11:18 +01004539 // With GTK+ 2, we need to iconify the window before calling show()
4540 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 if (found_iconic_arg && gtk_socket_id == 0)
4542 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543
4544 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004545#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 unsigned long menu_handler = 0;
4547# ifdef FEAT_TOOLBAR
4548 unsigned long tool_handler = 0;
4549# endif
4550 /*
4551 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4552 * show when restoring the saved layout configuration. We can't just
4553 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4554 * a toplevel window and thus will be realized immediately. Instead,
4555 * connect signal handlers to hide the widgets just after they've been
4556 * marked visible, but before the main window is realized.
4557 */
4558 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4559 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4560 G_CALLBACK(&gtk_widget_hide),
4561 NULL);
4562# ifdef FEAT_TOOLBAR
4563 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4564 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4565 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4566 G_CALLBACK(&gtk_widget_hide),
4567 NULL);
4568# endif
4569#endif
4570 gtk_widget_show(gui.mainwin);
4571
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004572#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 if (menu_handler != 0)
4574 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4575# ifdef FEAT_TOOLBAR
4576 if (tool_handler != 0)
4577 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4578# endif
4579#endif
4580 }
4581
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 return OK;
4583}
4584
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004585/*
4586 * Clean up for when exiting Vim.
4587 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004589gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004591 // Clean up, unless we don't want to invoke free().
4592 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594}
4595
4596/*
4597 * Get the position of the top left corner of the window.
4598 */
4599 int
4600gui_mch_get_winpos(int *x, int *y)
4601{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 return OK;
4604}
4605
4606/*
4607 * Set the position of the top left corner of the window to the given
4608 * coordinates.
4609 */
4610 void
4611gui_mch_set_winpos(int x, int y)
4612{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614}
4615
Bram Moolenaar98921892016-02-23 17:14:37 +01004616#if !GTK_CHECK_VERSION(3,0,0)
4617# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618static int resize_idle_installed = FALSE;
4619/*
4620 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4621 * the shell size doesn't exceed the window size, i.e. if the window manager
4622 * ignored our size request. Usually this happens if the window is maximized.
4623 *
4624 * FIXME: It'd be nice if we could find a little more orthodox solution.
4625 * See also the remark below in gui_mch_set_shellsize().
4626 *
4627 * DISABLED: When doing ":set lines+=1" this function would first invoke
4628 * gui_resize_shell() with the old size, then the normal callback would
4629 * report the new size through form_configure_event(). That caused the window
4630 * layout to be messed up.
4631 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 static gboolean
4633force_shell_resize_idle(gpointer data)
4634{
4635 if (gui.mainwin != NULL
4636 && GTK_WIDGET_REALIZED(gui.mainwin)
4637 && GTK_WIDGET_VISIBLE(gui.mainwin))
4638 {
4639 int width;
4640 int height;
4641
4642 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4643
4644 width -= get_menu_tool_width();
4645 height -= get_menu_tool_height();
4646
4647 gui_resize_shell(width, height);
4648 }
4649
4650 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004651 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652}
Bram Moolenaar98921892016-02-23 17:14:37 +01004653# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004654#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar09736232009-09-23 16:14:49 +00004656/*
4657 * Return TRUE if the main window is maximized.
4658 */
4659 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004660gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004661{
Bram Moolenaar98921892016-02-23 17:14:37 +01004662 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4663 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4664 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004665}
4666
4667/*
4668 * Unmaximize the main window
4669 */
4670 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004671gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004672{
4673 if (gui.mainwin != NULL)
4674 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4675}
Bram Moolenaar09736232009-09-23 16:14:49 +00004676
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004678 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4679 * is set. Compute the new Rows and Columns. This is like resizing the
4680 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004681 */
4682 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004683gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004684{
4685 int w, h;
4686
4687 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4688 w -= get_menu_tool_width();
4689 h -= get_menu_tool_height();
4690 gui_resize_shell(w, h);
4691}
4692
4693/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 * Set the windows size.
4695 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 void
4697gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004698 int min_width UNUSED, int min_height UNUSED,
4699 int base_width UNUSED, int base_height UNUSED,
4700 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701{
Bram Moolenaar30613902019-12-01 22:11:18 +01004702 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 gui_mch_update();
4704
Bram Moolenaar30613902019-12-01 22:11:18 +01004705 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004706 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004707 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004708
Bram Moolenaar30613902019-12-01 22:11:18 +01004709 // With GTK+ 2, changing the size of the form widget doesn't resize
4710 // the window. So let's do it the other way around and resize the
4711 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 width += get_menu_tool_width();
4713 height += get_menu_tool_height();
4714
Ernie Raeld42b8392022-04-23 19:52:23 +01004715#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004716 alloc_resize_hist(width, height); // track the resize request
Ernie Raeld42b8392022-04-23 19:52:23 +01004717#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004718 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004719 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004720 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004721 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
Bram Moolenaar98921892016-02-23 17:14:37 +01004723# if !GTK_CHECK_VERSION(3,0,0)
4724# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 if (!resize_idle_installed)
4726 {
4727 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4728 &force_shell_resize_idle, NULL, NULL);
4729 resize_idle_installed = TRUE;
4730 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004731# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004732# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 /*
4734 * Wait until all events are processed to prevent a crash because the
4735 * real size of the drawing area doesn't reflect Vim's internal ideas.
4736 *
4737 * This is a bit of a hack, since Vim is a terminal application with a GUI
4738 * on top, while the GUI expects to be the boss.
4739 */
4740 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741}
4742
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004744gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 if (title != NULL && output_conv.vc_type != CONV_NONE)
4747 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748
4749 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4750
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 if (output_conv.vc_type != CONV_NONE)
4752 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754
4755#if defined(FEAT_MENU) || defined(PROTO)
4756 void
4757gui_mch_enable_menu(int showit)
4758{
4759 GtkWidget *widget;
4760
4761# ifdef FEAT_GUI_GNOME
4762 if (using_gnome)
4763 widget = gui.menubar_h;
4764 else
4765# endif
4766 widget = gui.menubar;
4767
Bram Moolenaar30613902019-12-01 22:11:18 +01004768 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004769 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 {
4771 if (showit)
4772 gtk_widget_show(widget);
4773 else
4774 gtk_widget_hide(widget);
4775
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004776 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 }
4778}
Bram Moolenaar30613902019-12-01 22:11:18 +01004779#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780
4781#if defined(FEAT_TOOLBAR) || defined(PROTO)
4782 void
4783gui_mch_show_toolbar(int showit)
4784{
4785 GtkWidget *widget;
4786
4787 if (gui.toolbar == NULL)
4788 return;
4789
4790# ifdef FEAT_GUI_GNOME
4791 if (using_gnome)
4792 widget = gui.toolbar_h;
4793 else
4794# endif
4795 widget = gui.toolbar;
4796
4797 if (showit)
4798 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4799
Bram Moolenaar98921892016-02-23 17:14:37 +01004800 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 {
4802 if (showit)
4803 gtk_widget_show(widget);
4804 else
4805 gtk_widget_hide(widget);
4806
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004807 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 }
4809}
Bram Moolenaar30613902019-12-01 22:11:18 +01004810#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812/*
4813 * Check if a given font is a CJK font. This is done in a very crude manner. It
4814 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4815 * font. Consequently, this function cannot be used as a general purpose check
4816 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4817 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4818 */
4819 static int
4820is_cjk_font(PangoFontDescription *font_desc)
4821{
4822 static const char * const cjk_langs[] =
4823 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4824
4825 PangoFont *font;
4826 unsigned i;
4827 int is_cjk = FALSE;
4828
4829 font = pango_context_load_font(gui.text_context, font_desc);
4830
4831 if (font == NULL)
4832 return FALSE;
4833
4834 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4835 {
4836 PangoCoverage *coverage;
4837 gunichar uc;
4838
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004839 // Valgrind reports a leak for pango_language_from_string(), but the
4840 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 coverage = pango_font_get_coverage(
4842 font, pango_language_from_string(cjk_langs[i]));
4843
4844 if (coverage != NULL)
4845 {
4846 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4847 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4848 pango_coverage_unref(coverage);
4849 }
4850 }
4851
4852 g_object_unref(font);
4853
4854 return is_cjk;
4855}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856
Bram Moolenaar231334e2005-07-25 20:46:57 +00004857/*
4858 * Adjust gui.char_height (after 'linespace' was changed).
4859 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004861gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 PangoFontMetrics *metrics;
4864 int ascent;
4865 int descent;
4866
4867 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4868 pango_context_get_language(gui.text_context));
4869 ascent = pango_font_metrics_get_ascent(metrics);
4870 descent = pango_font_metrics_get_descent(metrics);
4871
4872 pango_font_metrics_unref(metrics);
4873
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004874 // Round up when the value is more than about 1/16 of a pixel above a whole
4875 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4876 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4877 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004878 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4880
Bram Moolenaar30613902019-12-01 22:11:18 +01004881 // A not-positive value of char_height may crash Vim. Only happens
4882 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 gui.char_ascent = MAX(gui.char_ascent, 0);
4884 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4885
4886 return OK;
4887}
4888
Bram Moolenaar98921892016-02-23 17:14:37 +01004889#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004890// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004891 static gboolean
4892font_filter(const PangoFontFamily *family,
4893 const PangoFontFace *face UNUSED,
4894 gpointer data UNUSED)
4895{
4896 return pango_font_family_is_monospace((PangoFontFamily *)family);
4897}
4898#endif
4899
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900/*
4901 * Put up a font dialog and return the selected font name in allocated memory.
4902 * "oldval" is the previous value. Return NULL when cancelled.
4903 * This should probably go into gui_gtk.c. Hmm.
4904 * FIXME:
4905 * The GTK2 font selection dialog has no filtering API. So we could either
4906 * a) implement our own (possibly copying the code from somewhere else) or
4907 * b) just live with it.
4908 */
4909 char_u *
4910gui_mch_font_dialog(char_u *oldval)
4911{
4912 GtkWidget *dialog;
4913 int response;
4914 char_u *fontname = NULL;
4915 char_u *oldname;
4916
Bram Moolenaar98921892016-02-23 17:14:37 +01004917#if GTK_CHECK_VERSION(3,2,0)
4918 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4919 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4920 NULL, NULL);
4921#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924
4925 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4926 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4927
4928 if (oldval != NULL && oldval[0] != NUL)
4929 {
4930 if (output_conv.vc_type != CONV_NONE)
4931 oldname = string_convert(&output_conv, oldval, NULL);
4932 else
4933 oldname = oldval;
4934
Bram Moolenaar30613902019-12-01 22:11:18 +01004935 // Annoying bug in GTK (or Pango): if the font name does not include a
4936 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4938 {
4939 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4940
4941 if (p != NULL)
4942 {
4943 STRCPY(p + STRLEN(p), " 10");
4944 if (oldname != oldval)
4945 vim_free(oldname);
4946 oldname = p;
4947 }
4948 }
4949
Bram Moolenaar98921892016-02-23 17:14:37 +01004950#if GTK_CHECK_VERSION(3,2,0)
4951 gtk_font_chooser_set_font(
4952 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4953#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 gtk_font_selection_dialog_set_font_name(
4955 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
4958 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004959 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004961 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004962#if GTK_CHECK_VERSION(3,2,0)
4963 gtk_font_chooser_set_font(
4964 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4965#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004966 gtk_font_selection_dialog_set_font_name(
4967 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004968#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969
4970 response = gtk_dialog_run(GTK_DIALOG(dialog));
4971
4972 if (response == GTK_RESPONSE_OK)
4973 {
4974 char *name;
4975
Bram Moolenaar98921892016-02-23 17:14:37 +01004976#if GTK_CHECK_VERSION(3,2,0)
4977 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 name = gtk_font_selection_dialog_get_font_name(
4980 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 if (name != NULL)
4983 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004984 char_u *p;
4985
Bram Moolenaar30613902019-12-01 22:11:18 +01004986 // Apparently some font names include a comma, need to escape
4987 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004988 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004990 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004991 {
4992 fontname = string_convert(&input_conv, p, NULL);
4993 vim_free(p);
4994 }
4995 else
4996 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 }
4998 }
4999
5000 if (response != GTK_RESPONSE_NONE)
5001 gtk_widget_destroy(dialog);
5002
5003 return fontname;
5004}
5005
5006/*
5007 * Some monospace fonts don't support a bold weight, and fall back
5008 * silently to the regular weight. But this is no good since our text
5009 * drawing function can emulate bold by overstriking. So let's try
5010 * to detect whether bold weight is actually available and emulate it
5011 * otherwise.
5012 *
5013 * Note that we don't need to check for italic style since Xft can
5014 * emulate italic on its own, provided you have a proper fontconfig
5015 * setup. We wouldn't be able to emulate it in Vim anyway.
5016 */
5017 static void
5018get_styled_font_variants(void)
5019{
5020 PangoFontDescription *bold_font_desc;
5021 PangoFont *plain_font;
5022 PangoFont *bold_font;
5023
5024 gui.font_can_bold = FALSE;
5025
5026 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5027
5028 if (plain_font == NULL)
5029 return;
5030
5031 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5032 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5033
5034 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5035 /*
5036 * The comparison relies on the unique handle nature of a PangoFont*,
5037 * i.e. it's assumed that a different PangoFont* won't refer to the
5038 * same font. Seems to work, and failing here isn't critical anyway.
5039 */
5040 if (bold_font != NULL)
5041 {
5042 gui.font_can_bold = (bold_font != plain_font);
5043 g_object_unref(bold_font);
5044 }
5045
5046 pango_font_description_free(bold_font_desc);
5047 g_object_unref(plain_font);
5048}
5049
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050static PangoEngineShape *default_shape_engine = NULL;
5051
5052/*
5053 * Create a map from ASCII characters in the range [32,126] to glyphs
5054 * of the current font. This is used by gui_gtk2_draw_string() to skip
5055 * the itemize and shaping process for the most common case.
5056 */
5057 static void
5058ascii_glyph_table_init(void)
5059{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005060 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 PangoAttrList *attr_list;
5062 GList *item_list;
5063 int i;
5064
5065 if (gui.ascii_glyphs != NULL)
5066 pango_glyph_string_free(gui.ascii_glyphs);
5067 if (gui.ascii_font != NULL)
5068 g_object_unref(gui.ascii_font);
5069
5070 gui.ascii_glyphs = NULL;
5071 gui.ascii_font = NULL;
5072
Bram Moolenaar30613902019-12-01 22:11:18 +01005073 // For safety, fill in question marks for the control characters.
5074 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005075 for (i = 0; i < 128; ++i)
5076 {
5077 if (i >= 32 && i < 127)
5078 ascii_chars[2 * i] = i;
5079 else
5080 ascii_chars[2 * i] = '?';
5081 ascii_chars[2 * i + 1] = ' ';
5082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083
5084 attr_list = pango_attr_list_new();
5085 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5086 0, sizeof(ascii_chars), attr_list, NULL);
5087
Bram Moolenaar30613902019-12-01 22:11:18 +01005088 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 {
5090 PangoItem *item;
5091 int width;
5092
5093 item = (PangoItem *)item_list->data;
5094 width = gui.char_width * PANGO_SCALE;
5095
Bram Moolenaar30613902019-12-01 22:11:18 +01005096 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 default_shape_engine = item->analysis.shape_engine;
5098
5099 gui.ascii_font = item->analysis.font;
5100 g_object_ref(gui.ascii_font);
5101
5102 gui.ascii_glyphs = pango_glyph_string_new();
5103
5104 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5105 &item->analysis, gui.ascii_glyphs);
5106
5107 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5108
5109 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5110 {
5111 PangoGlyphGeometry *geom;
5112
5113 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5114 geom->x_offset += MAX(0, width - geom->width) / 2;
5115 geom->width = width;
5116 }
5117 }
5118
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02005119 // TODO: is this type cast OK?
5120 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 g_list_free(item_list);
5122 pango_attr_list_unref(attr_list);
5123}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124
5125/*
5126 * Initialize Vim to use the font or fontset with the given name.
5127 * Return FAIL if the font could not be loaded, OK otherwise.
5128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005130gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 PangoFontDescription *font_desc;
5133 PangoLayout *layout;
5134 int width;
5135
Bram Moolenaar30613902019-12-01 22:11:18 +01005136 // If font_name is NULL, this means to use the default, which should
5137 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 if (font_name == NULL)
5139 font_name = (char_u *)DEFAULT_FONT;
5140
5141 font_desc = gui_mch_get_font(font_name, FALSE);
5142
5143 if (font_desc == NULL)
5144 return FAIL;
5145
5146 gui_mch_free_font(gui.norm_font);
5147 gui.norm_font = font_desc;
5148
5149 pango_context_set_font_description(gui.text_context, font_desc);
5150
5151 layout = pango_layout_new(gui.text_context);
5152 pango_layout_set_text(layout, "MW", 2);
5153 pango_layout_get_size(layout, &width, NULL);
5154 /*
5155 * Set char_width to half the width obtained from pango_layout_get_size()
5156 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5157 * Pango to use the same width for both non-CJK characters (e.g. Latin
5158 * letters and numbers) and CJK characters. This results in 's p a c e d
5159 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5160 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5161 * width for CJK fonts.
5162 *
5163 * For related bugs, see:
5164 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5165 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5166 *
5167 * With this, for all four of the following cases, Vim works fine:
5168 * guifont=CJK_fixed_width_font
5169 * guifont=Non_CJK_fixed_font
5170 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5171 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5172 */
5173 if (is_cjk_font(gui.norm_font))
5174 {
5175 int cjk_width;
5176
Bram Moolenaar30613902019-12-01 22:11:18 +01005177 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5179 pango_layout_get_size(layout, &cjk_width, NULL);
5180
Bram Moolenaar30613902019-12-01 22:11:18 +01005181 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 width /= 2;
5183 }
5184 g_object_unref(layout);
5185
5186 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5187
Bram Moolenaar30613902019-12-01 22:11:18 +01005188 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 if (gui.char_width <= 0)
5190 gui.char_width = 8;
5191
Bram Moolenaar231334e2005-07-25 20:46:57 +00005192 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193
Bram Moolenaar30613902019-12-01 22:11:18 +01005194 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 hl_set_font_name(font_name);
5196
5197 get_styled_font_variants();
5198 ascii_glyph_table_init();
5199
Bram Moolenaar30613902019-12-01 22:11:18 +01005200 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 if (gui.wide_font != NULL
5202 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5203 {
5204 pango_font_description_free(gui.wide_font);
5205 gui.wide_font = NULL;
5206 }
5207
Bram Moolenaare161c792009-11-03 17:13:59 +00005208 if (gui_mch_maximized())
5209 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005210 // Update lines and columns in accordance with the new font, keep the
5211 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005212 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005213 }
5214 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005215 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005216 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005217 update_window_manager_hints(0, 0);
5218 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219
5220 return OK;
5221}
5222
5223/*
5224 * Get a reference to the font "name".
5225 * Return zero for failure.
5226 */
5227 GuiFont
5228gui_mch_get_font(char_u *name, int report_error)
5229{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231
Bram Moolenaar30613902019-12-01 22:11:18 +01005232 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 if (!gui.in_use || name == NULL)
5234 return NULL;
5235
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (output_conv.vc_type != CONV_NONE)
5237 {
5238 char_u *buf;
5239
5240 buf = string_convert(&output_conv, name, NULL);
5241 if (buf != NULL)
5242 {
5243 font = pango_font_description_from_string((const char *)buf);
5244 vim_free(buf);
5245 }
5246 else
5247 font = NULL;
5248 }
5249 else
5250 font = pango_font_description_from_string((const char *)name);
5251
5252 if (font != NULL)
5253 {
5254 PangoFont *real_font;
5255
Bram Moolenaar30613902019-12-01 22:11:18 +01005256 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 if (pango_font_description_get_size(font) <= 0)
5258 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5259
5260 real_font = pango_context_load_font(gui.text_context, font);
5261
5262 if (real_font == NULL)
5263 {
5264 pango_font_description_free(font);
5265 font = NULL;
5266 }
5267 else
5268 g_object_unref(real_font);
5269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270
5271 if (font == NULL)
5272 {
5273 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005274 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 return NULL;
5276 }
5277
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 return font;
5279}
5280
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005281#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005282/*
5283 * Return the name of font "font" in allocated memory.
5284 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005285 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005286gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005287{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005288 if (font != NOFONT)
5289 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005290 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005291
Bram Moolenaar89d40322006-08-29 15:30:07 +00005292 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005293 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005294 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005295
Bram Moolenaar89d40322006-08-29 15:30:07 +00005296 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005297 return s;
5298 }
5299 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005300 return NULL;
5301}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005302#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005303
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304/*
5305 * If a font is not going to be used, free its structure.
5306 */
5307 void
5308gui_mch_free_font(GuiFont font)
5309{
5310 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312}
5313
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005315 * Return the Pixel value (color) for the given color name.
5316 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 * Return INVALCOLOR for error.
5318 */
5319 guicolor_T
5320gui_mch_get_color(char_u *name)
5321{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005322 guicolor_T color = INVALCOLOR;
5323
Bram Moolenaar30613902019-12-01 22:11:18 +01005324 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005325 return color;
5326
5327 if (name != NULL)
5328 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329
Bram Moolenaar98921892016-02-23 17:14:37 +01005330#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005331 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005332#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005333 if (color == INVALCOLOR)
5334 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005336 return gui_mch_get_rgb_color(
5337 (color & 0xff0000) >> 16,
5338 (color & 0xff00) >> 8,
5339 color & 0xff);
5340#endif
5341}
5342
5343/*
5344 * Return the Pixel value (color) for the given RGB values.
5345 * Return INVALCOLOR for error.
5346 */
5347 guicolor_T
5348gui_mch_get_rgb_color(int r, int g, int b)
5349{
5350#if GTK_CHECK_VERSION(3,0,0)
5351 return gui_get_rgb_color_cmn(r, g, b);
5352#else
5353 GdkColor gcolor;
5354 int ret;
5355
5356 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5357 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5358 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359
Bram Moolenaar36edf062016-07-21 22:10:12 +02005360 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5361 &gcolor, FALSE, TRUE);
5362
5363 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365}
5366
5367/*
5368 * Set the current text foreground color.
5369 */
5370 void
5371gui_mch_set_fg_color(guicolor_T color)
5372{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005373#if GTK_CHECK_VERSION(3,0,0)
5374 *gui.fgcolor = color_to_rgba(color);
5375#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378}
5379
5380/*
5381 * Set the current text background color.
5382 */
5383 void
5384gui_mch_set_bg_color(guicolor_T color)
5385{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005386#if GTK_CHECK_VERSION(3,0,0)
5387 *gui.bgcolor = color_to_rgba(color);
5388#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005390#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391}
5392
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005393/*
5394 * Set the current text special color.
5395 */
5396 void
5397gui_mch_set_sp_color(guicolor_T color)
5398{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005399#if GTK_CHECK_VERSION(3,0,0)
5400 *gui.spcolor = color_to_rgba(color);
5401#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005402 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005403#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005404}
5405
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406/*
5407 * Function-like convenience macro for the sake of efficiency.
5408 */
5409#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5410 G_STMT_START{ \
5411 PangoAttribute *tmp_attr_; \
5412 tmp_attr_ = (Attribute); \
5413 tmp_attr_->start_index = (Start); \
5414 tmp_attr_->end_index = (End); \
5415 pango_attr_list_insert((AttrList), tmp_attr_); \
5416 }G_STMT_END
5417
5418 static void
5419apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5420{
5421 char_u *start = NULL;
5422 char_u *p;
5423 int uc;
5424
5425 for (p = s; p < s + len; p += utf_byte2len(*p))
5426 {
5427 uc = utf_ptr2char(p);
5428
5429 if (start == NULL)
5430 {
5431 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5432 start = p;
5433 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005434 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5436 {
5437 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5438 attr_list, start - s, p - s);
5439 start = NULL;
5440 }
5441 }
5442
5443 if (start != NULL)
5444 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5445 attr_list, start - s, len);
5446}
5447
5448 static int
5449count_cluster_cells(char_u *s, PangoItem *item,
5450 PangoGlyphString* glyphs, int i,
5451 int *cluster_width,
5452 int *last_glyph_rbearing)
5453{
5454 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005455 int next; // glyph start index of next cluster
5456 int start, end; // string segment of current cluster
5457 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 int uc;
5459 int cellcount = 0;
5460
5461 width = glyphs->glyphs[i].geometry.width;
5462
5463 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5464 {
5465 if (glyphs->glyphs[next].attr.is_cluster_start)
5466 break;
5467 else if (glyphs->glyphs[next].geometry.width > width)
5468 width = glyphs->glyphs[next].geometry.width;
5469 }
5470
5471 start = item->offset + glyphs->log_clusters[i];
5472 end = item->offset + ((next < glyphs->num_glyphs) ?
5473 glyphs->log_clusters[next] : item->length);
5474
5475 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5476 {
5477 uc = utf_ptr2char(p);
5478 if (uc < 0x80)
5479 ++cellcount;
5480 else if (!utf_iscomposing(uc))
5481 cellcount += utf_char2cells(uc);
5482 }
5483
5484 if (last_glyph_rbearing != NULL
5485 && cellcount > 0 && next == glyphs->num_glyphs)
5486 {
5487 PangoRectangle ink_rect;
5488 /*
5489 * If a certain combining mark had to be taken from a non-monospace
5490 * font, we have to compensate manually by adapting x_offset according
5491 * to the ink extents of the previous glyph.
5492 */
5493 pango_font_get_glyph_extents(item->analysis.font,
5494 glyphs->glyphs[i].glyph,
5495 &ink_rect, NULL);
5496
5497 if (PANGO_RBEARING(ink_rect) > 0)
5498 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5499 }
5500
5501 if (cellcount > 0)
5502 *cluster_width = width;
5503
5504 return cellcount;
5505}
5506
5507/*
5508 * If there are only combining characters in the cluster, we cannot just
5509 * change the width of the previous glyph since there is none. Therefore
5510 * some guesswork is needed.
5511 *
5512 * If ink_rect.x is negative Pango apparently has taken care of the composing
5513 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5514 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005515 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 *
5517 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5518 * the position of the previous glyph. Apparently this happens only with old
5519 * X fonts which don't provide the special combining information needed by
5520 * Pango.
5521 */
5522 static void
5523setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5524 int last_cellcount, int last_cluster_width,
5525 int last_glyph_rbearing)
5526{
5527 PangoRectangle ink_rect;
5528 PangoRectangle logical_rect;
5529 int width;
5530
5531 width = last_cellcount * gui.char_width * PANGO_SCALE;
5532 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5533 glyph->geometry.width = 0;
5534
5535 pango_font_get_glyph_extents(item->analysis.font,
5536 glyph->glyph,
5537 &ink_rect, &logical_rect);
5538 if (ink_rect.x < 0)
5539 {
5540 glyph->geometry.x_offset += last_glyph_rbearing;
5541 glyph->geometry.y_offset = logical_rect.height
5542 - (gui.char_height - p_linespace) * PANGO_SCALE;
5543 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005544 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005545 // If the accent width is smaller than the cluster width, position it
5546 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005547 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548}
5549
Bram Moolenaar98921892016-02-23 17:14:37 +01005550#if GTK_CHECK_VERSION(3,0,0)
5551 static void
5552draw_glyph_string(int row, int col, int num_cells, int flags,
5553 PangoFont *font, PangoGlyphString *glyphs,
5554 cairo_t *cr)
5555#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 static void
5557draw_glyph_string(int row, int col, int num_cells, int flags,
5558 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560{
5561 if (!(flags & DRAW_TRANSP))
5562 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005563#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005564 cairo_set_source_rgba(cr,
5565 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5566 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005567 cairo_rectangle(cr,
5568 FILL_X(col), FILL_Y(row),
5569 num_cells * gui.char_width, gui.char_height);
5570 cairo_fill(cr);
5571#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5573
5574 gdk_draw_rectangle(gui.drawarea->window,
5575 gui.text_gc,
5576 TRUE,
5577 FILL_X(col),
5578 FILL_Y(row),
5579 num_cells * gui.char_width,
5580 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 }
5583
Bram Moolenaar98921892016-02-23 17:14:37 +01005584#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005585 cairo_set_source_rgba(cr,
5586 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5587 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005588 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5589 pango_cairo_show_glyph_string(cr, font, glyphs);
5590#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5592
5593 gdk_draw_glyphs(gui.drawarea->window,
5594 gui.text_gc,
5595 font,
5596 TEXT_X(col),
5597 TEXT_Y(row),
5598 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005599#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600
Bram Moolenaar30613902019-12-01 22:11:18 +01005601 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005603#if GTK_CHECK_VERSION(3,0,0)
5604 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005605 cairo_set_source_rgba(cr,
5606 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5607 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005608 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5609 pango_cairo_show_glyph_string(cr, font, glyphs);
5610 }
5611#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 gdk_draw_glyphs(gui.drawarea->window,
5613 gui.text_gc,
5614 font,
5615 TEXT_X(col) + 1,
5616 TEXT_Y(row),
5617 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619}
5620
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005621/*
5622 * Draw underline and undercurl at the bottom of the character cell.
5623 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005624#if GTK_CHECK_VERSION(3,0,0)
5625 static void
5626draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5627#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005628 static void
5629draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005630#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005631{
5632 int i;
5633 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005634 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005635 int y = FILL_Y(row + 1) - 1;
5636
Bram Moolenaar30613902019-12-01 22:11:18 +01005637 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005638 if (flags & DRAW_UNDERC)
5639 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005640#if GTK_CHECK_VERSION(3,0,0)
5641 cairo_set_line_width(cr, 1.0);
5642 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005643 cairo_set_source_rgba(cr,
5644 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5645 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005646 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5647 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005648 {
5649 offset = val[i % 8];
5650 cairo_line_to(cr, i, y - offset + 0.5);
5651 }
5652 cairo_stroke(cr);
5653#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005654 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5655 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5656 {
5657 offset = val[i % 8];
5658 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5659 }
5660 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005661#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005662 }
5663
Bram Moolenaar30613902019-12-01 22:11:18 +01005664 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005665 if (flags & DRAW_STRIKE)
5666 {
5667#if GTK_CHECK_VERSION(3,0,0)
5668 cairo_set_line_width(cr, 1.0);
5669 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5670 cairo_set_source_rgba(cr,
5671 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5672 gui.spcolor->alpha);
5673 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5674 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5675 cairo_stroke(cr);
5676#else
5677 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5678 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5679 FILL_X(col), y + 1 - gui.char_height/2,
5680 FILL_X(col + cells), y + 1 - gui.char_height/2);
5681 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5682#endif
5683 }
5684
Bram Moolenaar30613902019-12-01 22:11:18 +01005685 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005686 if (flags & DRAW_UNDERL)
5687 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005688 // When p_linespace is 0, overwrite the bottom row of pixels.
5689 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005690 if (p_linespace > 1)
5691 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005692#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005693 cairo_set_line_width(cr, 1.0);
5694 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5695 cairo_set_source_rgba(cr,
5696 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5697 gui.fgcolor->alpha);
5698 cairo_move_to(cr, FILL_X(col), y + 0.5);
5699 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5700 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005701#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005702 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5703 FILL_X(col), y,
5704 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005705#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005706 }
5707}
5708
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 int
5710gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5711{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005712 char_u *conv_buf = NULL; // result of UTF-8 conversion
5713 char_u *new_conv_buf;
5714 int convlen;
5715 char_u *sp, *bp;
5716 int plen;
5717 int len_sum; // return value needs to add up since we are
5718 // printing substrings
5719 int byte_sum; // byte position in string
5720 char_u *cs; // current *s pointer
5721 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005722 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005723 int slen;
5724 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005725 int is_utf8;
5726 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727
Bram Moolenaar98921892016-02-23 17:14:37 +01005728 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 return len;
5730
5731 if (output_conv.vc_type != CONV_NONE)
5732 {
5733 /*
5734 * Convert characters from 'encoding' to 'termencoding', which is set
5735 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5736 * prohibits changing this to something else than UTF-8 if the GUI is
5737 * in use.
5738 */
5739 convlen = len;
5740 conv_buf = string_convert(&output_conv, s, &convlen);
5741 g_return_val_if_fail(conv_buf != NULL, len);
5742
Bram Moolenaar30613902019-12-01 22:11:18 +01005743 // Correct for differences in char width: some chars are
5744 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5745 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5747 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005748 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5750 {
5751 new_conv_buf = alloc(convlen + 2);
5752 if (new_conv_buf == NULL)
5753 return len;
5754 plen += bp - conv_buf;
5755 mch_memmove(new_conv_buf, conv_buf, plen);
5756 new_conv_buf[plen] = ' ';
5757 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5758 convlen - plen + 1);
5759 vim_free(conv_buf);
5760 conv_buf = new_conv_buf;
5761 ++convlen;
5762 bp = conv_buf + plen;
5763 plen = 1;
5764 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005765 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005766 bp += plen;
5767 }
5768 s = conv_buf;
5769 len = convlen;
5770 }
5771
5772 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005773 * Ligature support and complex utf-8 char optimization:
5774 * String received to output to screen can print using pre-cached glyphs
5775 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5776 * Since we receive mixed content string, split it into logical segments
dundargocc57b5bc2022-11-02 13:30:51 +00005777 * that are guaranteed to go through glyphs as much as possible. Since
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005778 * single ligature char prints as ascii, print it that way.
5779 */
5780 len_sum = 0; // return value needs to add up since we are printing
5781 // substrings
5782 byte_sum = 0;
5783 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005784 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5785 // Even if it is ligature char, two chars or more make ligature.
dundargocc57b5bc2022-11-02 13:30:51 +00005786 // Ascii followed by utf8 is also going through pango.
Dusan Popovic3c19b502021-11-20 22:03:30 +00005787 is_utf8 = (*cs & 0x80);
5788 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5789 if (is_ligature)
5790 is_ligature = gui.ligatures_map[*(cs + 1)];
5791 if (!is_utf8 && len > 1)
5792 is_utf8 = (*(cs + 1) & 0x80) != 0;
5793 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005794
5795 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5796 // print glyphs or use Pango
5797 while (cs < s + len)
5798 {
5799 slen = 0;
5800 while (slen < (len - byte_sum))
5801 {
5802 is_ligature = gui.ligatures_map[*(cs + slen)];
5803 // look ahead, single ligature char between ascii is ascii
5804 if (is_ligature && !needs_pango)
5805 {
5806 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005807 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005808 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005809 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005810 }
5811 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005812 // ascii followed by utf8 could be combining
dundargocc57b5bc2022-11-02 13:30:51 +00005813 // if so send it through pango
Dusan Popovic3c19b502021-11-20 22:03:30 +00005814 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5815 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005816 should_need_pango = (is_ligature || is_utf8);
5817 if (needs_pango != should_need_pango) // mode switch
5818 break;
5819 if (needs_pango)
5820 {
5821 if (is_ligature)
5822 {
5823 slen++; // ligature char by char
5824 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005825 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005826 {
5827 if ((*(cs + slen) & 0xC0) == 0x80)
5828 {
5829 // a continuation, find next 0xC0 != 0x80 but don't
5830 // include it
5831 while ((slen < (len - byte_sum))
5832 && ((*(cs + slen) & 0xC0) == 0x80))
5833 {
5834 slen++;
5835 }
5836 }
5837 else if ((*(cs + slen) & 0xE0) == 0xC0)
5838 {
5839 // + one byte utf8
5840 slen++;
5841 }
5842 else if ((*(cs + slen) & 0xF0) == 0xE0)
5843 {
5844 // + two bytes utf8
5845 slen += 2;
5846 }
5847 else if ((*(cs + slen) & 0xF8) == 0xF0)
5848 {
5849 // + three bytes utf8
5850 slen += 3;
5851 }
5852 else
5853 {
5854 // this should not happen, try moving forward, Pango
5855 // will catch it
5856 slen++;
5857 }
5858 }
5859 }
5860 else
5861 {
5862 slen++; // ascii
5863 }
5864 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005865
Bram Moolenaard68a0042021-10-20 23:08:11 +01005866 if (slen < len)
5867 {
5868 // temporarily zero terminate substring, print, restore char, wrap
5869 backup_ch = *(cs + slen);
5870 *(cs + slen) = NUL;
5871 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005872 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5873 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005874 if (slen < len)
5875 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005876 cs += slen;
5877 byte_sum += slen;
5878 needs_pango = should_need_pango;
5879 }
5880 vim_free(conv_buf);
5881 return len_sum;
5882}
5883
5884 int
5885gui_gtk2_draw_string_ext(
5886 int row,
5887 int col,
5888 char_u *s,
5889 int len,
5890 int flags,
5891 int force_pango)
5892{
5893 GdkRectangle area; // area for clip mask
5894 PangoGlyphString *glyphs; // glyphs of current item
5895 int column_offset = 0; // column offset in cells
5896 int i;
5897#if GTK_CHECK_VERSION(3,0,0)
5898 cairo_t *cr;
5899#endif
5900
5901 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 * Restrict all drawing to the current screen line in order to prevent
5903 * fuzzy font lookups from messing up the screen.
5904 */
5905 area.x = gui.border_offset;
5906 area.y = FILL_Y(row);
5907 area.width = gui.num_cols * gui.char_width;
5908 area.height = gui.char_height;
5909
Bram Moolenaar98921892016-02-23 17:14:37 +01005910#if GTK_CHECK_VERSION(3,0,0)
5911 cr = cairo_create(gui.surface);
5912 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5913 cairo_clip(cr);
5914#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5916 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
5919 glyphs = pango_glyph_string_new();
5920
5921 /*
5922 * Optimization hack: If possible, skip the itemize and shaping process
5923 * for pure ASCII strings. This optimization is particularly effective
5924 * because Vim draws space characters to clear parts of the screen.
5925 */
5926 if (!(flags & DRAW_ITALIC)
5927 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005928 && gui.ascii_glyphs != NULL
5929 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 {
5931 char_u *p;
5932
5933 for (p = s; p < s + len; ++p)
5934 if (*p & 0x80)
5935 goto not_ascii;
5936
5937 pango_glyph_string_set_size(glyphs, len);
5938
5939 for (i = 0; i < len; ++i)
5940 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005941 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 glyphs->log_clusters[i] = i;
5943 }
5944
Bram Moolenaar98921892016-02-23 17:14:37 +01005945#if GTK_CHECK_VERSION(3,0,0)
5946 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5947#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950
5951 column_offset = len;
5952 }
5953 else
5954not_ascii:
5955 {
5956 PangoAttrList *attr_list;
5957 GList *item_list;
5958 int cluster_width;
5959 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005960 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961
Bram Moolenaar30613902019-12-01 22:11:18 +01005962 // Safety check: pango crashes when invoked with invalid utf-8
5963 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005964 if (!utf_valid_string(s, s + len))
5965 {
5966 column_offset = len;
5967 goto skipitall;
5968 }
5969
Bram Moolenaar30613902019-12-01 22:11:18 +01005970 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 cluster_width = PANGO_SCALE * gui.char_width;
5972
Bram Moolenaar30613902019-12-01 22:11:18 +01005973 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5975
5976 attr_list = pango_attr_list_new();
5977
Bram Moolenaar30613902019-12-01 22:11:18 +01005978 // If 'guifontwide' is set then use that for double-width characters.
5979 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 if (gui.wide_font != NULL)
5981 apply_wide_font_attr(s, len, attr_list);
5982
5983 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5984 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5985 attr_list, 0, len);
5986 if (flags & DRAW_ITALIC)
5987 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5988 attr_list, 0, len);
5989 /*
5990 * Break the text into segments with consistent directional level
5991 * and shaping engine. Pure Latin text needs only a single segment,
5992 * so there's no need to worry about the loop's efficiency. Better
5993 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5994 */
5995 item_list = pango_itemize(gui.text_context,
5996 (const char *)s, 0, len, attr_list, NULL);
5997
5998 while (item_list != NULL)
5999 {
6000 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01006001 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002
6003 item = (PangoItem *)item_list->data;
6004 item_list = g_list_delete_link(item_list, item_list);
6005 /*
6006 * Increment the bidirectional embedding level by 1 if it is not
6007 * even. An odd number means the output will be RTL, but we don't
6008 * want that since Vim handles right-to-left text on its own. It
6009 * would probably be sufficient to just set level = 0, but you can
6010 * never know :)
6011 *
6012 * Unfortunately we can't take advantage of Pango's ability to
6013 * render both LTR and RTL at the same time. In order to support
6014 * that, Vim's main screen engine would have to make use of Pango
6015 * functionality.
6016 */
6017 item->analysis.level = (item->analysis.level + 1) & (~1U);
6018
Bram Moolenaar30613902019-12-01 22:11:18 +01006019 // HACK: Overrule the shape engine, we don't want shaping to be
6020 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 item->analysis.shape_engine = default_shape_engine;
6022
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006023#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006024 pango_shape_full((const char *)s + item->offset, item->length,
6025 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006026#else
6027 pango_shape((const char *)s + item->offset, item->length,
6028 &item->analysis, glyphs);
6029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 /*
6031 * Fixed-width hack: iterate over the array and assign a fixed
6032 * width to each glyph, thus overriding the choice made by the
6033 * shaping engine. We use utf_char2cells() to determine the
6034 * number of cells needed.
6035 *
6036 * Also perform all kind of dark magic to get composing
6037 * characters right (and pretty too of course).
6038 */
6039 for (i = 0; i < glyphs->num_glyphs; ++i)
6040 {
6041 PangoGlyphInfo *glyph;
6042
6043 glyph = &glyphs->glyphs[i];
6044
6045 if (glyph->attr.is_cluster_start)
6046 {
6047 int cellcount;
6048
6049 cellcount = count_cluster_cells(
6050 s, item, glyphs, i, &cluster_width,
6051 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6052
6053 if (cellcount > 0)
6054 {
6055 int width;
6056
6057 width = cellcount * gui.char_width * PANGO_SCALE;
6058 glyph->geometry.x_offset +=
6059 MAX(0, width - cluster_width) / 2;
6060 glyph->geometry.width = width;
6061 }
6062 else
6063 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006064 // If there are only combining characters in the
6065 // cluster, we cannot just change the width of the
6066 // previous glyph since there is none. Therefore
6067 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 setup_zero_width_cluster(item, glyph, cells,
6069 cluster_width,
6070 last_glyph_rbearing);
6071 }
6072
6073 item_cells += cellcount;
6074 cells = cellcount;
6075 }
6076 else if (i > 0)
6077 {
6078 int width;
6079
Bram Moolenaar30613902019-12-01 22:11:18 +01006080 // There is a previous glyph, so we deal with combining
6081 // characters the canonical way.
6082 // In some circumstances Pango uses a positive x_offset,
6083 // then use the width of the previous glyph for this one
6084 // and set the previous width to zero.
6085 // Otherwise we get a negative x_offset, Pango has already
6086 // positioned the combining char, keep the widths as they
6087 // are.
6088 // For both adjust the x_offset to position the glyph in
6089 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006090 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006091 {
6092 glyphs->glyphs[i].geometry.width =
6093 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006094 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006095 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096 width = cells * gui.char_width * PANGO_SCALE;
6097 glyph->geometry.x_offset +=
6098 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006100 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 {
6102 glyph->geometry.width = 0;
6103 }
6104 }
6105
Bram Moolenaar30613902019-12-01 22:11:18 +01006106 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01006107#if GTK_CHECK_VERSION(3,0,0)
6108 draw_glyph_string(row, col + column_offset, item_cells,
6109 flags, item->analysis.font, glyphs,
6110 cr);
6111#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 draw_glyph_string(row, col + column_offset, item_cells,
6113 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006114#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115
6116 pango_item_free(item);
6117
6118 column_offset += item_cells;
6119 }
6120
6121 pango_attr_list_unref(attr_list);
6122 }
6123
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006124skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01006125 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01006126#if GTK_CHECK_VERSION(3,0,0)
6127 draw_under(flags, row, col, column_offset, cr);
6128#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006129 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131
6132 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133
Bram Moolenaar98921892016-02-23 17:14:37 +01006134#if GTK_CHECK_VERSION(3,0,0)
6135 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00006136 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
6137 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006138#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006140#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141
6142 return column_offset;
6143}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144
6145/*
6146 * Return OK if the key with the termcap name "name" is supported.
6147 */
6148 int
6149gui_mch_haskey(char_u *name)
6150{
6151 int i;
6152
6153 for (i = 0; special_keys[i].key_sym != 0; i++)
6154 if (name[0] == special_keys[i].code0
6155 && name[1] == special_keys[i].code1)
6156 return OK;
6157 return FAIL;
6158}
6159
rbtnnb850c392022-10-01 15:47:04 +01006160#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161/*
6162 * Return the text window-id and display. Only required for X-based GUI's
6163 */
6164 int
6165gui_get_x11_windis(Window *win, Display **dis)
6166{
Bram Moolenaar98921892016-02-23 17:14:37 +01006167 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006169 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6170 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 return OK;
6172 }
6173
6174 *dis = NULL;
6175 *win = 0;
6176 return FAIL;
6177}
6178#endif
6179
6180#if defined(FEAT_CLIENTSERVER) \
6181 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6182
6183 Display *
6184gui_mch_get_display(void)
6185{
Bram Moolenaar98921892016-02-23 17:14:37 +01006186 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6187 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 else
6189 return NULL;
6190}
6191#endif
6192
6193 void
6194gui_mch_beep(void)
6195{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 GdkDisplay *display;
6197
Bram Moolenaar98921892016-02-23 17:14:37 +01006198 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 display = gtk_widget_get_display(gui.mainwin);
6200 else
6201 display = gdk_display_get_default();
6202
6203 if (display != NULL)
6204 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205}
6206
6207 void
6208gui_mch_flash(int msec)
6209{
Bram Moolenaar98921892016-02-23 17:14:37 +01006210#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006211 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006212 (void)msec;
6213#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 GdkGCValues values;
6215 GdkGC *invert_gc;
6216
6217 if (gui.drawarea->window == NULL)
6218 return;
6219
6220 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6221 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6222 values.function = GDK_XOR;
6223 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6224 &values,
6225 GDK_GC_FOREGROUND |
6226 GDK_GC_BACKGROUND |
6227 GDK_GC_FUNCTION);
6228 gdk_gc_set_exposures(invert_gc,
6229 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6230 /*
6231 * Do a visual beep by changing back and forth in some undetermined way,
6232 * the foreground and background colors. This is due to the fact that
6233 * there can't be really any prediction about the effects of XOR on
6234 * arbitrary X11 servers. However this seems to be enough for what we
6235 * intend it to do.
6236 */
6237 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6238 TRUE,
6239 0, 0,
6240 FILL_X((int)Columns) + gui.border_offset,
6241 FILL_Y((int)Rows) + gui.border_offset);
6242
6243 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006244 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245
6246 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6247 TRUE,
6248 0, 0,
6249 FILL_X((int)Columns) + gui.border_offset,
6250 FILL_Y((int)Rows) + gui.border_offset);
6251
6252 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254}
6255
6256/*
6257 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6258 */
6259 void
6260gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6261{
Bram Moolenaar98921892016-02-23 17:14:37 +01006262#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006263 const GdkRectangle rect = {
6264 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6265 };
6266 cairo_t * const cr = cairo_create(gui.surface);
6267
Your Name810cb5a2022-09-13 11:25:54 +01006268 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006269# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6270 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6271# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006272 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006273# endif
presuku9459b8d2021-11-16 20:03:56 +00006274 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006275 cairo_fill(cr);
6276
6277 cairo_destroy(cr);
6278
presuku9459b8d2021-11-16 20:03:56 +00006279 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6280 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006281#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 GdkGCValues values;
6283 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284
6285 if (gui.drawarea->window == NULL)
6286 return;
6287
Your Name810cb5a2022-09-13 11:25:54 +01006288 values.function = GDK_INVERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6290 &values,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006292 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6293 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6295 TRUE,
6296 FILL_X(c), FILL_Y(r),
6297 (nc) * gui.char_width, (nr) * gui.char_height);
6298 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300}
6301
6302/*
6303 * Iconify the GUI window.
6304 */
6305 void
6306gui_mch_iconify(void)
6307{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309}
6310
6311#if defined(FEAT_EVAL) || defined(PROTO)
6312/*
6313 * Bring the Vim window to the foreground.
6314 */
6315 void
6316gui_mch_set_foreground(void)
6317{
Bram Moolenaar023930d2022-12-01 19:40:55 +00006318 // Just calling gtk_window_present() used to work in the past, but now this
6319 // sequence appears to be needed:
6320 // - Show the window on top of others.
6321 // - Present the window (also shows it above others).
6322 // - Do not the window on top of others (otherwise it would be stuck there).
6323 gtk_window_set_keep_above(GTK_WINDOW(gui.mainwin), TRUE);
6324 gui_may_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar023930d2022-12-01 19:40:55 +00006326 gui_may_flush();
6327 gtk_window_set_keep_above(GTK_WINDOW(gui.mainwin), FALSE);
6328 gui_may_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329}
6330#endif
6331
6332/*
6333 * Draw a cursor without focus.
6334 */
6335 void
6336gui_mch_draw_hollow_cursor(guicolor_T color)
6337{
6338 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006339#if GTK_CHECK_VERSION(3,0,0)
6340 cairo_t *cr;
6341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342
Bram Moolenaar98921892016-02-23 17:14:37 +01006343 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 return;
6345
Bram Moolenaar98921892016-02-23 17:14:37 +01006346#if GTK_CHECK_VERSION(3,0,0)
6347 cr = cairo_create(gui.surface);
6348#endif
6349
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 gui_mch_set_fg_color(color);
6351
Bram Moolenaar98921892016-02-23 17:14:37 +01006352#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006353 cairo_set_source_rgba(cr,
6354 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6355 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 if (mb_lefthalve(gui.row, gui.col))
6360 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006361#if GTK_CHECK_VERSION(3,0,0)
6362 cairo_set_line_width(cr, 1.0);
6363 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6364 cairo_rectangle(cr,
6365 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6366 i * gui.char_width - 1, gui.char_height - 1);
6367 cairo_stroke(cr);
6368 cairo_destroy(cr);
6369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6371 FALSE,
6372 FILL_X(gui.col), FILL_Y(gui.row),
6373 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375}
6376
6377/*
6378 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6379 * color "color".
6380 */
6381 void
6382gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6383{
Bram Moolenaar98921892016-02-23 17:14:37 +01006384 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 return;
6386
6387 gui_mch_set_fg_color(color);
6388
Bram Moolenaar98921892016-02-23 17:14:37 +01006389#if GTK_CHECK_VERSION(3,0,0)
6390 {
6391 cairo_t *cr;
6392
6393 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006394 cairo_set_source_rgba(cr,
6395 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6396 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006397 cairo_rectangle(cr,
6398# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006399 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006400 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6401# endif
6402 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6403 w, h);
6404 cairo_fill(cr);
6405 cairo_destroy(cr);
6406 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006407#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6409 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6410 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006411# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006412 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006414# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 FILL_X(gui.col),
6416 FILL_Y(gui.row) + gui.char_height - h,
6417 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006418#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419}
6420
6421
6422/*
6423 * Catch up with any queued X11 events. This may put keyboard input into the
6424 * input buffer, call resize call-backs, trigger timers etc. If there is
6425 * nothing in the X11 event queue (& no timers pending), then we return
6426 * immediately.
6427 */
6428 void
6429gui_mch_update(void)
6430{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006431 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6432 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433}
6434
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006435 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436input_timer_cb(gpointer data)
6437{
6438 int *timed_out = (int *) data;
6439
Bram Moolenaar30613902019-12-01 22:11:18 +01006440 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 *timed_out = TRUE;
6442
Bram Moolenaar30613902019-12-01 22:11:18 +01006443 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444}
6445
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006446#ifdef FEAT_JOB_CHANNEL
6447 static timeout_cb_type
6448channel_poll_cb(gpointer data UNUSED)
6449{
Bram Moolenaar30613902019-12-01 22:11:18 +01006450 // Using an event handler for a channel that may be disconnected does
6451 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006452 channel_handle_events(TRUE);
6453 parse_queued_messages();
6454
Bram Moolenaar30613902019-12-01 22:11:18 +01006455 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006456}
6457#endif
6458
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459/*
6460 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6461 * from the keyboard.
6462 * wtime == -1 Wait forever.
6463 * wtime == 0 This should never happen.
6464 * wtime > 0 Wait wtime milliseconds for a character.
6465 * Returns OK if a character was found to be available within the given time,
6466 * or FAIL otherwise.
6467 */
6468 int
6469gui_mch_wait_for_chars(long wtime)
6470{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006471 int focus;
6472 guint timer;
6473 static int timed_out;
6474 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006475#ifdef FEAT_JOB_CHANNEL
6476 guint channel_timer = 0;
6477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478
6479 timed_out = FALSE;
6480
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006481 // This timeout makes sure that we will return if no characters arrived in
6482 // time. If "wtime" is zero just use one.
6483 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006484 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006485 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486 else
6487 timer = 0;
6488
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006489#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006490 // If there is a channel with the keep_open flag we need to poll for input
6491 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006492 if (channel_any_keep_open())
6493 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6494#endif
6495
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 focus = gui.in_focus;
6497
6498 do
6499 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006500 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 if (gui.in_focus != focus)
6502 {
6503 if (gui.in_focus)
6504 gui_mch_start_blink();
6505 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006506 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 focus = gui.in_focus;
6508 }
6509
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006510#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006511# ifdef FEAT_TIMERS
6512 did_add_timer = FALSE;
6513# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006514 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006515# ifdef FEAT_TIMERS
6516 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006517 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006518 goto theend;
6519# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006520#endif
6521
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 /*
6523 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006524 * Skip this if input is available anyway (can happen in rare
6525 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006527 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006528 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529
Bram Moolenaar30613902019-12-01 22:11:18 +01006530 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006531 if (input_available())
6532 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006533 retval = OK;
6534 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 }
6536 } while (wtime < 0 || !timed_out);
6537
6538 /*
6539 * Flush all eventually pending (drawing) events.
6540 */
6541 gui_mch_update();
6542
Bram Moolenaar4231da42016-06-02 14:30:04 +02006543theend:
6544 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006545 timeout_remove(timer);
6546#ifdef FEAT_JOB_CHANNEL
6547 if (channel_timer != 0)
6548 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006549#endif
6550
6551 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552}
6553
6554
Bram Moolenaar30613902019-12-01 22:11:18 +01006555/////////////////////////////////////////////////////////////////////////////
6556// Output drawing routines.
6557//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558
6559
Bram Moolenaar30613902019-12-01 22:11:18 +01006560// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 void
6562gui_mch_flush(void)
6563{
Bram Moolenaar98921892016-02-23 17:14:37 +01006564 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006565#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006566 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006567#else
6568 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570}
6571
6572/*
6573 * Clear a rectangular region of the screen from text pos (row1, col1) to
6574 * (row2, col2) inclusive.
6575 */
6576 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006577gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006579
6580 int col1 = check_col(col1arg);
6581 int col2 = check_col(col2arg);
6582 int row1 = check_row(row1arg);
6583 int row2 = check_row(row2arg);
6584
Bram Moolenaar98921892016-02-23 17:14:37 +01006585#if GTK_CHECK_VERSION(3,0,0)
6586 if (gtk_widget_get_window(gui.drawarea) == NULL)
6587 return;
6588#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 GdkColor color;
6590
6591 if (gui.drawarea->window == NULL)
6592 return;
6593
6594 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006595#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596
Bram Moolenaar98921892016-02-23 17:14:37 +01006597#if GTK_CHECK_VERSION(3,0,0)
6598 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006599 // Add one pixel to the far right column in case a double-stroked
6600 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006601 const GdkRectangle rect = {
6602 FILL_X(col1), FILL_Y(row1),
6603 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6604 (row2 - row1 + 1) * gui.char_height
6605 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006606 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006607# if GTK_CHECK_VERSION(3,22,2)
6608 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6609# else
presuku9459b8d2021-11-16 20:03:56 +00006610 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006611 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6612 if (pat != NULL)
6613 cairo_set_source(cr, pat);
6614 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006615 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006616# endif
presuku9459b8d2021-11-16 20:03:56 +00006617 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006618 cairo_fill(cr);
6619 cairo_destroy(cr);
6620
presuku9459b8d2021-11-16 20:03:56 +00006621 gtk_widget_queue_draw_area(gui.drawarea,
6622 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006623 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006624#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 gdk_gc_set_foreground(gui.text_gc, &color);
6626
Bram Moolenaar30613902019-12-01 22:11:18 +01006627 // Clear one extra pixel at the far right, for when bold characters have
6628 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6630 FILL_X(col1), FILL_Y(row1),
6631 (col2 - col1 + 1) * gui.char_width
6632 + (col2 == Columns - 1),
6633 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006634#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635}
6636
Bram Moolenaar98921892016-02-23 17:14:37 +01006637#if GTK_CHECK_VERSION(3,0,0)
6638 static void
6639gui_gtk_window_clear(GdkWindow *win)
6640{
6641 const GdkRectangle rect = {
6642 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6643 };
6644 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006645# if GTK_CHECK_VERSION(3,22,2)
6646 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6647# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006648 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6649 if (pat != NULL)
6650 cairo_set_source(cr, pat);
6651 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006652 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006653# endif
presuku9459b8d2021-11-16 20:03:56 +00006654 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006655 cairo_fill(cr);
6656 cairo_destroy(cr);
6657
presuku9459b8d2021-11-16 20:03:56 +00006658 gtk_widget_queue_draw_area(gui.drawarea,
6659 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006660}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006661#else
6662# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006663#endif
6664
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 void
6666gui_mch_clear_all(void)
6667{
Bram Moolenaar98921892016-02-23 17:14:37 +01006668 if (gtk_widget_get_window(gui.drawarea) != NULL)
6669 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670}
6671
Bram Moolenaar98921892016-02-23 17:14:37 +01006672#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673/*
6674 * Redraw any text revealed by scrolling up/down.
6675 */
6676 static void
6677check_copy_area(void)
6678{
6679 GdkEvent *event;
6680 int expose_count;
6681
6682 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6683 return;
6684
Bram Moolenaar30613902019-12-01 22:11:18 +01006685 // Avoid redrawing the cursor while scrolling or it'll end up where
6686 // we don't want it to be. I'm not sure if it's correct to call
6687 // gui_dont_update_cursor() at this point but it works as a quick
6688 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006689 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690
6691 do
6692 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006693 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6695
6696 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006697 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698
6699 gui_redraw(event->expose.area.x, event->expose.area.y,
6700 event->expose.area.width, event->expose.area.height);
6701
6702 expose_count = event->expose.count;
6703 gdk_event_free(event);
6704 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006705 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706
6707 gui_can_update_cursor();
6708}
Bram Moolenaar30613902019-12-01 22:11:18 +01006709#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006710
6711#if GTK_CHECK_VERSION(3,0,0)
6712 static void
6713gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6714 int src_x, int src_y,
6715 int width, int height)
6716{
6717 cairo_t * const cr = cairo_create(gui.surface);
6718
6719 cairo_rectangle(cr, dest_x, dest_y, width, height);
6720 cairo_clip(cr);
6721 cairo_push_group(cr);
6722 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6723 cairo_paint(cr);
6724 cairo_pop_group_to_source(cr);
6725 cairo_paint(cr);
6726
6727 cairo_destroy(cr);
6728}
6729#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730
6731/*
6732 * Delete the given number of lines from the given row, scrolling up any
6733 * text further down within the scroll region.
6734 */
6735 void
6736gui_mch_delete_lines(int row, int num_lines)
6737{
Bram Moolenaar98921892016-02-23 17:14:37 +01006738#if GTK_CHECK_VERSION(3,0,0)
6739 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6740 const int nrows = gui.scroll_region_bot - row + 1;
6741 const int src_nrows = nrows - num_lines;
6742
6743 gui_gtk_surface_copy_rect(
6744 FILL_X(gui.scroll_region_left), FILL_Y(row),
6745 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6746 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6747 gui_clear_block(
6748 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6749 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006750 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006751 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006752 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006753#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006755 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756
6757 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6758 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6759
Bram Moolenaar30613902019-12-01 22:11:18 +01006760 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6762 FILL_X(gui.scroll_region_left), FILL_Y(row),
6763 gui.drawarea->window,
6764 FILL_X(gui.scroll_region_left),
6765 FILL_Y(row + num_lines),
6766 gui.char_width * (gui.scroll_region_right
6767 - gui.scroll_region_left + 1) + 1,
6768 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6769
6770 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6771 gui.scroll_region_left,
6772 gui.scroll_region_bot, gui.scroll_region_right);
6773 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006774#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775}
6776
6777/*
6778 * Insert the given number of lines before the given row, scrolling down any
6779 * following text within the scroll region.
6780 */
6781 void
6782gui_mch_insert_lines(int row, int num_lines)
6783{
Bram Moolenaar98921892016-02-23 17:14:37 +01006784#if GTK_CHECK_VERSION(3,0,0)
6785 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6786 const int nrows = gui.scroll_region_bot - row + 1;
6787 const int src_nrows = nrows - num_lines;
6788
6789 gui_gtk_surface_copy_rect(
6790 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6791 FILL_X(gui.scroll_region_left), FILL_Y(row),
6792 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006793 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006794 row, gui.scroll_region_left,
6795 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006796 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006797 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006798 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006799#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006801 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802
6803 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6804 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6805
Bram Moolenaar30613902019-12-01 22:11:18 +01006806 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6808 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6809 gui.drawarea->window,
6810 FILL_X(gui.scroll_region_left), FILL_Y(row),
6811 gui.char_width * (gui.scroll_region_right
6812 - gui.scroll_region_left + 1) + 1,
6813 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6814
6815 gui_clear_block(row, gui.scroll_region_left,
6816 row + num_lines - 1, gui.scroll_region_right);
6817 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006818#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819}
6820
6821/*
6822 * X Selection stuff, for cutting and pasting text to other windows.
6823 */
6824 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006825clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826{
6827 GdkAtom target;
6828 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006829 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830
6831 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6832 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006833 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6834 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835 received_selection = RS_NONE;
6836 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6837
6838 gtk_selection_convert(gui.drawarea,
6839 cbd->gtk_sel_atom, target,
6840 (guint32)GDK_CURRENT_TIME);
6841
Bram Moolenaar30613902019-12-01 22:11:18 +01006842 // Hack: Wait up to three seconds for the selection. A hang was
6843 // noticed here when using the netrw plugin combined with ":gui"
6844 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006845 start = time(NULL);
6846 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006847 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848
6849 if (received_selection != RS_FAIL)
6850 return;
6851 }
6852
Bram Moolenaar30613902019-12-01 22:11:18 +01006853 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006854 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6855 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856}
6857
6858/*
6859 * Disown the selection.
6860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006862clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00006864 if (in_selection_clear_event)
6865 return;
6866
6867 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6868 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869}
6870
6871/*
6872 * Own the selection and return OK if it worked.
6873 */
6874 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006875clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876{
6877 int success;
6878
6879 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006880 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 gui_mch_update();
6882 return (success) ? OK : FAIL;
6883}
6884
6885/*
6886 * Send the current selection to the clipboard. Do nothing for X because we
6887 * will fill in the selection only when requested by another app.
6888 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006890clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891{
6892}
6893
Bram Moolenaar113e1072019-01-20 15:30:40 +01006894#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006895 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006896clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006897{
6898 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6899}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006900#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006901
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902
6903#if defined(FEAT_MENU) || defined(PROTO)
6904/*
6905 * Make a menu item appear either active or not active (grey or not grey).
6906 */
6907 void
6908gui_mch_menu_grey(vimmenu_T *menu, int grey)
6909{
6910 if (menu->id == NULL)
6911 return;
6912
6913 if (menu_is_separator(menu->name))
6914 grey = TRUE;
6915
6916 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006917 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006918 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919 {
6920 gtk_widget_set_sensitive(menu->id, !grey);
6921 gui_mch_update();
6922 }
6923}
6924
6925/*
6926 * Make menu item hidden or not hidden.
6927 */
6928 void
6929gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6930{
6931 if (menu->id == 0)
6932 return;
6933
6934 if (hidden)
6935 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006936 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
6938 gtk_widget_hide(menu->id);
6939 gui_mch_update();
6940 }
6941 }
6942 else
6943 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006944 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945 {
6946 gtk_widget_show(menu->id);
6947 gui_mch_update();
6948 }
6949 }
6950}
6951
6952/*
6953 * This is called after setting all the menus to grey/hidden or not.
6954 */
6955 void
6956gui_mch_draw_menubar(void)
6957{
Bram Moolenaar30613902019-12-01 22:11:18 +01006958 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959 gui_mch_update();
6960}
Bram Moolenaar30613902019-12-01 22:11:18 +01006961#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962
6963/*
6964 * Scrollbar stuff.
6965 */
6966 void
6967gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6968{
6969 if (sb->id == NULL)
6970 return;
6971
Bram Moolenaar98921892016-02-23 17:14:37 +01006972 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006973 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974}
6975
6976
6977/*
6978 * Return the RGB value of a pixel as long.
6979 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006980 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981gui_mch_get_rgb(guicolor_T pixel)
6982{
Bram Moolenaar98921892016-02-23 17:14:37 +01006983#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006984 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006985#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006986 GdkColor color;
6987
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6989 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006991 return (guicolor_T)(
6992 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006994 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996}
6997
6998/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006999 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007001 void
7002gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003{
Bram Moolenaar98921892016-02-23 17:14:37 +01007004 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005}
7006
7007 void
7008gui_mch_setmouse(int x, int y)
7009{
Bram Moolenaar30613902019-12-01 22:11:18 +01007010 // Sorry for the Xlib call, but we can't avoid it, since there is no
7011 // internal GDK mechanism present to accomplish this. (and for good
7012 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01007013 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7014 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7015 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016}
7017
7018
7019#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01007020// The last set mouse pointer shape is remembered, to be used when it goes
7021// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022static int last_shape = 0;
7023#endif
7024
7025/*
7026 * Use the blank mouse pointer or not.
7027 *
7028 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7029 */
7030 void
7031gui_mch_mousehide(int hide)
7032{
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007033 if (gui.pointer_hidden == hide)
7034 return;
7035
7036 gui.pointer_hidden = hide;
7037 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007039 if (hide)
7040 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7041 gui.blank_pointer);
7042 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043#ifdef FEAT_MOUSESHAPE
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007044 mch_set_mouse_shape(last_shape);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045#else
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007046 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 }
7049}
7050
7051#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7052
Bram Moolenaar30613902019-12-01 22:11:18 +01007053// Table for shape IDs. Keep in sync with the mshape_names[] table in
7054// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055static const int mshape_ids[] =
7056{
Bram Moolenaar30613902019-12-01 22:11:18 +01007057 GDK_LEFT_PTR, // arrow
7058 GDK_CURSOR_IS_PIXMAP, // blank
7059 GDK_XTERM, // beam
7060 GDK_SB_V_DOUBLE_ARROW, // updown
7061 GDK_SIZING, // udsizing
7062 GDK_SB_H_DOUBLE_ARROW, // leftright
7063 GDK_SIZING, // lrsizing
7064 GDK_WATCH, // busy
7065 GDK_X_CURSOR, // no
7066 GDK_CROSSHAIR, // crosshair
7067 GDK_HAND1, // hand1
7068 GDK_HAND2, // hand2
7069 GDK_PENCIL, // pencil
7070 GDK_QUESTION_ARROW, // question
7071 GDK_RIGHT_PTR, // right-arrow
7072 GDK_CENTER_PTR, // up-arrow
7073 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074};
7075
7076 void
7077mch_set_mouse_shape(int shape)
7078{
7079 int id;
7080 GdkCursor *c;
7081
Bram Moolenaar98921892016-02-23 17:14:37 +01007082 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 return;
7084
7085 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007086 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7087 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 else
7089 {
7090 if (shape >= MSHAPE_NUMBERED)
7091 {
7092 id = shape - MSHAPE_NUMBERED;
7093 if (id >= GDK_LAST_CURSOR)
7094 id = GDK_LEFT_PTR;
7095 else
Bram Moolenaar30613902019-12-01 22:11:18 +01007096 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 }
K.Takataeeec2542021-06-02 13:28:16 +02007098 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007100 else
7101 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007103 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007104 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007105# if GTK_CHECK_VERSION(3,0,0)
7106 g_object_unref(G_OBJECT(c));
7107# else
Bram Moolenaar30613902019-12-01 22:11:18 +01007108 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01007109# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 }
7111 if (shape != MSHAPE_HIDE)
7112 last_shape = shape;
7113}
Bram Moolenaar30613902019-12-01 22:11:18 +01007114#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115
7116
7117#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7118/*
7119 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7120 * scaled down if the current font is not big enough, or scaled up if the image
7121 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7122 * will be cut off if the current font is not big enough, or centered if it's
7123 * too small.
7124 */
7125# define SIGN_WIDTH (2 * gui.char_width)
7126# define SIGN_HEIGHT (gui.char_height)
7127# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7128
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 void
7130gui_mch_drawsign(int row, int col, int typenr)
7131{
7132 GdkPixbuf *sign;
7133
7134 sign = (GdkPixbuf *)sign_get_image(typenr);
7135
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007136 if (sign == NULL || gui.drawarea == NULL
7137 || gtk_widget_get_window(gui.drawarea) == NULL)
7138 return;
7139
7140 int width;
7141 int height;
7142 int xoffset;
7143 int yoffset;
7144 int need_scale;
7145
7146 width = gdk_pixbuf_get_width(sign);
7147 height = gdk_pixbuf_get_height(sign);
7148 /*
7149 * Decide whether we need to scale. Allow one pixel of border
7150 * width to be cut off, in order to avoid excessive scaling for
7151 * tiny differences in font size.
7152 * Do scale to fit the height to avoid gaps because of linespacing.
7153 */
7154 need_scale = (width > SIGN_WIDTH + 2
7155 || height != SIGN_HEIGHT
7156 || (width < 3 * SIGN_WIDTH / 4
7157 && height < 3 * SIGN_HEIGHT / 4));
7158 if (need_scale)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007160 double aspect;
7161 int w = width;
7162 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007164 // Keep the original aspect ratio
7165 aspect = (double)height / (double)width;
7166 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7167 width = MIN(width, SIGN_WIDTH);
7168 if (((double)(MAX(height, SIGN_HEIGHT)) /
7169 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170 {
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007171 // Change the aspect ratio by at most 15% to fill the
7172 // available space completely.
7173 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7174 height = MIN(height, SIGN_HEIGHT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 }
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007176 else
7177 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007179 if (w == width && h == height)
7180 {
7181 // no change in dimensions; don't decrease reference counter
7182 // (below)
7183 need_scale = FALSE;
7184 }
7185 else
7186 {
7187 // This doesn't seem to be worth caching, and doing so would
7188 // complicate the code quite a bit.
7189 sign = gdk_pixbuf_scale_simple(sign, width, height,
7190 GDK_INTERP_BILINEAR);
7191 if (sign == NULL)
7192 return; // out of memory
7193 }
7194 }
7195
7196 // The origin is the upper-left corner of the pixmap. Therefore
7197 // these offset may become negative if the pixmap is smaller than
7198 // the 2x1 cells reserved for the sign icon.
7199 xoffset = (width - SIGN_WIDTH) / 2;
7200 yoffset = (height - SIGN_HEIGHT) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201
Bram Moolenaar98921892016-02-23 17:14:37 +01007202# if GTK_CHECK_VERSION(3,0,0)
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007203 {
7204 cairo_t *cr;
7205 cairo_surface_t *bg_surf;
7206 cairo_t *bg_cr;
7207 cairo_surface_t *sign_surf;
7208 cairo_t *sign_cr;
Bram Moolenaar98921892016-02-23 17:14:37 +01007209
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007210 cr = cairo_create(gui.surface);
Bram Moolenaar98921892016-02-23 17:14:37 +01007211
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007212 bg_surf = cairo_surface_create_similar(gui.surface,
7213 cairo_surface_get_content(gui.surface),
7214 SIGN_WIDTH, SIGN_HEIGHT);
7215 bg_cr = cairo_create(bg_surf);
7216 cairo_set_source_rgba(bg_cr,
7217 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7218 gui.bgcolor->alpha);
7219 cairo_paint(bg_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007220
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007221 sign_surf = cairo_surface_create_similar(gui.surface,
7222 cairo_surface_get_content(gui.surface),
7223 SIGN_WIDTH, SIGN_HEIGHT);
7224 sign_cr = cairo_create(sign_surf);
7225 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7226 cairo_paint(sign_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007227
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007228 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7229 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7230 cairo_paint(sign_cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007231
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007232 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7233 cairo_paint(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007234
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007235 cairo_destroy(sign_cr);
7236 cairo_surface_destroy(sign_surf);
7237 cairo_destroy(bg_cr);
7238 cairo_surface_destroy(bg_surf);
7239 cairo_destroy(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01007240
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007241 gtk_widget_queue_draw_area(gui.drawarea,
7242 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007243
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 }
Yegappan Lakshmanan7f8b2552023-01-08 13:44:24 +00007245# else // !GTK_CHECK_VERSION(3,0,0)
7246 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7247
7248 gdk_draw_rectangle(gui.drawarea->window,
7249 gui.text_gc,
7250 TRUE,
7251 FILL_X(col),
7252 FILL_Y(row),
7253 SIGN_WIDTH,
7254 SIGN_HEIGHT);
7255
7256 gdk_pixbuf_render_to_drawable_alpha(sign,
7257 gui.drawarea->window,
7258 MAX(0, xoffset),
7259 MAX(0, yoffset),
7260 FILL_X(col) - MIN(0, xoffset),
7261 FILL_Y(row) - MIN(0, yoffset),
7262 MIN(width, SIGN_WIDTH),
7263 MIN(height, SIGN_HEIGHT),
7264 GDK_PIXBUF_ALPHA_BILEVEL,
7265 127,
7266 GDK_RGB_DITHER_NORMAL,
7267 0, 0);
7268# endif // !GTK_CHECK_VERSION(3,0,0)
7269 if (need_scale)
7270 g_object_unref(sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271}
7272
7273 void *
7274gui_mch_register_sign(char_u *signfile)
7275{
7276 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7277 {
7278 GdkPixbuf *sign;
7279 GError *error = NULL;
7280 char_u *message;
7281
7282 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7283
7284 if (error == NULL)
7285 return sign;
7286
7287 message = (char_u *)error->message;
7288
7289 if (message != NULL && input_conv.vc_type != CONV_NONE)
7290 message = string_convert(&input_conv, message, NULL);
7291
7292 if (message != NULL)
7293 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007294 // The error message is already translated and will be more
7295 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007296 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297
7298 if (input_conv.vc_type != CONV_NONE)
7299 vim_free(message);
7300 }
7301 g_error_free(error);
7302 }
7303
7304 return NULL;
7305}
7306
7307 void
7308gui_mch_destroy_sign(void *sign)
7309{
7310 if (sign != NULL)
7311 g_object_unref(sign);
7312}
7313
Bram Moolenaar30613902019-12-01 22:11:18 +01007314#endif // FEAT_SIGN_ICONS