blob: 945cb09ca925a293ce1f0a91eba144a90e865edb [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.
410# ifdef FEAT_JOB_CHANNEL
411# 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
466clear_resize_hists()
467{
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
519free_all_resize_hist()
520{
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];
783 cairo_rectangle(cr, rect->x, rect->y, rect->width, rect->height);
784 cairo_fill(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +0100785 }
786 }
787 cairo_rectangle_list_destroy(list);
Bram Moolenaar98921892016-02-23 17:14:37 +0100788 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100789
790 return FALSE;
791}
Bram Moolenaar30613902019-12-01 22:11:18 +0100792#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000794expose_event(GtkWidget *widget UNUSED,
795 GdkEventExpose *event,
796 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797{
Bram Moolenaar30613902019-12-01 22:11:18 +0100798 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 if (gui.starting)
800 return FALSE;
801
Bram Moolenaar30613902019-12-01 22:11:18 +0100802 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 gui_redraw(event->area.x, event->area.y,
804 event->area.width, event->area.height);
805
Bram Moolenaar30613902019-12-01 22:11:18 +0100806 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 if (event->area.x < FILL_X(0))
808 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
809 if (event->area.y < FILL_Y(0))
810 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
811 if (event->area.x > FILL_X(Columns))
812 gdk_window_clear_area(gui.drawarea->window,
813 FILL_X((int)Columns), 0, 0, 0);
814 if (event->area.y > FILL_Y(Rows))
815 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
816
817 return FALSE;
818}
Bram Moolenaar30613902019-12-01 22:11:18 +0100819#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820
821#ifdef FEAT_CLIENTSERVER
822/*
823 * Handle changes to the "Comm" property
824 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000826property_event(GtkWidget *widget,
827 GdkEventProperty *event,
828 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829{
830 if (event->type == GDK_PROPERTY_NOTIFY
831 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100832 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 && GET_X_ATOM(event->atom) == commProperty)
834 {
835 XEvent xev;
836
Bram Moolenaar30613902019-12-01 22:11:18 +0100837 // Translate to XLib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 xev.xproperty.type = PropertyNotify;
839 xev.xproperty.atom = commProperty;
840 xev.xproperty.window = commWindow;
841 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100842 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100843 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 }
845 return FALSE;
846}
Bram Moolenaar30613902019-12-01 22:11:18 +0100847#endif // defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200849/*
850 * Handle changes to the "Xft/DPI" setting
851 */
852 static void
853gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
Ernie Rael9f53e7b2022-04-17 18:27:49 +0100854 GParamSpec *pspec UNUSED,
855 gpointer data UNUSED)
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200856{
857 // Create a new PangoContext for this screen, and initialize it
858 // with the current font if necessary.
859 if (gui.text_context != NULL)
860 g_object_unref(gui.text_context);
861
862 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
863 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
864
865 if (gui.norm_font != NULL)
866 {
867 // force default font
868 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
869 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
870 }
871}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200873typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200874
875/*
876 * Start a timer that will invoke the specified callback.
877 * Returns the ID of the timer.
878 */
879 static guint
880timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
881{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200882 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200883}
884
885 static void
886timeout_remove(guint timer)
887{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200888 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200889}
890
891
Bram Moolenaar30613902019-12-01 22:11:18 +0100892/////////////////////////////////////////////////////////////////////////////
893// Focus handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894
895
896/*
897 * This is a simple state machine:
898 * BLINK_NONE not blinking at all
899 * BLINK_OFF blinking, cursor is not shown
900 * BLINK_ON blinking, cursor is shown
901 */
902
903#define BLINK_NONE 0
904#define BLINK_OFF 1
905#define BLINK_ON 2
906
907static int blink_state = BLINK_NONE;
908static long_u blink_waittime = 700;
909static long_u blink_ontime = 400;
910static long_u blink_offtime = 250;
911static guint blink_timer = 0;
912
Bram Moolenaar703a8042016-06-04 16:24:32 +0200913 int
914gui_mch_is_blinking(void)
915{
916 return blink_state != BLINK_NONE;
917}
918
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200919 int
920gui_mch_is_blink_off(void)
921{
922 return blink_state == BLINK_OFF;
923}
924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 void
926gui_mch_set_blinking(long waittime, long on, long off)
927{
928 blink_waittime = waittime;
929 blink_ontime = on;
930 blink_offtime = off;
931}
932
933/*
934 * Stop the cursor blinking. Show the cursor if it wasn't shown.
935 */
936 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100937gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938{
939 if (blink_timer)
940 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200941 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 blink_timer = 0;
943 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100944 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000947#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200948 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000949#endif
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 blink_state = BLINK_NONE;
952}
953
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200954 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000955blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956{
957 if (blink_state == BLINK_ON)
958 {
959 gui_undraw_cursor();
960 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200961 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963 else
964 {
965 gui_update_cursor(TRUE, FALSE);
966 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200967 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 }
presuku9459b8d2021-11-16 20:03:56 +0000969#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200970 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972
Bram Moolenaar30613902019-12-01 22:11:18 +0100973 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974}
975
976/*
977 * Start the cursor blinking. If it was already blinking, this restarts the
978 * waiting time and shows the cursor.
979 */
980 void
981gui_mch_start_blink(void)
982{
983 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200984 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200985 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200986 blink_timer = 0;
987 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100988 // Only switch blinking on if none of the times is zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
990 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200991 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 blink_state = BLINK_ON;
993 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000994#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200995 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000996#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 }
998}
999
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001001enter_notify_event(GtkWidget *widget UNUSED,
1002 GdkEventCrossing *event UNUSED,
1003 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004{
1005 if (blink_state == BLINK_NONE)
1006 gui_mch_start_blink();
1007
Bram Moolenaar30613902019-12-01 22:11:18 +01001008 // make sure keyboard input goes there
Bram Moolenaar98921892016-02-23 17:14:37 +01001009 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 gtk_widget_grab_focus(gui.drawarea);
1011
1012 return FALSE;
1013}
1014
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001016leave_notify_event(GtkWidget *widget UNUSED,
1017 GdkEventCrossing *event UNUSED,
1018 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001021 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
1023 return FALSE;
1024}
1025
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001027focus_in_event(GtkWidget *widget,
1028 GdkEventFocus *event UNUSED,
1029 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 gui_focus_change(TRUE);
1032
1033 if (blink_state == BLINK_NONE)
1034 gui_mch_start_blink();
1035
Bram Moolenaar30613902019-12-01 22:11:18 +01001036 // make sure keyboard input goes to the draw area (if this is focus for a
1037 // window)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001038 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001039 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
1041 return TRUE;
1042}
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001045focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001046 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001047 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048{
1049 gui_focus_change(FALSE);
1050
1051 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001052 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
1054 return TRUE;
1055}
1056
1057
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058/*
1059 * Translate a GDK key value to UTF-8 independently of the current locale.
1060 * The output is written to string, which must have room for at least 6 bytes
1061 * plus the NUL terminator. Returns the length in bytes.
1062 *
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001063 * event->string is evil; see here why:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1065 */
1066 static int
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001067keyval_to_string(unsigned int keyval, char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068{
1069 int len;
1070 guint32 uc;
1071
1072 uc = gdk_keyval_to_unicode(keyval);
1073 if (uc != 0)
1074 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001075 // Translate a normal key to UTF-8. This doesn't work for dead
1076 // keys of course, you _have_ to use an input method for that.
1077 len = utf_char2bytes((int)uc, string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 }
1079 else
1080 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001081 // Translate keys which are represented by ASCII control codes in Vim.
1082 // There are only a few of those; most control keys are translated to
1083 // special terminal-like control sequences.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 len = 1;
1085 switch (keyval)
1086 {
1087 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1088 string[0] = TAB;
1089 break;
1090 case GDK_Linefeed:
1091 string[0] = NL;
1092 break;
1093 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1094 string[0] = CAR;
1095 break;
1096 case GDK_Escape:
1097 string[0] = ESC;
1098 break;
1099 default:
1100 len = 0;
1101 break;
1102 }
1103 }
1104 string[len] = NUL;
1105
1106 return len;
1107}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001109 static int
1110modifiers_gdk2vim(guint state)
1111{
1112 int modifiers = 0;
1113
1114 if (state & GDK_SHIFT_MASK)
1115 modifiers |= MOD_MASK_SHIFT;
1116 if (state & GDK_CONTROL_MASK)
1117 modifiers |= MOD_MASK_CTRL;
1118 if (state & GDK_MOD1_MASK)
1119 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001120#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001121 if (state & GDK_SUPER_MASK)
1122 modifiers |= MOD_MASK_META;
1123#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001124 if (state & GDK_MOD4_MASK)
1125 modifiers |= MOD_MASK_META;
1126
1127 return modifiers;
1128}
1129
1130 static int
1131modifiers_gdk2mouse(guint state)
1132{
1133 int modifiers = 0;
1134
1135 if (state & GDK_SHIFT_MASK)
1136 modifiers |= MOUSE_SHIFT;
1137 if (state & GDK_CONTROL_MASK)
1138 modifiers |= MOUSE_CTRL;
1139 if (state & GDK_MOD1_MASK)
1140 modifiers |= MOUSE_ALT;
1141
1142 return modifiers;
1143}
1144
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145/*
1146 * Main keyboard handler:
1147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001149key_press_event(GtkWidget *widget UNUSED,
1150 GdkEventKey *event,
1151 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152{
Bram Moolenaar30613902019-12-01 22:11:18 +01001153 // For GTK+ 2 we know for sure how large the string might get.
1154 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 guint key_sym;
1157 int len;
1158 int i;
1159 int modifiers;
1160 int key;
1161 guint state;
1162 char_u *s, *d;
Anton Sharonov4dd92522022-07-04 10:47:31 +01001163 int ctrl_prefix_added = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164
Bram Moolenaar20892c12011-06-26 04:49:00 +02001165 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 key_sym = event->keyval;
1167 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
1169#ifdef FEAT_XIM
1170 if (xim_queue_key_press_event(event, TRUE))
1171 return TRUE;
1172#endif
1173
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174#ifdef SunXK_F36
1175 /*
1176 * These keys have bogus lookup strings, and trapping them here is
1177 * easier than trying to XRebindKeysym() on them with every possible
1178 * combination of modifiers.
1179 */
1180 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1181 len = 0;
1182 else
1183#endif
1184 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001185 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186
Bram Moolenaar30613902019-12-01 22:11:18 +01001187 // Careful: convert_input() doesn't handle the NUL character.
1188 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 if (len > 1 && input_conv.vc_type != CONV_NONE)
1190 len = convert_input(string2, len, sizeof(string2));
1191
1192 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 d = string;
1194 for (i = 0; i < len; ++i)
1195 {
1196 *d++ = s[i];
1197 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1198 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001199 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 *d++ = KS_EXTRA;
1201 *d++ = (int)KE_CSI;
1202 }
1203 }
1204 len = d - string;
1205 }
1206
Bram Moolenaar30613902019-12-01 22:11:18 +01001207 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 if (key_sym == GDK_ISO_Left_Tab)
1209 {
1210 key_sym = GDK_Tab;
1211 state |= GDK_SHIFT_MASK;
1212 }
1213
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001215 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1216 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 if ((state & GDK_MOD1_MASK)
1218 && gui.menu_is_active
1219 && (*p_wak == 'y'
1220 || (*p_wak == 'm'
1221 && len == 1
1222 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001223 // For GTK2 we return false to signify that we haven't handled the
1224 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226#endif
1227
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001228 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1229 // done later, the same as it happens for the terminal. Hopefully that
1230 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231
Bram Moolenaar30613902019-12-01 22:11:18 +01001232 // Check for special keys. Also do this when len == 1 (key has an ASCII
1233 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 if (len == 0 || len == 1)
1235 {
1236 for (i = 0; special_keys[i].key_sym != 0; i++)
1237 {
1238 if (special_keys[i].key_sym == key_sym)
1239 {
1240 string[0] = CSI;
1241 string[1] = special_keys[i].code0;
1242 string[2] = special_keys[i].code1;
1243 len = -3;
1244 break;
1245 }
1246 }
1247 }
1248
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001249#ifdef GDK_KEY_dead_circumflex
Anton Sharonov4dd92522022-07-04 10:47:31 +01001250 // Belgian Ctrl+[ workaround
1251 if (len == 0 && key_sym == GDK_KEY_dead_circumflex)
1252 {
1253 string[0] = CSI;
1254 string[1] = KS_MODIFIER;
1255 string[2] = MOD_MASK_CTRL;
1256 string[3] = '[';
1257 len = 4;
1258 add_to_input_buf(string, len);
1259 // workaround has to return here, otherwise our fake string[] entries
1260 // are confusing code downstream
1261 return TRUE;
1262 }
Bram Moolenaar4c99e622022-07-04 19:58:17 +01001263#endif
Anton Sharonov4dd92522022-07-04 10:47:31 +01001264
Bram Moolenaar30613902019-12-01 22:11:18 +01001265 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 return TRUE;
1267
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001268 // For some keys a shift modifier is translated into another key code.
1269 if (len == -3)
1270 key = TO_SPECIAL(string[1], string[2]);
1271 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001272 {
1273 string[len] = NUL;
1274 key = mb_ptr2char(string);
1275 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001276
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001277 // Handle modifiers.
1278 modifiers = modifiers_gdk2vim(state);
1279
1280 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001281 key = simplify_key(key, &modifiers);
1282 if (key == CSI)
1283 key = K_CSI;
1284 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001286 string[0] = CSI;
1287 string[1] = K_SECOND(key);
1288 string[2] = K_THIRD(key);
1289 len = 3;
1290 }
1291 else
1292 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001293 // Some keys need adjustment when the Ctrl modifier is used.
1294 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001295
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001296 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001297 modifiers = may_remove_shift_modifier(modifiers, key);
1298
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001299 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001302 if (modifiers != 0)
1303 {
1304 string2[0] = CSI;
1305 string2[1] = KS_MODIFIER;
1306 string2[2] = modifiers;
1307 add_to_input_buf(string2, 3);
Anton Sharonov4dd92522022-07-04 10:47:31 +01001308 if (modifiers == 0x4)
1309 ctrl_prefix_added = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 }
1311
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001312 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001314 int int_ch = check_for_interrupt(key, modifiers);
1315
1316 if (int_ch != NUL)
1317 {
1318 trash_input_buf();
1319 string[0] = int_ch;
1320 len = 1;
1321 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 }
1323
Anton Sharonov4dd92522022-07-04 10:47:31 +01001324 // workaround for German keyboard, where instead of '[' char we have code
1325 // sequence of bytes 195, 188 (UTF-8 for "u-umlaut")
1326 if (ctrl_prefix_added && len == 2
1327 && ((int)string[0]) == 195
1328 && ((int)string[1]) == 188)
1329 {
1330 string[0] = 91; // ASCII('[')
1331 len = 1;
1332 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 add_to_input_buf(string, len);
1334
Bram Moolenaar30613902019-12-01 22:11:18 +01001335 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (p_mh)
1337 gui_mch_mousehide(TRUE);
1338
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 return TRUE;
1340}
1341
Bram Moolenaar98921892016-02-23 17:14:37 +01001342#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001344key_release_event(GtkWidget *widget UNUSED,
Bram Moolenaar0a748d92022-04-28 15:39:08 +01001345 GdkEventKey *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001346 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
Bram Moolenaar98921892016-02-23 17:14:37 +01001348# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001349 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 /*
1351 * GTK+ 2 input methods may do fancy stuff on key release events too.
1352 * With the default IM for instance, you can enter any UCS code point
1353 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1354 */
1355 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001356# else
1357 return TRUE;
1358# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359}
1360#endif
1361
1362
Bram Moolenaar30613902019-12-01 22:11:18 +01001363/////////////////////////////////////////////////////////////////////////////
1364// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365
Bram Moolenaar30613902019-12-01 22:11:18 +01001366// Remember when clip_lose_selection was called from here, we must not call
1367// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001368static int in_selection_clear_event = FALSE;
1369
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001371selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001373 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001375 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 if (event->selection == clip_plus.gtk_sel_atom)
1377 clip_lose_selection(&clip_plus);
1378 else
1379 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001380 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 return TRUE;
1383}
1384
Bram Moolenaar30613902019-12-01 22:11:18 +01001385#define RS_NONE 0 // selection_received_cb() not called yet
1386#define RS_OK 1 // selection_received_cb() called and OK
1387#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388static int received_selection = RS_NONE;
1389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001391selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001393 guint time_ UNUSED,
1394 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001396 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 char_u *text;
1398 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001401 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402
Bram Moolenaar98921892016-02-23 17:14:37 +01001403 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 cbd = &clip_plus;
1405 else
1406 cbd = &clip_star;
1407
Bram Moolenaar98921892016-02-23 17:14:37 +01001408 text = (char_u *)gtk_selection_data_get_data(data);
1409 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410
1411 if (text == NULL || len <= 0)
1412 {
1413 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001414 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 return;
1417 }
1418
Bram Moolenaar98921892016-02-23 17:14:37 +01001419 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 {
1421 motion_type = *text++;
1422 --len;
1423 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001424 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {
1426 char_u *enc;
1427 vimconv_T conv;
1428
1429 motion_type = *text++;
1430 --len;
1431
1432 enc = text;
1433 text += STRLEN(text) + 1;
1434 len -= text - enc;
1435
Bram Moolenaar30613902019-12-01 22:11:18 +01001436 // If the encoding of the text is different from 'encoding', attempt
1437 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 conv.vc_type = CONV_NONE;
1439 convert_setup(&conv, enc, p_enc);
1440 if (conv.vc_type != CONV_NONE)
1441 {
1442 tmpbuf = string_convert(&conv, text, &len);
1443 if (tmpbuf != NULL)
1444 text = tmpbuf;
1445 convert_setup(&conv, NULL, NULL);
1446 }
1447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar30613902019-12-01 22:11:18 +01001449 // gtk_selection_data_get_text() handles all the nasty details
1450 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 else
1452 {
1453 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1454 if (tmpbuf_utf8 != NULL)
1455 {
1456 len = STRLEN(tmpbuf_utf8);
1457 if (input_conv.vc_type != CONV_NONE)
1458 {
1459 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1460 if (tmpbuf != NULL)
1461 text = tmpbuf;
1462 }
1463 else
1464 text = tmpbuf_utf8;
1465 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001466 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1467 {
1468 vimconv_T conv;
1469
Bram Moolenaar30613902019-12-01 22:11:18 +01001470 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001471 conv.vc_type = CONV_NONE;
1472 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1473
1474 if (conv.vc_type != CONV_NONE)
1475 {
1476 text += 2;
1477 len -= 2;
1478 tmpbuf = string_convert(&conv, text, &len);
1479 convert_setup(&conv, NULL, NULL);
1480 }
1481 if (tmpbuf != NULL)
1482 text = tmpbuf;
1483 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485
Bram Moolenaar30613902019-12-01 22:11:18 +01001486 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001487 while (len > 0 && text[len - 1] == NUL)
1488 --len;
1489
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 clip_yank_selection(motion_type, text, (long)len, cbd);
1491 received_selection = RS_OK;
1492 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494}
1495
1496/*
1497 * Prepare our selection data for passing it to the external selection
1498 * client.
1499 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001501selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 GtkSelectionData *selection_data,
1503 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001504 guint time_ UNUSED,
1505 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506{
1507 char_u *string;
1508 char_u *tmpbuf;
1509 long_u tmplen;
1510 int length;
1511 int motion_type;
1512 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001513 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514
Bram Moolenaar98921892016-02-23 17:14:37 +01001515 if (gtk_selection_data_get_selection(selection_data)
1516 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 cbd = &clip_plus;
1518 else
1519 cbd = &clip_star;
1520
1521 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001522 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523
1524 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001525 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 && info != (guint)TARGET_UTF8_STRING
1527 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 && info != (guint)TARGET_VIM
1529 && info != (guint)TARGET_COMPOUND_TEXT
1530 && info != (guint)TARGET_TEXT)
1531 return;
1532
Bram Moolenaar30613902019-12-01 22:11:18 +01001533 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 clip_get_selection(cbd);
1535
1536 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1537 if (motion_type < 0 || string == NULL)
1538 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001539 // Due to int arguments we can't handle more than G_MAXINT. Also
1540 // reserve one extra byte for NUL or the motion type; just in case.
1541 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1543
1544 if (info == (guint)TARGET_VIM)
1545 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001546 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (tmpbuf != NULL)
1548 {
1549 tmpbuf[0] = motion_type;
1550 mch_memmove(tmpbuf + 1, string, (size_t)length);
1551 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001552 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 ++length;
1554 vim_free(string);
1555 string = tmpbuf;
1556 type = vim_atom;
1557 }
1558
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001559 else if (info == (guint)TARGET_HTML)
1560 {
1561 vimconv_T conv;
1562
Bram Moolenaar30613902019-12-01 22:11:18 +01001563 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001564 conv.vc_type = CONV_NONE;
1565 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1566 if (conv.vc_type != CONV_NONE)
1567 {
1568 tmpbuf = string_convert(&conv, string, &length);
1569 convert_setup(&conv, NULL, NULL);
1570 vim_free(string);
1571 string = tmpbuf;
1572 }
1573
Bram Moolenaar30613902019-12-01 22:11:18 +01001574 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001575 if (string != NULL)
1576 {
1577 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001578 if (tmpbuf != NULL)
1579 {
1580 tmpbuf[0] = 0xff;
1581 tmpbuf[1] = 0xfe;
1582 mch_memmove(tmpbuf + 2, string, (size_t)length);
1583 vim_free(string);
1584 string = tmpbuf;
1585 length += 2;
1586 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001587
Bram Moolenaar98921892016-02-23 17:14:37 +01001588#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001589 // Looks redundant even for GTK2 because these values are
1590 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001591 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001592 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001593#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001594 gtk_selection_data_set(selection_data, html_atom, 16,
1595 string, length);
1596 vim_free(string);
1597 }
1598 return;
1599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 else if (info == (guint)TARGET_VIMENC)
1601 {
1602 int l = STRLEN(p_enc);
1603
Bram Moolenaar30613902019-12-01 22:11:18 +01001604 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001605 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (tmpbuf != NULL)
1607 {
1608 tmpbuf[0] = motion_type;
1609 STRCPY(tmpbuf + 1, p_enc);
1610 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001611 length += l + 2;
1612 vim_free(string);
1613 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 type = vimenc_atom;
1616 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
Bram Moolenaar30613902019-12-01 22:11:18 +01001618 // gtk_selection_data_set_text() handles everything for us. This is
1619 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 else
1621 {
1622 if (output_conv.vc_type != CONV_NONE)
1623 {
1624 tmpbuf = string_convert(&output_conv, string, &length);
1625 vim_free(string);
1626 if (tmpbuf == NULL)
1627 return;
1628 string = tmpbuf;
1629 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001630 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1632 {
1633 gtk_selection_data_set_text(selection_data,
1634 (const char *)string, length);
1635 }
1636 vim_free(string);
1637 return;
1638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639
1640 if (string != NULL)
1641 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001642#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001643 // Looks redundant even for GTK2 because these values are
1644 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001646 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001647#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 gtk_selection_data_set(selection_data, type, 8, string, length);
1649 vim_free(string);
1650 }
1651}
1652
1653/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001654 * Check if the GUI can be started. Called before gvimrc is sourced and
1655 * before fork().
1656 * Return OK or FAIL.
1657 */
1658 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001659gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001660{
1661 char_u *p;
1662
Bram Moolenaar30613902019-12-01 22:11:18 +01001663 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001664 p = mch_getenv((char_u *)"DISPLAY");
1665 if (p == NULL || *p == NUL)
1666 {
1667 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001668 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001669 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001670 return FAIL;
1671 }
1672 return OK;
1673}
1674
1675/*
1676 * Check if the GUI can be started. Called before gvimrc is sourced but after
1677 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 * Return OK or FAIL.
1679 */
1680 int
1681gui_mch_init_check(void)
1682{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001683#ifdef USE_GRESOURCE
1684 static int res_registered = FALSE;
1685
1686 if (!res_registered)
1687 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001688 // Call this function in the GUI process; otherwise, the resources
1689 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001690 res_registered = TRUE;
1691 gui_gtk_register_resource();
1692 }
1693#endif
1694
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001695#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001696 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1697 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001698 gdk_set_allowed_backends ("x11");
1699#endif
1700
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701#ifdef FEAT_GUI_GNOME
1702 if (gtk_socket_id == 0)
1703 using_gnome = 1;
1704#endif
1705
Bram Moolenaar30613902019-12-01 22:11:18 +01001706 // This defaults to argv[0], but we want it to match the name of the
1707 // shipped gvim.desktop so that Vim's windows can be associated with this
1708 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001709 g_set_prgname("gvim");
1710
Bram Moolenaar30613902019-12-01 22:11:18 +01001711 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 if (!gtk_init_check(&gui_argc, &gui_argv))
1713 {
1714 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001715 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 return FAIL;
1717 }
1718
1719 return OK;
1720}
1721
Bram Moolenaar30613902019-12-01 22:11:18 +01001722/////////////////////////////////////////////////////////////////////////////
1723// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
1725
1726static guint mouse_click_timer = 0;
1727static int mouse_timed_out = TRUE;
1728
1729/*
1730 * Timer used to recognize multiple clicks of the mouse button
1731 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001732 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733mouse_click_timer_cb(gpointer data)
1734{
Bram Moolenaar30613902019-12-01 22:11:18 +01001735 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 int *timed_out = (int *) data;
1737
1738 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001739 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740}
1741
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001742static guint motion_repeat_timer = 0;
1743static int motion_repeat_offset = FALSE;
1744static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
1746 static void
1747process_motion_notify(int x, int y, GdkModifierType state)
1748{
1749 int button;
1750 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001751 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
Chris Daltonee93e322021-11-23 12:27:48 +00001753 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1754 state |= dragging_button_state;
1755
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1757 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1758 GDK_BUTTON5_MASK))
1759 ? MOUSE_DRAG : ' ';
1760
Bram Moolenaar30613902019-12-01 22:11:18 +01001761 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 gui_mch_mousehide(FALSE);
1763
Bram Moolenaar30613902019-12-01 22:11:18 +01001764 // Just moving the rodent above the drawing area without any button
1765 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 if (button != MOUSE_DRAG)
1767 {
1768 gui_mouse_moved(x, y);
1769 return;
1770 }
1771
Bram Moolenaar30613902019-12-01 22:11:18 +01001772 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001773 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774
Bram Moolenaar30613902019-12-01 22:11:18 +01001775 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1777
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 /*
1779 * Auto repeat timer handling.
1780 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001781 gtk_widget_get_allocation(gui.drawarea, &allocation);
1782
1783 if (x < 0 || y < 0
1784 || x >= allocation.width
1785 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 {
1787
1788 int dx;
1789 int dy;
1790 int offshoot;
1791 int delay = 10;
1792
Bram Moolenaar30613902019-12-01 22:11:18 +01001793 // Calculate the maximal distance of the cursor from the drawing area.
1794 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001795 dx = x < 0 ? -x : x - allocation.width;
1796 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797
1798 offshoot = dx > dy ? dx : dy;
1799
Bram Moolenaar30613902019-12-01 22:11:18 +01001800 // Make a linearly decaying timer delay with a threshold of 5 at a
1801 // distance of 127 pixels from the main window.
1802 //
1803 // One could think endlessly about the most ergonomic variant here.
1804 // For example it could make sense to calculate the distance from the
1805 // drags start instead...
1806 //
1807 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 if (offshoot > 127)
1809 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001810 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 delay = 5;
1812 }
1813 else
1814 {
1815 delay = (130 * (127 - offshoot)) / 127 + 5;
1816 }
1817
Bram Moolenaar30613902019-12-01 22:11:18 +01001818 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001820 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1821 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 }
1823}
1824
Bram Moolenaar98921892016-02-23 17:14:37 +01001825#if GTK_CHECK_VERSION(3,0,0)
1826 static GdkDevice *
1827gui_gtk_get_pointer_device(GtkWidget *widget)
1828{
1829 GdkWindow * const win = gtk_widget_get_window(widget);
1830 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001831# if GTK_CHECK_VERSION(3,20,0)
1832 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1833 return gdk_seat_get_pointer(seat);
1834# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001835 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1836 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001837# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001838}
1839
1840 static GdkWindow *
1841gui_gtk_get_pointer(GtkWidget *widget,
1842 gint *x,
1843 gint *y,
1844 GdkModifierType *state)
1845{
1846 GdkWindow * const win = gtk_widget_get_window(widget);
1847 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1848 return gdk_window_get_device_position(win, dev , x, y, state);
1849}
1850
Bram Moolenaar2369c152016-03-04 23:08:25 +01001851# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001852 static GdkWindow *
1853gui_gtk_window_at_position(GtkWidget *widget,
1854 gint *x,
1855 gint *y)
1856{
1857 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1858 return gdk_device_get_window_at_position(dev, x, y);
1859}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001860# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001861#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001862# define gui_gtk_get_pointer(wid, x, y, s) \
1863 gdk_window_get_pointer((wid)->window, x, y, s)
1864# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001865#endif
1866
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867/*
1868 * Timer used to recognize multiple clicks of the mouse button.
1869 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001870 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001871motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872{
1873 int x;
1874 int y;
1875 GdkModifierType state;
1876
Bram Moolenaar98921892016-02-23 17:14:37 +01001877 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
1879 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1880 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1881 GDK_BUTTON5_MASK)))
1882 {
1883 motion_repeat_timer = 0;
1884 return FALSE;
1885 }
1886
Bram Moolenaar30613902019-12-01 22:11:18 +01001887 // If there already is a mouse click in the input buffer, wait another
1888 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 if (vim_used_in_input_buf() > 10)
1890 return TRUE;
1891
1892 motion_repeat_timer = 0;
1893
1894 /*
1895 * Fake a motion event.
1896 * Trick: Pretend the mouse moved to the next character on every other
1897 * event, otherwise drag events will be discarded, because they are still
1898 * in the same character.
1899 */
1900 if (motion_repeat_offset)
1901 x += gui.char_width;
1902
1903 motion_repeat_offset = !motion_repeat_offset;
1904 process_motion_notify(x, y, state);
1905
Bram Moolenaar30613902019-12-01 22:11:18 +01001906 // Don't happen again. We will get reinstalled in the synthetic event
1907 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 return FALSE;
1909}
1910
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001912motion_notify_event(GtkWidget *widget,
1913 GdkEventMotion *event,
1914 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915{
1916 if (event->is_hint)
1917 {
1918 int x;
1919 int y;
1920 GdkModifierType state;
1921
Bram Moolenaar98921892016-02-23 17:14:37 +01001922 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 process_motion_notify(x, y, state);
1924 }
1925 else
1926 {
1927 process_motion_notify((int)event->x, (int)event->y,
1928 (GdkModifierType)event->state);
1929 }
1930
Bram Moolenaar30613902019-12-01 22:11:18 +01001931 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932}
1933
1934
1935/*
1936 * Mouse button handling. Note please that we are capturing multiple click's
1937 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1938 * This is due to the way the generic VIM code is recognizing multiple clicks.
1939 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001941button_press_event(GtkWidget *widget,
1942 GdkEventButton *event,
1943 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944{
1945 int button;
1946 int repeated_click = FALSE;
1947 int x, y;
1948 int_u vim_modifiers;
1949
Bram Moolenaar20892c12011-06-26 04:49:00 +02001950 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001951
Bram Moolenaar30613902019-12-01 22:11:18 +01001952 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001953 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 gtk_widget_grab_focus(widget);
1955
1956 /*
1957 * Don't let additional events about multiple clicks send by GTK to us
1958 * after the initial button press event confuse us.
1959 */
1960 if (event->type != GDK_BUTTON_PRESS)
1961 return FALSE;
1962
1963 x = event->x;
1964 y = event->y;
1965
Bram Moolenaar30613902019-12-01 22:11:18 +01001966 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 if (!mouse_timed_out && mouse_click_timer)
1968 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001969 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 mouse_click_timer = 0;
1971 repeated_click = TRUE;
1972 }
1973
1974 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001975 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1976 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977
1978 switch (event->button)
1979 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001980 // Keep in sync with gui_x11.c.
1981 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001982 case 1:
1983 button = MOUSE_LEFT;
1984 // needed for touch-drag
1985 dragging_button_state |= GDK_BUTTON1_MASK;
1986 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001987 case 2: button = MOUSE_MIDDLE; break;
1988 case 3: button = MOUSE_RIGHT; break;
1989 case 8: button = MOUSE_X1; break;
1990 case 9: button = MOUSE_X2; break;
1991 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001992 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 }
1994
1995#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001996 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 if (im_is_preediting())
1998 xim_reset();
1999#endif
2000
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002001 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004
2005 return TRUE;
2006}
2007
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002009 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002012scroll_event(GtkWidget *widget,
2013 GdkEventScroll *event,
2014 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
2016 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002017 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
Bram Moolenaar98921892016-02-23 17:14:37 +01002019 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 gtk_widget_grab_focus(widget);
2021
2022 switch (event->direction)
2023 {
2024 case GDK_SCROLL_UP:
2025 button = MOUSE_4;
2026 break;
2027 case GDK_SCROLL_DOWN:
2028 button = MOUSE_5;
2029 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002030 case GDK_SCROLL_LEFT:
2031 button = MOUSE_7;
2032 break;
2033 case GDK_SCROLL_RIGHT:
2034 button = MOUSE_6;
2035 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01002036 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 return FALSE;
2038 }
2039
2040# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002041 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 if (im_is_preediting())
2043 xim_reset();
2044# endif
2045
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002046 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047
2048 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2049 FALSE, vim_modifiers);
2050
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 return TRUE;
2052}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002056button_release_event(GtkWidget *widget UNUSED,
2057 GdkEventButton *event,
2058 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059{
2060 int x, y;
2061 int_u vim_modifiers;
2062
Bram Moolenaar20892c12011-06-26 04:49:00 +02002063 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002064
Bram Moolenaar30613902019-12-01 22:11:18 +01002065 // Remove any motion "machine gun" timers used for automatic further
2066 // extension of allocation areas if outside of the applications window
2067 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (motion_repeat_timer)
2069 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002070 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 motion_repeat_timer = 0;
2072 }
2073
2074 x = event->x;
2075 y = event->y;
2076
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002077 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078
2079 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
Chris Daltonee93e322021-11-23 12:27:48 +00002081 switch (event->button)
2082 {
2083 case 1: // MOUSE_LEFT
2084 dragging_button_state = 0;
2085 break;
2086 }
2087
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 return TRUE;
2089}
2090
2091
2092#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002093/////////////////////////////////////////////////////////////////////////////
2094// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096/*
2097 * Count how many items there may be and separate them with a NUL.
2098 * Apparently the items are separated with \r\n. This is not documented,
2099 * thus be careful not to go past the end. Also allow separation with
2100 * NUL characters.
2101 */
2102 static int
2103count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2104{
2105 int i;
2106 char_u *p = out;
2107 int count = 0;
2108
2109 for (i = 0; i < len; ++i)
2110 {
2111 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2112 {
2113 if (p > out && p[-1] != NUL)
2114 {
2115 ++count;
2116 *p++ = NUL;
2117 }
2118 }
2119 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2120 {
2121 *p++ = hexhex2nr(raw + i + 1);
2122 i += 2;
2123 }
2124 else
2125 *p++ = raw[i];
2126 }
2127 if (p > out && p[-1] != NUL)
2128 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002129 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 ++count;
2131 }
2132 return count;
2133}
2134
2135/*
2136 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2137 * this process, URI which protocol is not "file:" are removed. Return
2138 * length of array (less than "max").
2139 */
2140 static int
2141filter_uri_list(char_u **outlist, int max, char_u *src)
2142{
2143 int i, j;
2144
2145 for (i = j = 0; i < max; ++i)
2146 {
2147 outlist[i] = NULL;
2148 if (STRNCMP(src, "file:", 5) == 0)
2149 {
2150 src += 5;
2151 if (STRNCMP(src, "//localhost", 11) == 0)
2152 src += 11;
2153 while (src[0] == '/' && src[1] == '/')
2154 ++src;
2155 outlist[j++] = vim_strsave(src);
2156 }
2157 src += STRLEN(src) + 1;
2158 }
2159 return j;
2160}
2161
2162 static char_u **
2163parse_uri_list(int *count, char_u *data, int len)
2164{
2165 int n = 0;
2166 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002167 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002169 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 {
2171 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002172 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 n = filter_uri_list(array, n, tmp);
2174 }
2175 vim_free(tmp);
2176 *count = n;
2177 return array;
2178}
2179
2180 static void
2181drag_handle_uri_list(GdkDragContext *context,
2182 GtkSelectionData *data,
2183 guint time_,
2184 GdkModifierType state,
2185 gint x,
2186 gint y)
2187{
2188 char_u **fnames;
2189 int nfiles = 0;
2190
Bram Moolenaar98921892016-02-23 17:14:37 +01002191 fnames = parse_uri_list(&nfiles,
2192 (char_u *)gtk_selection_data_get_data(data),
2193 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194
2195 if (fnames != NULL && nfiles > 0)
2196 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002197 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198
Bram Moolenaar30613902019-12-01 22:11:18 +01002199 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002201 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
2203 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2204 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002205 else
2206 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207}
2208
2209 static void
2210drag_handle_text(GdkDragContext *context,
2211 GtkSelectionData *data,
2212 guint time_,
2213 GdkModifierType state)
2214{
2215 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2216 char_u *text;
2217 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219
Bram Moolenaar98921892016-02-23 17:14:37 +01002220 text = (char_u *)gtk_selection_data_get_data(data);
2221 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222
Bram Moolenaar98921892016-02-23 17:14:37 +01002223 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 if (input_conv.vc_type != CONV_NONE)
2226 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 if (tmpbuf != NULL)
2228 text = tmpbuf;
2229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230
2231 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002232 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002235 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
2237 if (dropkey[2] != 0)
2238 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2239 else
2240 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241}
2242
2243/*
2244 * DND receiver.
2245 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 static void
2247drag_data_received_cb(GtkWidget *widget,
2248 GdkDragContext *context,
2249 gint x,
2250 gint y,
2251 GtkSelectionData *data,
2252 guint info,
2253 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002254 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255{
2256 GdkModifierType state;
2257
Bram Moolenaar30613902019-12-01 22:11:18 +01002258 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002259 const guchar * const data_data = gtk_selection_data_get_data(data);
2260 const gint data_length = gtk_selection_data_get_length(data);
2261 const gint data_format = gtk_selection_data_get_format(data);
2262
2263 if (data_data == NULL
2264 || data_length <= 0
2265 || data_format != 8
2266 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 {
2268 gtk_drag_finish(context, FALSE, FALSE, time_);
2269 return;
2270 }
2271
Bram Moolenaar30613902019-12-01 22:11:18 +01002272 // Get the current modifier state for proper distinguishment between
2273 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002274 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275
Bram Moolenaar30613902019-12-01 22:11:18 +01002276 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 if (info == (guint)TARGET_TEXT_URI_LIST)
2278 drag_handle_uri_list(context, data, time_, state, x, y);
2279 else
2280 drag_handle_text(context, data, time_, state);
2281
2282}
Bram Moolenaar30613902019-12-01 22:11:18 +01002283#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284
2285
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002286#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287/*
2288 * GnomeClient interact callback. Check for unsaved buffers that cannot
2289 * be abandoned and pop up a dialog asking the user for confirmation if
2290 * necessary.
2291 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002293sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002295 GnomeDialogType type UNUSED,
2296 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
2298 cmdmod_T save_cmdmod;
2299 gboolean shutdown_cancelled;
2300
2301 save_cmdmod = cmdmod;
2302
2303# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002304 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305# endif
2306# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002307 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308# endif
2309 /*
2310 * If there are changed buffers, present the user with
2311 * a dialog if possible, otherwise give an error message.
2312 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002313 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314
2315 exiting = FALSE;
2316 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002317 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 out_flush();
2319 /*
2320 * If the user hit the [Cancel] button the whole shutdown
2321 * will be cancelled. Wow, quite powerful feature (:
2322 */
2323 gnome_interaction_key_return(key, shutdown_cancelled);
2324}
2325
2326/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 * "save_yourself" signal handler. Initiate an interaction to ask the user
2328 * for confirmation if necessary. Save the current editing session and tell
2329 * the session manager how to restart Vim.
2330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 static gboolean
2332sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002333 gint phase UNUSED,
2334 GnomeSaveStyle save_style UNUSED,
2335 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002337 gboolean fast UNUSED,
2338 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339{
2340 static const char suffix[] = "-session.vim";
2341 char *session_file;
2342 unsigned int len;
2343 gboolean success;
2344
Bram Moolenaar30613902019-12-01 22:11:18 +01002345 // Always request an interaction if possible. check_changed_any()
2346 // won't actually show a dialog unless any buffers have been modified.
2347 // There doesn't seem to be an obvious way to check that without
2348 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 if (interact_style == GNOME_INTERACT_ANY)
2350 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2351 &sm_client_check_changed_any,
2352 NULL);
2353 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002354 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355
Bram Moolenaar30613902019-12-01 22:11:18 +01002356 // The path is unique for each session save. We do neither know nor care
2357 // which session script will actually be used later. This decision is in
2358 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 session_file = gnome_config_get_real_path(
2360 gnome_client_get_config_prefix(client));
2361 len = strlen(session_file);
2362
2363 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002364 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365
2366 session_file = g_renew(char, session_file, len + sizeof(suffix));
2367 memcpy(session_file + len, suffix, sizeof(suffix));
2368
2369 success = write_session_file((char_u *)session_file);
2370
2371 if (success)
2372 {
2373 const char *argv[8];
2374 int i;
2375
Bram Moolenaar30613902019-12-01 22:11:18 +01002376 // Tell the session manager how to wipe out the stored session data.
2377 // This isn't as dangerous as it looks, don't worry :) session_file
2378 // is a unique absolute filename. Usually it'll be something like
2379 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 i = 0;
2381 argv[i++] = "rm";
2382 argv[i++] = session_file;
2383 argv[i] = NULL;
2384
2385 gnome_client_set_discard_command(client, i, (char **)argv);
2386
Bram Moolenaar30613902019-12-01 22:11:18 +01002387 // Tell the session manager how to restore the just saved session.
2388 // This is easily done thanks to Vim's -S option. Pass the -f flag
2389 // since there's no need to fork -- it might even cause confusion.
2390 // Also pass the window role to give the WM something to match on.
2391 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 i = 0;
2393 argv[i++] = restart_command;
2394 argv[i++] = "-f";
2395 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 argv[i++] = "--role";
2397 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 argv[i++] = "-S";
2399 argv[i++] = session_file;
2400 argv[i] = NULL;
2401
2402 gnome_client_set_restart_command(client, i, (char **)argv);
2403 gnome_client_set_clone_command(client, 0, NULL);
2404 }
2405
2406 g_free(session_file);
2407
2408 return success;
2409}
2410
2411/*
2412 * Called when the session manager wants us to die. There isn't much to save
2413 * here since "save_yourself" has been emitted before (unless serious trouble
2414 * is happening).
2415 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002417sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418{
Bram Moolenaar30613902019-12-01 22:11:18 +01002419 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 full_screen = FALSE;
2421
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002422 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002423 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002424 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 preserve_exit();
2426}
2427
2428/*
2429 * Connect our signal handlers to be notified on session save and shutdown.
2430 */
2431 static void
2432setup_save_yourself(void)
2433{
2434 GnomeClient *client;
2435
2436 client = gnome_master_client();
2437
2438 if (client != NULL)
2439 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002440 // Must use the deprecated gtk_signal_connect() for compatibility
2441 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2443 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2444 gtk_signal_connect(GTK_OBJECT(client), "die",
2445 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2446 }
2447}
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)
2685 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2686#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
3124 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003125 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3126 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003127 old_width = width;
3128 old_height = height;
3129 old_min_width = min_width;
3130 old_min_height = min_height;
3131 old_char_width = gui.char_width;
3132 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003133 }
3134}
3135
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003136#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3137 void
3138gui_mch_set_dark_theme(int dark)
3139{
3140# if GTK_CHECK_VERSION(3,0,0)
3141 GtkSettings *gtk_settings;
3142
3143 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3144 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3145# endif
3146}
Bram Moolenaar30613902019-12-01 22:11:18 +01003147#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003148
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149#ifdef FEAT_TOOLBAR
3150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151/*
3152 * This extra effort wouldn't be necessary if we only used stock icons in the
3153 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3154 * shouldn't be treated differently, thus we do need this.
3155 */
3156 static void
3157icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3158{
3159 if (GTK_IS_IMAGE(widget))
3160 {
3161 GtkImage *image = (GtkImage *)widget;
3162
Bram Moolenaar98921892016-02-23 17:14:37 +01003163# if GTK_CHECK_VERSION(3,10,0)
3164 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3165 {
3166 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3167 const gchar *icon_name;
3168
3169 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003170 image = (GtkImage *)gtk_image_new_from_icon_name(
3171 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003172 }
3173# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003174 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3176 {
3177 GtkIconSet *icon_set;
3178 GtkIconSize icon_size;
3179
3180 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3181 icon_size = (GtkIconSize)(long)user_data;
3182
3183 gtk_icon_set_ref(icon_set);
3184 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3185 gtk_icon_set_unref(icon_set);
3186 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003187# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 }
3189 else if (GTK_IS_CONTAINER(widget))
3190 {
3191 gtk_container_foreach((GtkContainer *)widget,
3192 &icon_size_changed_foreach,
3193 user_data);
3194 }
3195}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
3197 static void
3198set_toolbar_style(GtkToolbar *toolbar)
3199{
3200 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 GtkIconSize size;
3202 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3205 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3206 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003207 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3209 style = GTK_TOOLBAR_BOTH;
3210 else if (toolbar_flags & TOOLBAR_TEXT)
3211 style = GTK_TOOLBAR_TEXT;
3212 else
3213 style = GTK_TOOLBAR_ICONS;
3214
3215 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003216# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003218# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 switch (tbis_flags)
3221 {
3222 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3223 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3224 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3225 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003226 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3227 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 default: size = GTK_ICON_SIZE_INVALID; break;
3229 }
3230 oldsize = gtk_toolbar_get_icon_size(toolbar);
3231
3232 if (size == GTK_ICON_SIZE_INVALID)
3233 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003234 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 gtk_toolbar_unset_icon_size(toolbar);
3236 size = gtk_toolbar_get_icon_size(toolbar);
3237 }
3238 if (size != oldsize)
3239 {
3240 gtk_container_foreach(GTK_CONTAINER(toolbar),
3241 &icon_size_changed_foreach,
3242 GINT_TO_POINTER((int)size));
3243 }
3244 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245}
3246
Bram Moolenaar30613902019-12-01 22:11:18 +01003247#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003249#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3250static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003251static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003252# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003253static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003254# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003255static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003256
3257/*
3258 * Handle selecting an item in the tab line popup menu.
3259 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003260 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003261tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003262{
Bram Moolenaar30613902019-12-01 22:11:18 +01003263 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003264 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003265}
3266
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003267 static void
3268add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3269{
3270 GtkWidget *item;
3271 char_u *utf_text;
3272
3273 utf_text = CONVERT_TO_UTF8(text);
3274 item = gtk_menu_item_new_with_label((const char *)utf_text);
3275 gtk_widget_show(item);
3276 CONVERT_TO_UTF8_FREE(utf_text);
3277
3278 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003279 g_signal_connect(G_OBJECT(item), "activate",
3280 G_CALLBACK(tabline_menu_handler),
3281 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003282}
3283
Bram Moolenaara5621492006-02-25 21:55:24 +00003284/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003285 * Create a menu for the tab line.
3286 */
3287 static GtkWidget *
3288create_tabline_menu(void)
3289{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003290 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003291
3292 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003293 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003294 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3295 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003296
3297 return menu;
3298}
3299
3300 static gboolean
3301on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3302{
Bram Moolenaar30613902019-12-01 22:11:18 +01003303 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003304 if (event->type == GDK_BUTTON_PRESS)
3305 {
3306 GdkEventButton *bevent = (GdkEventButton *)event;
3307 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003308 int y = bevent->y;
3309 GtkWidget *tabwidget;
3310 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003311
Bram Moolenaar30613902019-12-01 22:11:18 +01003312 // When ignoring events return TRUE so that the selected page doesn't
3313 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003314 if (hold_gui_events
3315# ifdef FEAT_CMDWIN
3316 || cmdwin_type != 0
3317# endif
3318 )
3319 return TRUE;
3320
Bram Moolenaar98921892016-02-23 17:14:37 +01003321 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003322
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003323 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003324 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3325 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003326
Bram Moolenaar30613902019-12-01 22:11:18 +01003327 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003328 if (bevent->button == 3)
3329 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003330# if GTK_CHECK_VERSION(3,22,2)
3331 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3332# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003333 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3334 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003335# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003336 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003337 return TRUE;
3338 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003339 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003340 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003341 if (clicked_page == 0)
3342 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003343 // Click after all tabs moves to next tab page. When "x" is
3344 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003345 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003346 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003347 }
regomne3bdef102022-09-26 20:48:32 +01003348 else if (bevent->button == 2)
3349 {
3350 if (clicked_page != 0)
3351 // Middle mouse click on tabpage label closes that tab.
3352 send_tabline_menu_event(clicked_page, TABLINE_MENU_CLOSE);
3353 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003354 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003355
Bram Moolenaar30613902019-12-01 22:11:18 +01003356 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003357 return FALSE;
3358}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003359
3360/*
3361 * Handle selecting one of the tabs.
3362 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003363 static void
3364on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003365 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003366 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003367 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003368 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003369{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003370 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003371 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003372}
3373
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003374# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003375/*
3376 * Handle reordering the tabs (using D&D).
3377 */
3378 static void
3379on_tab_reordered(
3380 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003381 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003382 gint idx,
3383 gpointer data UNUSED)
3384{
3385 if (!ignore_tabline_evt)
3386 {
3387 if ((tabpage_index(curtab) - 1) < idx)
3388 tabpage_move(idx + 1);
3389 else
3390 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003391 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003392}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003393# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003394
3395/*
3396 * Show or hide the tabline.
3397 */
3398 void
3399gui_mch_show_tabline(int showit)
3400{
3401 if (gui.tabline == NULL)
3402 return;
3403
3404 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3405 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003406 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003407 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003408 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003409 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003410 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003411 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003412
3413 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003414}
3415
3416/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003417 * Return TRUE when tabline is displayed.
3418 */
3419 int
3420gui_mch_showing_tabline(void)
3421{
3422 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003423 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003424}
3425
3426/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003427 * Update the labels of the tabline.
3428 */
3429 void
3430gui_mch_update_tabline(void)
3431{
3432 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003433 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003434 GtkWidget *label;
3435 tabpage_T *tp;
3436 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003437 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003438 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003439 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003440
3441 if (gui.tabline == NULL)
3442 return;
3443
3444 ignore_tabline_evt = TRUE;
3445
Bram Moolenaar30613902019-12-01 22:11:18 +01003446 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003447 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3448 {
3449 if (tp == curtab)
3450 curtabidx = nr;
3451
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003452 tab_num = nr + 1;
3453
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003454 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3455 if (page == NULL)
3456 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003457 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003458# if GTK_CHECK_VERSION(3,2,0)
3459 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3460 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3461# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003462 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003463# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003464 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003465 event_box = gtk_event_box_new();
3466 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003467 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003468# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003469 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003470# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003471 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003472 gtk_widget_show(label);
3473 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3474 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003475 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003476 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003477# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003478 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3479 page,
3480 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003481# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003482 }
3483
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003484 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003485 g_object_set_data(G_OBJECT(event_box), "tab_num",
3486 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003487 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003488 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003489 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003490 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003491 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003492
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003493 get_tabline_label(tp, TRUE);
3494 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003495# if GTK_CHECK_VERSION(3,0,0)
3496 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3497# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003498 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3499 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003500# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003501 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003502 }
3503
Bram Moolenaar30613902019-12-01 22:11:18 +01003504 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003505 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3506 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3507
Bram Moolenaar98921892016-02-23 17:14:37 +01003508 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3509 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003510
Bram Moolenaar30613902019-12-01 22:11:18 +01003511 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003512 gui_mch_update();
3513
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003514 ignore_tabline_evt = FALSE;
3515}
3516
3517/*
3518 * Set the current tab to "nr". First tab is 1.
3519 */
3520 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003521gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003522{
3523 if (gui.tabline == NULL)
3524 return;
3525
3526 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003527 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3528 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003529 ignore_tabline_evt = FALSE;
3530}
3531
Bram Moolenaar30613902019-12-01 22:11:18 +01003532#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003533
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003535 * Add selection targets for PRIMARY and CLIPBOARD selections.
3536 */
3537 void
3538gui_gtk_set_selection_targets(void)
3539{
3540 int i, j = 0;
3541 int n_targets = N_SELECTION_TARGETS;
3542 GtkTargetEntry targets[N_SELECTION_TARGETS];
3543
3544 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3545 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003546 // OpenOffice tries to use TARGET_HTML and fails when we don't
3547 // return something, instead of trying another target. Therefore only
3548 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003549 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3550 n_targets--;
3551 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003552 targets[j++] = selection_targets[i];
3553 }
3554
3555 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3556 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3557 gtk_selection_add_targets(gui.drawarea,
3558 (GdkAtom)GDK_SELECTION_PRIMARY,
3559 targets, n_targets);
3560 gtk_selection_add_targets(gui.drawarea,
3561 (GdkAtom)clip_plus.gtk_sel_atom,
3562 targets, n_targets);
3563}
3564
3565/*
3566 * Set up for receiving DND items.
3567 */
3568 void
3569gui_gtk_set_dnd_targets(void)
3570{
3571 int i, j = 0;
3572 int n_targets = N_DND_TARGETS;
3573 GtkTargetEntry targets[N_DND_TARGETS];
3574
3575 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3576 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003577 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003578 n_targets--;
3579 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003580 targets[j++] = dnd_targets[i];
3581 }
3582
3583 gtk_drag_dest_unset(gui.drawarea);
3584 gtk_drag_dest_set(gui.drawarea,
3585 GTK_DEST_DEFAULT_ALL,
3586 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003587 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003588}
3589
3590/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3592 * Returns OK for success, FAIL when the GUI can't be started.
3593 */
3594 int
3595gui_mch_init(void)
3596{
3597 GtkWidget *vbox;
3598
3599#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003600 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3601 // exits on failure, but that's a non-issue because we already called
3602 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003604 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3606 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar73e28dc2022-09-17 21:08:33 +01003607# if defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003608 {
3609 char *p = setlocale(LC_NUMERIC, NULL);
3610
Bram Moolenaar30613902019-12-01 22:11:18 +01003611 // Make sure strtod() uses a decimal point, not a comma. Gnome
3612 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003613 if (p == NULL || strcmp(p, "C") != 0)
3614 setlocale(LC_NUMERIC, "C");
3615 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003616# endif
3617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003619 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003621#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003622 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 /*
3626 * Force UTF-8 output no matter what the value of 'encoding' is.
3627 * did_set_string_option() in option.c prohibits changing 'termencoding'
3628 * to something else than UTF-8 if the GUI is in use.
3629 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003630 set_option_value_give_err((char_u *)"termencoding",
3631 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003633#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003635#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003636 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3637 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003638#if !GTK_CHECK_VERSION(3,0,0)
3639# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003641# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642#endif
3643
Bram Moolenaar30613902019-12-01 22:11:18 +01003644 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 gui.border_width = 2;
3646 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3647 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003648#if GTK_CHECK_VERSION(3,0,0)
3649 gui.fgcolor = g_new(GdkRGBA, 1);
3650 gui.bgcolor = g_new(GdkRGBA, 1);
3651 gui.spcolor = g_new(GdkRGBA, 1);
3652#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003653 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003655 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003657 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003658 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660
Bram Moolenaar30613902019-12-01 22:11:18 +01003661 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003662 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664
Bram Moolenaar30613902019-12-01 22:11:18 +01003665 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 gui.norm_pixel = gui.def_norm_pixel;
3667 gui.back_pixel = gui.def_back_pixel;
3668
3669 if (gtk_socket_id != 0)
3670 {
3671 GtkWidget *plug;
3672
Bram Moolenaar30613902019-12-01 22:11:18 +01003673 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3675 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003676 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 {
3678 gui.mainwin = plug;
3679 }
3680 else
3681 {
3682 g_warning("Connection to GTK+ socket (ID %u) failed",
3683 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003684 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 gtk_socket_id = 0;
3686 }
3687 }
3688
3689 if (gtk_socket_id == 0)
3690 {
3691#ifdef FEAT_GUI_GNOME
3692 if (using_gnome)
3693 {
3694 gui.mainwin = gnome_app_new("Vim", NULL);
3695# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003696 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 xsmp_close();
3698# endif
3699 }
3700 else
3701#endif
3702 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3703 }
3704
3705 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3706
Bram Moolenaar30613902019-12-01 22:11:18 +01003707 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3709 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710
Bram Moolenaar98921892016-02-23 17:14:37 +01003711 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3713
Bram Moolenaar98921892016-02-23 17:14:37 +01003714 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3715 G_CALLBACK(&delete_event_cb), NULL);
3716
3717 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3718 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003719
3720 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003722
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 gui.accel_group = gtk_accel_group_new();
3724 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
Bram Moolenaar30613902019-12-01 22:11:18 +01003726 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003727#if GTK_CHECK_VERSION(3,2,0)
3728 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3729 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3730#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733
3734#ifdef FEAT_GUI_GNOME
3735 if (using_gnome)
3736 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003737# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003738 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3740# endif
3741 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3742 }
3743 else
3744#endif
3745 {
3746 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3747 gtk_widget_show(vbox);
3748 }
3749
3750#ifdef FEAT_MENU
3751 /*
3752 * Create the menubar and handle
3753 */
3754 gui.menubar = gtk_menu_bar_new();
3755 gtk_widget_set_name(gui.menubar, "vim-menubar");
3756
Bram Moolenaar30613902019-12-01 22:11:18 +01003757 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003758 {
3759 GtkSettings *gtk_settings;
3760
3761 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3762 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3763 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003764
3765
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766# ifdef FEAT_GUI_GNOME
3767 if (using_gnome)
3768 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 BonoboDockItem *dockitem;
3770
3771 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3772 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3773 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003774 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003775 bonobo_dock_item_set_behavior(dockitem,
3776 bonobo_dock_item_get_behavior(dockitem)
3777 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 }
3780 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003781# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003783 // Always show the menubar, otherwise <F10> doesn't work. It may be
3784 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003785 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3787 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003788#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789
3790#ifdef FEAT_TOOLBAR
3791 /*
3792 * Create the toolbar and handle
3793 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003794 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003795# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003796 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3797 // N.B. Since the default value of GtkToolbar::button-relief is
3798 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003799# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 gtk_rc_parse_string(
3801 "style \"vim-toolbar-style\" {\n"
3802 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3803 "}\n"
3804 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003805# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 gui.toolbar = gtk_toolbar_new();
3807 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3809
3810# ifdef FEAT_GUI_GNOME
3811 if (using_gnome)
3812 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 BonoboDockItem *dockitem;
3814
3815 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3816 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3817 GNOME_APP_TOOLBAR_NAME);
3818 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003819 // When the toolbar is floating it gets stuck. So long as that isn't
3820 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003821 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003822 bonobo_dock_item_get_behavior(dockitem)
3823 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 }
3826 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003827# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3830 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3831 gtk_widget_show(gui.toolbar);
3832 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3833 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003834#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003836#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003837 /*
3838 * Use a Notebook for the tab pages labels. The labels are hidden by
3839 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003840 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003841 gui.tabline = gtk_notebook_new();
3842 gtk_widget_show(gui.tabline);
3843 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3844 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3845 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003846 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003847# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003848 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003849# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003850
Bram Moolenaar98921892016-02-23 17:14:37 +01003851# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003852 tabline_tooltip = gtk_tooltips_new();
3853 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003854# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003855
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003856 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003857 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003858
Bram Moolenaar30613902019-12-01 22:11:18 +01003859 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003860# if GTK_CHECK_VERSION(3,2,0)
3861 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3862 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3863# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003864 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003865# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003866 gtk_widget_show(page);
3867 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3868 label = gtk_label_new("-Empty-");
3869 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003870 event_box = gtk_event_box_new();
3871 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003872 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003873# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003874 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003875# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003876 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003877 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003878# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003879 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003880# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003881 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003882
Bram Moolenaar98921892016-02-23 17:14:37 +01003883 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3884 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003885# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003886 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3887 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003888# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003889
Bram Moolenaar30613902019-12-01 22:11:18 +01003890 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003891 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003892 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3893 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003894#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003895
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003896 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003897 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003898#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003900#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003901#if GTK_CHECK_VERSION(3,22,2)
3902 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904
3905 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003906#if GTK_CHECK_VERSION(3,0,0)
3907 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909
Bram Moolenaar30613902019-12-01 22:11:18 +01003910 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 gtk_widget_set_events(gui.drawarea,
3912 GDK_EXPOSURE_MASK |
3913 GDK_ENTER_NOTIFY_MASK |
3914 GDK_LEAVE_NOTIFY_MASK |
3915 GDK_BUTTON_PRESS_MASK |
3916 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 GDK_KEY_PRESS_MASK |
3919 GDK_KEY_RELEASE_MASK |
3920 GDK_POINTER_MOTION_MASK |
3921 GDK_POINTER_MOTION_HINT_MASK);
3922
3923 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003924 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 gtk_widget_show(gui.formwin);
3926 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3927
Bram Moolenaar30613902019-12-01 22:11:18 +01003928 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3929 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003930 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3931 : G_OBJECT(gui.drawarea),
3932 "key-press-event",
3933 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003934#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003935 // Also forward key release events for the benefit of GTK+ 2 input
3936 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3938 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003939 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 G_CALLBACK(&key_release_event), NULL);
3941#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003942 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3943 G_CALLBACK(drawarea_realize_cb), NULL);
3944 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3945 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003946#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003947 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3948 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003949#endif
3950#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003951 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3952 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003953#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003954 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3955 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
Bram Moolenaar98921892016-02-23 17:14:37 +01003958#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003962#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3964 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3965#endif
3966
3967 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003968 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003969 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970
3971 /*
3972 * Set clipboard specific atoms
3973 */
3974 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3977 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3978
3979 /*
3980 * Start out by adding the configured border width into the border offset.
3981 */
3982 gui.border_offset = gui.border_width;
3983
Bram Moolenaar98921892016-02-23 17:14:37 +01003984#if GTK_CHECK_VERSION(3,0,0)
3985 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3986 G_CALLBACK(draw_event), NULL);
3987#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3989 GTK_SIGNAL_FUNC(visibility_event), NULL);
3990 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3991 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993
3994 /*
3995 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3996 * Only needed for some window managers.
3997 */
3998 if (vim_strchr(p_go, GO_POINTER) != NULL)
3999 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004000 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4001 G_CALLBACK(leave_notify_event), NULL);
4002 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4003 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 }
4005
Bram Moolenaar30613902019-12-01 22:11:18 +01004006 // Real windows can get focus ... GtkPlug, being a mere container can't,
4007 // only its widgets. Arguably, this could be common code and we not use
4008 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004009 if (gtk_socket_id == 0)
4010 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004011 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4012 G_CALLBACK(focus_out_event), NULL);
4013 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4014 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004015 }
4016 else
4017 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004018 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4019 G_CALLBACK(focus_out_event), NULL);
4020 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4021 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004022#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004023 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4024 G_CALLBACK(focus_out_event), NULL);
4025 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4026 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004027#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
Bram Moolenaar98921892016-02-23 17:14:37 +01004030 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4031 G_CALLBACK(motion_notify_event), NULL);
4032 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4033 G_CALLBACK(button_press_event), NULL);
4034 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4035 G_CALLBACK(button_release_event), NULL);
4036 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4037 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
4039 /*
4040 * Add selection handler functions.
4041 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004042 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4043 G_CALLBACK(selection_clear_event), NULL);
4044 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4045 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046
Bram Moolenaara76638f2010-06-05 12:49:46 +02004047 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048
Bram Moolenaar98921892016-02-23 17:14:37 +01004049 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4050 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051
Bram Moolenaar30613902019-12-01 22:11:18 +01004052 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 gui.in_focus = FALSE;
4054
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004055 // Handle changes to the "Xft/DPI" setting.
4056 {
4057 GtkSettings *gtk_settings =
4058 gtk_settings_get_for_screen(gdk_screen_get_default());
4059
4060 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4061 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4062 }
4063
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 return OK;
4065}
4066
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004067#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068/*
4069 * This is called from gui_start() after a fork() has been done.
4070 * We have to tell the session manager our new PID.
4071 */
4072 void
4073gui_mch_forked(void)
4074{
4075 if (using_gnome)
4076 {
4077 GnomeClient *client;
4078
4079 client = gnome_master_client();
4080
4081 if (client != NULL)
4082 gnome_client_set_process_id(client, getpid());
4083 }
4084}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004085#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086
Bram Moolenaar98921892016-02-23 17:14:37 +01004087#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004088 static GdkRGBA
4089color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004090{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004091 GdkRGBA rgba;
4092 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4093 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4094 rgba.blue = ((color & 0xff)) / 255.0;
4095 rgba.alpha = 1.0;
4096 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004097}
4098
4099 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004100set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004101{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004102 const GdkRGBA rgba = color_to_rgba(color);
4103 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004104}
Bram Moolenaar30613902019-12-01 22:11:18 +01004105#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107/*
4108 * Called when the foreground or background color has been changed.
4109 * This used to change the graphics contexts directly but we are
4110 * currently manipulating them where desired.
4111 */
4112 void
4113gui_mch_new_colors(void)
4114{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004115 if (gui.drawarea != NULL
4116#if GTK_CHECK_VERSION(3,22,2)
4117 && gui.formwin != NULL
4118#endif
4119 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004121#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004122 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004123#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004124#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004125 GtkStyleContext * const context =
4126 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004127 GtkCssProvider * const provider = gtk_css_provider_new();
4128 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004129 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004130 " background-color: #%.2lx%.2lx%.2lx;\n"
4131 "}\n",
4132 (gui.back_pixel >> 16) & 0xff,
4133 (gui.back_pixel >> 8) & 0xff,
4134 gui.back_pixel & 0xff);
4135
4136 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4137 gtk_style_context_add_provider(context,
4138 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4139
4140 g_free(css);
4141 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004142#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004143 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004144
Bram Moolenaar36edf062016-07-21 22:10:12 +02004145 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004146 {
4147 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004148 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004149 if (pat != NULL)
4150 {
4151 gdk_window_set_background_pattern(da_win, pat);
4152 cairo_pattern_destroy(pat);
4153 }
4154 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004155 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004156 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004157#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 GdkColor color = { 0, 0, 0, 0 };
4159
4160 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004161 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004162#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 }
4164}
4165
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166/*
4167 * This signal informs us about the need to rearrange our sub-widgets.
4168 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004170form_configure_event(GtkWidget *widget UNUSED,
4171 GdkEventConfigure *event,
4172 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173{
Ernie Raeld42b8392022-04-23 19:52:23 +01004174 int usable_height = event->height;
4175#ifdef TRACK_RESIZE_HISTORY
4176 // Resize requests are made for gui.mainwin;
4177 // get its dimensions for searching if this event
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004178 // is a response to a vim request.
Ernie Raeld42b8392022-04-23 19:52:23 +01004179 int w, h;
4180 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004181
Ernie Raeld42b8392022-04-23 19:52:23 +01004182# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004183 ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]",
4184 w, h, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +01004185# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004186
Ernie Raeld42b8392022-04-23 19:52:23 +01004187 // Look through history of recent vim resize requests.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004188 // If this event matches:
4189 // - "latest resize hist" We're caught up;
4190 // clear the history and process this event.
4191 // If history is, old to new, 100, 99, 100, 99. If this event is
4192 // 99 for the stale, it is matched against the current. History
Ernie Raeld42b8392022-04-23 19:52:23 +01004193 // is cleared, we may bounce, but no worse than before.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004194 // - "older/stale hist" If match an unused event in history,
4195 // then discard this event, and mark the matching event as used.
4196 // - "no match" Figure it's a user resize event, clear history.
4197 // NOTE: clear history is default, then all incoming events are processed
4198
4199 if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h)
4200 && match_stale_width_height(w, h))
4201 // discard stale event
4202 return TRUE;
4203 clear_resize_hists();
Ernie Raeld42b8392022-04-23 19:52:23 +01004204#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004205
Bram Moolenaar182707a2016-11-21 20:55:58 +01004206#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004207 // As of 3.22.2, GdkWindows have started distributing configure events to
4208 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4209 //
4210 // As can be seen from the implementation of move_native_children() and
4211 // configure_native_child() in gdkwindow.c, those functions actually
4212 // propagate configure events to every child, failing to distinguish
4213 // "native" one from non-native one.
4214 //
4215 // Naturally, configure events propagated to here like that are fallacious
4216 // and, as a matter of fact, they trigger a geometric collapse of
4217 // gui.formwin.
4218 //
4219 // To filter out such fallacious events, check if the given event is the
4220 // one that was sent out to the right place. Ignore it if not.
4221 //
4222 // Follow-up
4223 // After a few weeks later, the GdkWindow change mentioned above was
4224 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4225 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004226 if (event->window != gtk_widget_get_window(gui.formwin))
4227 return TRUE;
4228#endif
4229
Bram Moolenaar30613902019-12-01 22:11:18 +01004230 // When in a GtkPlug, we can't guarantee valid heights (as a round
4231 // no. of char-heights), so we have to manually sanitise them.
4232 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004233 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004234 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004235
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004236 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004237 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004238 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239
4240 return TRUE;
4241}
4242
4243/*
4244 * Function called when window already closed.
4245 * We can't do much more here than to trying to preserve what had been done,
4246 * since the window is already inevitably going away.
4247 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004248 static void
4249mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250{
Bram Moolenaar30613902019-12-01 22:11:18 +01004251 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 full_screen = FALSE;
4253
4254 gui.mainwin = NULL;
4255 gui.drawarea = NULL;
4256
Bram Moolenaar30613902019-12-01 22:11:18 +01004257 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004259 vim_strncpy(IObuff,
4260 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4261 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 preserve_exit();
4263 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004264#ifdef USE_GRESOURCE
4265 gui_gtk_unregister_resource();
4266#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267}
4268
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004269 void
4270gui_gtk_get_screen_geom_of_win(
4271 GtkWidget *wid,
4272 int point_x, // x position of window if not initialized
4273 int point_y, // y position of window if not initialized
4274 int *screen_x,
4275 int *screen_y,
4276 int *width,
4277 int *height)
4278{
4279 GdkRectangle geometry;
4280 GdkWindow *win = gtk_widget_get_window(wid);
4281#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004282 GdkDisplay *dpy;
4283 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004284
Bram Moolenaar24001432021-03-20 12:36:46 +01004285 if (wid != NULL && gtk_widget_get_realized(wid))
4286 dpy = gtk_widget_get_display(wid);
4287 else
4288 dpy = gdk_display_get_default();
4289 if (win != NULL)
4290 monitor = gdk_display_get_monitor_at_window(dpy, win);
4291 else
4292 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004293 gdk_monitor_get_geometry(monitor, &geometry);
4294#else
4295 GdkScreen* screen;
4296 int monitor;
4297
4298 if (wid != NULL && gtk_widget_has_screen(wid))
4299 screen = gtk_widget_get_screen(wid);
4300 else
4301 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004302 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004303 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004304 else
4305 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004306 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4307#endif
4308 *screen_x = geometry.x;
4309 *screen_y = geometry.y;
4310 *width = geometry.width;
4311 *height = geometry.height;
4312}
4313
4314/*
4315 * The screen size is used to make sure the initial window doesn't get bigger
4316 * than the screen. This subtracts some room for menubar, toolbar and window
4317 * decorations.
4318 */
4319 static void
4320gui_gtk_get_screen_dimensions(
4321 int point_x,
4322 int point_y,
4323 int *screen_w,
4324 int *screen_h)
4325{
4326 int x, y;
4327
4328 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4329 &x, &y, screen_w, screen_h);
4330
4331 // Subtract 'guiheadroom' from the height to allow some room for the
4332 // window manager (task list and window title bar).
4333 *screen_h -= p_ghr;
4334
4335 /*
4336 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4337 * the toolbar and menubar for GTK, we subtract them from the screen
4338 * height, so that the window size can be made to fit on the screen.
4339 * This should be completely changed later.
4340 */
4341 *screen_w -= get_menu_tool_width();
4342 *screen_h -= get_menu_tool_height();
4343}
4344
4345 void
4346gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4347{
4348 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4349}
4350
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004351
4352/*
4353 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4354 * hints (and thus the required size from -geom), but that after that we
4355 * put the hints back to normal (the actual minimum size) so we may
4356 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004357 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004358 * only way we have of making ourselves bigger (by set lines/columns).
4359 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004360 * second after the final attempt to reset the real minimum hints (done by
4361 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004362 * We'll not let the default hints be set while this timer's active.
4363 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004364 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004365check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004366{
4367 if (init_window_hints_state == 1)
4368 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004369 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004370 init_window_hints_state = 0;
4371 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004372 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004373 }
4374
Bram Moolenaar30613902019-12-01 22:11:18 +01004375 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004376 init_window_hints_state = 1;
4377 return TRUE;
4378}
4379
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380/*
4381 * Open the GUI window which was created by a call to gui_mch_init().
4382 */
4383 int
4384gui_mch_open(void)
4385{
4386 guicolor_T fg_pixel = INVALCOLOR;
4387 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004388 guint pixel_width;
4389 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 /*
4392 * Allow setting a window role on the command line, or invent one
4393 * if none was specified. This is mainly useful for GNOME session
4394 * support; allowing the WM to restore window placement.
4395 */
4396 if (role_argument != NULL)
4397 {
4398 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4399 }
4400 else
4401 {
4402 char *role;
4403
Bram Moolenaar30613902019-12-01 22:11:18 +01004404 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 role = g_strdup_printf("vim-%u-%u-%u",
4406 (unsigned)mch_get_pid(),
4407 (unsigned)g_random_int(),
4408 (unsigned)time(NULL));
4409
4410 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4411 g_free(role);
4412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413
4414 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416
Bram Moolenaar30613902019-12-01 22:11:18 +01004417 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 if (gui.geom != NULL)
4419 {
4420 int mask;
4421 unsigned int w, h;
4422 int x = 0;
4423 int y = 0;
4424
4425 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4426
4427 if (mask & WidthValue)
4428 Columns = w;
4429 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004430 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004431 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004432 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004434 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004435 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004436
4437 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4438 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4439
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004440 pixel_width += get_menu_tool_width();
4441 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004442
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004444 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004445 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004446
4447#ifdef FEAT_GUI_GTK
4448 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4449#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004450 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004451#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004452 hh += p_ghr + get_menu_tool_height();
4453 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004454 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004455 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004456 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004457 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004459 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004460 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004461
Bram Moolenaar30613902019-12-01 22:11:18 +01004462 // From now until everyone's stopped trying to set the window hints
4463 // to their correct minimum values, stop them being set as we need
4464 // them to remain at our required size for the parent GtkSocket to
4465 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004466 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004467 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004468 update_window_manager_hints(pixel_width, pixel_height);
4469 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004470 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 }
4473
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004474 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4475 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004476 // For GTK2 changing the size of the form widget doesn't cause window
4477 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004478 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004479 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004480 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481
4482 if (foreground_argument != NULL)
4483 fg_pixel = gui_get_color((char_u *)foreground_argument);
4484 if (fg_pixel == INVALCOLOR)
4485 fg_pixel = gui_get_color((char_u *)"Black");
4486
4487 if (background_argument != NULL)
4488 bg_pixel = gui_get_color((char_u *)background_argument);
4489 if (bg_pixel == INVALCOLOR)
4490 bg_pixel = gui_get_color((char_u *)"White");
4491
4492 if (found_reverse_arg)
4493 {
4494 gui.def_norm_pixel = bg_pixel;
4495 gui.def_back_pixel = fg_pixel;
4496 }
4497 else
4498 {
4499 gui.def_norm_pixel = fg_pixel;
4500 gui.def_back_pixel = bg_pixel;
4501 }
4502
Bram Moolenaar30613902019-12-01 22:11:18 +01004503 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4504 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 set_normal_colors();
4506
Bram Moolenaar30613902019-12-01 22:11:18 +01004507 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 gui_check_colors();
4509
Bram Moolenaar30613902019-12-01 22:11:18 +01004510 // Get the colors for the highlight groups (gui_check_colors() might have
4511 // changed them).
4512 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
Bram Moolenaar98921892016-02-23 17:14:37 +01004514 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4515 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 /*
4518 * Notify the fixed area about the need to resize the contents of the
4519 * gui.formwin, which we use for random positioning of the included
4520 * components.
4521 *
4522 * We connect this signal deferred finally after anything is in place,
4523 * since this is intended to handle resizements coming from the window
4524 * manager upon us and should not interfere with what VIM is requesting
4525 * upon startup.
4526 */
Ernie Raeld42b8392022-04-23 19:52:23 +01004527#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004528 latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T);
Ernie Raeld42b8392022-04-23 19:52:23 +01004529#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004530 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004531 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532
4533#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004534 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004535 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536
Bram Moolenaar98921892016-02-23 17:14:37 +01004537 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004538 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539#endif
4540
Bram Moolenaar30613902019-12-01 22:11:18 +01004541 // With GTK+ 2, we need to iconify the window before calling show()
4542 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 if (found_iconic_arg && gtk_socket_id == 0)
4544 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
4546 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004547#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 unsigned long menu_handler = 0;
4549# ifdef FEAT_TOOLBAR
4550 unsigned long tool_handler = 0;
4551# endif
4552 /*
4553 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4554 * show when restoring the saved layout configuration. We can't just
4555 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4556 * a toplevel window and thus will be realized immediately. Instead,
4557 * connect signal handlers to hide the widgets just after they've been
4558 * marked visible, but before the main window is realized.
4559 */
4560 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4561 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4562 G_CALLBACK(&gtk_widget_hide),
4563 NULL);
4564# ifdef FEAT_TOOLBAR
4565 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4566 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4567 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4568 G_CALLBACK(&gtk_widget_hide),
4569 NULL);
4570# endif
4571#endif
4572 gtk_widget_show(gui.mainwin);
4573
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004574#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 if (menu_handler != 0)
4576 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4577# ifdef FEAT_TOOLBAR
4578 if (tool_handler != 0)
4579 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4580# endif
4581#endif
4582 }
4583
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 return OK;
4585}
4586
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004587/*
4588 * Clean up for when exiting Vim.
4589 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004591gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004593 // Clean up, unless we don't want to invoke free().
4594 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596}
4597
4598/*
4599 * Get the position of the top left corner of the window.
4600 */
4601 int
4602gui_mch_get_winpos(int *x, int *y)
4603{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 return OK;
4606}
4607
4608/*
4609 * Set the position of the top left corner of the window to the given
4610 * coordinates.
4611 */
4612 void
4613gui_mch_set_winpos(int x, int y)
4614{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616}
4617
Bram Moolenaar98921892016-02-23 17:14:37 +01004618#if !GTK_CHECK_VERSION(3,0,0)
4619# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620static int resize_idle_installed = FALSE;
4621/*
4622 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4623 * the shell size doesn't exceed the window size, i.e. if the window manager
4624 * ignored our size request. Usually this happens if the window is maximized.
4625 *
4626 * FIXME: It'd be nice if we could find a little more orthodox solution.
4627 * See also the remark below in gui_mch_set_shellsize().
4628 *
4629 * DISABLED: When doing ":set lines+=1" this function would first invoke
4630 * gui_resize_shell() with the old size, then the normal callback would
4631 * report the new size through form_configure_event(). That caused the window
4632 * layout to be messed up.
4633 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 static gboolean
4635force_shell_resize_idle(gpointer data)
4636{
4637 if (gui.mainwin != NULL
4638 && GTK_WIDGET_REALIZED(gui.mainwin)
4639 && GTK_WIDGET_VISIBLE(gui.mainwin))
4640 {
4641 int width;
4642 int height;
4643
4644 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4645
4646 width -= get_menu_tool_width();
4647 height -= get_menu_tool_height();
4648
4649 gui_resize_shell(width, height);
4650 }
4651
4652 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004653 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654}
Bram Moolenaar98921892016-02-23 17:14:37 +01004655# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004656#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
Bram Moolenaar09736232009-09-23 16:14:49 +00004658/*
4659 * Return TRUE if the main window is maximized.
4660 */
4661 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004662gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004663{
Bram Moolenaar98921892016-02-23 17:14:37 +01004664 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4665 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4666 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004667}
4668
4669/*
4670 * Unmaximize the main window
4671 */
4672 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004673gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004674{
4675 if (gui.mainwin != NULL)
4676 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4677}
Bram Moolenaar09736232009-09-23 16:14:49 +00004678
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004680 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4681 * is set. Compute the new Rows and Columns. This is like resizing the
4682 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004683 */
4684 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004685gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004686{
4687 int w, h;
4688
4689 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4690 w -= get_menu_tool_width();
4691 h -= get_menu_tool_height();
4692 gui_resize_shell(w, h);
4693}
4694
4695/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 * Set the windows size.
4697 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 void
4699gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004700 int min_width UNUSED, int min_height UNUSED,
4701 int base_width UNUSED, int base_height UNUSED,
4702 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
Bram Moolenaar30613902019-12-01 22:11:18 +01004704 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 gui_mch_update();
4706
Bram Moolenaar30613902019-12-01 22:11:18 +01004707 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004708 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004709 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004710
Bram Moolenaar30613902019-12-01 22:11:18 +01004711 // With GTK+ 2, changing the size of the form widget doesn't resize
4712 // the window. So let's do it the other way around and resize the
4713 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 width += get_menu_tool_width();
4715 height += get_menu_tool_height();
4716
Ernie Raeld42b8392022-04-23 19:52:23 +01004717#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004718 alloc_resize_hist(width, height); // track the resize request
Ernie Raeld42b8392022-04-23 19:52:23 +01004719#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004720 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004721 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004722 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004723 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724
Bram Moolenaar98921892016-02-23 17:14:37 +01004725# if !GTK_CHECK_VERSION(3,0,0)
4726# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (!resize_idle_installed)
4728 {
4729 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4730 &force_shell_resize_idle, NULL, NULL);
4731 resize_idle_installed = TRUE;
4732 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004733# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004734# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 /*
4736 * Wait until all events are processed to prevent a crash because the
4737 * real size of the drawing area doesn't reflect Vim's internal ideas.
4738 *
4739 * This is a bit of a hack, since Vim is a terminal application with a GUI
4740 * on top, while the GUI expects to be the boss.
4741 */
4742 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743}
4744
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004746gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 if (title != NULL && output_conv.vc_type != CONV_NONE)
4749 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750
4751 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4752
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 if (output_conv.vc_type != CONV_NONE)
4754 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756
4757#if defined(FEAT_MENU) || defined(PROTO)
4758 void
4759gui_mch_enable_menu(int showit)
4760{
4761 GtkWidget *widget;
4762
4763# ifdef FEAT_GUI_GNOME
4764 if (using_gnome)
4765 widget = gui.menubar_h;
4766 else
4767# endif
4768 widget = gui.menubar;
4769
Bram Moolenaar30613902019-12-01 22:11:18 +01004770 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004771 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 {
4773 if (showit)
4774 gtk_widget_show(widget);
4775 else
4776 gtk_widget_hide(widget);
4777
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004778 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 }
4780}
Bram Moolenaar30613902019-12-01 22:11:18 +01004781#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782
4783#if defined(FEAT_TOOLBAR) || defined(PROTO)
4784 void
4785gui_mch_show_toolbar(int showit)
4786{
4787 GtkWidget *widget;
4788
4789 if (gui.toolbar == NULL)
4790 return;
4791
4792# ifdef FEAT_GUI_GNOME
4793 if (using_gnome)
4794 widget = gui.toolbar_h;
4795 else
4796# endif
4797 widget = gui.toolbar;
4798
4799 if (showit)
4800 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4801
Bram Moolenaar98921892016-02-23 17:14:37 +01004802 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 {
4804 if (showit)
4805 gtk_widget_show(widget);
4806 else
4807 gtk_widget_hide(widget);
4808
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004809 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 }
4811}
Bram Moolenaar30613902019-12-01 22:11:18 +01004812#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814/*
4815 * Check if a given font is a CJK font. This is done in a very crude manner. It
4816 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4817 * font. Consequently, this function cannot be used as a general purpose check
4818 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4819 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4820 */
4821 static int
4822is_cjk_font(PangoFontDescription *font_desc)
4823{
4824 static const char * const cjk_langs[] =
4825 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4826
4827 PangoFont *font;
4828 unsigned i;
4829 int is_cjk = FALSE;
4830
4831 font = pango_context_load_font(gui.text_context, font_desc);
4832
4833 if (font == NULL)
4834 return FALSE;
4835
4836 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4837 {
4838 PangoCoverage *coverage;
4839 gunichar uc;
4840
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004841 // Valgrind reports a leak for pango_language_from_string(), but the
4842 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 coverage = pango_font_get_coverage(
4844 font, pango_language_from_string(cjk_langs[i]));
4845
4846 if (coverage != NULL)
4847 {
4848 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4849 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4850 pango_coverage_unref(coverage);
4851 }
4852 }
4853
4854 g_object_unref(font);
4855
4856 return is_cjk;
4857}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858
Bram Moolenaar231334e2005-07-25 20:46:57 +00004859/*
4860 * Adjust gui.char_height (after 'linespace' was changed).
4861 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004863gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 PangoFontMetrics *metrics;
4866 int ascent;
4867 int descent;
4868
4869 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4870 pango_context_get_language(gui.text_context));
4871 ascent = pango_font_metrics_get_ascent(metrics);
4872 descent = pango_font_metrics_get_descent(metrics);
4873
4874 pango_font_metrics_unref(metrics);
4875
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004876 // Round up when the value is more than about 1/16 of a pixel above a whole
4877 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4878 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4879 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004880 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4882
Bram Moolenaar30613902019-12-01 22:11:18 +01004883 // A not-positive value of char_height may crash Vim. Only happens
4884 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 gui.char_ascent = MAX(gui.char_ascent, 0);
4886 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4887
4888 return OK;
4889}
4890
Bram Moolenaar98921892016-02-23 17:14:37 +01004891#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004892// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004893 static gboolean
4894font_filter(const PangoFontFamily *family,
4895 const PangoFontFace *face UNUSED,
4896 gpointer data UNUSED)
4897{
4898 return pango_font_family_is_monospace((PangoFontFamily *)family);
4899}
4900#endif
4901
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902/*
4903 * Put up a font dialog and return the selected font name in allocated memory.
4904 * "oldval" is the previous value. Return NULL when cancelled.
4905 * This should probably go into gui_gtk.c. Hmm.
4906 * FIXME:
4907 * The GTK2 font selection dialog has no filtering API. So we could either
4908 * a) implement our own (possibly copying the code from somewhere else) or
4909 * b) just live with it.
4910 */
4911 char_u *
4912gui_mch_font_dialog(char_u *oldval)
4913{
4914 GtkWidget *dialog;
4915 int response;
4916 char_u *fontname = NULL;
4917 char_u *oldname;
4918
Bram Moolenaar98921892016-02-23 17:14:37 +01004919#if GTK_CHECK_VERSION(3,2,0)
4920 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4921 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4922 NULL, NULL);
4923#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926
4927 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4928 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4929
4930 if (oldval != NULL && oldval[0] != NUL)
4931 {
4932 if (output_conv.vc_type != CONV_NONE)
4933 oldname = string_convert(&output_conv, oldval, NULL);
4934 else
4935 oldname = oldval;
4936
Bram Moolenaar30613902019-12-01 22:11:18 +01004937 // Annoying bug in GTK (or Pango): if the font name does not include a
4938 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4940 {
4941 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4942
4943 if (p != NULL)
4944 {
4945 STRCPY(p + STRLEN(p), " 10");
4946 if (oldname != oldval)
4947 vim_free(oldname);
4948 oldname = p;
4949 }
4950 }
4951
Bram Moolenaar98921892016-02-23 17:14:37 +01004952#if GTK_CHECK_VERSION(3,2,0)
4953 gtk_font_chooser_set_font(
4954 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 gtk_font_selection_dialog_set_font_name(
4957 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959
4960 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004961 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004963 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004964#if GTK_CHECK_VERSION(3,2,0)
4965 gtk_font_chooser_set_font(
4966 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4967#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004968 gtk_font_selection_dialog_set_font_name(
4969 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971
4972 response = gtk_dialog_run(GTK_DIALOG(dialog));
4973
4974 if (response == GTK_RESPONSE_OK)
4975 {
4976 char *name;
4977
Bram Moolenaar98921892016-02-23 17:14:37 +01004978#if GTK_CHECK_VERSION(3,2,0)
4979 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4980#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 name = gtk_font_selection_dialog_get_font_name(
4982 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 if (name != NULL)
4985 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004986 char_u *p;
4987
Bram Moolenaar30613902019-12-01 22:11:18 +01004988 // Apparently some font names include a comma, need to escape
4989 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004990 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004992 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004993 {
4994 fontname = string_convert(&input_conv, p, NULL);
4995 vim_free(p);
4996 }
4997 else
4998 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 }
5000 }
5001
5002 if (response != GTK_RESPONSE_NONE)
5003 gtk_widget_destroy(dialog);
5004
5005 return fontname;
5006}
5007
5008/*
5009 * Some monospace fonts don't support a bold weight, and fall back
5010 * silently to the regular weight. But this is no good since our text
5011 * drawing function can emulate bold by overstriking. So let's try
5012 * to detect whether bold weight is actually available and emulate it
5013 * otherwise.
5014 *
5015 * Note that we don't need to check for italic style since Xft can
5016 * emulate italic on its own, provided you have a proper fontconfig
5017 * setup. We wouldn't be able to emulate it in Vim anyway.
5018 */
5019 static void
5020get_styled_font_variants(void)
5021{
5022 PangoFontDescription *bold_font_desc;
5023 PangoFont *plain_font;
5024 PangoFont *bold_font;
5025
5026 gui.font_can_bold = FALSE;
5027
5028 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5029
5030 if (plain_font == NULL)
5031 return;
5032
5033 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5034 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5035
5036 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5037 /*
5038 * The comparison relies on the unique handle nature of a PangoFont*,
5039 * i.e. it's assumed that a different PangoFont* won't refer to the
5040 * same font. Seems to work, and failing here isn't critical anyway.
5041 */
5042 if (bold_font != NULL)
5043 {
5044 gui.font_can_bold = (bold_font != plain_font);
5045 g_object_unref(bold_font);
5046 }
5047
5048 pango_font_description_free(bold_font_desc);
5049 g_object_unref(plain_font);
5050}
5051
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052static PangoEngineShape *default_shape_engine = NULL;
5053
5054/*
5055 * Create a map from ASCII characters in the range [32,126] to glyphs
5056 * of the current font. This is used by gui_gtk2_draw_string() to skip
5057 * the itemize and shaping process for the most common case.
5058 */
5059 static void
5060ascii_glyph_table_init(void)
5061{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005062 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 PangoAttrList *attr_list;
5064 GList *item_list;
5065 int i;
5066
5067 if (gui.ascii_glyphs != NULL)
5068 pango_glyph_string_free(gui.ascii_glyphs);
5069 if (gui.ascii_font != NULL)
5070 g_object_unref(gui.ascii_font);
5071
5072 gui.ascii_glyphs = NULL;
5073 gui.ascii_font = NULL;
5074
Bram Moolenaar30613902019-12-01 22:11:18 +01005075 // For safety, fill in question marks for the control characters.
5076 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005077 for (i = 0; i < 128; ++i)
5078 {
5079 if (i >= 32 && i < 127)
5080 ascii_chars[2 * i] = i;
5081 else
5082 ascii_chars[2 * i] = '?';
5083 ascii_chars[2 * i + 1] = ' ';
5084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085
5086 attr_list = pango_attr_list_new();
5087 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5088 0, sizeof(ascii_chars), attr_list, NULL);
5089
Bram Moolenaar30613902019-12-01 22:11:18 +01005090 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 {
5092 PangoItem *item;
5093 int width;
5094
5095 item = (PangoItem *)item_list->data;
5096 width = gui.char_width * PANGO_SCALE;
5097
Bram Moolenaar30613902019-12-01 22:11:18 +01005098 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 default_shape_engine = item->analysis.shape_engine;
5100
5101 gui.ascii_font = item->analysis.font;
5102 g_object_ref(gui.ascii_font);
5103
5104 gui.ascii_glyphs = pango_glyph_string_new();
5105
5106 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5107 &item->analysis, gui.ascii_glyphs);
5108
5109 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5110
5111 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5112 {
5113 PangoGlyphGeometry *geom;
5114
5115 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5116 geom->x_offset += MAX(0, width - geom->width) / 2;
5117 geom->width = width;
5118 }
5119 }
5120
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02005121 // TODO: is this type cast OK?
5122 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 g_list_free(item_list);
5124 pango_attr_list_unref(attr_list);
5125}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126
5127/*
5128 * Initialize Vim to use the font or fontset with the given name.
5129 * Return FAIL if the font could not be loaded, OK otherwise.
5130 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005132gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 PangoFontDescription *font_desc;
5135 PangoLayout *layout;
5136 int width;
5137
Bram Moolenaar30613902019-12-01 22:11:18 +01005138 // If font_name is NULL, this means to use the default, which should
5139 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 if (font_name == NULL)
5141 font_name = (char_u *)DEFAULT_FONT;
5142
5143 font_desc = gui_mch_get_font(font_name, FALSE);
5144
5145 if (font_desc == NULL)
5146 return FAIL;
5147
5148 gui_mch_free_font(gui.norm_font);
5149 gui.norm_font = font_desc;
5150
5151 pango_context_set_font_description(gui.text_context, font_desc);
5152
5153 layout = pango_layout_new(gui.text_context);
5154 pango_layout_set_text(layout, "MW", 2);
5155 pango_layout_get_size(layout, &width, NULL);
5156 /*
5157 * Set char_width to half the width obtained from pango_layout_get_size()
5158 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5159 * Pango to use the same width for both non-CJK characters (e.g. Latin
5160 * letters and numbers) and CJK characters. This results in 's p a c e d
5161 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5162 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5163 * width for CJK fonts.
5164 *
5165 * For related bugs, see:
5166 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5167 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5168 *
5169 * With this, for all four of the following cases, Vim works fine:
5170 * guifont=CJK_fixed_width_font
5171 * guifont=Non_CJK_fixed_font
5172 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5173 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5174 */
5175 if (is_cjk_font(gui.norm_font))
5176 {
5177 int cjk_width;
5178
Bram Moolenaar30613902019-12-01 22:11:18 +01005179 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5181 pango_layout_get_size(layout, &cjk_width, NULL);
5182
Bram Moolenaar30613902019-12-01 22:11:18 +01005183 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 width /= 2;
5185 }
5186 g_object_unref(layout);
5187
5188 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5189
Bram Moolenaar30613902019-12-01 22:11:18 +01005190 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 if (gui.char_width <= 0)
5192 gui.char_width = 8;
5193
Bram Moolenaar231334e2005-07-25 20:46:57 +00005194 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195
Bram Moolenaar30613902019-12-01 22:11:18 +01005196 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 hl_set_font_name(font_name);
5198
5199 get_styled_font_variants();
5200 ascii_glyph_table_init();
5201
Bram Moolenaar30613902019-12-01 22:11:18 +01005202 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 if (gui.wide_font != NULL
5204 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5205 {
5206 pango_font_description_free(gui.wide_font);
5207 gui.wide_font = NULL;
5208 }
5209
Bram Moolenaare161c792009-11-03 17:13:59 +00005210 if (gui_mch_maximized())
5211 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005212 // Update lines and columns in accordance with the new font, keep the
5213 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005214 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005215 }
5216 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005217 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005218 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005219 update_window_manager_hints(0, 0);
5220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221
5222 return OK;
5223}
5224
5225/*
5226 * Get a reference to the font "name".
5227 * Return zero for failure.
5228 */
5229 GuiFont
5230gui_mch_get_font(char_u *name, int report_error)
5231{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233
Bram Moolenaar30613902019-12-01 22:11:18 +01005234 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 if (!gui.in_use || name == NULL)
5236 return NULL;
5237
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 if (output_conv.vc_type != CONV_NONE)
5239 {
5240 char_u *buf;
5241
5242 buf = string_convert(&output_conv, name, NULL);
5243 if (buf != NULL)
5244 {
5245 font = pango_font_description_from_string((const char *)buf);
5246 vim_free(buf);
5247 }
5248 else
5249 font = NULL;
5250 }
5251 else
5252 font = pango_font_description_from_string((const char *)name);
5253
5254 if (font != NULL)
5255 {
5256 PangoFont *real_font;
5257
Bram Moolenaar30613902019-12-01 22:11:18 +01005258 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 if (pango_font_description_get_size(font) <= 0)
5260 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5261
5262 real_font = pango_context_load_font(gui.text_context, font);
5263
5264 if (real_font == NULL)
5265 {
5266 pango_font_description_free(font);
5267 font = NULL;
5268 }
5269 else
5270 g_object_unref(real_font);
5271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272
5273 if (font == NULL)
5274 {
5275 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005276 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 return NULL;
5278 }
5279
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 return font;
5281}
5282
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005283#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005284/*
5285 * Return the name of font "font" in allocated memory.
5286 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005287 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005288gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005289{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005290 if (font != NOFONT)
5291 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005292 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005293
Bram Moolenaar89d40322006-08-29 15:30:07 +00005294 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005295 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005296 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005297
Bram Moolenaar89d40322006-08-29 15:30:07 +00005298 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005299 return s;
5300 }
5301 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005302 return NULL;
5303}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005304#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005305
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306/*
5307 * If a font is not going to be used, free its structure.
5308 */
5309 void
5310gui_mch_free_font(GuiFont font)
5311{
5312 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314}
5315
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005317 * Return the Pixel value (color) for the given color name.
5318 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 * Return INVALCOLOR for error.
5320 */
5321 guicolor_T
5322gui_mch_get_color(char_u *name)
5323{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005324 guicolor_T color = INVALCOLOR;
5325
Bram Moolenaar30613902019-12-01 22:11:18 +01005326 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005327 return color;
5328
5329 if (name != NULL)
5330 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331
Bram Moolenaar98921892016-02-23 17:14:37 +01005332#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005333 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005334#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005335 if (color == INVALCOLOR)
5336 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005338 return gui_mch_get_rgb_color(
5339 (color & 0xff0000) >> 16,
5340 (color & 0xff00) >> 8,
5341 color & 0xff);
5342#endif
5343}
5344
5345/*
5346 * Return the Pixel value (color) for the given RGB values.
5347 * Return INVALCOLOR for error.
5348 */
5349 guicolor_T
5350gui_mch_get_rgb_color(int r, int g, int b)
5351{
5352#if GTK_CHECK_VERSION(3,0,0)
5353 return gui_get_rgb_color_cmn(r, g, b);
5354#else
5355 GdkColor gcolor;
5356 int ret;
5357
5358 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5359 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5360 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361
Bram Moolenaar36edf062016-07-21 22:10:12 +02005362 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5363 &gcolor, FALSE, TRUE);
5364
5365 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367}
5368
5369/*
5370 * Set the current text foreground color.
5371 */
5372 void
5373gui_mch_set_fg_color(guicolor_T color)
5374{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005375#if GTK_CHECK_VERSION(3,0,0)
5376 *gui.fgcolor = color_to_rgba(color);
5377#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380}
5381
5382/*
5383 * Set the current text background color.
5384 */
5385 void
5386gui_mch_set_bg_color(guicolor_T color)
5387{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005388#if GTK_CHECK_VERSION(3,0,0)
5389 *gui.bgcolor = color_to_rgba(color);
5390#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393}
5394
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005395/*
5396 * Set the current text special color.
5397 */
5398 void
5399gui_mch_set_sp_color(guicolor_T color)
5400{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005401#if GTK_CHECK_VERSION(3,0,0)
5402 *gui.spcolor = color_to_rgba(color);
5403#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005404 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005405#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005406}
5407
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408/*
5409 * Function-like convenience macro for the sake of efficiency.
5410 */
5411#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5412 G_STMT_START{ \
5413 PangoAttribute *tmp_attr_; \
5414 tmp_attr_ = (Attribute); \
5415 tmp_attr_->start_index = (Start); \
5416 tmp_attr_->end_index = (End); \
5417 pango_attr_list_insert((AttrList), tmp_attr_); \
5418 }G_STMT_END
5419
5420 static void
5421apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5422{
5423 char_u *start = NULL;
5424 char_u *p;
5425 int uc;
5426
5427 for (p = s; p < s + len; p += utf_byte2len(*p))
5428 {
5429 uc = utf_ptr2char(p);
5430
5431 if (start == NULL)
5432 {
5433 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5434 start = p;
5435 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005436 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5438 {
5439 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5440 attr_list, start - s, p - s);
5441 start = NULL;
5442 }
5443 }
5444
5445 if (start != NULL)
5446 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5447 attr_list, start - s, len);
5448}
5449
5450 static int
5451count_cluster_cells(char_u *s, PangoItem *item,
5452 PangoGlyphString* glyphs, int i,
5453 int *cluster_width,
5454 int *last_glyph_rbearing)
5455{
5456 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005457 int next; // glyph start index of next cluster
5458 int start, end; // string segment of current cluster
5459 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 int uc;
5461 int cellcount = 0;
5462
5463 width = glyphs->glyphs[i].geometry.width;
5464
5465 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5466 {
5467 if (glyphs->glyphs[next].attr.is_cluster_start)
5468 break;
5469 else if (glyphs->glyphs[next].geometry.width > width)
5470 width = glyphs->glyphs[next].geometry.width;
5471 }
5472
5473 start = item->offset + glyphs->log_clusters[i];
5474 end = item->offset + ((next < glyphs->num_glyphs) ?
5475 glyphs->log_clusters[next] : item->length);
5476
5477 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5478 {
5479 uc = utf_ptr2char(p);
5480 if (uc < 0x80)
5481 ++cellcount;
5482 else if (!utf_iscomposing(uc))
5483 cellcount += utf_char2cells(uc);
5484 }
5485
5486 if (last_glyph_rbearing != NULL
5487 && cellcount > 0 && next == glyphs->num_glyphs)
5488 {
5489 PangoRectangle ink_rect;
5490 /*
5491 * If a certain combining mark had to be taken from a non-monospace
5492 * font, we have to compensate manually by adapting x_offset according
5493 * to the ink extents of the previous glyph.
5494 */
5495 pango_font_get_glyph_extents(item->analysis.font,
5496 glyphs->glyphs[i].glyph,
5497 &ink_rect, NULL);
5498
5499 if (PANGO_RBEARING(ink_rect) > 0)
5500 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5501 }
5502
5503 if (cellcount > 0)
5504 *cluster_width = width;
5505
5506 return cellcount;
5507}
5508
5509/*
5510 * If there are only combining characters in the cluster, we cannot just
5511 * change the width of the previous glyph since there is none. Therefore
5512 * some guesswork is needed.
5513 *
5514 * If ink_rect.x is negative Pango apparently has taken care of the composing
5515 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5516 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005517 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 *
5519 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5520 * the position of the previous glyph. Apparently this happens only with old
5521 * X fonts which don't provide the special combining information needed by
5522 * Pango.
5523 */
5524 static void
5525setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5526 int last_cellcount, int last_cluster_width,
5527 int last_glyph_rbearing)
5528{
5529 PangoRectangle ink_rect;
5530 PangoRectangle logical_rect;
5531 int width;
5532
5533 width = last_cellcount * gui.char_width * PANGO_SCALE;
5534 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5535 glyph->geometry.width = 0;
5536
5537 pango_font_get_glyph_extents(item->analysis.font,
5538 glyph->glyph,
5539 &ink_rect, &logical_rect);
5540 if (ink_rect.x < 0)
5541 {
5542 glyph->geometry.x_offset += last_glyph_rbearing;
5543 glyph->geometry.y_offset = logical_rect.height
5544 - (gui.char_height - p_linespace) * PANGO_SCALE;
5545 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005546 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005547 // If the accent width is smaller than the cluster width, position it
5548 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005549 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550}
5551
Bram Moolenaar98921892016-02-23 17:14:37 +01005552#if GTK_CHECK_VERSION(3,0,0)
5553 static void
5554draw_glyph_string(int row, int col, int num_cells, int flags,
5555 PangoFont *font, PangoGlyphString *glyphs,
5556 cairo_t *cr)
5557#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 static void
5559draw_glyph_string(int row, int col, int num_cells, int flags,
5560 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562{
5563 if (!(flags & DRAW_TRANSP))
5564 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005565#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005566 cairo_set_source_rgba(cr,
5567 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5568 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005569 cairo_rectangle(cr,
5570 FILL_X(col), FILL_Y(row),
5571 num_cells * gui.char_width, gui.char_height);
5572 cairo_fill(cr);
5573#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5575
5576 gdk_draw_rectangle(gui.drawarea->window,
5577 gui.text_gc,
5578 TRUE,
5579 FILL_X(col),
5580 FILL_Y(row),
5581 num_cells * gui.char_width,
5582 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 }
5585
Bram Moolenaar98921892016-02-23 17:14:37 +01005586#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005587 cairo_set_source_rgba(cr,
5588 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5589 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005590 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5591 pango_cairo_show_glyph_string(cr, font, glyphs);
5592#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5594
5595 gdk_draw_glyphs(gui.drawarea->window,
5596 gui.text_gc,
5597 font,
5598 TEXT_X(col),
5599 TEXT_Y(row),
5600 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005601#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602
Bram Moolenaar30613902019-12-01 22:11:18 +01005603 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005605#if GTK_CHECK_VERSION(3,0,0)
5606 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005607 cairo_set_source_rgba(cr,
5608 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5609 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005610 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5611 pango_cairo_show_glyph_string(cr, font, glyphs);
5612 }
5613#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 gdk_draw_glyphs(gui.drawarea->window,
5615 gui.text_gc,
5616 font,
5617 TEXT_X(col) + 1,
5618 TEXT_Y(row),
5619 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621}
5622
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005623/*
5624 * Draw underline and undercurl at the bottom of the character cell.
5625 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005626#if GTK_CHECK_VERSION(3,0,0)
5627 static void
5628draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5629#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005630 static void
5631draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005632#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005633{
5634 int i;
5635 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005636 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005637 int y = FILL_Y(row + 1) - 1;
5638
Bram Moolenaar30613902019-12-01 22:11:18 +01005639 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005640 if (flags & DRAW_UNDERC)
5641 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005642#if GTK_CHECK_VERSION(3,0,0)
5643 cairo_set_line_width(cr, 1.0);
5644 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005645 cairo_set_source_rgba(cr,
5646 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5647 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005648 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5649 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005650 {
5651 offset = val[i % 8];
5652 cairo_line_to(cr, i, y - offset + 0.5);
5653 }
5654 cairo_stroke(cr);
5655#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005656 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5657 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5658 {
5659 offset = val[i % 8];
5660 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5661 }
5662 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005663#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005664 }
5665
Bram Moolenaar30613902019-12-01 22:11:18 +01005666 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005667 if (flags & DRAW_STRIKE)
5668 {
5669#if GTK_CHECK_VERSION(3,0,0)
5670 cairo_set_line_width(cr, 1.0);
5671 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5672 cairo_set_source_rgba(cr,
5673 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5674 gui.spcolor->alpha);
5675 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5676 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5677 cairo_stroke(cr);
5678#else
5679 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5680 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5681 FILL_X(col), y + 1 - gui.char_height/2,
5682 FILL_X(col + cells), y + 1 - gui.char_height/2);
5683 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5684#endif
5685 }
5686
Bram Moolenaar30613902019-12-01 22:11:18 +01005687 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005688 if (flags & DRAW_UNDERL)
5689 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005690 // When p_linespace is 0, overwrite the bottom row of pixels.
5691 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005692 if (p_linespace > 1)
5693 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005694#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005695 cairo_set_line_width(cr, 1.0);
5696 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5697 cairo_set_source_rgba(cr,
5698 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5699 gui.fgcolor->alpha);
5700 cairo_move_to(cr, FILL_X(col), y + 0.5);
5701 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5702 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005703#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005704 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5705 FILL_X(col), y,
5706 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005707#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005708 }
5709}
5710
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 int
5712gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5713{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005714 char_u *conv_buf = NULL; // result of UTF-8 conversion
5715 char_u *new_conv_buf;
5716 int convlen;
5717 char_u *sp, *bp;
5718 int plen;
5719 int len_sum; // return value needs to add up since we are
5720 // printing substrings
5721 int byte_sum; // byte position in string
5722 char_u *cs; // current *s pointer
5723 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005724 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005725 int slen;
5726 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005727 int is_utf8;
5728 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729
Bram Moolenaar98921892016-02-23 17:14:37 +01005730 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 return len;
5732
5733 if (output_conv.vc_type != CONV_NONE)
5734 {
5735 /*
5736 * Convert characters from 'encoding' to 'termencoding', which is set
5737 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5738 * prohibits changing this to something else than UTF-8 if the GUI is
5739 * in use.
5740 */
5741 convlen = len;
5742 conv_buf = string_convert(&output_conv, s, &convlen);
5743 g_return_val_if_fail(conv_buf != NULL, len);
5744
Bram Moolenaar30613902019-12-01 22:11:18 +01005745 // Correct for differences in char width: some chars are
5746 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5747 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5749 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005750 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5752 {
5753 new_conv_buf = alloc(convlen + 2);
5754 if (new_conv_buf == NULL)
5755 return len;
5756 plen += bp - conv_buf;
5757 mch_memmove(new_conv_buf, conv_buf, plen);
5758 new_conv_buf[plen] = ' ';
5759 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5760 convlen - plen + 1);
5761 vim_free(conv_buf);
5762 conv_buf = new_conv_buf;
5763 ++convlen;
5764 bp = conv_buf + plen;
5765 plen = 1;
5766 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005767 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 bp += plen;
5769 }
5770 s = conv_buf;
5771 len = convlen;
5772 }
5773
5774 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005775 * Ligature support and complex utf-8 char optimization:
5776 * String received to output to screen can print using pre-cached glyphs
5777 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5778 * Since we receive mixed content string, split it into logical segments
5779 * that are guaranteed to go trough glyphs as much as possible. Since
5780 * single ligature char prints as ascii, print it that way.
5781 */
5782 len_sum = 0; // return value needs to add up since we are printing
5783 // substrings
5784 byte_sum = 0;
5785 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005786 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5787 // Even if it is ligature char, two chars or more make ligature.
5788 // Ascii followed by utf8 is also going trough pango.
5789 is_utf8 = (*cs & 0x80);
5790 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5791 if (is_ligature)
5792 is_ligature = gui.ligatures_map[*(cs + 1)];
5793 if (!is_utf8 && len > 1)
5794 is_utf8 = (*(cs + 1) & 0x80) != 0;
5795 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005796
5797 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5798 // print glyphs or use Pango
5799 while (cs < s + len)
5800 {
5801 slen = 0;
5802 while (slen < (len - byte_sum))
5803 {
5804 is_ligature = gui.ligatures_map[*(cs + slen)];
5805 // look ahead, single ligature char between ascii is ascii
5806 if (is_ligature && !needs_pango)
5807 {
5808 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005809 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005810 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005811 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005812 }
5813 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005814 // ascii followed by utf8 could be combining
5815 // if so send it trough pango
5816 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5817 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005818 should_need_pango = (is_ligature || is_utf8);
5819 if (needs_pango != should_need_pango) // mode switch
5820 break;
5821 if (needs_pango)
5822 {
5823 if (is_ligature)
5824 {
5825 slen++; // ligature char by char
5826 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005827 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005828 {
5829 if ((*(cs + slen) & 0xC0) == 0x80)
5830 {
5831 // a continuation, find next 0xC0 != 0x80 but don't
5832 // include it
5833 while ((slen < (len - byte_sum))
5834 && ((*(cs + slen) & 0xC0) == 0x80))
5835 {
5836 slen++;
5837 }
5838 }
5839 else if ((*(cs + slen) & 0xE0) == 0xC0)
5840 {
5841 // + one byte utf8
5842 slen++;
5843 }
5844 else if ((*(cs + slen) & 0xF0) == 0xE0)
5845 {
5846 // + two bytes utf8
5847 slen += 2;
5848 }
5849 else if ((*(cs + slen) & 0xF8) == 0xF0)
5850 {
5851 // + three bytes utf8
5852 slen += 3;
5853 }
5854 else
5855 {
5856 // this should not happen, try moving forward, Pango
5857 // will catch it
5858 slen++;
5859 }
5860 }
5861 }
5862 else
5863 {
5864 slen++; // ascii
5865 }
5866 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005867
Bram Moolenaard68a0042021-10-20 23:08:11 +01005868 if (slen < len)
5869 {
5870 // temporarily zero terminate substring, print, restore char, wrap
5871 backup_ch = *(cs + slen);
5872 *(cs + slen) = NUL;
5873 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005874 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5875 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005876 if (slen < len)
5877 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005878 cs += slen;
5879 byte_sum += slen;
5880 needs_pango = should_need_pango;
5881 }
5882 vim_free(conv_buf);
5883 return len_sum;
5884}
5885
5886 int
5887gui_gtk2_draw_string_ext(
5888 int row,
5889 int col,
5890 char_u *s,
5891 int len,
5892 int flags,
5893 int force_pango)
5894{
5895 GdkRectangle area; // area for clip mask
5896 PangoGlyphString *glyphs; // glyphs of current item
5897 int column_offset = 0; // column offset in cells
5898 int i;
5899#if GTK_CHECK_VERSION(3,0,0)
5900 cairo_t *cr;
5901#endif
5902
5903 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 * Restrict all drawing to the current screen line in order to prevent
5905 * fuzzy font lookups from messing up the screen.
5906 */
5907 area.x = gui.border_offset;
5908 area.y = FILL_Y(row);
5909 area.width = gui.num_cols * gui.char_width;
5910 area.height = gui.char_height;
5911
Bram Moolenaar98921892016-02-23 17:14:37 +01005912#if GTK_CHECK_VERSION(3,0,0)
5913 cr = cairo_create(gui.surface);
5914 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5915 cairo_clip(cr);
5916#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5918 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920
5921 glyphs = pango_glyph_string_new();
5922
5923 /*
5924 * Optimization hack: If possible, skip the itemize and shaping process
5925 * for pure ASCII strings. This optimization is particularly effective
5926 * because Vim draws space characters to clear parts of the screen.
5927 */
5928 if (!(flags & DRAW_ITALIC)
5929 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005930 && gui.ascii_glyphs != NULL
5931 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 {
5933 char_u *p;
5934
5935 for (p = s; p < s + len; ++p)
5936 if (*p & 0x80)
5937 goto not_ascii;
5938
5939 pango_glyph_string_set_size(glyphs, len);
5940
5941 for (i = 0; i < len; ++i)
5942 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005943 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 glyphs->log_clusters[i] = i;
5945 }
5946
Bram Moolenaar98921892016-02-23 17:14:37 +01005947#if GTK_CHECK_VERSION(3,0,0)
5948 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5949#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952
5953 column_offset = len;
5954 }
5955 else
5956not_ascii:
5957 {
5958 PangoAttrList *attr_list;
5959 GList *item_list;
5960 int cluster_width;
5961 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005962 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963
Bram Moolenaar30613902019-12-01 22:11:18 +01005964 // Safety check: pango crashes when invoked with invalid utf-8
5965 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005966 if (!utf_valid_string(s, s + len))
5967 {
5968 column_offset = len;
5969 goto skipitall;
5970 }
5971
Bram Moolenaar30613902019-12-01 22:11:18 +01005972 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 cluster_width = PANGO_SCALE * gui.char_width;
5974
Bram Moolenaar30613902019-12-01 22:11:18 +01005975 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5977
5978 attr_list = pango_attr_list_new();
5979
Bram Moolenaar30613902019-12-01 22:11:18 +01005980 // If 'guifontwide' is set then use that for double-width characters.
5981 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 if (gui.wide_font != NULL)
5983 apply_wide_font_attr(s, len, attr_list);
5984
5985 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5986 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5987 attr_list, 0, len);
5988 if (flags & DRAW_ITALIC)
5989 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5990 attr_list, 0, len);
5991 /*
5992 * Break the text into segments with consistent directional level
5993 * and shaping engine. Pure Latin text needs only a single segment,
5994 * so there's no need to worry about the loop's efficiency. Better
5995 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5996 */
5997 item_list = pango_itemize(gui.text_context,
5998 (const char *)s, 0, len, attr_list, NULL);
5999
6000 while (item_list != NULL)
6001 {
6002 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01006003 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004
6005 item = (PangoItem *)item_list->data;
6006 item_list = g_list_delete_link(item_list, item_list);
6007 /*
6008 * Increment the bidirectional embedding level by 1 if it is not
6009 * even. An odd number means the output will be RTL, but we don't
6010 * want that since Vim handles right-to-left text on its own. It
6011 * would probably be sufficient to just set level = 0, but you can
6012 * never know :)
6013 *
6014 * Unfortunately we can't take advantage of Pango's ability to
6015 * render both LTR and RTL at the same time. In order to support
6016 * that, Vim's main screen engine would have to make use of Pango
6017 * functionality.
6018 */
6019 item->analysis.level = (item->analysis.level + 1) & (~1U);
6020
Bram Moolenaar30613902019-12-01 22:11:18 +01006021 // HACK: Overrule the shape engine, we don't want shaping to be
6022 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 item->analysis.shape_engine = default_shape_engine;
6024
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006025#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006026 pango_shape_full((const char *)s + item->offset, item->length,
6027 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006028#else
6029 pango_shape((const char *)s + item->offset, item->length,
6030 &item->analysis, glyphs);
6031#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 /*
6033 * Fixed-width hack: iterate over the array and assign a fixed
6034 * width to each glyph, thus overriding the choice made by the
6035 * shaping engine. We use utf_char2cells() to determine the
6036 * number of cells needed.
6037 *
6038 * Also perform all kind of dark magic to get composing
6039 * characters right (and pretty too of course).
6040 */
6041 for (i = 0; i < glyphs->num_glyphs; ++i)
6042 {
6043 PangoGlyphInfo *glyph;
6044
6045 glyph = &glyphs->glyphs[i];
6046
6047 if (glyph->attr.is_cluster_start)
6048 {
6049 int cellcount;
6050
6051 cellcount = count_cluster_cells(
6052 s, item, glyphs, i, &cluster_width,
6053 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6054
6055 if (cellcount > 0)
6056 {
6057 int width;
6058
6059 width = cellcount * gui.char_width * PANGO_SCALE;
6060 glyph->geometry.x_offset +=
6061 MAX(0, width - cluster_width) / 2;
6062 glyph->geometry.width = width;
6063 }
6064 else
6065 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006066 // If there are only combining characters in the
6067 // cluster, we cannot just change the width of the
6068 // previous glyph since there is none. Therefore
6069 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 setup_zero_width_cluster(item, glyph, cells,
6071 cluster_width,
6072 last_glyph_rbearing);
6073 }
6074
6075 item_cells += cellcount;
6076 cells = cellcount;
6077 }
6078 else if (i > 0)
6079 {
6080 int width;
6081
Bram Moolenaar30613902019-12-01 22:11:18 +01006082 // There is a previous glyph, so we deal with combining
6083 // characters the canonical way.
6084 // In some circumstances Pango uses a positive x_offset,
6085 // then use the width of the previous glyph for this one
6086 // and set the previous width to zero.
6087 // Otherwise we get a negative x_offset, Pango has already
6088 // positioned the combining char, keep the widths as they
6089 // are.
6090 // For both adjust the x_offset to position the glyph in
6091 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006092 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006093 {
6094 glyphs->glyphs[i].geometry.width =
6095 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006096 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098 width = cells * gui.char_width * PANGO_SCALE;
6099 glyph->geometry.x_offset +=
6100 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006102 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 {
6104 glyph->geometry.width = 0;
6105 }
6106 }
6107
Bram Moolenaar30613902019-12-01 22:11:18 +01006108 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01006109#if GTK_CHECK_VERSION(3,0,0)
6110 draw_glyph_string(row, col + column_offset, item_cells,
6111 flags, item->analysis.font, glyphs,
6112 cr);
6113#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 draw_glyph_string(row, col + column_offset, item_cells,
6115 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117
6118 pango_item_free(item);
6119
6120 column_offset += item_cells;
6121 }
6122
6123 pango_attr_list_unref(attr_list);
6124 }
6125
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006126skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01006127 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01006128#if GTK_CHECK_VERSION(3,0,0)
6129 draw_under(flags, row, col, column_offset, cr);
6130#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006131 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133
6134 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135
Bram Moolenaar98921892016-02-23 17:14:37 +01006136#if GTK_CHECK_VERSION(3,0,0)
6137 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00006138 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
6139 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006140#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143
6144 return column_offset;
6145}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146
6147/*
6148 * Return OK if the key with the termcap name "name" is supported.
6149 */
6150 int
6151gui_mch_haskey(char_u *name)
6152{
6153 int i;
6154
6155 for (i = 0; special_keys[i].key_sym != 0; i++)
6156 if (name[0] == special_keys[i].code0
6157 && name[1] == special_keys[i].code1)
6158 return OK;
6159 return FAIL;
6160}
6161
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006162#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163/*
6164 * Return the text window-id and display. Only required for X-based GUI's
6165 */
6166 int
6167gui_get_x11_windis(Window *win, Display **dis)
6168{
Bram Moolenaar98921892016-02-23 17:14:37 +01006169 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006171 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6172 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 return OK;
6174 }
6175
6176 *dis = NULL;
6177 *win = 0;
6178 return FAIL;
6179}
6180#endif
6181
6182#if defined(FEAT_CLIENTSERVER) \
6183 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6184
6185 Display *
6186gui_mch_get_display(void)
6187{
Bram Moolenaar98921892016-02-23 17:14:37 +01006188 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6189 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 else
6191 return NULL;
6192}
6193#endif
6194
6195 void
6196gui_mch_beep(void)
6197{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198 GdkDisplay *display;
6199
Bram Moolenaar98921892016-02-23 17:14:37 +01006200 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 display = gtk_widget_get_display(gui.mainwin);
6202 else
6203 display = gdk_display_get_default();
6204
6205 if (display != NULL)
6206 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207}
6208
6209 void
6210gui_mch_flash(int msec)
6211{
Bram Moolenaar98921892016-02-23 17:14:37 +01006212#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006213 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006214 (void)msec;
6215#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 GdkGCValues values;
6217 GdkGC *invert_gc;
6218
6219 if (gui.drawarea->window == NULL)
6220 return;
6221
6222 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6223 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6224 values.function = GDK_XOR;
6225 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6226 &values,
6227 GDK_GC_FOREGROUND |
6228 GDK_GC_BACKGROUND |
6229 GDK_GC_FUNCTION);
6230 gdk_gc_set_exposures(invert_gc,
6231 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6232 /*
6233 * Do a visual beep by changing back and forth in some undetermined way,
6234 * the foreground and background colors. This is due to the fact that
6235 * there can't be really any prediction about the effects of XOR on
6236 * arbitrary X11 servers. However this seems to be enough for what we
6237 * intend it to do.
6238 */
6239 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6240 TRUE,
6241 0, 0,
6242 FILL_X((int)Columns) + gui.border_offset,
6243 FILL_Y((int)Rows) + gui.border_offset);
6244
6245 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006246 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247
6248 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6249 TRUE,
6250 0, 0,
6251 FILL_X((int)Columns) + gui.border_offset,
6252 FILL_Y((int)Rows) + gui.border_offset);
6253
6254 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256}
6257
6258/*
6259 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6260 */
6261 void
6262gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6263{
Bram Moolenaar98921892016-02-23 17:14:37 +01006264#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006265 const GdkRectangle rect = {
6266 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6267 };
6268 cairo_t * const cr = cairo_create(gui.surface);
6269
Your Name810cb5a2022-09-13 11:25:54 +01006270 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006271# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6272 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6273# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006274 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006275# endif
presuku9459b8d2021-11-16 20:03:56 +00006276 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006277 cairo_fill(cr);
6278
6279 cairo_destroy(cr);
6280
presuku9459b8d2021-11-16 20:03:56 +00006281 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6282 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006283#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 GdkGCValues values;
6285 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286
6287 if (gui.drawarea->window == NULL)
6288 return;
6289
Your Name810cb5a2022-09-13 11:25:54 +01006290 values.function = GDK_INVERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6292 &values,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006294 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6295 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6297 TRUE,
6298 FILL_X(c), FILL_Y(r),
6299 (nc) * gui.char_width, (nr) * gui.char_height);
6300 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302}
6303
6304/*
6305 * Iconify the GUI window.
6306 */
6307 void
6308gui_mch_iconify(void)
6309{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311}
6312
6313#if defined(FEAT_EVAL) || defined(PROTO)
6314/*
6315 * Bring the Vim window to the foreground.
6316 */
6317 void
6318gui_mch_set_foreground(void)
6319{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321}
6322#endif
6323
6324/*
6325 * Draw a cursor without focus.
6326 */
6327 void
6328gui_mch_draw_hollow_cursor(guicolor_T color)
6329{
6330 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006331#if GTK_CHECK_VERSION(3,0,0)
6332 cairo_t *cr;
6333#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334
Bram Moolenaar98921892016-02-23 17:14:37 +01006335 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 return;
6337
Bram Moolenaar98921892016-02-23 17:14:37 +01006338#if GTK_CHECK_VERSION(3,0,0)
6339 cr = cairo_create(gui.surface);
6340#endif
6341
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 gui_mch_set_fg_color(color);
6343
Bram Moolenaar98921892016-02-23 17:14:37 +01006344#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006345 cairo_set_source_rgba(cr,
6346 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6347 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006348#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 if (mb_lefthalve(gui.row, gui.col))
6352 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006353#if GTK_CHECK_VERSION(3,0,0)
6354 cairo_set_line_width(cr, 1.0);
6355 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6356 cairo_rectangle(cr,
6357 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6358 i * gui.char_width - 1, gui.char_height - 1);
6359 cairo_stroke(cr);
6360 cairo_destroy(cr);
6361#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6363 FALSE,
6364 FILL_X(gui.col), FILL_Y(gui.row),
6365 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367}
6368
6369/*
6370 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6371 * color "color".
6372 */
6373 void
6374gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6375{
Bram Moolenaar98921892016-02-23 17:14:37 +01006376 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 return;
6378
6379 gui_mch_set_fg_color(color);
6380
Bram Moolenaar98921892016-02-23 17:14:37 +01006381#if GTK_CHECK_VERSION(3,0,0)
6382 {
6383 cairo_t *cr;
6384
6385 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006386 cairo_set_source_rgba(cr,
6387 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6388 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006389 cairo_rectangle(cr,
6390# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006391 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006392 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6393# endif
6394 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6395 w, h);
6396 cairo_fill(cr);
6397 cairo_destroy(cr);
6398 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006399#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6401 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6402 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006403# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006404 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006406# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 FILL_X(gui.col),
6408 FILL_Y(gui.row) + gui.char_height - h,
6409 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006410#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411}
6412
6413
6414/*
6415 * Catch up with any queued X11 events. This may put keyboard input into the
6416 * input buffer, call resize call-backs, trigger timers etc. If there is
6417 * nothing in the X11 event queue (& no timers pending), then we return
6418 * immediately.
6419 */
6420 void
6421gui_mch_update(void)
6422{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006423 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6424 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425}
6426
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006427 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428input_timer_cb(gpointer data)
6429{
6430 int *timed_out = (int *) data;
6431
Bram Moolenaar30613902019-12-01 22:11:18 +01006432 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433 *timed_out = TRUE;
6434
Bram Moolenaar30613902019-12-01 22:11:18 +01006435 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436}
6437
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006438#ifdef FEAT_JOB_CHANNEL
6439 static timeout_cb_type
6440channel_poll_cb(gpointer data UNUSED)
6441{
Bram Moolenaar30613902019-12-01 22:11:18 +01006442 // Using an event handler for a channel that may be disconnected does
6443 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006444 channel_handle_events(TRUE);
6445 parse_queued_messages();
6446
Bram Moolenaar30613902019-12-01 22:11:18 +01006447 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006448}
6449#endif
6450
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451/*
6452 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6453 * from the keyboard.
6454 * wtime == -1 Wait forever.
6455 * wtime == 0 This should never happen.
6456 * wtime > 0 Wait wtime milliseconds for a character.
6457 * Returns OK if a character was found to be available within the given time,
6458 * or FAIL otherwise.
6459 */
6460 int
6461gui_mch_wait_for_chars(long wtime)
6462{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006463 int focus;
6464 guint timer;
6465 static int timed_out;
6466 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006467#ifdef FEAT_JOB_CHANNEL
6468 guint channel_timer = 0;
6469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470
6471 timed_out = FALSE;
6472
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006473 // This timeout makes sure that we will return if no characters arrived in
6474 // time. If "wtime" is zero just use one.
6475 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006476 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006477 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 else
6479 timer = 0;
6480
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006481#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006482 // If there is a channel with the keep_open flag we need to poll for input
6483 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006484 if (channel_any_keep_open())
6485 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6486#endif
6487
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 focus = gui.in_focus;
6489
6490 do
6491 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006492 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 if (gui.in_focus != focus)
6494 {
6495 if (gui.in_focus)
6496 gui_mch_start_blink();
6497 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006498 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 focus = gui.in_focus;
6500 }
6501
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006502#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006503# ifdef FEAT_TIMERS
6504 did_add_timer = FALSE;
6505# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006506 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006507# ifdef FEAT_TIMERS
6508 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006509 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006510 goto theend;
6511# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006512#endif
6513
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514 /*
6515 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006516 * Skip this if input is available anyway (can happen in rare
6517 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006519 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006520 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521
Bram Moolenaar30613902019-12-01 22:11:18 +01006522 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 if (input_available())
6524 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006525 retval = OK;
6526 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 }
6528 } while (wtime < 0 || !timed_out);
6529
6530 /*
6531 * Flush all eventually pending (drawing) events.
6532 */
6533 gui_mch_update();
6534
Bram Moolenaar4231da42016-06-02 14:30:04 +02006535theend:
6536 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006537 timeout_remove(timer);
6538#ifdef FEAT_JOB_CHANNEL
6539 if (channel_timer != 0)
6540 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006541#endif
6542
6543 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544}
6545
6546
Bram Moolenaar30613902019-12-01 22:11:18 +01006547/////////////////////////////////////////////////////////////////////////////
6548// Output drawing routines.
6549//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550
6551
Bram Moolenaar30613902019-12-01 22:11:18 +01006552// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 void
6554gui_mch_flush(void)
6555{
Bram Moolenaar98921892016-02-23 17:14:37 +01006556 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006557#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006558 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006559#else
6560 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562}
6563
6564/*
6565 * Clear a rectangular region of the screen from text pos (row1, col1) to
6566 * (row2, col2) inclusive.
6567 */
6568 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006569gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006571
6572 int col1 = check_col(col1arg);
6573 int col2 = check_col(col2arg);
6574 int row1 = check_row(row1arg);
6575 int row2 = check_row(row2arg);
6576
Bram Moolenaar98921892016-02-23 17:14:37 +01006577#if GTK_CHECK_VERSION(3,0,0)
6578 if (gtk_widget_get_window(gui.drawarea) == NULL)
6579 return;
6580#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581 GdkColor color;
6582
6583 if (gui.drawarea->window == NULL)
6584 return;
6585
6586 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588
Bram Moolenaar98921892016-02-23 17:14:37 +01006589#if GTK_CHECK_VERSION(3,0,0)
6590 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006591 // Add one pixel to the far right column in case a double-stroked
6592 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006593 const GdkRectangle rect = {
6594 FILL_X(col1), FILL_Y(row1),
6595 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6596 (row2 - row1 + 1) * gui.char_height
6597 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006598 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006599# if GTK_CHECK_VERSION(3,22,2)
6600 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6601# else
presuku9459b8d2021-11-16 20:03:56 +00006602 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006603 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6604 if (pat != NULL)
6605 cairo_set_source(cr, pat);
6606 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006607 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006608# endif
presuku9459b8d2021-11-16 20:03:56 +00006609 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006610 cairo_fill(cr);
6611 cairo_destroy(cr);
6612
presuku9459b8d2021-11-16 20:03:56 +00006613 gtk_widget_queue_draw_area(gui.drawarea,
6614 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006615 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006616#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 gdk_gc_set_foreground(gui.text_gc, &color);
6618
Bram Moolenaar30613902019-12-01 22:11:18 +01006619 // Clear one extra pixel at the far right, for when bold characters have
6620 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6622 FILL_X(col1), FILL_Y(row1),
6623 (col2 - col1 + 1) * gui.char_width
6624 + (col2 == Columns - 1),
6625 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006626#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627}
6628
Bram Moolenaar98921892016-02-23 17:14:37 +01006629#if GTK_CHECK_VERSION(3,0,0)
6630 static void
6631gui_gtk_window_clear(GdkWindow *win)
6632{
6633 const GdkRectangle rect = {
6634 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6635 };
6636 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006637# if GTK_CHECK_VERSION(3,22,2)
6638 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6639# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006640 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6641 if (pat != NULL)
6642 cairo_set_source(cr, pat);
6643 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006644 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006645# endif
presuku9459b8d2021-11-16 20:03:56 +00006646 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006647 cairo_fill(cr);
6648 cairo_destroy(cr);
6649
presuku9459b8d2021-11-16 20:03:56 +00006650 gtk_widget_queue_draw_area(gui.drawarea,
6651 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006652}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006653#else
6654# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006655#endif
6656
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 void
6658gui_mch_clear_all(void)
6659{
Bram Moolenaar98921892016-02-23 17:14:37 +01006660 if (gtk_widget_get_window(gui.drawarea) != NULL)
6661 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662}
6663
Bram Moolenaar98921892016-02-23 17:14:37 +01006664#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665/*
6666 * Redraw any text revealed by scrolling up/down.
6667 */
6668 static void
6669check_copy_area(void)
6670{
6671 GdkEvent *event;
6672 int expose_count;
6673
6674 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6675 return;
6676
Bram Moolenaar30613902019-12-01 22:11:18 +01006677 // Avoid redrawing the cursor while scrolling or it'll end up where
6678 // we don't want it to be. I'm not sure if it's correct to call
6679 // gui_dont_update_cursor() at this point but it works as a quick
6680 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006681 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682
6683 do
6684 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006685 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6687
6688 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006689 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690
6691 gui_redraw(event->expose.area.x, event->expose.area.y,
6692 event->expose.area.width, event->expose.area.height);
6693
6694 expose_count = event->expose.count;
6695 gdk_event_free(event);
6696 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006697 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698
6699 gui_can_update_cursor();
6700}
Bram Moolenaar30613902019-12-01 22:11:18 +01006701#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006702
6703#if GTK_CHECK_VERSION(3,0,0)
6704 static void
6705gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6706 int src_x, int src_y,
6707 int width, int height)
6708{
6709 cairo_t * const cr = cairo_create(gui.surface);
6710
6711 cairo_rectangle(cr, dest_x, dest_y, width, height);
6712 cairo_clip(cr);
6713 cairo_push_group(cr);
6714 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6715 cairo_paint(cr);
6716 cairo_pop_group_to_source(cr);
6717 cairo_paint(cr);
6718
6719 cairo_destroy(cr);
6720}
6721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722
6723/*
6724 * Delete the given number of lines from the given row, scrolling up any
6725 * text further down within the scroll region.
6726 */
6727 void
6728gui_mch_delete_lines(int row, int num_lines)
6729{
Bram Moolenaar98921892016-02-23 17:14:37 +01006730#if GTK_CHECK_VERSION(3,0,0)
6731 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6732 const int nrows = gui.scroll_region_bot - row + 1;
6733 const int src_nrows = nrows - num_lines;
6734
6735 gui_gtk_surface_copy_rect(
6736 FILL_X(gui.scroll_region_left), FILL_Y(row),
6737 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6738 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6739 gui_clear_block(
6740 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6741 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006742 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006743 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006744 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006747 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748
6749 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6750 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6751
Bram Moolenaar30613902019-12-01 22:11:18 +01006752 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6754 FILL_X(gui.scroll_region_left), FILL_Y(row),
6755 gui.drawarea->window,
6756 FILL_X(gui.scroll_region_left),
6757 FILL_Y(row + num_lines),
6758 gui.char_width * (gui.scroll_region_right
6759 - gui.scroll_region_left + 1) + 1,
6760 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6761
6762 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6763 gui.scroll_region_left,
6764 gui.scroll_region_bot, gui.scroll_region_right);
6765 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006766#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767}
6768
6769/*
6770 * Insert the given number of lines before the given row, scrolling down any
6771 * following text within the scroll region.
6772 */
6773 void
6774gui_mch_insert_lines(int row, int num_lines)
6775{
Bram Moolenaar98921892016-02-23 17:14:37 +01006776#if GTK_CHECK_VERSION(3,0,0)
6777 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6778 const int nrows = gui.scroll_region_bot - row + 1;
6779 const int src_nrows = nrows - num_lines;
6780
6781 gui_gtk_surface_copy_rect(
6782 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6783 FILL_X(gui.scroll_region_left), FILL_Y(row),
6784 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006785 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006786 row, gui.scroll_region_left,
6787 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006788 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006789 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006790 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006791#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006793 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794
6795 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6796 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6797
Bram Moolenaar30613902019-12-01 22:11:18 +01006798 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6800 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6801 gui.drawarea->window,
6802 FILL_X(gui.scroll_region_left), FILL_Y(row),
6803 gui.char_width * (gui.scroll_region_right
6804 - gui.scroll_region_left + 1) + 1,
6805 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6806
6807 gui_clear_block(row, gui.scroll_region_left,
6808 row + num_lines - 1, gui.scroll_region_right);
6809 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006810#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811}
6812
6813/*
6814 * X Selection stuff, for cutting and pasting text to other windows.
6815 */
6816 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006817clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818{
6819 GdkAtom target;
6820 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006821 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822
6823 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6824 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006825 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6826 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 received_selection = RS_NONE;
6828 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6829
6830 gtk_selection_convert(gui.drawarea,
6831 cbd->gtk_sel_atom, target,
6832 (guint32)GDK_CURRENT_TIME);
6833
Bram Moolenaar30613902019-12-01 22:11:18 +01006834 // Hack: Wait up to three seconds for the selection. A hang was
6835 // noticed here when using the netrw plugin combined with ":gui"
6836 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006837 start = time(NULL);
6838 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006839 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840
6841 if (received_selection != RS_FAIL)
6842 return;
6843 }
6844
Bram Moolenaar30613902019-12-01 22:11:18 +01006845 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006846 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6847 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848}
6849
6850/*
6851 * Disown the selection.
6852 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006854clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006856 if (!in_selection_clear_event)
6857 {
6858 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6859 gui_mch_update();
6860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861}
6862
6863/*
6864 * Own the selection and return OK if it worked.
6865 */
6866 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006867clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868{
6869 int success;
6870
6871 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006872 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 gui_mch_update();
6874 return (success) ? OK : FAIL;
6875}
6876
6877/*
6878 * Send the current selection to the clipboard. Do nothing for X because we
6879 * will fill in the selection only when requested by another app.
6880 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006882clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883{
6884}
6885
Bram Moolenaar113e1072019-01-20 15:30:40 +01006886#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006887 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006888clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006889{
6890 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6891}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006892#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006893
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894
6895#if defined(FEAT_MENU) || defined(PROTO)
6896/*
6897 * Make a menu item appear either active or not active (grey or not grey).
6898 */
6899 void
6900gui_mch_menu_grey(vimmenu_T *menu, int grey)
6901{
6902 if (menu->id == NULL)
6903 return;
6904
6905 if (menu_is_separator(menu->name))
6906 grey = TRUE;
6907
6908 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006909 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006910 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911 {
6912 gtk_widget_set_sensitive(menu->id, !grey);
6913 gui_mch_update();
6914 }
6915}
6916
6917/*
6918 * Make menu item hidden or not hidden.
6919 */
6920 void
6921gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6922{
6923 if (menu->id == 0)
6924 return;
6925
6926 if (hidden)
6927 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006928 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929 {
6930 gtk_widget_hide(menu->id);
6931 gui_mch_update();
6932 }
6933 }
6934 else
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_show(menu->id);
6939 gui_mch_update();
6940 }
6941 }
6942}
6943
6944/*
6945 * This is called after setting all the menus to grey/hidden or not.
6946 */
6947 void
6948gui_mch_draw_menubar(void)
6949{
Bram Moolenaar30613902019-12-01 22:11:18 +01006950 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 gui_mch_update();
6952}
Bram Moolenaar30613902019-12-01 22:11:18 +01006953#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954
6955/*
6956 * Scrollbar stuff.
6957 */
6958 void
6959gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6960{
6961 if (sb->id == NULL)
6962 return;
6963
Bram Moolenaar98921892016-02-23 17:14:37 +01006964 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006965 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966}
6967
6968
6969/*
6970 * Return the RGB value of a pixel as long.
6971 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006972 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973gui_mch_get_rgb(guicolor_T pixel)
6974{
Bram Moolenaar98921892016-02-23 17:14:37 +01006975#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006976 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006977#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006978 GdkColor color;
6979
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6981 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006983 return (guicolor_T)(
6984 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006986 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988}
6989
6990/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006991 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006993 void
6994gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995{
Bram Moolenaar98921892016-02-23 17:14:37 +01006996 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997}
6998
6999 void
7000gui_mch_setmouse(int x, int y)
7001{
Bram Moolenaar30613902019-12-01 22:11:18 +01007002 // Sorry for the Xlib call, but we can't avoid it, since there is no
7003 // internal GDK mechanism present to accomplish this. (and for good
7004 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01007005 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7006 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7007 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008}
7009
7010
7011#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01007012// The last set mouse pointer shape is remembered, to be used when it goes
7013// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014static int last_shape = 0;
7015#endif
7016
7017/*
7018 * Use the blank mouse pointer or not.
7019 *
7020 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7021 */
7022 void
7023gui_mch_mousehide(int hide)
7024{
7025 if (gui.pointer_hidden != hide)
7026 {
7027 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007028 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 {
7030 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007031 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7032 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 else
7034#ifdef FEAT_MOUSESHAPE
7035 mch_set_mouse_shape(last_shape);
7036#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02007037 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038#endif
7039 }
7040 }
7041}
7042
7043#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7044
Bram Moolenaar30613902019-12-01 22:11:18 +01007045// Table for shape IDs. Keep in sync with the mshape_names[] table in
7046// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047static const int mshape_ids[] =
7048{
Bram Moolenaar30613902019-12-01 22:11:18 +01007049 GDK_LEFT_PTR, // arrow
7050 GDK_CURSOR_IS_PIXMAP, // blank
7051 GDK_XTERM, // beam
7052 GDK_SB_V_DOUBLE_ARROW, // updown
7053 GDK_SIZING, // udsizing
7054 GDK_SB_H_DOUBLE_ARROW, // leftright
7055 GDK_SIZING, // lrsizing
7056 GDK_WATCH, // busy
7057 GDK_X_CURSOR, // no
7058 GDK_CROSSHAIR, // crosshair
7059 GDK_HAND1, // hand1
7060 GDK_HAND2, // hand2
7061 GDK_PENCIL, // pencil
7062 GDK_QUESTION_ARROW, // question
7063 GDK_RIGHT_PTR, // right-arrow
7064 GDK_CENTER_PTR, // up-arrow
7065 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066};
7067
7068 void
7069mch_set_mouse_shape(int shape)
7070{
7071 int id;
7072 GdkCursor *c;
7073
Bram Moolenaar98921892016-02-23 17:14:37 +01007074 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 return;
7076
7077 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007078 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7079 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 else
7081 {
7082 if (shape >= MSHAPE_NUMBERED)
7083 {
7084 id = shape - MSHAPE_NUMBERED;
7085 if (id >= GDK_LAST_CURSOR)
7086 id = GDK_LEFT_PTR;
7087 else
Bram Moolenaar30613902019-12-01 22:11:18 +01007088 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 }
K.Takataeeec2542021-06-02 13:28:16 +02007090 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007092 else
7093 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007095 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007096 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007097# if GTK_CHECK_VERSION(3,0,0)
7098 g_object_unref(G_OBJECT(c));
7099# else
Bram Moolenaar30613902019-12-01 22:11:18 +01007100 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01007101# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 }
7103 if (shape != MSHAPE_HIDE)
7104 last_shape = shape;
7105}
Bram Moolenaar30613902019-12-01 22:11:18 +01007106#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107
7108
7109#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7110/*
7111 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7112 * scaled down if the current font is not big enough, or scaled up if the image
7113 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7114 * will be cut off if the current font is not big enough, or centered if it's
7115 * too small.
7116 */
7117# define SIGN_WIDTH (2 * gui.char_width)
7118# define SIGN_HEIGHT (gui.char_height)
7119# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7120
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 void
7122gui_mch_drawsign(int row, int col, int typenr)
7123{
7124 GdkPixbuf *sign;
7125
7126 sign = (GdkPixbuf *)sign_get_image(typenr);
7127
Bram Moolenaar98921892016-02-23 17:14:37 +01007128 if (sign != NULL && gui.drawarea != NULL
7129 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130 {
7131 int width;
7132 int height;
7133 int xoffset;
7134 int yoffset;
7135 int need_scale;
7136
7137 width = gdk_pixbuf_get_width(sign);
7138 height = gdk_pixbuf_get_height(sign);
7139 /*
7140 * Decide whether we need to scale. Allow one pixel of border
7141 * width to be cut off, in order to avoid excessive scaling for
7142 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007143 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 */
7145 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007146 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 || (width < 3 * SIGN_WIDTH / 4
7148 && height < 3 * SIGN_HEIGHT / 4));
7149 if (need_scale)
7150 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007151 double aspect;
7152 int w = width;
7153 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154
Bram Moolenaar30613902019-12-01 22:11:18 +01007155 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 aspect = (double)height / (double)width;
7157 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7158 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007159 if (((double)(MAX(height, SIGN_HEIGHT)) /
7160 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7161 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007162 // Change the aspect ratio by at most 15% to fill the
7163 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007164 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7165 height = MIN(height, SIGN_HEIGHT);
7166 }
7167 else
7168 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007170 if (w == width && h == height)
7171 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007172 // no change in dimensions; don't decrease reference counter
7173 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007174 need_scale = FALSE;
7175 }
7176 else
7177 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007178 // This doesn't seem to be worth caching, and doing so would
7179 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007180 sign = gdk_pixbuf_scale_simple(sign, width, height,
7181 GDK_INTERP_BILINEAR);
7182 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01007183 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185 }
7186
Bram Moolenaar30613902019-12-01 22:11:18 +01007187 // The origin is the upper-left corner of the pixmap. Therefore
7188 // these offset may become negative if the pixmap is smaller than
7189 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 xoffset = (width - SIGN_WIDTH) / 2;
7191 yoffset = (height - SIGN_HEIGHT) / 2;
7192
Bram Moolenaar98921892016-02-23 17:14:37 +01007193# if GTK_CHECK_VERSION(3,0,0)
7194 {
7195 cairo_t *cr;
7196 cairo_surface_t *bg_surf;
7197 cairo_t *bg_cr;
7198 cairo_surface_t *sign_surf;
7199 cairo_t *sign_cr;
7200
7201 cr = cairo_create(gui.surface);
7202
7203 bg_surf = cairo_surface_create_similar(gui.surface,
7204 cairo_surface_get_content(gui.surface),
7205 SIGN_WIDTH, SIGN_HEIGHT);
7206 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007207 cairo_set_source_rgba(bg_cr,
7208 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7209 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007210 cairo_paint(bg_cr);
7211
7212 sign_surf = cairo_surface_create_similar(gui.surface,
7213 cairo_surface_get_content(gui.surface),
7214 SIGN_WIDTH, SIGN_HEIGHT);
7215 sign_cr = cairo_create(sign_surf);
7216 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7217 cairo_paint(sign_cr);
7218
7219 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7220 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7221 cairo_paint(sign_cr);
7222
7223 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7224 cairo_paint(cr);
7225
7226 cairo_destroy(sign_cr);
7227 cairo_surface_destroy(sign_surf);
7228 cairo_destroy(bg_cr);
7229 cairo_surface_destroy(bg_surf);
7230 cairo_destroy(cr);
7231
presuku9459b8d2021-11-16 20:03:56 +00007232 gtk_widget_queue_draw_area(gui.drawarea,
7233 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007234
7235 }
Bram Moolenaar30613902019-12-01 22:11:18 +01007236# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7238
7239 gdk_draw_rectangle(gui.drawarea->window,
7240 gui.text_gc,
7241 TRUE,
7242 FILL_X(col),
7243 FILL_Y(row),
7244 SIGN_WIDTH,
7245 SIGN_HEIGHT);
7246
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 gdk_pixbuf_render_to_drawable_alpha(sign,
7248 gui.drawarea->window,
7249 MAX(0, xoffset),
7250 MAX(0, yoffset),
7251 FILL_X(col) - MIN(0, xoffset),
7252 FILL_Y(row) - MIN(0, yoffset),
7253 MIN(width, SIGN_WIDTH),
7254 MIN(height, SIGN_HEIGHT),
7255 GDK_PIXBUF_ALPHA_BILEVEL,
7256 127,
7257 GDK_RGB_DITHER_NORMAL,
7258 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007259# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 if (need_scale)
7261 g_object_unref(sign);
7262 }
7263}
7264
7265 void *
7266gui_mch_register_sign(char_u *signfile)
7267{
7268 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7269 {
7270 GdkPixbuf *sign;
7271 GError *error = NULL;
7272 char_u *message;
7273
7274 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7275
7276 if (error == NULL)
7277 return sign;
7278
7279 message = (char_u *)error->message;
7280
7281 if (message != NULL && input_conv.vc_type != CONV_NONE)
7282 message = string_convert(&input_conv, message, NULL);
7283
7284 if (message != NULL)
7285 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007286 // The error message is already translated and will be more
7287 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007288 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289
7290 if (input_conv.vc_type != CONV_NONE)
7291 vim_free(message);
7292 }
7293 g_error_free(error);
7294 }
7295
7296 return NULL;
7297}
7298
7299 void
7300gui_mch_destroy_sign(void *sign)
7301{
7302 if (sign != NULL)
7303 g_object_unref(sign);
7304}
7305
Bram Moolenaar30613902019-12-01 22:11:18 +01007306#endif // FEAT_SIGN_ICONS