blob: fd582dd799b42676e0e0db9718c73c578f8cbfc0 [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
Anton Sharonov4dd92522022-07-04 10:47:31 +01001249 // Belgian Ctrl+[ workaround
1250 if (len == 0 && key_sym == GDK_KEY_dead_circumflex)
1251 {
1252 string[0] = CSI;
1253 string[1] = KS_MODIFIER;
1254 string[2] = MOD_MASK_CTRL;
1255 string[3] = '[';
1256 len = 4;
1257 add_to_input_buf(string, len);
1258 // workaround has to return here, otherwise our fake string[] entries
1259 // are confusing code downstream
1260 return TRUE;
1261 }
1262
Bram Moolenaar30613902019-12-01 22:11:18 +01001263 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 return TRUE;
1265
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001266 // For some keys a shift modifier is translated into another key code.
1267 if (len == -3)
1268 key = TO_SPECIAL(string[1], string[2]);
1269 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001270 {
1271 string[len] = NUL;
1272 key = mb_ptr2char(string);
1273 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001274
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001275 // Handle modifiers.
1276 modifiers = modifiers_gdk2vim(state);
1277
1278 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001279 key = simplify_key(key, &modifiers);
1280 if (key == CSI)
1281 key = K_CSI;
1282 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001284 string[0] = CSI;
1285 string[1] = K_SECOND(key);
1286 string[2] = K_THIRD(key);
1287 len = 3;
1288 }
1289 else
1290 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001291 // Some keys need adjustment when the Ctrl modifier is used.
1292 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001293
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001294 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001295 modifiers = may_remove_shift_modifier(modifiers, key);
1296
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001297 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001300 if (modifiers != 0)
1301 {
1302 string2[0] = CSI;
1303 string2[1] = KS_MODIFIER;
1304 string2[2] = modifiers;
1305 add_to_input_buf(string2, 3);
Anton Sharonov4dd92522022-07-04 10:47:31 +01001306 if (modifiers == 0x4)
1307 ctrl_prefix_added = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 }
1309
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001310 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001312 int int_ch = check_for_interrupt(key, modifiers);
1313
1314 if (int_ch != NUL)
1315 {
1316 trash_input_buf();
1317 string[0] = int_ch;
1318 len = 1;
1319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 }
1321
Anton Sharonov4dd92522022-07-04 10:47:31 +01001322 // workaround for German keyboard, where instead of '[' char we have code
1323 // sequence of bytes 195, 188 (UTF-8 for "u-umlaut")
1324 if (ctrl_prefix_added && len == 2
1325 && ((int)string[0]) == 195
1326 && ((int)string[1]) == 188)
1327 {
1328 string[0] = 91; // ASCII('[')
1329 len = 1;
1330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 add_to_input_buf(string, len);
1332
Bram Moolenaar30613902019-12-01 22:11:18 +01001333 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 if (p_mh)
1335 gui_mch_mousehide(TRUE);
1336
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 return TRUE;
1338}
1339
Bram Moolenaar98921892016-02-23 17:14:37 +01001340#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001342key_release_event(GtkWidget *widget UNUSED,
Bram Moolenaar0a748d92022-04-28 15:39:08 +01001343 GdkEventKey *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001344 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345{
Bram Moolenaar98921892016-02-23 17:14:37 +01001346# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001347 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 /*
1349 * GTK+ 2 input methods may do fancy stuff on key release events too.
1350 * With the default IM for instance, you can enter any UCS code point
1351 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1352 */
1353 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001354# else
1355 return TRUE;
1356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357}
1358#endif
1359
1360
Bram Moolenaar30613902019-12-01 22:11:18 +01001361/////////////////////////////////////////////////////////////////////////////
1362// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363
Bram Moolenaar30613902019-12-01 22:11:18 +01001364// Remember when clip_lose_selection was called from here, we must not call
1365// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001366static int in_selection_clear_event = FALSE;
1367
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001369selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001371 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001373 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 if (event->selection == clip_plus.gtk_sel_atom)
1375 clip_lose_selection(&clip_plus);
1376 else
1377 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001378 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 return TRUE;
1381}
1382
Bram Moolenaar30613902019-12-01 22:11:18 +01001383#define RS_NONE 0 // selection_received_cb() not called yet
1384#define RS_OK 1 // selection_received_cb() called and OK
1385#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386static int received_selection = RS_NONE;
1387
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001389selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001391 guint time_ UNUSED,
1392 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001394 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 char_u *text;
1396 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001399 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
Bram Moolenaar98921892016-02-23 17:14:37 +01001401 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 cbd = &clip_plus;
1403 else
1404 cbd = &clip_star;
1405
Bram Moolenaar98921892016-02-23 17:14:37 +01001406 text = (char_u *)gtk_selection_data_get_data(data);
1407 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
1409 if (text == NULL || len <= 0)
1410 {
1411 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001412 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 return;
1415 }
1416
Bram Moolenaar98921892016-02-23 17:14:37 +01001417 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 {
1419 motion_type = *text++;
1420 --len;
1421 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001422 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 {
1424 char_u *enc;
1425 vimconv_T conv;
1426
1427 motion_type = *text++;
1428 --len;
1429
1430 enc = text;
1431 text += STRLEN(text) + 1;
1432 len -= text - enc;
1433
Bram Moolenaar30613902019-12-01 22:11:18 +01001434 // If the encoding of the text is different from 'encoding', attempt
1435 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 conv.vc_type = CONV_NONE;
1437 convert_setup(&conv, enc, p_enc);
1438 if (conv.vc_type != CONV_NONE)
1439 {
1440 tmpbuf = string_convert(&conv, text, &len);
1441 if (tmpbuf != NULL)
1442 text = tmpbuf;
1443 convert_setup(&conv, NULL, NULL);
1444 }
1445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446
Bram Moolenaar30613902019-12-01 22:11:18 +01001447 // gtk_selection_data_get_text() handles all the nasty details
1448 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 else
1450 {
1451 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1452 if (tmpbuf_utf8 != NULL)
1453 {
1454 len = STRLEN(tmpbuf_utf8);
1455 if (input_conv.vc_type != CONV_NONE)
1456 {
1457 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1458 if (tmpbuf != NULL)
1459 text = tmpbuf;
1460 }
1461 else
1462 text = tmpbuf_utf8;
1463 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001464 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1465 {
1466 vimconv_T conv;
1467
Bram Moolenaar30613902019-12-01 22:11:18 +01001468 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001469 conv.vc_type = CONV_NONE;
1470 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1471
1472 if (conv.vc_type != CONV_NONE)
1473 {
1474 text += 2;
1475 len -= 2;
1476 tmpbuf = string_convert(&conv, text, &len);
1477 convert_setup(&conv, NULL, NULL);
1478 }
1479 if (tmpbuf != NULL)
1480 text = tmpbuf;
1481 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483
Bram Moolenaar30613902019-12-01 22:11:18 +01001484 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001485 while (len > 0 && text[len - 1] == NUL)
1486 --len;
1487
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 clip_yank_selection(motion_type, text, (long)len, cbd);
1489 received_selection = RS_OK;
1490 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492}
1493
1494/*
1495 * Prepare our selection data for passing it to the external selection
1496 * client.
1497 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001499selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 GtkSelectionData *selection_data,
1501 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001502 guint time_ UNUSED,
1503 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504{
1505 char_u *string;
1506 char_u *tmpbuf;
1507 long_u tmplen;
1508 int length;
1509 int motion_type;
1510 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001511 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512
Bram Moolenaar98921892016-02-23 17:14:37 +01001513 if (gtk_selection_data_get_selection(selection_data)
1514 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 cbd = &clip_plus;
1516 else
1517 cbd = &clip_star;
1518
1519 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001520 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521
1522 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001523 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 && info != (guint)TARGET_UTF8_STRING
1525 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 && info != (guint)TARGET_VIM
1527 && info != (guint)TARGET_COMPOUND_TEXT
1528 && info != (guint)TARGET_TEXT)
1529 return;
1530
Bram Moolenaar30613902019-12-01 22:11:18 +01001531 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 clip_get_selection(cbd);
1533
1534 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1535 if (motion_type < 0 || string == NULL)
1536 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001537 // Due to int arguments we can't handle more than G_MAXINT. Also
1538 // reserve one extra byte for NUL or the motion type; just in case.
1539 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1541
1542 if (info == (guint)TARGET_VIM)
1543 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001544 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (tmpbuf != NULL)
1546 {
1547 tmpbuf[0] = motion_type;
1548 mch_memmove(tmpbuf + 1, string, (size_t)length);
1549 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001550 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 ++length;
1552 vim_free(string);
1553 string = tmpbuf;
1554 type = vim_atom;
1555 }
1556
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001557 else if (info == (guint)TARGET_HTML)
1558 {
1559 vimconv_T conv;
1560
Bram Moolenaar30613902019-12-01 22:11:18 +01001561 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001562 conv.vc_type = CONV_NONE;
1563 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1564 if (conv.vc_type != CONV_NONE)
1565 {
1566 tmpbuf = string_convert(&conv, string, &length);
1567 convert_setup(&conv, NULL, NULL);
1568 vim_free(string);
1569 string = tmpbuf;
1570 }
1571
Bram Moolenaar30613902019-12-01 22:11:18 +01001572 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001573 if (string != NULL)
1574 {
1575 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001576 if (tmpbuf != NULL)
1577 {
1578 tmpbuf[0] = 0xff;
1579 tmpbuf[1] = 0xfe;
1580 mch_memmove(tmpbuf + 2, string, (size_t)length);
1581 vim_free(string);
1582 string = tmpbuf;
1583 length += 2;
1584 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001585
Bram Moolenaar98921892016-02-23 17:14:37 +01001586#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001587 // Looks redundant even for GTK2 because these values are
1588 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001589 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001590 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001591#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001592 gtk_selection_data_set(selection_data, html_atom, 16,
1593 string, length);
1594 vim_free(string);
1595 }
1596 return;
1597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 else if (info == (guint)TARGET_VIMENC)
1599 {
1600 int l = STRLEN(p_enc);
1601
Bram Moolenaar30613902019-12-01 22:11:18 +01001602 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001603 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (tmpbuf != NULL)
1605 {
1606 tmpbuf[0] = motion_type;
1607 STRCPY(tmpbuf + 1, p_enc);
1608 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001609 length += l + 2;
1610 vim_free(string);
1611 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 type = vimenc_atom;
1614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615
Bram Moolenaar30613902019-12-01 22:11:18 +01001616 // gtk_selection_data_set_text() handles everything for us. This is
1617 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 else
1619 {
1620 if (output_conv.vc_type != CONV_NONE)
1621 {
1622 tmpbuf = string_convert(&output_conv, string, &length);
1623 vim_free(string);
1624 if (tmpbuf == NULL)
1625 return;
1626 string = tmpbuf;
1627 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001628 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1630 {
1631 gtk_selection_data_set_text(selection_data,
1632 (const char *)string, length);
1633 }
1634 vim_free(string);
1635 return;
1636 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
1638 if (string != NULL)
1639 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001640#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001641 // Looks redundant even for GTK2 because these values are
1642 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001644 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 gtk_selection_data_set(selection_data, type, 8, string, length);
1647 vim_free(string);
1648 }
1649}
1650
1651/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001652 * Check if the GUI can be started. Called before gvimrc is sourced and
1653 * before fork().
1654 * Return OK or FAIL.
1655 */
1656 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001657gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001658{
1659 char_u *p;
1660
Bram Moolenaar30613902019-12-01 22:11:18 +01001661 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001662 p = mch_getenv((char_u *)"DISPLAY");
1663 if (p == NULL || *p == NUL)
1664 {
1665 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001666 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001667 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001668 return FAIL;
1669 }
1670 return OK;
1671}
1672
1673/*
1674 * Check if the GUI can be started. Called before gvimrc is sourced but after
1675 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 * Return OK or FAIL.
1677 */
1678 int
1679gui_mch_init_check(void)
1680{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001681#ifdef USE_GRESOURCE
1682 static int res_registered = FALSE;
1683
1684 if (!res_registered)
1685 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001686 // Call this function in the GUI process; otherwise, the resources
1687 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001688 res_registered = TRUE;
1689 gui_gtk_register_resource();
1690 }
1691#endif
1692
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001693#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001694 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1695 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001696 gdk_set_allowed_backends ("x11");
1697#endif
1698
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699#ifdef FEAT_GUI_GNOME
1700 if (gtk_socket_id == 0)
1701 using_gnome = 1;
1702#endif
1703
Bram Moolenaar30613902019-12-01 22:11:18 +01001704 // This defaults to argv[0], but we want it to match the name of the
1705 // shipped gvim.desktop so that Vim's windows can be associated with this
1706 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001707 g_set_prgname("gvim");
1708
Bram Moolenaar30613902019-12-01 22:11:18 +01001709 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 if (!gtk_init_check(&gui_argc, &gui_argv))
1711 {
1712 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001713 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 return FAIL;
1715 }
1716
1717 return OK;
1718}
1719
Bram Moolenaar30613902019-12-01 22:11:18 +01001720/////////////////////////////////////////////////////////////////////////////
1721// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
1723
1724static guint mouse_click_timer = 0;
1725static int mouse_timed_out = TRUE;
1726
1727/*
1728 * Timer used to recognize multiple clicks of the mouse button
1729 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001730 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731mouse_click_timer_cb(gpointer data)
1732{
Bram Moolenaar30613902019-12-01 22:11:18 +01001733 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 int *timed_out = (int *) data;
1735
1736 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001737 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738}
1739
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001740static guint motion_repeat_timer = 0;
1741static int motion_repeat_offset = FALSE;
1742static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743
1744 static void
1745process_motion_notify(int x, int y, GdkModifierType state)
1746{
1747 int button;
1748 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001749 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
Chris Daltonee93e322021-11-23 12:27:48 +00001751 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1752 state |= dragging_button_state;
1753
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1755 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1756 GDK_BUTTON5_MASK))
1757 ? MOUSE_DRAG : ' ';
1758
Bram Moolenaar30613902019-12-01 22:11:18 +01001759 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 gui_mch_mousehide(FALSE);
1761
Bram Moolenaar30613902019-12-01 22:11:18 +01001762 // Just moving the rodent above the drawing area without any button
1763 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 if (button != MOUSE_DRAG)
1765 {
1766 gui_mouse_moved(x, y);
1767 return;
1768 }
1769
Bram Moolenaar30613902019-12-01 22:11:18 +01001770 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001771 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772
Bram Moolenaar30613902019-12-01 22:11:18 +01001773 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1775
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 /*
1777 * Auto repeat timer handling.
1778 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001779 gtk_widget_get_allocation(gui.drawarea, &allocation);
1780
1781 if (x < 0 || y < 0
1782 || x >= allocation.width
1783 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 {
1785
1786 int dx;
1787 int dy;
1788 int offshoot;
1789 int delay = 10;
1790
Bram Moolenaar30613902019-12-01 22:11:18 +01001791 // Calculate the maximal distance of the cursor from the drawing area.
1792 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001793 dx = x < 0 ? -x : x - allocation.width;
1794 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
1796 offshoot = dx > dy ? dx : dy;
1797
Bram Moolenaar30613902019-12-01 22:11:18 +01001798 // Make a linearly decaying timer delay with a threshold of 5 at a
1799 // distance of 127 pixels from the main window.
1800 //
1801 // One could think endlessly about the most ergonomic variant here.
1802 // For example it could make sense to calculate the distance from the
1803 // drags start instead...
1804 //
1805 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (offshoot > 127)
1807 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001808 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 delay = 5;
1810 }
1811 else
1812 {
1813 delay = (130 * (127 - offshoot)) / 127 + 5;
1814 }
1815
Bram Moolenaar30613902019-12-01 22:11:18 +01001816 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001818 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1819 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 }
1821}
1822
Bram Moolenaar98921892016-02-23 17:14:37 +01001823#if GTK_CHECK_VERSION(3,0,0)
1824 static GdkDevice *
1825gui_gtk_get_pointer_device(GtkWidget *widget)
1826{
1827 GdkWindow * const win = gtk_widget_get_window(widget);
1828 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001829# if GTK_CHECK_VERSION(3,20,0)
1830 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1831 return gdk_seat_get_pointer(seat);
1832# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001833 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1834 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001835# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001836}
1837
1838 static GdkWindow *
1839gui_gtk_get_pointer(GtkWidget *widget,
1840 gint *x,
1841 gint *y,
1842 GdkModifierType *state)
1843{
1844 GdkWindow * const win = gtk_widget_get_window(widget);
1845 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1846 return gdk_window_get_device_position(win, dev , x, y, state);
1847}
1848
Bram Moolenaar2369c152016-03-04 23:08:25 +01001849# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001850 static GdkWindow *
1851gui_gtk_window_at_position(GtkWidget *widget,
1852 gint *x,
1853 gint *y)
1854{
1855 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1856 return gdk_device_get_window_at_position(dev, x, y);
1857}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001858# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001859#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001860# define gui_gtk_get_pointer(wid, x, y, s) \
1861 gdk_window_get_pointer((wid)->window, x, y, s)
1862# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001863#endif
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865/*
1866 * Timer used to recognize multiple clicks of the mouse button.
1867 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001868 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001869motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870{
1871 int x;
1872 int y;
1873 GdkModifierType state;
1874
Bram Moolenaar98921892016-02-23 17:14:37 +01001875 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876
1877 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1878 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1879 GDK_BUTTON5_MASK)))
1880 {
1881 motion_repeat_timer = 0;
1882 return FALSE;
1883 }
1884
Bram Moolenaar30613902019-12-01 22:11:18 +01001885 // If there already is a mouse click in the input buffer, wait another
1886 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 if (vim_used_in_input_buf() > 10)
1888 return TRUE;
1889
1890 motion_repeat_timer = 0;
1891
1892 /*
1893 * Fake a motion event.
1894 * Trick: Pretend the mouse moved to the next character on every other
1895 * event, otherwise drag events will be discarded, because they are still
1896 * in the same character.
1897 */
1898 if (motion_repeat_offset)
1899 x += gui.char_width;
1900
1901 motion_repeat_offset = !motion_repeat_offset;
1902 process_motion_notify(x, y, state);
1903
Bram Moolenaar30613902019-12-01 22:11:18 +01001904 // Don't happen again. We will get reinstalled in the synthetic event
1905 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 return FALSE;
1907}
1908
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001910motion_notify_event(GtkWidget *widget,
1911 GdkEventMotion *event,
1912 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913{
1914 if (event->is_hint)
1915 {
1916 int x;
1917 int y;
1918 GdkModifierType state;
1919
Bram Moolenaar98921892016-02-23 17:14:37 +01001920 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 process_motion_notify(x, y, state);
1922 }
1923 else
1924 {
1925 process_motion_notify((int)event->x, (int)event->y,
1926 (GdkModifierType)event->state);
1927 }
1928
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930}
1931
1932
1933/*
1934 * Mouse button handling. Note please that we are capturing multiple click's
1935 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1936 * This is due to the way the generic VIM code is recognizing multiple clicks.
1937 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001939button_press_event(GtkWidget *widget,
1940 GdkEventButton *event,
1941 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942{
1943 int button;
1944 int repeated_click = FALSE;
1945 int x, y;
1946 int_u vim_modifiers;
1947
Bram Moolenaar20892c12011-06-26 04:49:00 +02001948 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001949
Bram Moolenaar30613902019-12-01 22:11:18 +01001950 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001951 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 gtk_widget_grab_focus(widget);
1953
1954 /*
1955 * Don't let additional events about multiple clicks send by GTK to us
1956 * after the initial button press event confuse us.
1957 */
1958 if (event->type != GDK_BUTTON_PRESS)
1959 return FALSE;
1960
1961 x = event->x;
1962 y = event->y;
1963
Bram Moolenaar30613902019-12-01 22:11:18 +01001964 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 if (!mouse_timed_out && mouse_click_timer)
1966 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001967 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 mouse_click_timer = 0;
1969 repeated_click = TRUE;
1970 }
1971
1972 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001973 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1974 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976 switch (event->button)
1977 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001978 // Keep in sync with gui_x11.c.
1979 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001980 case 1:
1981 button = MOUSE_LEFT;
1982 // needed for touch-drag
1983 dragging_button_state |= GDK_BUTTON1_MASK;
1984 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001985 case 2: button = MOUSE_MIDDLE; break;
1986 case 3: button = MOUSE_RIGHT; break;
1987 case 8: button = MOUSE_X1; break;
1988 case 9: button = MOUSE_X2; break;
1989 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001990 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 }
1992
1993#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001994 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 if (im_is_preediting())
1996 xim_reset();
1997#endif
1998
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001999 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000
2001 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003 return TRUE;
2004}
2005
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002007 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002010scroll_event(GtkWidget *widget,
2011 GdkEventScroll *event,
2012 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013{
2014 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002015 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016
Bram Moolenaar98921892016-02-23 17:14:37 +01002017 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 gtk_widget_grab_focus(widget);
2019
2020 switch (event->direction)
2021 {
2022 case GDK_SCROLL_UP:
2023 button = MOUSE_4;
2024 break;
2025 case GDK_SCROLL_DOWN:
2026 button = MOUSE_5;
2027 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002028 case GDK_SCROLL_LEFT:
2029 button = MOUSE_7;
2030 break;
2031 case GDK_SCROLL_RIGHT:
2032 button = MOUSE_6;
2033 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01002034 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 return FALSE;
2036 }
2037
2038# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002039 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if (im_is_preediting())
2041 xim_reset();
2042# endif
2043
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002044 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045
2046 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2047 FALSE, vim_modifiers);
2048
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 return TRUE;
2050}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002054button_release_event(GtkWidget *widget UNUSED,
2055 GdkEventButton *event,
2056 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057{
2058 int x, y;
2059 int_u vim_modifiers;
2060
Bram Moolenaar20892c12011-06-26 04:49:00 +02002061 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002062
Bram Moolenaar30613902019-12-01 22:11:18 +01002063 // Remove any motion "machine gun" timers used for automatic further
2064 // extension of allocation areas if outside of the applications window
2065 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 if (motion_repeat_timer)
2067 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002068 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 motion_repeat_timer = 0;
2070 }
2071
2072 x = event->x;
2073 y = event->y;
2074
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002075 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076
2077 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078
Chris Daltonee93e322021-11-23 12:27:48 +00002079 switch (event->button)
2080 {
2081 case 1: // MOUSE_LEFT
2082 dragging_button_state = 0;
2083 break;
2084 }
2085
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 return TRUE;
2087}
2088
2089
2090#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002091/////////////////////////////////////////////////////////////////////////////
2092// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093
2094/*
2095 * Count how many items there may be and separate them with a NUL.
2096 * Apparently the items are separated with \r\n. This is not documented,
2097 * thus be careful not to go past the end. Also allow separation with
2098 * NUL characters.
2099 */
2100 static int
2101count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2102{
2103 int i;
2104 char_u *p = out;
2105 int count = 0;
2106
2107 for (i = 0; i < len; ++i)
2108 {
2109 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2110 {
2111 if (p > out && p[-1] != NUL)
2112 {
2113 ++count;
2114 *p++ = NUL;
2115 }
2116 }
2117 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2118 {
2119 *p++ = hexhex2nr(raw + i + 1);
2120 i += 2;
2121 }
2122 else
2123 *p++ = raw[i];
2124 }
2125 if (p > out && p[-1] != NUL)
2126 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002127 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 ++count;
2129 }
2130 return count;
2131}
2132
2133/*
2134 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2135 * this process, URI which protocol is not "file:" are removed. Return
2136 * length of array (less than "max").
2137 */
2138 static int
2139filter_uri_list(char_u **outlist, int max, char_u *src)
2140{
2141 int i, j;
2142
2143 for (i = j = 0; i < max; ++i)
2144 {
2145 outlist[i] = NULL;
2146 if (STRNCMP(src, "file:", 5) == 0)
2147 {
2148 src += 5;
2149 if (STRNCMP(src, "//localhost", 11) == 0)
2150 src += 11;
2151 while (src[0] == '/' && src[1] == '/')
2152 ++src;
2153 outlist[j++] = vim_strsave(src);
2154 }
2155 src += STRLEN(src) + 1;
2156 }
2157 return j;
2158}
2159
2160 static char_u **
2161parse_uri_list(int *count, char_u *data, int len)
2162{
2163 int n = 0;
2164 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002165 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002167 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 {
2169 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002170 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 n = filter_uri_list(array, n, tmp);
2172 }
2173 vim_free(tmp);
2174 *count = n;
2175 return array;
2176}
2177
2178 static void
2179drag_handle_uri_list(GdkDragContext *context,
2180 GtkSelectionData *data,
2181 guint time_,
2182 GdkModifierType state,
2183 gint x,
2184 gint y)
2185{
2186 char_u **fnames;
2187 int nfiles = 0;
2188
Bram Moolenaar98921892016-02-23 17:14:37 +01002189 fnames = parse_uri_list(&nfiles,
2190 (char_u *)gtk_selection_data_get_data(data),
2191 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192
2193 if (fnames != NULL && nfiles > 0)
2194 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002195 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002199 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200
2201 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2202 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002203 else
2204 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205}
2206
2207 static void
2208drag_handle_text(GdkDragContext *context,
2209 GtkSelectionData *data,
2210 guint time_,
2211 GdkModifierType state)
2212{
2213 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2214 char_u *text;
2215 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217
Bram Moolenaar98921892016-02-23 17:14:37 +01002218 text = (char_u *)gtk_selection_data_get_data(data);
2219 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220
Bram Moolenaar98921892016-02-23 17:14:37 +01002221 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (input_conv.vc_type != CONV_NONE)
2224 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 if (tmpbuf != NULL)
2226 text = tmpbuf;
2227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228
2229 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002230 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002233 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 if (dropkey[2] != 0)
2236 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2237 else
2238 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239}
2240
2241/*
2242 * DND receiver.
2243 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 static void
2245drag_data_received_cb(GtkWidget *widget,
2246 GdkDragContext *context,
2247 gint x,
2248 gint y,
2249 GtkSelectionData *data,
2250 guint info,
2251 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002252 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253{
2254 GdkModifierType state;
2255
Bram Moolenaar30613902019-12-01 22:11:18 +01002256 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002257 const guchar * const data_data = gtk_selection_data_get_data(data);
2258 const gint data_length = gtk_selection_data_get_length(data);
2259 const gint data_format = gtk_selection_data_get_format(data);
2260
2261 if (data_data == NULL
2262 || data_length <= 0
2263 || data_format != 8
2264 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 {
2266 gtk_drag_finish(context, FALSE, FALSE, time_);
2267 return;
2268 }
2269
Bram Moolenaar30613902019-12-01 22:11:18 +01002270 // Get the current modifier state for proper distinguishment between
2271 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002272 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273
Bram Moolenaar30613902019-12-01 22:11:18 +01002274 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 if (info == (guint)TARGET_TEXT_URI_LIST)
2276 drag_handle_uri_list(context, data, time_, state, x, y);
2277 else
2278 drag_handle_text(context, data, time_, state);
2279
2280}
Bram Moolenaar30613902019-12-01 22:11:18 +01002281#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
2283
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002284#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285/*
2286 * GnomeClient interact callback. Check for unsaved buffers that cannot
2287 * be abandoned and pop up a dialog asking the user for confirmation if
2288 * necessary.
2289 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002291sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002293 GnomeDialogType type UNUSED,
2294 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295{
2296 cmdmod_T save_cmdmod;
2297 gboolean shutdown_cancelled;
2298
2299 save_cmdmod = cmdmod;
2300
2301# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002302 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303# endif
2304# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002305 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306# endif
2307 /*
2308 * If there are changed buffers, present the user with
2309 * a dialog if possible, otherwise give an error message.
2310 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002311 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312
2313 exiting = FALSE;
2314 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002315 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 out_flush();
2317 /*
2318 * If the user hit the [Cancel] button the whole shutdown
2319 * will be cancelled. Wow, quite powerful feature (:
2320 */
2321 gnome_interaction_key_return(key, shutdown_cancelled);
2322}
2323
2324/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 * "save_yourself" signal handler. Initiate an interaction to ask the user
2326 * for confirmation if necessary. Save the current editing session and tell
2327 * the session manager how to restart Vim.
2328 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 static gboolean
2330sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002331 gint phase UNUSED,
2332 GnomeSaveStyle save_style UNUSED,
2333 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002335 gboolean fast UNUSED,
2336 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337{
2338 static const char suffix[] = "-session.vim";
2339 char *session_file;
2340 unsigned int len;
2341 gboolean success;
2342
Bram Moolenaar30613902019-12-01 22:11:18 +01002343 // Always request an interaction if possible. check_changed_any()
2344 // won't actually show a dialog unless any buffers have been modified.
2345 // There doesn't seem to be an obvious way to check that without
2346 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 if (interact_style == GNOME_INTERACT_ANY)
2348 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2349 &sm_client_check_changed_any,
2350 NULL);
2351 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002352 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353
Bram Moolenaar30613902019-12-01 22:11:18 +01002354 // The path is unique for each session save. We do neither know nor care
2355 // which session script will actually be used later. This decision is in
2356 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 session_file = gnome_config_get_real_path(
2358 gnome_client_get_config_prefix(client));
2359 len = strlen(session_file);
2360
2361 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002362 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363
2364 session_file = g_renew(char, session_file, len + sizeof(suffix));
2365 memcpy(session_file + len, suffix, sizeof(suffix));
2366
2367 success = write_session_file((char_u *)session_file);
2368
2369 if (success)
2370 {
2371 const char *argv[8];
2372 int i;
2373
Bram Moolenaar30613902019-12-01 22:11:18 +01002374 // Tell the session manager how to wipe out the stored session data.
2375 // This isn't as dangerous as it looks, don't worry :) session_file
2376 // is a unique absolute filename. Usually it'll be something like
2377 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 i = 0;
2379 argv[i++] = "rm";
2380 argv[i++] = session_file;
2381 argv[i] = NULL;
2382
2383 gnome_client_set_discard_command(client, i, (char **)argv);
2384
Bram Moolenaar30613902019-12-01 22:11:18 +01002385 // Tell the session manager how to restore the just saved session.
2386 // This is easily done thanks to Vim's -S option. Pass the -f flag
2387 // since there's no need to fork -- it might even cause confusion.
2388 // Also pass the window role to give the WM something to match on.
2389 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 i = 0;
2391 argv[i++] = restart_command;
2392 argv[i++] = "-f";
2393 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 argv[i++] = "--role";
2395 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 argv[i++] = "-S";
2397 argv[i++] = session_file;
2398 argv[i] = NULL;
2399
2400 gnome_client_set_restart_command(client, i, (char **)argv);
2401 gnome_client_set_clone_command(client, 0, NULL);
2402 }
2403
2404 g_free(session_file);
2405
2406 return success;
2407}
2408
2409/*
2410 * Called when the session manager wants us to die. There isn't much to save
2411 * here since "save_yourself" has been emitted before (unless serious trouble
2412 * is happening).
2413 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002415sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416{
Bram Moolenaar30613902019-12-01 22:11:18 +01002417 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 full_screen = FALSE;
2419
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002420 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002421 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002422 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 preserve_exit();
2424}
2425
2426/*
2427 * Connect our signal handlers to be notified on session save and shutdown.
2428 */
2429 static void
2430setup_save_yourself(void)
2431{
2432 GnomeClient *client;
2433
2434 client = gnome_master_client();
2435
2436 if (client != NULL)
2437 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002438 // Must use the deprecated gtk_signal_connect() for compatibility
2439 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2441 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2442 gtk_signal_connect(GTK_OBJECT(client), "die",
2443 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2444 }
2445}
2446
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002447#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448
2449# ifdef USE_XSMP
2450/*
2451 * GTK tells us that XSMP needs attention
2452 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002454local_xsmp_handle_requests(
2455 GIOChannel *source UNUSED,
2456 GIOCondition condition,
2457 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458{
2459 if (condition == G_IO_IN)
2460 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002461 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 if (xsmp_handle_requests() == FAIL)
2463 g_io_channel_unref((GIOChannel *)data);
2464 return TRUE;
2465 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002466 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 g_io_channel_unref((GIOChannel *)data);
2468 xsmp_close();
2469 return TRUE;
2470}
Bram Moolenaar30613902019-12-01 22:11:18 +01002471# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
2473/*
2474 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2475 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2476 */
2477 static void
2478setup_save_yourself(void)
2479{
2480 Atom *existing_atoms = NULL;
2481 int count = 0;
2482
Bram Moolenaar98921892016-02-23 17:14:37 +01002483# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 if (xsmp_icefd != -1)
2485 {
2486 /*
2487 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2488 * set up GTK IO monitor
2489 */
2490 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2491
2492 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2493 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002494 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 }
2496 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002497# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002499 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
Bram Moolenaar30613902019-12-01 22:11:18 +01002501 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002502 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2503
2504 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2505 GDK_WINDOW_XID(mainwin_win),
2506 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 {
2508 Atom *new_atoms;
2509 Atom save_yourself_xatom;
2510 int i;
2511
2512 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2513
Bram Moolenaar30613902019-12-01 22:11:18 +01002514 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 for (i = 0; i < count; ++i)
2516 if (existing_atoms[i] == save_yourself_xatom)
2517 break;
2518
2519 if (i == count)
2520 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002521 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002522 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (new_atoms != NULL)
2524 {
2525 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2526 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002527 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2528 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 new_atoms, count + 1);
2530 vim_free(new_atoms);
2531 }
2532 }
2533 XFree(existing_atoms);
2534 }
2535 }
2536}
2537
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538/*
2539 * Installing a global event filter seems to be the only way to catch
2540 * client messages of type WM_PROTOCOLS without overriding GDK's own
2541 * client message event filter. Well, that's still better than trying
2542 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 *
2544 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2545 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2546 * I have the nasty feeling modern session managers just don't send this
2547 * deprecated message anymore. Addition: confirmed by several people.
2548 *
2549 * The GNOME session support is much cooler anyway. Unlike this ugly
2550 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2551 * it should work with KDE as well.
2552 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002554global_event_filter(GdkXEvent *xev,
2555 GdkEvent *event UNUSED,
2556 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557{
2558 XEvent *xevent = (XEvent *)xev;
2559
2560 if (xevent != NULL
2561 && xevent->type == ClientMessage
2562 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002563 && (long_u)xevent->xclient.data.l[0]
2564 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 {
2566 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002567 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 /*
2569 * Set the window's WM_COMMAND property, to let the window manager
2570 * know we are done saving ourselves. We don't want to be
2571 * restarted, thus set argv to NULL.
2572 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002573 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2574 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 NULL, 0);
2576 return GDK_FILTER_REMOVE;
2577 }
2578
2579 return GDK_FILTER_CONTINUE;
2580}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002581#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582
2583
2584/*
2585 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2586 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002588mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589{
Bram Moolenaar30613902019-12-01 22:11:18 +01002590// If you get an error message here, you still need to unpack the runtime
2591// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592#ifdef magick
2593# undef magick
2594#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002595 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597#define magick vim32x32
2598#include "../runtime/vim32x32.xpm"
2599#undef magick
2600#define magick vim16x16
2601#include "../runtime/vim16x16.xpm"
2602#undef magick
2603#define magick vim48x48
2604#include "../runtime/vim48x48.xpm"
2605#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607
Bram Moolenaar98921892016-02-23 17:14:37 +01002608 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002609
Bram Moolenaar30613902019-12-01 22:11:18 +01002610 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 if (echo_wid_arg)
2612 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002613 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 fflush(stdout);
2615 }
2616
2617 if (vim_strchr(p_go, GO_ICON) != NULL)
2618 {
2619 /*
2620 * Add an icon to the main window. For fun and convenience of the user.
2621 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 GList *icons = NULL;
2623
2624 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2625 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2626 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2627
2628 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2629
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002630 // TODO: is this type cast OK?
2631 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 }
2634
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002635#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002636 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002639 // Setup to indicate to the window manager that we want to catch the
2640 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2641 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002642#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 if (using_gnome)
2644#endif
2645 setup_save_yourself();
2646
2647#ifdef FEAT_CLIENTSERVER
2648 if (serverName == NULL && serverDelayedStartName != NULL)
2649 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002650 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002651 commWindow = GDK_WINDOW_XID(mainwin_win);
2652
2653 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2654 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 }
2656 else
2657 {
2658 /*
2659 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2660 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002661 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002663 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2664 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
2666 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002667 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2668 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669#endif
2670}
2671
2672 static GdkCursor *
2673create_blank_pointer(void)
2674{
2675 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002676#if GTK_CHECK_VERSION(3,0,0)
2677 GdkPixbuf *blank_mask;
2678#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002682#if GTK_CHECK_VERSION(3,0,0)
2683 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2684#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 GdkColor color = { 0, 0, 0, 0 };
2686 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002689#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002690 {
2691 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2692 GdkScreen * const scrn = gdk_window_get_screen(win);
2693 root_window = gdk_screen_get_root_window(scrn);
2694 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002695#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 root_window = gtk_widget_get_root_window(gui.mainwin);
2697#endif
2698
Bram Moolenaar30613902019-12-01 22:11:18 +01002699 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2700 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002701#if GTK_CHECK_VERSION(3,0,0)
2702 {
2703 cairo_surface_t *surf;
2704 cairo_t *cr;
2705
2706 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2707 cr = cairo_create(surf);
2708
Bram Moolenaar36edf062016-07-21 22:10:12 +02002709 cairo_set_source_rgba(cr,
2710 color.red,
2711 color.green,
2712 color.blue,
2713 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002714 cairo_rectangle(cr, 0, 0, 1, 1);
2715 cairo_fill(cr);
2716 cairo_destroy(cr);
2717
2718 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2719 cairo_surface_destroy(surf);
2720
2721 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2722 blank_mask, 0, 0);
2723 g_object_unref(blank_mask);
2724 }
2725#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2727 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2728 &color, &color, 0, 0);
2729 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
2732 return cursor;
2733}
2734
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 static void
2736mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002737 GdkScreen *previous_screen UNUSED,
2738 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739{
2740 if (!gtk_widget_has_screen(widget))
2741 return;
2742
2743 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002744 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 */
2746 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002747#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002748 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002749#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002751#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752
2753 gui.blank_pointer = create_blank_pointer();
2754
Bram Moolenaar98921892016-02-23 17:14:37 +01002755 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2756 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2757 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758
2759 /*
2760 * Create a new PangoContext for this screen, and initialize it
2761 * with the current font if necessary.
2762 */
2763 if (gui.text_context != NULL)
2764 g_object_unref(gui.text_context);
2765
2766 gui.text_context = gtk_widget_create_pango_context(widget);
2767 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2768
2769 if (gui.norm_font != NULL)
2770 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002771 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002772 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 }
2774}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775
2776/*
2777 * After the drawing area comes up, we calculate all colors and create the
2778 * dummy blank cursor.
2779 *
2780 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2781 * fact that the main VIM engine doesn't take them into account anywhere.
2782 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002784drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002787 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788
2789#ifdef FEAT_XIM
2790 xim_init();
2791#endif
2792 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002793#if GTK_CHECK_VERSION(3,0,0)
2794 gui.surface = gdk_window_create_similar_surface(
2795 gtk_widget_get_window(widget),
2796 CAIRO_CONTENT_COLOR_ALPHA,
2797 gtk_widget_get_allocated_width(widget),
2798 gtk_widget_get_allocated_height(widget));
2799#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803 gui.blank_pointer = create_blank_pointer();
2804 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002805 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806
Bram Moolenaar30613902019-12-01 22:11:18 +01002807 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2809 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2810 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2811 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002812 gtk_widget_get_allocation(sbar, &allocation);
2813 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2814 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815
2816 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002817 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2818 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819}
2820
2821/*
2822 * Properly clean up on shutdown.
2823 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002825drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826{
Bram Moolenaar30613902019-12-01 22:11:18 +01002827 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 full_screen = FALSE;
2829
2830#ifdef FEAT_XIM
2831 im_shutdown();
2832#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 if (gui.ascii_glyphs != NULL)
2834 {
2835 pango_glyph_string_free(gui.ascii_glyphs);
2836 gui.ascii_glyphs = NULL;
2837 }
2838 if (gui.ascii_font != NULL)
2839 {
2840 g_object_unref(gui.ascii_font);
2841 gui.ascii_font = NULL;
2842 }
2843 g_object_unref(gui.text_context);
2844 gui.text_context = NULL;
2845
Bram Moolenaar98921892016-02-23 17:14:37 +01002846#if GTK_CHECK_VERSION(3,0,0)
2847 if (gui.surface != NULL)
2848 {
2849 cairo_surface_destroy(gui.surface);
2850 gui.surface = NULL;
2851 }
2852#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 g_object_unref(gui.text_gc);
2854 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856
Bram Moolenaar98921892016-02-23 17:14:37 +01002857#if GTK_CHECK_VERSION(3,0,0)
2858 g_object_unref(G_OBJECT(gui.blank_pointer));
2859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863}
2864
Bram Moolenaara859f042016-11-17 19:11:55 +01002865#if GTK_CHECK_VERSION(3,22,2)
2866 static void
2867drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2868 gpointer data UNUSED)
2869#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002871drawarea_style_set_cb(GtkWidget *widget UNUSED,
2872 GtkStyle *previous_style UNUSED,
2873 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875{
2876 gui_mch_new_colors();
2877}
2878
Bram Moolenaar98921892016-02-23 17:14:37 +01002879#if GTK_CHECK_VERSION(3,0,0)
2880 static gboolean
2881drawarea_configure_event_cb(GtkWidget *widget,
2882 GdkEventConfigure *event,
2883 gpointer data UNUSED)
2884{
2885 static int cur_width = 0;
2886 static int cur_height = 0;
2887
2888 g_return_val_if_fail(event
2889 && event->width >= 1 && event->height >= 1, TRUE);
2890
Bram Moolenaar182707a2016-11-21 20:55:58 +01002891# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002892 // As of 3.22.2, GdkWindows have started distributing configure events to
2893 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2894 //
2895 // As can be seen from the implementation of move_native_children() and
2896 // configure_native_child() in gdkwindow.c, those functions actually
2897 // propagate configure events to every child, failing to distinguish
2898 // "native" one from non-native one.
2899 //
2900 // Naturally, configure events propagated to here like that are fallacious
2901 // and, as a matter of fact, they trigger a geometric collapse of
2902 // gui.drawarea in fullscreen and maximized modes.
2903 //
2904 // To filter out such nuisance events, we are making use of the fact that
2905 // the field send_event of such GdkEventConfigures is set to FALSE in
2906 // configure_native_child().
2907 //
2908 // Obviously, this is a terrible hack making GVim depend on GTK's
2909 // implementation details. Therefore, watch out any relevant internal
2910 // changes happening in GTK in the feature (sigh).
2911 //
2912 // Follow-up
2913 // After a few weeks later, the GdkWindow change mentioned above was
2914 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2915 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002916 if (event->send_event == FALSE)
2917 return TRUE;
2918# endif
2919
Bram Moolenaar98921892016-02-23 17:14:37 +01002920 if (event->width == cur_width && event->height == cur_height)
2921 return TRUE;
2922
2923 cur_width = event->width;
2924 cur_height = event->height;
2925
2926 if (gui.surface != NULL)
2927 cairo_surface_destroy(gui.surface);
2928
2929 gui.surface = gdk_window_create_similar_surface(
2930 gtk_widget_get_window(widget),
2931 CAIRO_CONTENT_COLOR_ALPHA,
2932 event->width, event->height);
2933
2934 gtk_widget_queue_draw(widget);
2935
2936 return TRUE;
2937}
2938#endif
2939
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940/*
2941 * Callback routine for the "delete_event" signal on the toplevel window.
2942 * Tries to vim gracefully, or refuses to exit with changed buffers.
2943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002945delete_event_cb(GtkWidget *widget UNUSED,
2946 GdkEventAny *event UNUSED,
2947 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 gui_shell_closed();
2950 return TRUE;
2951}
2952
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002953#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2954 static int
2955get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2956{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002957# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002958 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2959
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002960 if (using_gnome && widget != NULL)
2961 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002962 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002963 BonoboDockItem *dockitem;
2964
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002965 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002966 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2967 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002968 // Only menu & toolbar are dock items. Could tabline be?
2969 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002970 widget = parent;
2971 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002972
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002973 if (dockitem == NULL || dockitem->is_floating)
2974 return 0;
2975 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2976 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002977 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002978# else
2979# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002980# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002981
Bram Moolenaar98921892016-02-23 17:14:37 +01002982 if (widget != NULL
2983 && item_orientation == orientation
2984 && gtk_widget_get_realized(widget)
2985 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002986 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002987# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002988 GtkAllocation allocation;
2989
2990 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002991 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002992# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002993 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2994 return widget->allocation.height;
2995 else
2996 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002997# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002998 }
2999 return 0;
3000}
3001#endif
3002
3003 static int
3004get_menu_tool_width(void)
3005{
3006 int width = 0;
3007
Bram Moolenaar30613902019-12-01 22:11:18 +01003008#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003009# ifdef FEAT_MENU
3010 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3011# endif
3012# ifdef FEAT_TOOLBAR
3013 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3014# endif
3015# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003016 if (gui.tabline != NULL)
3017 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003018# endif
3019#endif
3020
3021 return width;
3022}
3023
3024 static int
3025get_menu_tool_height(void)
3026{
3027 int height = 0;
3028
3029#ifdef FEAT_MENU
3030 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3031#endif
3032#ifdef FEAT_TOOLBAR
3033 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3034#endif
3035#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003036 if (gui.tabline != NULL)
3037 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003038#endif
3039
3040 return height;
3041}
3042
Bram Moolenaar30613902019-12-01 22:11:18 +01003043// This controls whether we can set the real window hints at
3044// start-up when in a GtkPlug.
3045// 0 = normal processing (default)
3046// 1 = init. hints set, no-one's tried to reset since last check
3047// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003048static int init_window_hints_state = 0;
3049
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003050 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003051update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003052{
3053 static int old_width = 0;
3054 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003055 static int old_min_width = 0;
3056 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003057 static int old_char_width = 0;
3058 static int old_char_height = 0;
3059
3060 int width;
3061 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003062 int min_width;
3063 int min_height;
3064
Bram Moolenaar30613902019-12-01 22:11:18 +01003065 // At start-up, don't try to set the hints until the initial
3066 // values have been used (those that dictate our initial size)
3067 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003068 if (!(force_width && force_height) && init_window_hints_state > 0)
3069 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003070 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003071 init_window_hints_state = 2;
3072 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003073 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003074
Bram Moolenaar30613902019-12-01 22:11:18 +01003075 // This also needs to be done when the main window isn't there yet,
3076 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003077 width = gui_get_base_width();
3078 height = gui_get_base_height();
3079# ifdef FEAT_MENU
3080 height += tabline_height() * gui.char_height;
3081# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003082 width += get_menu_tool_width();
3083 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003084
Bram Moolenaar30613902019-12-01 22:11:18 +01003085 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3086 // their actual widget size. When we set our size ourselves (e.g.,
3087 // 'set columns=' or init. -geom) we briefly set the min. to the size
3088 // we wish to be instead of the legitimate minimum so that we actually
3089 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003090 if (force_width && force_height)
3091 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003092 min_width = force_width;
3093 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003094 }
3095 else
3096 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003097 min_width = width + MIN_COLUMNS * gui.char_width;
3098 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003099 }
3100
Bram Moolenaar30613902019-12-01 22:11:18 +01003101 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003102 if (width != old_width
3103 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003104 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003105 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003106 || gui.char_width != old_char_width
3107 || gui.char_height != old_char_height)
3108 {
3109 GdkGeometry geometry;
3110 GdkWindowHints geometry_mask;
3111
3112 geometry.width_inc = gui.char_width;
3113 geometry.height_inc = gui.char_height;
3114 geometry.base_width = width;
3115 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003116 geometry.min_width = min_width;
3117 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003118 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3119 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003120 // Using gui.formwin as geometry widget doesn't work as expected
3121 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3122 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003123 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3124 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003125 old_width = width;
3126 old_height = height;
3127 old_min_width = min_width;
3128 old_min_height = min_height;
3129 old_char_width = gui.char_width;
3130 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003131 }
3132}
3133
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003134#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3135 void
3136gui_mch_set_dark_theme(int dark)
3137{
3138# if GTK_CHECK_VERSION(3,0,0)
3139 GtkSettings *gtk_settings;
3140
3141 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3142 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3143# endif
3144}
Bram Moolenaar30613902019-12-01 22:11:18 +01003145#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003146
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147#ifdef FEAT_TOOLBAR
3148
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149/*
3150 * This extra effort wouldn't be necessary if we only used stock icons in the
3151 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3152 * shouldn't be treated differently, thus we do need this.
3153 */
3154 static void
3155icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3156{
3157 if (GTK_IS_IMAGE(widget))
3158 {
3159 GtkImage *image = (GtkImage *)widget;
3160
Bram Moolenaar98921892016-02-23 17:14:37 +01003161# if GTK_CHECK_VERSION(3,10,0)
3162 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3163 {
3164 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3165 const gchar *icon_name;
3166
3167 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003168 image = (GtkImage *)gtk_image_new_from_icon_name(
3169 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003170 }
3171# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003172 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3174 {
3175 GtkIconSet *icon_set;
3176 GtkIconSize icon_size;
3177
3178 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3179 icon_size = (GtkIconSize)(long)user_data;
3180
3181 gtk_icon_set_ref(icon_set);
3182 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3183 gtk_icon_set_unref(icon_set);
3184 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003185# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 }
3187 else if (GTK_IS_CONTAINER(widget))
3188 {
3189 gtk_container_foreach((GtkContainer *)widget,
3190 &icon_size_changed_foreach,
3191 user_data);
3192 }
3193}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194
3195 static void
3196set_toolbar_style(GtkToolbar *toolbar)
3197{
3198 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 GtkIconSize size;
3200 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3203 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3204 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003205 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3207 style = GTK_TOOLBAR_BOTH;
3208 else if (toolbar_flags & TOOLBAR_TEXT)
3209 style = GTK_TOOLBAR_TEXT;
3210 else
3211 style = GTK_TOOLBAR_ICONS;
3212
3213 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003214# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003216# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 switch (tbis_flags)
3219 {
3220 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3221 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3222 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3223 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003224 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3225 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 default: size = GTK_ICON_SIZE_INVALID; break;
3227 }
3228 oldsize = gtk_toolbar_get_icon_size(toolbar);
3229
3230 if (size == GTK_ICON_SIZE_INVALID)
3231 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003232 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 gtk_toolbar_unset_icon_size(toolbar);
3234 size = gtk_toolbar_get_icon_size(toolbar);
3235 }
3236 if (size != oldsize)
3237 {
3238 gtk_container_foreach(GTK_CONTAINER(toolbar),
3239 &icon_size_changed_foreach,
3240 GINT_TO_POINTER((int)size));
3241 }
3242 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243}
3244
Bram Moolenaar30613902019-12-01 22:11:18 +01003245#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003247#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3248static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003249static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003250# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003251static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003252# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003253static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003254
3255/*
3256 * Handle selecting an item in the tab line popup menu.
3257 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003258 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003259tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003260{
Bram Moolenaar30613902019-12-01 22:11:18 +01003261 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003262 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003263}
3264
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003265 static void
3266add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3267{
3268 GtkWidget *item;
3269 char_u *utf_text;
3270
3271 utf_text = CONVERT_TO_UTF8(text);
3272 item = gtk_menu_item_new_with_label((const char *)utf_text);
3273 gtk_widget_show(item);
3274 CONVERT_TO_UTF8_FREE(utf_text);
3275
3276 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003277 g_signal_connect(G_OBJECT(item), "activate",
3278 G_CALLBACK(tabline_menu_handler),
3279 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003280}
3281
Bram Moolenaara5621492006-02-25 21:55:24 +00003282/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003283 * Create a menu for the tab line.
3284 */
3285 static GtkWidget *
3286create_tabline_menu(void)
3287{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003288 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003289
3290 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003291 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003292 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3293 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003294
3295 return menu;
3296}
3297
3298 static gboolean
3299on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3300{
Bram Moolenaar30613902019-12-01 22:11:18 +01003301 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003302 if (event->type == GDK_BUTTON_PRESS)
3303 {
3304 GdkEventButton *bevent = (GdkEventButton *)event;
3305 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003306 int y = bevent->y;
3307 GtkWidget *tabwidget;
3308 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003309
Bram Moolenaar30613902019-12-01 22:11:18 +01003310 // When ignoring events return TRUE so that the selected page doesn't
3311 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003312 if (hold_gui_events
3313# ifdef FEAT_CMDWIN
3314 || cmdwin_type != 0
3315# endif
3316 )
3317 return TRUE;
3318
Bram Moolenaar98921892016-02-23 17:14:37 +01003319 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003320
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003321 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003322 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3323 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003324
Bram Moolenaar30613902019-12-01 22:11:18 +01003325 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003326 if (bevent->button == 3)
3327 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003328# if GTK_CHECK_VERSION(3,22,2)
3329 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3330# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003331 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3332 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003333# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003334 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003335 return TRUE;
3336 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003337 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003338 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003339 if (clicked_page == 0)
3340 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003341 // Click after all tabs moves to next tab page. When "x" is
3342 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003343 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003344 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003345 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003346 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003347
Bram Moolenaar30613902019-12-01 22:11:18 +01003348 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003349 return FALSE;
3350}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003351
3352/*
3353 * Handle selecting one of the tabs.
3354 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003355 static void
3356on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003357 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003358 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003359 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003360 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003361{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003362 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003363 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003364}
3365
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003366# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003367/*
3368 * Handle reordering the tabs (using D&D).
3369 */
3370 static void
3371on_tab_reordered(
3372 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003373 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003374 gint idx,
3375 gpointer data UNUSED)
3376{
3377 if (!ignore_tabline_evt)
3378 {
3379 if ((tabpage_index(curtab) - 1) < idx)
3380 tabpage_move(idx + 1);
3381 else
3382 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003383 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003384}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003385# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003386
3387/*
3388 * Show or hide the tabline.
3389 */
3390 void
3391gui_mch_show_tabline(int showit)
3392{
3393 if (gui.tabline == NULL)
3394 return;
3395
3396 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3397 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003398 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003399 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003400 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003401 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003402 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003403 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003404
3405 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003406}
3407
3408/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003409 * Return TRUE when tabline is displayed.
3410 */
3411 int
3412gui_mch_showing_tabline(void)
3413{
3414 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003415 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003416}
3417
3418/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003419 * Update the labels of the tabline.
3420 */
3421 void
3422gui_mch_update_tabline(void)
3423{
3424 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003425 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003426 GtkWidget *label;
3427 tabpage_T *tp;
3428 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003429 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003430 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003431 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003432
3433 if (gui.tabline == NULL)
3434 return;
3435
3436 ignore_tabline_evt = TRUE;
3437
Bram Moolenaar30613902019-12-01 22:11:18 +01003438 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003439 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3440 {
3441 if (tp == curtab)
3442 curtabidx = nr;
3443
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003444 tab_num = nr + 1;
3445
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003446 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3447 if (page == NULL)
3448 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003449 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003450# if GTK_CHECK_VERSION(3,2,0)
3451 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3452 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3453# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003454 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003455# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003456 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003457 event_box = gtk_event_box_new();
3458 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003459 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003460# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003461 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003462# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003463 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003464 gtk_widget_show(label);
3465 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3466 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003467 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003468 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003469# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003470 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3471 page,
3472 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003473# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003474 }
3475
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003476 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003477 g_object_set_data(G_OBJECT(event_box), "tab_num",
3478 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003479 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003480 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003481 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003482 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003483 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003484
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003485 get_tabline_label(tp, TRUE);
3486 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003487# if GTK_CHECK_VERSION(3,0,0)
3488 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3489# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003490 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3491 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003492# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003493 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003494 }
3495
Bram Moolenaar30613902019-12-01 22:11:18 +01003496 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003497 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3498 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3499
Bram Moolenaar98921892016-02-23 17:14:37 +01003500 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3501 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003502
Bram Moolenaar30613902019-12-01 22:11:18 +01003503 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003504 gui_mch_update();
3505
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003506 ignore_tabline_evt = FALSE;
3507}
3508
3509/*
3510 * Set the current tab to "nr". First tab is 1.
3511 */
3512 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003513gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003514{
3515 if (gui.tabline == NULL)
3516 return;
3517
3518 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003519 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3520 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003521 ignore_tabline_evt = FALSE;
3522}
3523
Bram Moolenaar30613902019-12-01 22:11:18 +01003524#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003525
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003527 * Add selection targets for PRIMARY and CLIPBOARD selections.
3528 */
3529 void
3530gui_gtk_set_selection_targets(void)
3531{
3532 int i, j = 0;
3533 int n_targets = N_SELECTION_TARGETS;
3534 GtkTargetEntry targets[N_SELECTION_TARGETS];
3535
3536 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3537 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003538 // OpenOffice tries to use TARGET_HTML and fails when we don't
3539 // return something, instead of trying another target. Therefore only
3540 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003541 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3542 n_targets--;
3543 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003544 targets[j++] = selection_targets[i];
3545 }
3546
3547 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3548 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3549 gtk_selection_add_targets(gui.drawarea,
3550 (GdkAtom)GDK_SELECTION_PRIMARY,
3551 targets, n_targets);
3552 gtk_selection_add_targets(gui.drawarea,
3553 (GdkAtom)clip_plus.gtk_sel_atom,
3554 targets, n_targets);
3555}
3556
3557/*
3558 * Set up for receiving DND items.
3559 */
3560 void
3561gui_gtk_set_dnd_targets(void)
3562{
3563 int i, j = 0;
3564 int n_targets = N_DND_TARGETS;
3565 GtkTargetEntry targets[N_DND_TARGETS];
3566
3567 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3568 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003569 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003570 n_targets--;
3571 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003572 targets[j++] = dnd_targets[i];
3573 }
3574
3575 gtk_drag_dest_unset(gui.drawarea);
3576 gtk_drag_dest_set(gui.drawarea,
3577 GTK_DEST_DEFAULT_ALL,
3578 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003579 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003580}
3581
3582/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3584 * Returns OK for success, FAIL when the GUI can't be started.
3585 */
3586 int
3587gui_mch_init(void)
3588{
3589 GtkWidget *vbox;
3590
3591#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003592 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3593 // exits on failure, but that's a non-issue because we already called
3594 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003596 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3598 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003599# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003600 {
3601 char *p = setlocale(LC_NUMERIC, NULL);
3602
Bram Moolenaar30613902019-12-01 22:11:18 +01003603 // Make sure strtod() uses a decimal point, not a comma. Gnome
3604 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003605 if (p == NULL || strcmp(p, "C") != 0)
3606 setlocale(LC_NUMERIC, "C");
3607 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003608# endif
3609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003611 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003613#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003614 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003616#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 /*
3618 * Force UTF-8 output no matter what the value of 'encoding' is.
3619 * did_set_string_option() in option.c prohibits changing 'termencoding'
3620 * to something else than UTF-8 if the GUI is in use.
3621 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003622 set_option_value_give_err((char_u *)"termencoding",
3623 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003625#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003627#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003628 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3629 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003630#if !GTK_CHECK_VERSION(3,0,0)
3631# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634#endif
3635
Bram Moolenaar30613902019-12-01 22:11:18 +01003636 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 gui.border_width = 2;
3638 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3639 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003640#if GTK_CHECK_VERSION(3,0,0)
3641 gui.fgcolor = g_new(GdkRGBA, 1);
3642 gui.bgcolor = g_new(GdkRGBA, 1);
3643 gui.spcolor = g_new(GdkRGBA, 1);
3644#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003645 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003647 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003649 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003650 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652
Bram Moolenaar30613902019-12-01 22:11:18 +01003653 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003654 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656
Bram Moolenaar30613902019-12-01 22:11:18 +01003657 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 gui.norm_pixel = gui.def_norm_pixel;
3659 gui.back_pixel = gui.def_back_pixel;
3660
3661 if (gtk_socket_id != 0)
3662 {
3663 GtkWidget *plug;
3664
Bram Moolenaar30613902019-12-01 22:11:18 +01003665 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3667 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003668 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 {
3670 gui.mainwin = plug;
3671 }
3672 else
3673 {
3674 g_warning("Connection to GTK+ socket (ID %u) failed",
3675 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003676 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 gtk_socket_id = 0;
3678 }
3679 }
3680
3681 if (gtk_socket_id == 0)
3682 {
3683#ifdef FEAT_GUI_GNOME
3684 if (using_gnome)
3685 {
3686 gui.mainwin = gnome_app_new("Vim", NULL);
3687# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003688 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 xsmp_close();
3690# endif
3691 }
3692 else
3693#endif
3694 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3695 }
3696
3697 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3698
Bram Moolenaar30613902019-12-01 22:11:18 +01003699 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3701 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702
Bram Moolenaar98921892016-02-23 17:14:37 +01003703 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3705
Bram Moolenaar98921892016-02-23 17:14:37 +01003706 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3707 G_CALLBACK(&delete_event_cb), NULL);
3708
3709 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3710 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003711
3712 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003714
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 gui.accel_group = gtk_accel_group_new();
3716 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717
Bram Moolenaar30613902019-12-01 22:11:18 +01003718 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003719#if GTK_CHECK_VERSION(3,2,0)
3720 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3721 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3722#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
3726#ifdef FEAT_GUI_GNOME
3727 if (using_gnome)
3728 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003729# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003730 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3732# endif
3733 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3734 }
3735 else
3736#endif
3737 {
3738 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3739 gtk_widget_show(vbox);
3740 }
3741
3742#ifdef FEAT_MENU
3743 /*
3744 * Create the menubar and handle
3745 */
3746 gui.menubar = gtk_menu_bar_new();
3747 gtk_widget_set_name(gui.menubar, "vim-menubar");
3748
Bram Moolenaar30613902019-12-01 22:11:18 +01003749 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003750 {
3751 GtkSettings *gtk_settings;
3752
3753 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3754 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3755 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003756
3757
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758# ifdef FEAT_GUI_GNOME
3759 if (using_gnome)
3760 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 BonoboDockItem *dockitem;
3762
3763 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3764 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3765 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003766 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003767 bonobo_dock_item_set_behavior(dockitem,
3768 bonobo_dock_item_get_behavior(dockitem)
3769 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 }
3772 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003773# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003775 // Always show the menubar, otherwise <F10> doesn't work. It may be
3776 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003777 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3779 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003780#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781
3782#ifdef FEAT_TOOLBAR
3783 /*
3784 * Create the toolbar and handle
3785 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003786 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003787# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003788 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3789 // N.B. Since the default value of GtkToolbar::button-relief is
3790 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003791# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 gtk_rc_parse_string(
3793 "style \"vim-toolbar-style\" {\n"
3794 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3795 "}\n"
3796 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003797# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 gui.toolbar = gtk_toolbar_new();
3799 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3801
3802# ifdef FEAT_GUI_GNOME
3803 if (using_gnome)
3804 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 BonoboDockItem *dockitem;
3806
3807 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3808 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3809 GNOME_APP_TOOLBAR_NAME);
3810 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003811 // When the toolbar is floating it gets stuck. So long as that isn't
3812 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003813 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003814 bonobo_dock_item_get_behavior(dockitem)
3815 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 }
3818 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003819# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3822 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3823 gtk_widget_show(gui.toolbar);
3824 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3825 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003826#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003828#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003829 /*
3830 * Use a Notebook for the tab pages labels. The labels are hidden by
3831 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003832 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003833 gui.tabline = gtk_notebook_new();
3834 gtk_widget_show(gui.tabline);
3835 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3836 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3837 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003838 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003839# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003840 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003841# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003842
Bram Moolenaar98921892016-02-23 17:14:37 +01003843# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003844 tabline_tooltip = gtk_tooltips_new();
3845 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003846# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003847
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003848 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003849 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003850
Bram Moolenaar30613902019-12-01 22:11:18 +01003851 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003852# if GTK_CHECK_VERSION(3,2,0)
3853 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3854 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3855# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003856 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003857# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003858 gtk_widget_show(page);
3859 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3860 label = gtk_label_new("-Empty-");
3861 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003862 event_box = gtk_event_box_new();
3863 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003864 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003865# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003866 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003867# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003868 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003869 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003870# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003871 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003872# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003873 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003874
Bram Moolenaar98921892016-02-23 17:14:37 +01003875 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3876 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003877# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003878 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3879 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003880# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003881
Bram Moolenaar30613902019-12-01 22:11:18 +01003882 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003883 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003884 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3885 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003886#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003887
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003888 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003889 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003890#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003892#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003893#if GTK_CHECK_VERSION(3,22,2)
3894 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896
3897 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003898#if GTK_CHECK_VERSION(3,0,0)
3899 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003900#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901
Bram Moolenaar30613902019-12-01 22:11:18 +01003902 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 gtk_widget_set_events(gui.drawarea,
3904 GDK_EXPOSURE_MASK |
3905 GDK_ENTER_NOTIFY_MASK |
3906 GDK_LEAVE_NOTIFY_MASK |
3907 GDK_BUTTON_PRESS_MASK |
3908 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 GDK_KEY_PRESS_MASK |
3911 GDK_KEY_RELEASE_MASK |
3912 GDK_POINTER_MOTION_MASK |
3913 GDK_POINTER_MOTION_HINT_MASK);
3914
3915 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003916 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 gtk_widget_show(gui.formwin);
3918 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3919
Bram Moolenaar30613902019-12-01 22:11:18 +01003920 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3921 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003922 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3923 : G_OBJECT(gui.drawarea),
3924 "key-press-event",
3925 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003926#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003927 // Also forward key release events for the benefit of GTK+ 2 input
3928 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3930 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003931 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932 G_CALLBACK(&key_release_event), NULL);
3933#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003934 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3935 G_CALLBACK(drawarea_realize_cb), NULL);
3936 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3937 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003938#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003939 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3940 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003941#endif
3942#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003943 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3944 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003945#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003946 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3947 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949
Bram Moolenaar98921892016-02-23 17:14:37 +01003950#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003954#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3956 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3957#endif
3958
3959 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003960 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003961 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962
3963 /*
3964 * Set clipboard specific atoms
3965 */
3966 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3969 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3970
3971 /*
3972 * Start out by adding the configured border width into the border offset.
3973 */
3974 gui.border_offset = gui.border_width;
3975
Bram Moolenaar98921892016-02-23 17:14:37 +01003976#if GTK_CHECK_VERSION(3,0,0)
3977 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3978 G_CALLBACK(draw_event), NULL);
3979#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3981 GTK_SIGNAL_FUNC(visibility_event), NULL);
3982 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3983 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985
3986 /*
3987 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3988 * Only needed for some window managers.
3989 */
3990 if (vim_strchr(p_go, GO_POINTER) != NULL)
3991 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003992 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3993 G_CALLBACK(leave_notify_event), NULL);
3994 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3995 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 }
3997
Bram Moolenaar30613902019-12-01 22:11:18 +01003998 // Real windows can get focus ... GtkPlug, being a mere container can't,
3999 // only its widgets. Arguably, this could be common code and we not use
4000 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004001 if (gtk_socket_id == 0)
4002 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004003 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4004 G_CALLBACK(focus_out_event), NULL);
4005 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4006 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004007 }
4008 else
4009 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004010 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4011 G_CALLBACK(focus_out_event), NULL);
4012 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4013 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004014#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004015 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4016 G_CALLBACK(focus_out_event), NULL);
4017 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4018 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004019#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
Bram Moolenaar98921892016-02-23 17:14:37 +01004022 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4023 G_CALLBACK(motion_notify_event), NULL);
4024 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4025 G_CALLBACK(button_press_event), NULL);
4026 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4027 G_CALLBACK(button_release_event), NULL);
4028 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4029 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
4031 /*
4032 * Add selection handler functions.
4033 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004034 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4035 G_CALLBACK(selection_clear_event), NULL);
4036 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4037 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
Bram Moolenaara76638f2010-06-05 12:49:46 +02004039 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040
Bram Moolenaar98921892016-02-23 17:14:37 +01004041 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4042 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043
Bram Moolenaar30613902019-12-01 22:11:18 +01004044 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 gui.in_focus = FALSE;
4046
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004047 // Handle changes to the "Xft/DPI" setting.
4048 {
4049 GtkSettings *gtk_settings =
4050 gtk_settings_get_for_screen(gdk_screen_get_default());
4051
4052 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4053 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4054 }
4055
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 return OK;
4057}
4058
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004059#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060/*
4061 * This is called from gui_start() after a fork() has been done.
4062 * We have to tell the session manager our new PID.
4063 */
4064 void
4065gui_mch_forked(void)
4066{
4067 if (using_gnome)
4068 {
4069 GnomeClient *client;
4070
4071 client = gnome_master_client();
4072
4073 if (client != NULL)
4074 gnome_client_set_process_id(client, getpid());
4075 }
4076}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004077#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
Bram Moolenaar98921892016-02-23 17:14:37 +01004079#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004080 static GdkRGBA
4081color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004082{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004083 GdkRGBA rgba;
4084 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4085 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4086 rgba.blue = ((color & 0xff)) / 255.0;
4087 rgba.alpha = 1.0;
4088 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004089}
4090
4091 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004092set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004093{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004094 const GdkRGBA rgba = color_to_rgba(color);
4095 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004096}
Bram Moolenaar30613902019-12-01 22:11:18 +01004097#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004098
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099/*
4100 * Called when the foreground or background color has been changed.
4101 * This used to change the graphics contexts directly but we are
4102 * currently manipulating them where desired.
4103 */
4104 void
4105gui_mch_new_colors(void)
4106{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004107 if (gui.drawarea != NULL
4108#if GTK_CHECK_VERSION(3,22,2)
4109 && gui.formwin != NULL
4110#endif
4111 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004113#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004114 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004115#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004116#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004117 GtkStyleContext * const context =
4118 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004119 GtkCssProvider * const provider = gtk_css_provider_new();
4120 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004121 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004122 " background-color: #%.2lx%.2lx%.2lx;\n"
4123 "}\n",
4124 (gui.back_pixel >> 16) & 0xff,
4125 (gui.back_pixel >> 8) & 0xff,
4126 gui.back_pixel & 0xff);
4127
4128 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4129 gtk_style_context_add_provider(context,
4130 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4131
4132 g_free(css);
4133 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004134#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004135 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004136
Bram Moolenaar36edf062016-07-21 22:10:12 +02004137 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004138 {
4139 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004140 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004141 if (pat != NULL)
4142 {
4143 gdk_window_set_background_pattern(da_win, pat);
4144 cairo_pattern_destroy(pat);
4145 }
4146 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004147 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004148 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004149#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 GdkColor color = { 0, 0, 0, 0 };
4151
4152 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004153 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004154#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 }
4156}
4157
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158/*
4159 * This signal informs us about the need to rearrange our sub-widgets.
4160 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004162form_configure_event(GtkWidget *widget UNUSED,
4163 GdkEventConfigure *event,
4164 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165{
Ernie Raeld42b8392022-04-23 19:52:23 +01004166 int usable_height = event->height;
4167#ifdef TRACK_RESIZE_HISTORY
4168 // Resize requests are made for gui.mainwin;
4169 // get its dimensions for searching if this event
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004170 // is a response to a vim request.
Ernie Raeld42b8392022-04-23 19:52:23 +01004171 int w, h;
4172 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004173
Ernie Raeld42b8392022-04-23 19:52:23 +01004174# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004175 ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]",
4176 w, h, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +01004177# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004178
Ernie Raeld42b8392022-04-23 19:52:23 +01004179 // Look through history of recent vim resize requests.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004180 // If this event matches:
4181 // - "latest resize hist" We're caught up;
4182 // clear the history and process this event.
4183 // If history is, old to new, 100, 99, 100, 99. If this event is
4184 // 99 for the stale, it is matched against the current. History
Ernie Raeld42b8392022-04-23 19:52:23 +01004185 // is cleared, we may bounce, but no worse than before.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004186 // - "older/stale hist" If match an unused event in history,
4187 // then discard this event, and mark the matching event as used.
4188 // - "no match" Figure it's a user resize event, clear history.
4189 // NOTE: clear history is default, then all incoming events are processed
4190
4191 if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h)
4192 && match_stale_width_height(w, h))
4193 // discard stale event
4194 return TRUE;
4195 clear_resize_hists();
Ernie Raeld42b8392022-04-23 19:52:23 +01004196#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004197
Bram Moolenaar182707a2016-11-21 20:55:58 +01004198#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004199 // As of 3.22.2, GdkWindows have started distributing configure events to
4200 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4201 //
4202 // As can be seen from the implementation of move_native_children() and
4203 // configure_native_child() in gdkwindow.c, those functions actually
4204 // propagate configure events to every child, failing to distinguish
4205 // "native" one from non-native one.
4206 //
4207 // Naturally, configure events propagated to here like that are fallacious
4208 // and, as a matter of fact, they trigger a geometric collapse of
4209 // gui.formwin.
4210 //
4211 // To filter out such fallacious events, check if the given event is the
4212 // one that was sent out to the right place. Ignore it if not.
4213 //
4214 // Follow-up
4215 // After a few weeks later, the GdkWindow change mentioned above was
4216 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4217 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004218 if (event->window != gtk_widget_get_window(gui.formwin))
4219 return TRUE;
4220#endif
4221
Bram Moolenaar30613902019-12-01 22:11:18 +01004222 // When in a GtkPlug, we can't guarantee valid heights (as a round
4223 // no. of char-heights), so we have to manually sanitise them.
4224 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004225 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004226 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004227
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004228 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004229 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004230 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
4232 return TRUE;
4233}
4234
4235/*
4236 * Function called when window already closed.
4237 * We can't do much more here than to trying to preserve what had been done,
4238 * since the window is already inevitably going away.
4239 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004240 static void
4241mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242{
Bram Moolenaar30613902019-12-01 22:11:18 +01004243 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 full_screen = FALSE;
4245
4246 gui.mainwin = NULL;
4247 gui.drawarea = NULL;
4248
Bram Moolenaar30613902019-12-01 22:11:18 +01004249 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004251 vim_strncpy(IObuff,
4252 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4253 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 preserve_exit();
4255 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004256#ifdef USE_GRESOURCE
4257 gui_gtk_unregister_resource();
4258#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259}
4260
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004261 void
4262gui_gtk_get_screen_geom_of_win(
4263 GtkWidget *wid,
4264 int point_x, // x position of window if not initialized
4265 int point_y, // y position of window if not initialized
4266 int *screen_x,
4267 int *screen_y,
4268 int *width,
4269 int *height)
4270{
4271 GdkRectangle geometry;
4272 GdkWindow *win = gtk_widget_get_window(wid);
4273#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004274 GdkDisplay *dpy;
4275 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004276
Bram Moolenaar24001432021-03-20 12:36:46 +01004277 if (wid != NULL && gtk_widget_get_realized(wid))
4278 dpy = gtk_widget_get_display(wid);
4279 else
4280 dpy = gdk_display_get_default();
4281 if (win != NULL)
4282 monitor = gdk_display_get_monitor_at_window(dpy, win);
4283 else
4284 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004285 gdk_monitor_get_geometry(monitor, &geometry);
4286#else
4287 GdkScreen* screen;
4288 int monitor;
4289
4290 if (wid != NULL && gtk_widget_has_screen(wid))
4291 screen = gtk_widget_get_screen(wid);
4292 else
4293 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004294 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004295 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004296 else
4297 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004298 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4299#endif
4300 *screen_x = geometry.x;
4301 *screen_y = geometry.y;
4302 *width = geometry.width;
4303 *height = geometry.height;
4304}
4305
4306/*
4307 * The screen size is used to make sure the initial window doesn't get bigger
4308 * than the screen. This subtracts some room for menubar, toolbar and window
4309 * decorations.
4310 */
4311 static void
4312gui_gtk_get_screen_dimensions(
4313 int point_x,
4314 int point_y,
4315 int *screen_w,
4316 int *screen_h)
4317{
4318 int x, y;
4319
4320 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4321 &x, &y, screen_w, screen_h);
4322
4323 // Subtract 'guiheadroom' from the height to allow some room for the
4324 // window manager (task list and window title bar).
4325 *screen_h -= p_ghr;
4326
4327 /*
4328 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4329 * the toolbar and menubar for GTK, we subtract them from the screen
4330 * height, so that the window size can be made to fit on the screen.
4331 * This should be completely changed later.
4332 */
4333 *screen_w -= get_menu_tool_width();
4334 *screen_h -= get_menu_tool_height();
4335}
4336
4337 void
4338gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4339{
4340 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4341}
4342
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004343
4344/*
4345 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4346 * hints (and thus the required size from -geom), but that after that we
4347 * put the hints back to normal (the actual minimum size) so we may
4348 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004349 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004350 * only way we have of making ourselves bigger (by set lines/columns).
4351 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004352 * second after the final attempt to reset the real minimum hints (done by
4353 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004354 * We'll not let the default hints be set while this timer's active.
4355 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004356 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004357check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004358{
4359 if (init_window_hints_state == 1)
4360 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004361 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004362 init_window_hints_state = 0;
4363 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004364 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004365 }
4366
Bram Moolenaar30613902019-12-01 22:11:18 +01004367 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004368 init_window_hints_state = 1;
4369 return TRUE;
4370}
4371
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372/*
4373 * Open the GUI window which was created by a call to gui_mch_init().
4374 */
4375 int
4376gui_mch_open(void)
4377{
4378 guicolor_T fg_pixel = INVALCOLOR;
4379 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004380 guint pixel_width;
4381 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 /*
4384 * Allow setting a window role on the command line, or invent one
4385 * if none was specified. This is mainly useful for GNOME session
4386 * support; allowing the WM to restore window placement.
4387 */
4388 if (role_argument != NULL)
4389 {
4390 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4391 }
4392 else
4393 {
4394 char *role;
4395
Bram Moolenaar30613902019-12-01 22:11:18 +01004396 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 role = g_strdup_printf("vim-%u-%u-%u",
4398 (unsigned)mch_get_pid(),
4399 (unsigned)g_random_int(),
4400 (unsigned)time(NULL));
4401
4402 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4403 g_free(role);
4404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405
4406 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408
Bram Moolenaar30613902019-12-01 22:11:18 +01004409 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 if (gui.geom != NULL)
4411 {
4412 int mask;
4413 unsigned int w, h;
4414 int x = 0;
4415 int y = 0;
4416
4417 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4418
4419 if (mask & WidthValue)
4420 Columns = w;
4421 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004422 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004423 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004424 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004426 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004427 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004428
4429 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4430 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4431
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004432 pixel_width += get_menu_tool_width();
4433 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004434
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004436 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004437 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004438
4439#ifdef FEAT_GUI_GTK
4440 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4441#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004442 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004443#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004444 hh += p_ghr + get_menu_tool_height();
4445 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004446 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004447 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004448 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004449 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004451 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004452 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004453
Bram Moolenaar30613902019-12-01 22:11:18 +01004454 // From now until everyone's stopped trying to set the window hints
4455 // to their correct minimum values, stop them being set as we need
4456 // them to remain at our required size for the parent GtkSocket to
4457 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004458 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004459 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004460 update_window_manager_hints(pixel_width, pixel_height);
4461 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004462 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004466 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4467 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004468 // For GTK2 changing the size of the form widget doesn't cause window
4469 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004470 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004471 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004472 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473
4474 if (foreground_argument != NULL)
4475 fg_pixel = gui_get_color((char_u *)foreground_argument);
4476 if (fg_pixel == INVALCOLOR)
4477 fg_pixel = gui_get_color((char_u *)"Black");
4478
4479 if (background_argument != NULL)
4480 bg_pixel = gui_get_color((char_u *)background_argument);
4481 if (bg_pixel == INVALCOLOR)
4482 bg_pixel = gui_get_color((char_u *)"White");
4483
4484 if (found_reverse_arg)
4485 {
4486 gui.def_norm_pixel = bg_pixel;
4487 gui.def_back_pixel = fg_pixel;
4488 }
4489 else
4490 {
4491 gui.def_norm_pixel = fg_pixel;
4492 gui.def_back_pixel = bg_pixel;
4493 }
4494
Bram Moolenaar30613902019-12-01 22:11:18 +01004495 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4496 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 set_normal_colors();
4498
Bram Moolenaar30613902019-12-01 22:11:18 +01004499 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 gui_check_colors();
4501
Bram Moolenaar30613902019-12-01 22:11:18 +01004502 // Get the colors for the highlight groups (gui_check_colors() might have
4503 // changed them).
4504 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505
Bram Moolenaar98921892016-02-23 17:14:37 +01004506 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4507 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 /*
4510 * Notify the fixed area about the need to resize the contents of the
4511 * gui.formwin, which we use for random positioning of the included
4512 * components.
4513 *
4514 * We connect this signal deferred finally after anything is in place,
4515 * since this is intended to handle resizements coming from the window
4516 * manager upon us and should not interfere with what VIM is requesting
4517 * upon startup.
4518 */
Ernie Raeld42b8392022-04-23 19:52:23 +01004519#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004520 latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T);
Ernie Raeld42b8392022-04-23 19:52:23 +01004521#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004522 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004523 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524
4525#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004526 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004527 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528
Bram Moolenaar98921892016-02-23 17:14:37 +01004529 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004530 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531#endif
4532
Bram Moolenaar30613902019-12-01 22:11:18 +01004533 // With GTK+ 2, we need to iconify the window before calling show()
4534 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 if (found_iconic_arg && gtk_socket_id == 0)
4536 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537
4538 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004539#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 unsigned long menu_handler = 0;
4541# ifdef FEAT_TOOLBAR
4542 unsigned long tool_handler = 0;
4543# endif
4544 /*
4545 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4546 * show when restoring the saved layout configuration. We can't just
4547 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4548 * a toplevel window and thus will be realized immediately. Instead,
4549 * connect signal handlers to hide the widgets just after they've been
4550 * marked visible, but before the main window is realized.
4551 */
4552 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4553 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4554 G_CALLBACK(&gtk_widget_hide),
4555 NULL);
4556# ifdef FEAT_TOOLBAR
4557 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4558 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4559 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4560 G_CALLBACK(&gtk_widget_hide),
4561 NULL);
4562# endif
4563#endif
4564 gtk_widget_show(gui.mainwin);
4565
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004566#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 if (menu_handler != 0)
4568 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4569# ifdef FEAT_TOOLBAR
4570 if (tool_handler != 0)
4571 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4572# endif
4573#endif
4574 }
4575
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 return OK;
4577}
4578
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004579/*
4580 * Clean up for when exiting Vim.
4581 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004583gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004585 // Clean up, unless we don't want to invoke free().
4586 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588}
4589
4590/*
4591 * Get the position of the top left corner of the window.
4592 */
4593 int
4594gui_mch_get_winpos(int *x, int *y)
4595{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 return OK;
4598}
4599
4600/*
4601 * Set the position of the top left corner of the window to the given
4602 * coordinates.
4603 */
4604 void
4605gui_mch_set_winpos(int x, int y)
4606{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608}
4609
Bram Moolenaar98921892016-02-23 17:14:37 +01004610#if !GTK_CHECK_VERSION(3,0,0)
4611# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612static int resize_idle_installed = FALSE;
4613/*
4614 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4615 * the shell size doesn't exceed the window size, i.e. if the window manager
4616 * ignored our size request. Usually this happens if the window is maximized.
4617 *
4618 * FIXME: It'd be nice if we could find a little more orthodox solution.
4619 * See also the remark below in gui_mch_set_shellsize().
4620 *
4621 * DISABLED: When doing ":set lines+=1" this function would first invoke
4622 * gui_resize_shell() with the old size, then the normal callback would
4623 * report the new size through form_configure_event(). That caused the window
4624 * layout to be messed up.
4625 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 static gboolean
4627force_shell_resize_idle(gpointer data)
4628{
4629 if (gui.mainwin != NULL
4630 && GTK_WIDGET_REALIZED(gui.mainwin)
4631 && GTK_WIDGET_VISIBLE(gui.mainwin))
4632 {
4633 int width;
4634 int height;
4635
4636 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4637
4638 width -= get_menu_tool_width();
4639 height -= get_menu_tool_height();
4640
4641 gui_resize_shell(width, height);
4642 }
4643
4644 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004645 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646}
Bram Moolenaar98921892016-02-23 17:14:37 +01004647# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004648#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649
Bram Moolenaar09736232009-09-23 16:14:49 +00004650/*
4651 * Return TRUE if the main window is maximized.
4652 */
4653 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004654gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004655{
Bram Moolenaar98921892016-02-23 17:14:37 +01004656 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4657 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4658 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004659}
4660
4661/*
4662 * Unmaximize the main window
4663 */
4664 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004665gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004666{
4667 if (gui.mainwin != NULL)
4668 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4669}
Bram Moolenaar09736232009-09-23 16:14:49 +00004670
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004672 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4673 * is set. Compute the new Rows and Columns. This is like resizing the
4674 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004675 */
4676 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004677gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004678{
4679 int w, h;
4680
4681 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4682 w -= get_menu_tool_width();
4683 h -= get_menu_tool_height();
4684 gui_resize_shell(w, h);
4685}
4686
4687/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 * Set the windows size.
4689 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 void
4691gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004692 int min_width UNUSED, int min_height UNUSED,
4693 int base_width UNUSED, int base_height UNUSED,
4694 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695{
Bram Moolenaar30613902019-12-01 22:11:18 +01004696 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 gui_mch_update();
4698
Bram Moolenaar30613902019-12-01 22:11:18 +01004699 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004700 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004701 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004702
Bram Moolenaar30613902019-12-01 22:11:18 +01004703 // With GTK+ 2, changing the size of the form widget doesn't resize
4704 // the window. So let's do it the other way around and resize the
4705 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 width += get_menu_tool_width();
4707 height += get_menu_tool_height();
4708
Ernie Raeld42b8392022-04-23 19:52:23 +01004709#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004710 alloc_resize_hist(width, height); // track the resize request
Ernie Raeld42b8392022-04-23 19:52:23 +01004711#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004712 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004713 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004714 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004715 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716
Bram Moolenaar98921892016-02-23 17:14:37 +01004717# if !GTK_CHECK_VERSION(3,0,0)
4718# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 if (!resize_idle_installed)
4720 {
4721 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4722 &force_shell_resize_idle, NULL, NULL);
4723 resize_idle_installed = TRUE;
4724 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004725# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004726# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 /*
4728 * Wait until all events are processed to prevent a crash because the
4729 * real size of the drawing area doesn't reflect Vim's internal ideas.
4730 *
4731 * This is a bit of a hack, since Vim is a terminal application with a GUI
4732 * on top, while the GUI expects to be the boss.
4733 */
4734 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735}
4736
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004738gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 if (title != NULL && output_conv.vc_type != CONV_NONE)
4741 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742
4743 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4744
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 if (output_conv.vc_type != CONV_NONE)
4746 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748
4749#if defined(FEAT_MENU) || defined(PROTO)
4750 void
4751gui_mch_enable_menu(int showit)
4752{
4753 GtkWidget *widget;
4754
4755# ifdef FEAT_GUI_GNOME
4756 if (using_gnome)
4757 widget = gui.menubar_h;
4758 else
4759# endif
4760 widget = gui.menubar;
4761
Bram Moolenaar30613902019-12-01 22:11:18 +01004762 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004763 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 {
4765 if (showit)
4766 gtk_widget_show(widget);
4767 else
4768 gtk_widget_hide(widget);
4769
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004770 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 }
4772}
Bram Moolenaar30613902019-12-01 22:11:18 +01004773#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774
4775#if defined(FEAT_TOOLBAR) || defined(PROTO)
4776 void
4777gui_mch_show_toolbar(int showit)
4778{
4779 GtkWidget *widget;
4780
4781 if (gui.toolbar == NULL)
4782 return;
4783
4784# ifdef FEAT_GUI_GNOME
4785 if (using_gnome)
4786 widget = gui.toolbar_h;
4787 else
4788# endif
4789 widget = gui.toolbar;
4790
4791 if (showit)
4792 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4793
Bram Moolenaar98921892016-02-23 17:14:37 +01004794 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 {
4796 if (showit)
4797 gtk_widget_show(widget);
4798 else
4799 gtk_widget_hide(widget);
4800
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004801 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 }
4803}
Bram Moolenaar30613902019-12-01 22:11:18 +01004804#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806/*
4807 * Check if a given font is a CJK font. This is done in a very crude manner. It
4808 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4809 * font. Consequently, this function cannot be used as a general purpose check
4810 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4811 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4812 */
4813 static int
4814is_cjk_font(PangoFontDescription *font_desc)
4815{
4816 static const char * const cjk_langs[] =
4817 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4818
4819 PangoFont *font;
4820 unsigned i;
4821 int is_cjk = FALSE;
4822
4823 font = pango_context_load_font(gui.text_context, font_desc);
4824
4825 if (font == NULL)
4826 return FALSE;
4827
4828 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4829 {
4830 PangoCoverage *coverage;
4831 gunichar uc;
4832
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004833 // Valgrind reports a leak for pango_language_from_string(), but the
4834 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 coverage = pango_font_get_coverage(
4836 font, pango_language_from_string(cjk_langs[i]));
4837
4838 if (coverage != NULL)
4839 {
4840 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4841 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4842 pango_coverage_unref(coverage);
4843 }
4844 }
4845
4846 g_object_unref(font);
4847
4848 return is_cjk;
4849}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850
Bram Moolenaar231334e2005-07-25 20:46:57 +00004851/*
4852 * Adjust gui.char_height (after 'linespace' was changed).
4853 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004855gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 PangoFontMetrics *metrics;
4858 int ascent;
4859 int descent;
4860
4861 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4862 pango_context_get_language(gui.text_context));
4863 ascent = pango_font_metrics_get_ascent(metrics);
4864 descent = pango_font_metrics_get_descent(metrics);
4865
4866 pango_font_metrics_unref(metrics);
4867
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004868 // Round up when the value is more than about 1/16 of a pixel above a whole
4869 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4870 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4871 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004872 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4874
Bram Moolenaar30613902019-12-01 22:11:18 +01004875 // A not-positive value of char_height may crash Vim. Only happens
4876 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 gui.char_ascent = MAX(gui.char_ascent, 0);
4878 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4879
4880 return OK;
4881}
4882
Bram Moolenaar98921892016-02-23 17:14:37 +01004883#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004884// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004885 static gboolean
4886font_filter(const PangoFontFamily *family,
4887 const PangoFontFace *face UNUSED,
4888 gpointer data UNUSED)
4889{
4890 return pango_font_family_is_monospace((PangoFontFamily *)family);
4891}
4892#endif
4893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894/*
4895 * Put up a font dialog and return the selected font name in allocated memory.
4896 * "oldval" is the previous value. Return NULL when cancelled.
4897 * This should probably go into gui_gtk.c. Hmm.
4898 * FIXME:
4899 * The GTK2 font selection dialog has no filtering API. So we could either
4900 * a) implement our own (possibly copying the code from somewhere else) or
4901 * b) just live with it.
4902 */
4903 char_u *
4904gui_mch_font_dialog(char_u *oldval)
4905{
4906 GtkWidget *dialog;
4907 int response;
4908 char_u *fontname = NULL;
4909 char_u *oldname;
4910
Bram Moolenaar98921892016-02-23 17:14:37 +01004911#if GTK_CHECK_VERSION(3,2,0)
4912 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4913 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4914 NULL, NULL);
4915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
4919 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4920 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4921
4922 if (oldval != NULL && oldval[0] != NUL)
4923 {
4924 if (output_conv.vc_type != CONV_NONE)
4925 oldname = string_convert(&output_conv, oldval, NULL);
4926 else
4927 oldname = oldval;
4928
Bram Moolenaar30613902019-12-01 22:11:18 +01004929 // Annoying bug in GTK (or Pango): if the font name does not include a
4930 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4932 {
4933 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4934
4935 if (p != NULL)
4936 {
4937 STRCPY(p + STRLEN(p), " 10");
4938 if (oldname != oldval)
4939 vim_free(oldname);
4940 oldname = p;
4941 }
4942 }
4943
Bram Moolenaar98921892016-02-23 17:14:37 +01004944#if GTK_CHECK_VERSION(3,2,0)
4945 gtk_font_chooser_set_font(
4946 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4947#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 gtk_font_selection_dialog_set_font_name(
4949 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951
4952 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004953 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004955 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004956#if GTK_CHECK_VERSION(3,2,0)
4957 gtk_font_chooser_set_font(
4958 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4959#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004960 gtk_font_selection_dialog_set_font_name(
4961 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963
4964 response = gtk_dialog_run(GTK_DIALOG(dialog));
4965
4966 if (response == GTK_RESPONSE_OK)
4967 {
4968 char *name;
4969
Bram Moolenaar98921892016-02-23 17:14:37 +01004970#if GTK_CHECK_VERSION(3,2,0)
4971 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4972#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 name = gtk_font_selection_dialog_get_font_name(
4974 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 if (name != NULL)
4977 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004978 char_u *p;
4979
Bram Moolenaar30613902019-12-01 22:11:18 +01004980 // Apparently some font names include a comma, need to escape
4981 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004982 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004984 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004985 {
4986 fontname = string_convert(&input_conv, p, NULL);
4987 vim_free(p);
4988 }
4989 else
4990 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 }
4992 }
4993
4994 if (response != GTK_RESPONSE_NONE)
4995 gtk_widget_destroy(dialog);
4996
4997 return fontname;
4998}
4999
5000/*
5001 * Some monospace fonts don't support a bold weight, and fall back
5002 * silently to the regular weight. But this is no good since our text
5003 * drawing function can emulate bold by overstriking. So let's try
5004 * to detect whether bold weight is actually available and emulate it
5005 * otherwise.
5006 *
5007 * Note that we don't need to check for italic style since Xft can
5008 * emulate italic on its own, provided you have a proper fontconfig
5009 * setup. We wouldn't be able to emulate it in Vim anyway.
5010 */
5011 static void
5012get_styled_font_variants(void)
5013{
5014 PangoFontDescription *bold_font_desc;
5015 PangoFont *plain_font;
5016 PangoFont *bold_font;
5017
5018 gui.font_can_bold = FALSE;
5019
5020 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5021
5022 if (plain_font == NULL)
5023 return;
5024
5025 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5026 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5027
5028 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5029 /*
5030 * The comparison relies on the unique handle nature of a PangoFont*,
5031 * i.e. it's assumed that a different PangoFont* won't refer to the
5032 * same font. Seems to work, and failing here isn't critical anyway.
5033 */
5034 if (bold_font != NULL)
5035 {
5036 gui.font_can_bold = (bold_font != plain_font);
5037 g_object_unref(bold_font);
5038 }
5039
5040 pango_font_description_free(bold_font_desc);
5041 g_object_unref(plain_font);
5042}
5043
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044static PangoEngineShape *default_shape_engine = NULL;
5045
5046/*
5047 * Create a map from ASCII characters in the range [32,126] to glyphs
5048 * of the current font. This is used by gui_gtk2_draw_string() to skip
5049 * the itemize and shaping process for the most common case.
5050 */
5051 static void
5052ascii_glyph_table_init(void)
5053{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005054 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 PangoAttrList *attr_list;
5056 GList *item_list;
5057 int i;
5058
5059 if (gui.ascii_glyphs != NULL)
5060 pango_glyph_string_free(gui.ascii_glyphs);
5061 if (gui.ascii_font != NULL)
5062 g_object_unref(gui.ascii_font);
5063
5064 gui.ascii_glyphs = NULL;
5065 gui.ascii_font = NULL;
5066
Bram Moolenaar30613902019-12-01 22:11:18 +01005067 // For safety, fill in question marks for the control characters.
5068 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005069 for (i = 0; i < 128; ++i)
5070 {
5071 if (i >= 32 && i < 127)
5072 ascii_chars[2 * i] = i;
5073 else
5074 ascii_chars[2 * i] = '?';
5075 ascii_chars[2 * i + 1] = ' ';
5076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077
5078 attr_list = pango_attr_list_new();
5079 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5080 0, sizeof(ascii_chars), attr_list, NULL);
5081
Bram Moolenaar30613902019-12-01 22:11:18 +01005082 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 {
5084 PangoItem *item;
5085 int width;
5086
5087 item = (PangoItem *)item_list->data;
5088 width = gui.char_width * PANGO_SCALE;
5089
Bram Moolenaar30613902019-12-01 22:11:18 +01005090 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 default_shape_engine = item->analysis.shape_engine;
5092
5093 gui.ascii_font = item->analysis.font;
5094 g_object_ref(gui.ascii_font);
5095
5096 gui.ascii_glyphs = pango_glyph_string_new();
5097
5098 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5099 &item->analysis, gui.ascii_glyphs);
5100
5101 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5102
5103 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5104 {
5105 PangoGlyphGeometry *geom;
5106
5107 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5108 geom->x_offset += MAX(0, width - geom->width) / 2;
5109 geom->width = width;
5110 }
5111 }
5112
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02005113 // TODO: is this type cast OK?
5114 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 g_list_free(item_list);
5116 pango_attr_list_unref(attr_list);
5117}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118
5119/*
5120 * Initialize Vim to use the font or fontset with the given name.
5121 * Return FAIL if the font could not be loaded, OK otherwise.
5122 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005124gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 PangoFontDescription *font_desc;
5127 PangoLayout *layout;
5128 int width;
5129
Bram Moolenaar30613902019-12-01 22:11:18 +01005130 // If font_name is NULL, this means to use the default, which should
5131 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 if (font_name == NULL)
5133 font_name = (char_u *)DEFAULT_FONT;
5134
5135 font_desc = gui_mch_get_font(font_name, FALSE);
5136
5137 if (font_desc == NULL)
5138 return FAIL;
5139
5140 gui_mch_free_font(gui.norm_font);
5141 gui.norm_font = font_desc;
5142
5143 pango_context_set_font_description(gui.text_context, font_desc);
5144
5145 layout = pango_layout_new(gui.text_context);
5146 pango_layout_set_text(layout, "MW", 2);
5147 pango_layout_get_size(layout, &width, NULL);
5148 /*
5149 * Set char_width to half the width obtained from pango_layout_get_size()
5150 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5151 * Pango to use the same width for both non-CJK characters (e.g. Latin
5152 * letters and numbers) and CJK characters. This results in 's p a c e d
5153 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5154 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5155 * width for CJK fonts.
5156 *
5157 * For related bugs, see:
5158 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5159 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5160 *
5161 * With this, for all four of the following cases, Vim works fine:
5162 * guifont=CJK_fixed_width_font
5163 * guifont=Non_CJK_fixed_font
5164 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5165 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5166 */
5167 if (is_cjk_font(gui.norm_font))
5168 {
5169 int cjk_width;
5170
Bram Moolenaar30613902019-12-01 22:11:18 +01005171 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5173 pango_layout_get_size(layout, &cjk_width, NULL);
5174
Bram Moolenaar30613902019-12-01 22:11:18 +01005175 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 width /= 2;
5177 }
5178 g_object_unref(layout);
5179
5180 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5181
Bram Moolenaar30613902019-12-01 22:11:18 +01005182 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 if (gui.char_width <= 0)
5184 gui.char_width = 8;
5185
Bram Moolenaar231334e2005-07-25 20:46:57 +00005186 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187
Bram Moolenaar30613902019-12-01 22:11:18 +01005188 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 hl_set_font_name(font_name);
5190
5191 get_styled_font_variants();
5192 ascii_glyph_table_init();
5193
Bram Moolenaar30613902019-12-01 22:11:18 +01005194 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 if (gui.wide_font != NULL
5196 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5197 {
5198 pango_font_description_free(gui.wide_font);
5199 gui.wide_font = NULL;
5200 }
5201
Bram Moolenaare161c792009-11-03 17:13:59 +00005202 if (gui_mch_maximized())
5203 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005204 // Update lines and columns in accordance with the new font, keep the
5205 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005206 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005207 }
5208 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005209 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005210 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005211 update_window_manager_hints(0, 0);
5212 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213
5214 return OK;
5215}
5216
5217/*
5218 * Get a reference to the font "name".
5219 * Return zero for failure.
5220 */
5221 GuiFont
5222gui_mch_get_font(char_u *name, int report_error)
5223{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225
Bram Moolenaar30613902019-12-01 22:11:18 +01005226 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 if (!gui.in_use || name == NULL)
5228 return NULL;
5229
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 if (output_conv.vc_type != CONV_NONE)
5231 {
5232 char_u *buf;
5233
5234 buf = string_convert(&output_conv, name, NULL);
5235 if (buf != NULL)
5236 {
5237 font = pango_font_description_from_string((const char *)buf);
5238 vim_free(buf);
5239 }
5240 else
5241 font = NULL;
5242 }
5243 else
5244 font = pango_font_description_from_string((const char *)name);
5245
5246 if (font != NULL)
5247 {
5248 PangoFont *real_font;
5249
Bram Moolenaar30613902019-12-01 22:11:18 +01005250 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 if (pango_font_description_get_size(font) <= 0)
5252 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5253
5254 real_font = pango_context_load_font(gui.text_context, font);
5255
5256 if (real_font == NULL)
5257 {
5258 pango_font_description_free(font);
5259 font = NULL;
5260 }
5261 else
5262 g_object_unref(real_font);
5263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264
5265 if (font == NULL)
5266 {
5267 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005268 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 return NULL;
5270 }
5271
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 return font;
5273}
5274
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005275#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005276/*
5277 * Return the name of font "font" in allocated memory.
5278 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005279 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005280gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005281{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005282 if (font != NOFONT)
5283 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005284 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005285
Bram Moolenaar89d40322006-08-29 15:30:07 +00005286 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005287 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005288 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005289
Bram Moolenaar89d40322006-08-29 15:30:07 +00005290 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005291 return s;
5292 }
5293 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005294 return NULL;
5295}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005296#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005297
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298/*
5299 * If a font is not going to be used, free its structure.
5300 */
5301 void
5302gui_mch_free_font(GuiFont font)
5303{
5304 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306}
5307
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005309 * Return the Pixel value (color) for the given color name.
5310 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 * Return INVALCOLOR for error.
5312 */
5313 guicolor_T
5314gui_mch_get_color(char_u *name)
5315{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005316 guicolor_T color = INVALCOLOR;
5317
Bram Moolenaar30613902019-12-01 22:11:18 +01005318 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005319 return color;
5320
5321 if (name != NULL)
5322 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323
Bram Moolenaar98921892016-02-23 17:14:37 +01005324#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005325 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005326#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005327 if (color == INVALCOLOR)
5328 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005330 return gui_mch_get_rgb_color(
5331 (color & 0xff0000) >> 16,
5332 (color & 0xff00) >> 8,
5333 color & 0xff);
5334#endif
5335}
5336
5337/*
5338 * Return the Pixel value (color) for the given RGB values.
5339 * Return INVALCOLOR for error.
5340 */
5341 guicolor_T
5342gui_mch_get_rgb_color(int r, int g, int b)
5343{
5344#if GTK_CHECK_VERSION(3,0,0)
5345 return gui_get_rgb_color_cmn(r, g, b);
5346#else
5347 GdkColor gcolor;
5348 int ret;
5349
5350 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5351 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5352 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
Bram Moolenaar36edf062016-07-21 22:10:12 +02005354 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5355 &gcolor, FALSE, TRUE);
5356
5357 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359}
5360
5361/*
5362 * Set the current text foreground color.
5363 */
5364 void
5365gui_mch_set_fg_color(guicolor_T color)
5366{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005367#if GTK_CHECK_VERSION(3,0,0)
5368 *gui.fgcolor = color_to_rgba(color);
5369#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372}
5373
5374/*
5375 * Set the current text background color.
5376 */
5377 void
5378gui_mch_set_bg_color(guicolor_T color)
5379{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005380#if GTK_CHECK_VERSION(3,0,0)
5381 *gui.bgcolor = color_to_rgba(color);
5382#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385}
5386
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005387/*
5388 * Set the current text special color.
5389 */
5390 void
5391gui_mch_set_sp_color(guicolor_T color)
5392{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005393#if GTK_CHECK_VERSION(3,0,0)
5394 *gui.spcolor = color_to_rgba(color);
5395#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005396 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005397#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005398}
5399
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400/*
5401 * Function-like convenience macro for the sake of efficiency.
5402 */
5403#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5404 G_STMT_START{ \
5405 PangoAttribute *tmp_attr_; \
5406 tmp_attr_ = (Attribute); \
5407 tmp_attr_->start_index = (Start); \
5408 tmp_attr_->end_index = (End); \
5409 pango_attr_list_insert((AttrList), tmp_attr_); \
5410 }G_STMT_END
5411
5412 static void
5413apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5414{
5415 char_u *start = NULL;
5416 char_u *p;
5417 int uc;
5418
5419 for (p = s; p < s + len; p += utf_byte2len(*p))
5420 {
5421 uc = utf_ptr2char(p);
5422
5423 if (start == NULL)
5424 {
5425 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5426 start = p;
5427 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005428 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5430 {
5431 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5432 attr_list, start - s, p - s);
5433 start = NULL;
5434 }
5435 }
5436
5437 if (start != NULL)
5438 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5439 attr_list, start - s, len);
5440}
5441
5442 static int
5443count_cluster_cells(char_u *s, PangoItem *item,
5444 PangoGlyphString* glyphs, int i,
5445 int *cluster_width,
5446 int *last_glyph_rbearing)
5447{
5448 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005449 int next; // glyph start index of next cluster
5450 int start, end; // string segment of current cluster
5451 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 int uc;
5453 int cellcount = 0;
5454
5455 width = glyphs->glyphs[i].geometry.width;
5456
5457 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5458 {
5459 if (glyphs->glyphs[next].attr.is_cluster_start)
5460 break;
5461 else if (glyphs->glyphs[next].geometry.width > width)
5462 width = glyphs->glyphs[next].geometry.width;
5463 }
5464
5465 start = item->offset + glyphs->log_clusters[i];
5466 end = item->offset + ((next < glyphs->num_glyphs) ?
5467 glyphs->log_clusters[next] : item->length);
5468
5469 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5470 {
5471 uc = utf_ptr2char(p);
5472 if (uc < 0x80)
5473 ++cellcount;
5474 else if (!utf_iscomposing(uc))
5475 cellcount += utf_char2cells(uc);
5476 }
5477
5478 if (last_glyph_rbearing != NULL
5479 && cellcount > 0 && next == glyphs->num_glyphs)
5480 {
5481 PangoRectangle ink_rect;
5482 /*
5483 * If a certain combining mark had to be taken from a non-monospace
5484 * font, we have to compensate manually by adapting x_offset according
5485 * to the ink extents of the previous glyph.
5486 */
5487 pango_font_get_glyph_extents(item->analysis.font,
5488 glyphs->glyphs[i].glyph,
5489 &ink_rect, NULL);
5490
5491 if (PANGO_RBEARING(ink_rect) > 0)
5492 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5493 }
5494
5495 if (cellcount > 0)
5496 *cluster_width = width;
5497
5498 return cellcount;
5499}
5500
5501/*
5502 * If there are only combining characters in the cluster, we cannot just
5503 * change the width of the previous glyph since there is none. Therefore
5504 * some guesswork is needed.
5505 *
5506 * If ink_rect.x is negative Pango apparently has taken care of the composing
5507 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5508 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005509 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 *
5511 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5512 * the position of the previous glyph. Apparently this happens only with old
5513 * X fonts which don't provide the special combining information needed by
5514 * Pango.
5515 */
5516 static void
5517setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5518 int last_cellcount, int last_cluster_width,
5519 int last_glyph_rbearing)
5520{
5521 PangoRectangle ink_rect;
5522 PangoRectangle logical_rect;
5523 int width;
5524
5525 width = last_cellcount * gui.char_width * PANGO_SCALE;
5526 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5527 glyph->geometry.width = 0;
5528
5529 pango_font_get_glyph_extents(item->analysis.font,
5530 glyph->glyph,
5531 &ink_rect, &logical_rect);
5532 if (ink_rect.x < 0)
5533 {
5534 glyph->geometry.x_offset += last_glyph_rbearing;
5535 glyph->geometry.y_offset = logical_rect.height
5536 - (gui.char_height - p_linespace) * PANGO_SCALE;
5537 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005538 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005539 // If the accent width is smaller than the cluster width, position it
5540 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005541 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542}
5543
Bram Moolenaar98921892016-02-23 17:14:37 +01005544#if GTK_CHECK_VERSION(3,0,0)
5545 static void
5546draw_glyph_string(int row, int col, int num_cells, int flags,
5547 PangoFont *font, PangoGlyphString *glyphs,
5548 cairo_t *cr)
5549#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 static void
5551draw_glyph_string(int row, int col, int num_cells, int flags,
5552 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554{
5555 if (!(flags & DRAW_TRANSP))
5556 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005557#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005558 cairo_set_source_rgba(cr,
5559 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5560 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005561 cairo_rectangle(cr,
5562 FILL_X(col), FILL_Y(row),
5563 num_cells * gui.char_width, gui.char_height);
5564 cairo_fill(cr);
5565#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5567
5568 gdk_draw_rectangle(gui.drawarea->window,
5569 gui.text_gc,
5570 TRUE,
5571 FILL_X(col),
5572 FILL_Y(row),
5573 num_cells * gui.char_width,
5574 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005575#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 }
5577
Bram Moolenaar98921892016-02-23 17:14:37 +01005578#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005579 cairo_set_source_rgba(cr,
5580 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5581 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005582 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5583 pango_cairo_show_glyph_string(cr, font, glyphs);
5584#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5586
5587 gdk_draw_glyphs(gui.drawarea->window,
5588 gui.text_gc,
5589 font,
5590 TEXT_X(col),
5591 TEXT_Y(row),
5592 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594
Bram Moolenaar30613902019-12-01 22:11:18 +01005595 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005597#if GTK_CHECK_VERSION(3,0,0)
5598 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005599 cairo_set_source_rgba(cr,
5600 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5601 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005602 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5603 pango_cairo_show_glyph_string(cr, font, glyphs);
5604 }
5605#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 gdk_draw_glyphs(gui.drawarea->window,
5607 gui.text_gc,
5608 font,
5609 TEXT_X(col) + 1,
5610 TEXT_Y(row),
5611 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613}
5614
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005615/*
5616 * Draw underline and undercurl at the bottom of the character cell.
5617 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005618#if GTK_CHECK_VERSION(3,0,0)
5619 static void
5620draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5621#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005622 static void
5623draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005624#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005625{
5626 int i;
5627 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005628 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005629 int y = FILL_Y(row + 1) - 1;
5630
Bram Moolenaar30613902019-12-01 22:11:18 +01005631 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005632 if (flags & DRAW_UNDERC)
5633 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005634#if GTK_CHECK_VERSION(3,0,0)
5635 cairo_set_line_width(cr, 1.0);
5636 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005637 cairo_set_source_rgba(cr,
5638 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5639 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005640 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5641 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005642 {
5643 offset = val[i % 8];
5644 cairo_line_to(cr, i, y - offset + 0.5);
5645 }
5646 cairo_stroke(cr);
5647#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005648 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5649 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5650 {
5651 offset = val[i % 8];
5652 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5653 }
5654 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005655#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005656 }
5657
Bram Moolenaar30613902019-12-01 22:11:18 +01005658 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005659 if (flags & DRAW_STRIKE)
5660 {
5661#if GTK_CHECK_VERSION(3,0,0)
5662 cairo_set_line_width(cr, 1.0);
5663 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5664 cairo_set_source_rgba(cr,
5665 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5666 gui.spcolor->alpha);
5667 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5668 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5669 cairo_stroke(cr);
5670#else
5671 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5672 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5673 FILL_X(col), y + 1 - gui.char_height/2,
5674 FILL_X(col + cells), y + 1 - gui.char_height/2);
5675 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5676#endif
5677 }
5678
Bram Moolenaar30613902019-12-01 22:11:18 +01005679 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005680 if (flags & DRAW_UNDERL)
5681 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005682 // When p_linespace is 0, overwrite the bottom row of pixels.
5683 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005684 if (p_linespace > 1)
5685 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005686#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005687 cairo_set_line_width(cr, 1.0);
5688 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5689 cairo_set_source_rgba(cr,
5690 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5691 gui.fgcolor->alpha);
5692 cairo_move_to(cr, FILL_X(col), y + 0.5);
5693 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5694 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005695#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005696 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5697 FILL_X(col), y,
5698 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005699#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005700 }
5701}
5702
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 int
5704gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5705{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005706 char_u *conv_buf = NULL; // result of UTF-8 conversion
5707 char_u *new_conv_buf;
5708 int convlen;
5709 char_u *sp, *bp;
5710 int plen;
5711 int len_sum; // return value needs to add up since we are
5712 // printing substrings
5713 int byte_sum; // byte position in string
5714 char_u *cs; // current *s pointer
5715 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005716 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005717 int slen;
5718 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005719 int is_utf8;
5720 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721
Bram Moolenaar98921892016-02-23 17:14:37 +01005722 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 return len;
5724
5725 if (output_conv.vc_type != CONV_NONE)
5726 {
5727 /*
5728 * Convert characters from 'encoding' to 'termencoding', which is set
5729 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5730 * prohibits changing this to something else than UTF-8 if the GUI is
5731 * in use.
5732 */
5733 convlen = len;
5734 conv_buf = string_convert(&output_conv, s, &convlen);
5735 g_return_val_if_fail(conv_buf != NULL, len);
5736
Bram Moolenaar30613902019-12-01 22:11:18 +01005737 // Correct for differences in char width: some chars are
5738 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5739 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5741 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005742 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5744 {
5745 new_conv_buf = alloc(convlen + 2);
5746 if (new_conv_buf == NULL)
5747 return len;
5748 plen += bp - conv_buf;
5749 mch_memmove(new_conv_buf, conv_buf, plen);
5750 new_conv_buf[plen] = ' ';
5751 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5752 convlen - plen + 1);
5753 vim_free(conv_buf);
5754 conv_buf = new_conv_buf;
5755 ++convlen;
5756 bp = conv_buf + plen;
5757 plen = 1;
5758 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005759 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 bp += plen;
5761 }
5762 s = conv_buf;
5763 len = convlen;
5764 }
5765
5766 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005767 * Ligature support and complex utf-8 char optimization:
5768 * String received to output to screen can print using pre-cached glyphs
5769 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5770 * Since we receive mixed content string, split it into logical segments
5771 * that are guaranteed to go trough glyphs as much as possible. Since
5772 * single ligature char prints as ascii, print it that way.
5773 */
5774 len_sum = 0; // return value needs to add up since we are printing
5775 // substrings
5776 byte_sum = 0;
5777 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005778 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5779 // Even if it is ligature char, two chars or more make ligature.
5780 // Ascii followed by utf8 is also going trough pango.
5781 is_utf8 = (*cs & 0x80);
5782 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5783 if (is_ligature)
5784 is_ligature = gui.ligatures_map[*(cs + 1)];
5785 if (!is_utf8 && len > 1)
5786 is_utf8 = (*(cs + 1) & 0x80) != 0;
5787 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005788
5789 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5790 // print glyphs or use Pango
5791 while (cs < s + len)
5792 {
5793 slen = 0;
5794 while (slen < (len - byte_sum))
5795 {
5796 is_ligature = gui.ligatures_map[*(cs + slen)];
5797 // look ahead, single ligature char between ascii is ascii
5798 if (is_ligature && !needs_pango)
5799 {
5800 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005801 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005802 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005803 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005804 }
5805 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005806 // ascii followed by utf8 could be combining
5807 // if so send it trough pango
5808 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5809 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005810 should_need_pango = (is_ligature || is_utf8);
5811 if (needs_pango != should_need_pango) // mode switch
5812 break;
5813 if (needs_pango)
5814 {
5815 if (is_ligature)
5816 {
5817 slen++; // ligature char by char
5818 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005819 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005820 {
5821 if ((*(cs + slen) & 0xC0) == 0x80)
5822 {
5823 // a continuation, find next 0xC0 != 0x80 but don't
5824 // include it
5825 while ((slen < (len - byte_sum))
5826 && ((*(cs + slen) & 0xC0) == 0x80))
5827 {
5828 slen++;
5829 }
5830 }
5831 else if ((*(cs + slen) & 0xE0) == 0xC0)
5832 {
5833 // + one byte utf8
5834 slen++;
5835 }
5836 else if ((*(cs + slen) & 0xF0) == 0xE0)
5837 {
5838 // + two bytes utf8
5839 slen += 2;
5840 }
5841 else if ((*(cs + slen) & 0xF8) == 0xF0)
5842 {
5843 // + three bytes utf8
5844 slen += 3;
5845 }
5846 else
5847 {
5848 // this should not happen, try moving forward, Pango
5849 // will catch it
5850 slen++;
5851 }
5852 }
5853 }
5854 else
5855 {
5856 slen++; // ascii
5857 }
5858 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005859
Bram Moolenaard68a0042021-10-20 23:08:11 +01005860 if (slen < len)
5861 {
5862 // temporarily zero terminate substring, print, restore char, wrap
5863 backup_ch = *(cs + slen);
5864 *(cs + slen) = NUL;
5865 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005866 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5867 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005868 if (slen < len)
5869 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005870 cs += slen;
5871 byte_sum += slen;
5872 needs_pango = should_need_pango;
5873 }
5874 vim_free(conv_buf);
5875 return len_sum;
5876}
5877
5878 int
5879gui_gtk2_draw_string_ext(
5880 int row,
5881 int col,
5882 char_u *s,
5883 int len,
5884 int flags,
5885 int force_pango)
5886{
5887 GdkRectangle area; // area for clip mask
5888 PangoGlyphString *glyphs; // glyphs of current item
5889 int column_offset = 0; // column offset in cells
5890 int i;
5891#if GTK_CHECK_VERSION(3,0,0)
5892 cairo_t *cr;
5893#endif
5894
5895 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 * Restrict all drawing to the current screen line in order to prevent
5897 * fuzzy font lookups from messing up the screen.
5898 */
5899 area.x = gui.border_offset;
5900 area.y = FILL_Y(row);
5901 area.width = gui.num_cols * gui.char_width;
5902 area.height = gui.char_height;
5903
Bram Moolenaar98921892016-02-23 17:14:37 +01005904#if GTK_CHECK_VERSION(3,0,0)
5905 cr = cairo_create(gui.surface);
5906 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5907 cairo_clip(cr);
5908#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5910 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912
5913 glyphs = pango_glyph_string_new();
5914
5915 /*
5916 * Optimization hack: If possible, skip the itemize and shaping process
5917 * for pure ASCII strings. This optimization is particularly effective
5918 * because Vim draws space characters to clear parts of the screen.
5919 */
5920 if (!(flags & DRAW_ITALIC)
5921 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005922 && gui.ascii_glyphs != NULL
5923 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 {
5925 char_u *p;
5926
5927 for (p = s; p < s + len; ++p)
5928 if (*p & 0x80)
5929 goto not_ascii;
5930
5931 pango_glyph_string_set_size(glyphs, len);
5932
5933 for (i = 0; i < len; ++i)
5934 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005935 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 glyphs->log_clusters[i] = i;
5937 }
5938
Bram Moolenaar98921892016-02-23 17:14:37 +01005939#if GTK_CHECK_VERSION(3,0,0)
5940 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5941#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944
5945 column_offset = len;
5946 }
5947 else
5948not_ascii:
5949 {
5950 PangoAttrList *attr_list;
5951 GList *item_list;
5952 int cluster_width;
5953 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005954 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955
Bram Moolenaar30613902019-12-01 22:11:18 +01005956 // Safety check: pango crashes when invoked with invalid utf-8
5957 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005958 if (!utf_valid_string(s, s + len))
5959 {
5960 column_offset = len;
5961 goto skipitall;
5962 }
5963
Bram Moolenaar30613902019-12-01 22:11:18 +01005964 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 cluster_width = PANGO_SCALE * gui.char_width;
5966
Bram Moolenaar30613902019-12-01 22:11:18 +01005967 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5969
5970 attr_list = pango_attr_list_new();
5971
Bram Moolenaar30613902019-12-01 22:11:18 +01005972 // If 'guifontwide' is set then use that for double-width characters.
5973 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 if (gui.wide_font != NULL)
5975 apply_wide_font_attr(s, len, attr_list);
5976
5977 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5978 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5979 attr_list, 0, len);
5980 if (flags & DRAW_ITALIC)
5981 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5982 attr_list, 0, len);
5983 /*
5984 * Break the text into segments with consistent directional level
5985 * and shaping engine. Pure Latin text needs only a single segment,
5986 * so there's no need to worry about the loop's efficiency. Better
5987 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5988 */
5989 item_list = pango_itemize(gui.text_context,
5990 (const char *)s, 0, len, attr_list, NULL);
5991
5992 while (item_list != NULL)
5993 {
5994 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005995 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996
5997 item = (PangoItem *)item_list->data;
5998 item_list = g_list_delete_link(item_list, item_list);
5999 /*
6000 * Increment the bidirectional embedding level by 1 if it is not
6001 * even. An odd number means the output will be RTL, but we don't
6002 * want that since Vim handles right-to-left text on its own. It
6003 * would probably be sufficient to just set level = 0, but you can
6004 * never know :)
6005 *
6006 * Unfortunately we can't take advantage of Pango's ability to
6007 * render both LTR and RTL at the same time. In order to support
6008 * that, Vim's main screen engine would have to make use of Pango
6009 * functionality.
6010 */
6011 item->analysis.level = (item->analysis.level + 1) & (~1U);
6012
Bram Moolenaar30613902019-12-01 22:11:18 +01006013 // HACK: Overrule the shape engine, we don't want shaping to be
6014 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 item->analysis.shape_engine = default_shape_engine;
6016
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006017#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006018 pango_shape_full((const char *)s + item->offset, item->length,
6019 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006020#else
6021 pango_shape((const char *)s + item->offset, item->length,
6022 &item->analysis, glyphs);
6023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 /*
6025 * Fixed-width hack: iterate over the array and assign a fixed
6026 * width to each glyph, thus overriding the choice made by the
6027 * shaping engine. We use utf_char2cells() to determine the
6028 * number of cells needed.
6029 *
6030 * Also perform all kind of dark magic to get composing
6031 * characters right (and pretty too of course).
6032 */
6033 for (i = 0; i < glyphs->num_glyphs; ++i)
6034 {
6035 PangoGlyphInfo *glyph;
6036
6037 glyph = &glyphs->glyphs[i];
6038
6039 if (glyph->attr.is_cluster_start)
6040 {
6041 int cellcount;
6042
6043 cellcount = count_cluster_cells(
6044 s, item, glyphs, i, &cluster_width,
6045 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6046
6047 if (cellcount > 0)
6048 {
6049 int width;
6050
6051 width = cellcount * gui.char_width * PANGO_SCALE;
6052 glyph->geometry.x_offset +=
6053 MAX(0, width - cluster_width) / 2;
6054 glyph->geometry.width = width;
6055 }
6056 else
6057 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006058 // If there are only combining characters in the
6059 // cluster, we cannot just change the width of the
6060 // previous glyph since there is none. Therefore
6061 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 setup_zero_width_cluster(item, glyph, cells,
6063 cluster_width,
6064 last_glyph_rbearing);
6065 }
6066
6067 item_cells += cellcount;
6068 cells = cellcount;
6069 }
6070 else if (i > 0)
6071 {
6072 int width;
6073
Bram Moolenaar30613902019-12-01 22:11:18 +01006074 // There is a previous glyph, so we deal with combining
6075 // characters the canonical way.
6076 // In some circumstances Pango uses a positive x_offset,
6077 // then use the width of the previous glyph for this one
6078 // and set the previous width to zero.
6079 // Otherwise we get a negative x_offset, Pango has already
6080 // positioned the combining char, keep the widths as they
6081 // are.
6082 // For both adjust the x_offset to position the glyph in
6083 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006084 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006085 {
6086 glyphs->glyphs[i].geometry.width =
6087 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006088 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 width = cells * gui.char_width * PANGO_SCALE;
6091 glyph->geometry.x_offset +=
6092 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006094 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095 {
6096 glyph->geometry.width = 0;
6097 }
6098 }
6099
Bram Moolenaar30613902019-12-01 22:11:18 +01006100 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01006101#if GTK_CHECK_VERSION(3,0,0)
6102 draw_glyph_string(row, col + column_offset, item_cells,
6103 flags, item->analysis.font, glyphs,
6104 cr);
6105#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006106 draw_glyph_string(row, col + column_offset, item_cells,
6107 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006108#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109
6110 pango_item_free(item);
6111
6112 column_offset += item_cells;
6113 }
6114
6115 pango_attr_list_unref(attr_list);
6116 }
6117
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006118skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01006119 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01006120#if GTK_CHECK_VERSION(3,0,0)
6121 draw_under(flags, row, col, column_offset, cr);
6122#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006123 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125
6126 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127
Bram Moolenaar98921892016-02-23 17:14:37 +01006128#if GTK_CHECK_VERSION(3,0,0)
6129 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00006130 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
6131 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006132#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006134#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135
6136 return column_offset;
6137}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138
6139/*
6140 * Return OK if the key with the termcap name "name" is supported.
6141 */
6142 int
6143gui_mch_haskey(char_u *name)
6144{
6145 int i;
6146
6147 for (i = 0; special_keys[i].key_sym != 0; i++)
6148 if (name[0] == special_keys[i].code0
6149 && name[1] == special_keys[i].code1)
6150 return OK;
6151 return FAIL;
6152}
6153
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006154#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155/*
6156 * Return the text window-id and display. Only required for X-based GUI's
6157 */
6158 int
6159gui_get_x11_windis(Window *win, Display **dis)
6160{
Bram Moolenaar98921892016-02-23 17:14:37 +01006161 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006163 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6164 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 return OK;
6166 }
6167
6168 *dis = NULL;
6169 *win = 0;
6170 return FAIL;
6171}
6172#endif
6173
6174#if defined(FEAT_CLIENTSERVER) \
6175 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6176
6177 Display *
6178gui_mch_get_display(void)
6179{
Bram Moolenaar98921892016-02-23 17:14:37 +01006180 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6181 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 else
6183 return NULL;
6184}
6185#endif
6186
6187 void
6188gui_mch_beep(void)
6189{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 GdkDisplay *display;
6191
Bram Moolenaar98921892016-02-23 17:14:37 +01006192 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 display = gtk_widget_get_display(gui.mainwin);
6194 else
6195 display = gdk_display_get_default();
6196
6197 if (display != NULL)
6198 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199}
6200
6201 void
6202gui_mch_flash(int msec)
6203{
Bram Moolenaar98921892016-02-23 17:14:37 +01006204#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006205 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006206 (void)msec;
6207#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 GdkGCValues values;
6209 GdkGC *invert_gc;
6210
6211 if (gui.drawarea->window == NULL)
6212 return;
6213
6214 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6215 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6216 values.function = GDK_XOR;
6217 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6218 &values,
6219 GDK_GC_FOREGROUND |
6220 GDK_GC_BACKGROUND |
6221 GDK_GC_FUNCTION);
6222 gdk_gc_set_exposures(invert_gc,
6223 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6224 /*
6225 * Do a visual beep by changing back and forth in some undetermined way,
6226 * the foreground and background colors. This is due to the fact that
6227 * there can't be really any prediction about the effects of XOR on
6228 * arbitrary X11 servers. However this seems to be enough for what we
6229 * intend it to do.
6230 */
6231 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6232 TRUE,
6233 0, 0,
6234 FILL_X((int)Columns) + gui.border_offset,
6235 FILL_Y((int)Rows) + gui.border_offset);
6236
6237 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006238 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239
6240 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6241 TRUE,
6242 0, 0,
6243 FILL_X((int)Columns) + gui.border_offset,
6244 FILL_Y((int)Rows) + gui.border_offset);
6245
6246 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248}
6249
6250/*
6251 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6252 */
6253 void
6254gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6255{
Bram Moolenaar98921892016-02-23 17:14:37 +01006256#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006257 const GdkRectangle rect = {
6258 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6259 };
6260 cairo_t * const cr = cairo_create(gui.surface);
6261
Bram Moolenaar36edf062016-07-21 22:10:12 +02006262 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006263# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6264 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6265# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006266 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006267# endif
presuku9459b8d2021-11-16 20:03:56 +00006268 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006269 cairo_fill(cr);
6270
6271 cairo_destroy(cr);
6272
presuku9459b8d2021-11-16 20:03:56 +00006273 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6274 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006275#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 GdkGCValues values;
6277 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278
6279 if (gui.drawarea->window == NULL)
6280 return;
6281
Bram Moolenaar89d40322006-08-29 15:30:07 +00006282 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6283 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 values.function = GDK_XOR;
6285 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6286 &values,
6287 GDK_GC_FOREGROUND |
6288 GDK_GC_BACKGROUND |
6289 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006290 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6291 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6293 TRUE,
6294 FILL_X(c), FILL_Y(r),
6295 (nc) * gui.char_width, (nr) * gui.char_height);
6296 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298}
6299
6300/*
6301 * Iconify the GUI window.
6302 */
6303 void
6304gui_mch_iconify(void)
6305{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307}
6308
6309#if defined(FEAT_EVAL) || defined(PROTO)
6310/*
6311 * Bring the Vim window to the foreground.
6312 */
6313 void
6314gui_mch_set_foreground(void)
6315{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317}
6318#endif
6319
6320/*
6321 * Draw a cursor without focus.
6322 */
6323 void
6324gui_mch_draw_hollow_cursor(guicolor_T color)
6325{
6326 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006327#if GTK_CHECK_VERSION(3,0,0)
6328 cairo_t *cr;
6329#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330
Bram Moolenaar98921892016-02-23 17:14:37 +01006331 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 return;
6333
Bram Moolenaar98921892016-02-23 17:14:37 +01006334#if GTK_CHECK_VERSION(3,0,0)
6335 cr = cairo_create(gui.surface);
6336#endif
6337
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338 gui_mch_set_fg_color(color);
6339
Bram Moolenaar98921892016-02-23 17:14:37 +01006340#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006341 cairo_set_source_rgba(cr,
6342 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6343 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006344#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 if (mb_lefthalve(gui.row, gui.col))
6348 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006349#if GTK_CHECK_VERSION(3,0,0)
6350 cairo_set_line_width(cr, 1.0);
6351 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6352 cairo_rectangle(cr,
6353 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6354 i * gui.char_width - 1, gui.char_height - 1);
6355 cairo_stroke(cr);
6356 cairo_destroy(cr);
6357#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6359 FALSE,
6360 FILL_X(gui.col), FILL_Y(gui.row),
6361 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006362#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363}
6364
6365/*
6366 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6367 * color "color".
6368 */
6369 void
6370gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6371{
Bram Moolenaar98921892016-02-23 17:14:37 +01006372 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373 return;
6374
6375 gui_mch_set_fg_color(color);
6376
Bram Moolenaar98921892016-02-23 17:14:37 +01006377#if GTK_CHECK_VERSION(3,0,0)
6378 {
6379 cairo_t *cr;
6380
6381 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006382 cairo_set_source_rgba(cr,
6383 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6384 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006385 cairo_rectangle(cr,
6386# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006387 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006388 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6389# endif
6390 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6391 w, h);
6392 cairo_fill(cr);
6393 cairo_destroy(cr);
6394 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006395#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6397 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6398 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006399# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006400 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006402# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 FILL_X(gui.col),
6404 FILL_Y(gui.row) + gui.char_height - h,
6405 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006406#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407}
6408
6409
6410/*
6411 * Catch up with any queued X11 events. This may put keyboard input into the
6412 * input buffer, call resize call-backs, trigger timers etc. If there is
6413 * nothing in the X11 event queue (& no timers pending), then we return
6414 * immediately.
6415 */
6416 void
6417gui_mch_update(void)
6418{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006419 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6420 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421}
6422
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006423 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424input_timer_cb(gpointer data)
6425{
6426 int *timed_out = (int *) data;
6427
Bram Moolenaar30613902019-12-01 22:11:18 +01006428 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 *timed_out = TRUE;
6430
Bram Moolenaar30613902019-12-01 22:11:18 +01006431 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432}
6433
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006434#ifdef FEAT_JOB_CHANNEL
6435 static timeout_cb_type
6436channel_poll_cb(gpointer data UNUSED)
6437{
Bram Moolenaar30613902019-12-01 22:11:18 +01006438 // Using an event handler for a channel that may be disconnected does
6439 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006440 channel_handle_events(TRUE);
6441 parse_queued_messages();
6442
Bram Moolenaar30613902019-12-01 22:11:18 +01006443 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006444}
6445#endif
6446
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447/*
6448 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6449 * from the keyboard.
6450 * wtime == -1 Wait forever.
6451 * wtime == 0 This should never happen.
6452 * wtime > 0 Wait wtime milliseconds for a character.
6453 * Returns OK if a character was found to be available within the given time,
6454 * or FAIL otherwise.
6455 */
6456 int
6457gui_mch_wait_for_chars(long wtime)
6458{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006459 int focus;
6460 guint timer;
6461 static int timed_out;
6462 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006463#ifdef FEAT_JOB_CHANNEL
6464 guint channel_timer = 0;
6465#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466
6467 timed_out = FALSE;
6468
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006469 // This timeout makes sure that we will return if no characters arrived in
6470 // time. If "wtime" is zero just use one.
6471 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006472 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006473 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 else
6475 timer = 0;
6476
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006477#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006478 // If there is a channel with the keep_open flag we need to poll for input
6479 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006480 if (channel_any_keep_open())
6481 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6482#endif
6483
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 focus = gui.in_focus;
6485
6486 do
6487 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006488 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 if (gui.in_focus != focus)
6490 {
6491 if (gui.in_focus)
6492 gui_mch_start_blink();
6493 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006494 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 focus = gui.in_focus;
6496 }
6497
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006498#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006499# ifdef FEAT_TIMERS
6500 did_add_timer = FALSE;
6501# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006502 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006503# ifdef FEAT_TIMERS
6504 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006505 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006506 goto theend;
6507# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006508#endif
6509
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 /*
6511 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006512 * Skip this if input is available anyway (can happen in rare
6513 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006515 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006516 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517
Bram Moolenaar30613902019-12-01 22:11:18 +01006518 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 if (input_available())
6520 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006521 retval = OK;
6522 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 }
6524 } while (wtime < 0 || !timed_out);
6525
6526 /*
6527 * Flush all eventually pending (drawing) events.
6528 */
6529 gui_mch_update();
6530
Bram Moolenaar4231da42016-06-02 14:30:04 +02006531theend:
6532 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006533 timeout_remove(timer);
6534#ifdef FEAT_JOB_CHANNEL
6535 if (channel_timer != 0)
6536 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006537#endif
6538
6539 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540}
6541
6542
Bram Moolenaar30613902019-12-01 22:11:18 +01006543/////////////////////////////////////////////////////////////////////////////
6544// Output drawing routines.
6545//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546
6547
Bram Moolenaar30613902019-12-01 22:11:18 +01006548// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 void
6550gui_mch_flush(void)
6551{
Bram Moolenaar98921892016-02-23 17:14:37 +01006552 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006553#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006554 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006555#else
6556 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558}
6559
6560/*
6561 * Clear a rectangular region of the screen from text pos (row1, col1) to
6562 * (row2, col2) inclusive.
6563 */
6564 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006565gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006567
6568 int col1 = check_col(col1arg);
6569 int col2 = check_col(col2arg);
6570 int row1 = check_row(row1arg);
6571 int row2 = check_row(row2arg);
6572
Bram Moolenaar98921892016-02-23 17:14:37 +01006573#if GTK_CHECK_VERSION(3,0,0)
6574 if (gtk_widget_get_window(gui.drawarea) == NULL)
6575 return;
6576#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 GdkColor color;
6578
6579 if (gui.drawarea->window == NULL)
6580 return;
6581
6582 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584
Bram Moolenaar98921892016-02-23 17:14:37 +01006585#if GTK_CHECK_VERSION(3,0,0)
6586 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006587 // Add one pixel to the far right column in case a double-stroked
6588 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006589 const GdkRectangle rect = {
6590 FILL_X(col1), FILL_Y(row1),
6591 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6592 (row2 - row1 + 1) * gui.char_height
6593 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006594 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006595# if GTK_CHECK_VERSION(3,22,2)
6596 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6597# else
presuku9459b8d2021-11-16 20:03:56 +00006598 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006599 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6600 if (pat != NULL)
6601 cairo_set_source(cr, pat);
6602 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006603 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006604# endif
presuku9459b8d2021-11-16 20:03:56 +00006605 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006606 cairo_fill(cr);
6607 cairo_destroy(cr);
6608
presuku9459b8d2021-11-16 20:03:56 +00006609 gtk_widget_queue_draw_area(gui.drawarea,
6610 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006611 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006612#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 gdk_gc_set_foreground(gui.text_gc, &color);
6614
Bram Moolenaar30613902019-12-01 22:11:18 +01006615 // Clear one extra pixel at the far right, for when bold characters have
6616 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6618 FILL_X(col1), FILL_Y(row1),
6619 (col2 - col1 + 1) * gui.char_width
6620 + (col2 == Columns - 1),
6621 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006622#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623}
6624
Bram Moolenaar98921892016-02-23 17:14:37 +01006625#if GTK_CHECK_VERSION(3,0,0)
6626 static void
6627gui_gtk_window_clear(GdkWindow *win)
6628{
6629 const GdkRectangle rect = {
6630 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6631 };
6632 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006633# if GTK_CHECK_VERSION(3,22,2)
6634 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6635# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006636 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6637 if (pat != NULL)
6638 cairo_set_source(cr, pat);
6639 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006640 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006641# endif
presuku9459b8d2021-11-16 20:03:56 +00006642 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006643 cairo_fill(cr);
6644 cairo_destroy(cr);
6645
presuku9459b8d2021-11-16 20:03:56 +00006646 gtk_widget_queue_draw_area(gui.drawarea,
6647 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006648}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006649#else
6650# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006651#endif
6652
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653 void
6654gui_mch_clear_all(void)
6655{
Bram Moolenaar98921892016-02-23 17:14:37 +01006656 if (gtk_widget_get_window(gui.drawarea) != NULL)
6657 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658}
6659
Bram Moolenaar98921892016-02-23 17:14:37 +01006660#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661/*
6662 * Redraw any text revealed by scrolling up/down.
6663 */
6664 static void
6665check_copy_area(void)
6666{
6667 GdkEvent *event;
6668 int expose_count;
6669
6670 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6671 return;
6672
Bram Moolenaar30613902019-12-01 22:11:18 +01006673 // Avoid redrawing the cursor while scrolling or it'll end up where
6674 // we don't want it to be. I'm not sure if it's correct to call
6675 // gui_dont_update_cursor() at this point but it works as a quick
6676 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006677 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678
6679 do
6680 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006681 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6683
6684 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006685 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686
6687 gui_redraw(event->expose.area.x, event->expose.area.y,
6688 event->expose.area.width, event->expose.area.height);
6689
6690 expose_count = event->expose.count;
6691 gdk_event_free(event);
6692 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006693 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694
6695 gui_can_update_cursor();
6696}
Bram Moolenaar30613902019-12-01 22:11:18 +01006697#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006698
6699#if GTK_CHECK_VERSION(3,0,0)
6700 static void
6701gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6702 int src_x, int src_y,
6703 int width, int height)
6704{
6705 cairo_t * const cr = cairo_create(gui.surface);
6706
6707 cairo_rectangle(cr, dest_x, dest_y, width, height);
6708 cairo_clip(cr);
6709 cairo_push_group(cr);
6710 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6711 cairo_paint(cr);
6712 cairo_pop_group_to_source(cr);
6713 cairo_paint(cr);
6714
6715 cairo_destroy(cr);
6716}
6717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718
6719/*
6720 * Delete the given number of lines from the given row, scrolling up any
6721 * text further down within the scroll region.
6722 */
6723 void
6724gui_mch_delete_lines(int row, int num_lines)
6725{
Bram Moolenaar98921892016-02-23 17:14:37 +01006726#if GTK_CHECK_VERSION(3,0,0)
6727 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6728 const int nrows = gui.scroll_region_bot - row + 1;
6729 const int src_nrows = nrows - num_lines;
6730
6731 gui_gtk_surface_copy_rect(
6732 FILL_X(gui.scroll_region_left), FILL_Y(row),
6733 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6734 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6735 gui_clear_block(
6736 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6737 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006738 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006739 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006740 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006741#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006743 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006744
6745 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6746 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6747
Bram Moolenaar30613902019-12-01 22:11:18 +01006748 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6750 FILL_X(gui.scroll_region_left), FILL_Y(row),
6751 gui.drawarea->window,
6752 FILL_X(gui.scroll_region_left),
6753 FILL_Y(row + num_lines),
6754 gui.char_width * (gui.scroll_region_right
6755 - gui.scroll_region_left + 1) + 1,
6756 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6757
6758 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6759 gui.scroll_region_left,
6760 gui.scroll_region_bot, gui.scroll_region_right);
6761 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006762#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763}
6764
6765/*
6766 * Insert the given number of lines before the given row, scrolling down any
6767 * following text within the scroll region.
6768 */
6769 void
6770gui_mch_insert_lines(int row, int num_lines)
6771{
Bram Moolenaar98921892016-02-23 17:14:37 +01006772#if GTK_CHECK_VERSION(3,0,0)
6773 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6774 const int nrows = gui.scroll_region_bot - row + 1;
6775 const int src_nrows = nrows - num_lines;
6776
6777 gui_gtk_surface_copy_rect(
6778 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6779 FILL_X(gui.scroll_region_left), FILL_Y(row),
6780 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006781 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006782 row, gui.scroll_region_left,
6783 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006784 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006785 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006786 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006787#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006789 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790
6791 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6792 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6793
Bram Moolenaar30613902019-12-01 22:11:18 +01006794 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6796 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6797 gui.drawarea->window,
6798 FILL_X(gui.scroll_region_left), FILL_Y(row),
6799 gui.char_width * (gui.scroll_region_right
6800 - gui.scroll_region_left + 1) + 1,
6801 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6802
6803 gui_clear_block(row, gui.scroll_region_left,
6804 row + num_lines - 1, gui.scroll_region_right);
6805 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006806#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807}
6808
6809/*
6810 * X Selection stuff, for cutting and pasting text to other windows.
6811 */
6812 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006813clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006814{
6815 GdkAtom target;
6816 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006817 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818
6819 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6820 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006821 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6822 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823 received_selection = RS_NONE;
6824 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6825
6826 gtk_selection_convert(gui.drawarea,
6827 cbd->gtk_sel_atom, target,
6828 (guint32)GDK_CURRENT_TIME);
6829
Bram Moolenaar30613902019-12-01 22:11:18 +01006830 // Hack: Wait up to three seconds for the selection. A hang was
6831 // noticed here when using the netrw plugin combined with ":gui"
6832 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006833 start = time(NULL);
6834 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006835 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836
6837 if (received_selection != RS_FAIL)
6838 return;
6839 }
6840
Bram Moolenaar30613902019-12-01 22:11:18 +01006841 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006842 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6843 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844}
6845
6846/*
6847 * Disown the selection.
6848 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006850clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006852 if (!in_selection_clear_event)
6853 {
6854 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6855 gui_mch_update();
6856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857}
6858
6859/*
6860 * Own the selection and return OK if it worked.
6861 */
6862 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006863clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864{
6865 int success;
6866
6867 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006868 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869 gui_mch_update();
6870 return (success) ? OK : FAIL;
6871}
6872
6873/*
6874 * Send the current selection to the clipboard. Do nothing for X because we
6875 * will fill in the selection only when requested by another app.
6876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006878clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879{
6880}
6881
Bram Moolenaar113e1072019-01-20 15:30:40 +01006882#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006883 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006884clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006885{
6886 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6887}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006888#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006889
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890
6891#if defined(FEAT_MENU) || defined(PROTO)
6892/*
6893 * Make a menu item appear either active or not active (grey or not grey).
6894 */
6895 void
6896gui_mch_menu_grey(vimmenu_T *menu, int grey)
6897{
6898 if (menu->id == NULL)
6899 return;
6900
6901 if (menu_is_separator(menu->name))
6902 grey = TRUE;
6903
6904 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006905 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006906 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 {
6908 gtk_widget_set_sensitive(menu->id, !grey);
6909 gui_mch_update();
6910 }
6911}
6912
6913/*
6914 * Make menu item hidden or not hidden.
6915 */
6916 void
6917gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6918{
6919 if (menu->id == 0)
6920 return;
6921
6922 if (hidden)
6923 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006924 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 {
6926 gtk_widget_hide(menu->id);
6927 gui_mch_update();
6928 }
6929 }
6930 else
6931 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006932 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 {
6934 gtk_widget_show(menu->id);
6935 gui_mch_update();
6936 }
6937 }
6938}
6939
6940/*
6941 * This is called after setting all the menus to grey/hidden or not.
6942 */
6943 void
6944gui_mch_draw_menubar(void)
6945{
Bram Moolenaar30613902019-12-01 22:11:18 +01006946 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 gui_mch_update();
6948}
Bram Moolenaar30613902019-12-01 22:11:18 +01006949#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950
6951/*
6952 * Scrollbar stuff.
6953 */
6954 void
6955gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6956{
6957 if (sb->id == NULL)
6958 return;
6959
Bram Moolenaar98921892016-02-23 17:14:37 +01006960 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006961 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962}
6963
6964
6965/*
6966 * Return the RGB value of a pixel as long.
6967 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006968 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969gui_mch_get_rgb(guicolor_T pixel)
6970{
Bram Moolenaar98921892016-02-23 17:14:37 +01006971#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006972 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006973#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006974 GdkColor color;
6975
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6977 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006979 return (guicolor_T)(
6980 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006982 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984}
6985
6986/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006987 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006989 void
6990gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991{
Bram Moolenaar98921892016-02-23 17:14:37 +01006992 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993}
6994
6995 void
6996gui_mch_setmouse(int x, int y)
6997{
Bram Moolenaar30613902019-12-01 22:11:18 +01006998 // Sorry for the Xlib call, but we can't avoid it, since there is no
6999 // internal GDK mechanism present to accomplish this. (and for good
7000 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01007001 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7002 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7003 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004}
7005
7006
7007#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01007008// The last set mouse pointer shape is remembered, to be used when it goes
7009// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010static int last_shape = 0;
7011#endif
7012
7013/*
7014 * Use the blank mouse pointer or not.
7015 *
7016 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7017 */
7018 void
7019gui_mch_mousehide(int hide)
7020{
7021 if (gui.pointer_hidden != hide)
7022 {
7023 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007024 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 {
7026 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007027 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7028 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 else
7030#ifdef FEAT_MOUSESHAPE
7031 mch_set_mouse_shape(last_shape);
7032#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02007033 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034#endif
7035 }
7036 }
7037}
7038
7039#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7040
Bram Moolenaar30613902019-12-01 22:11:18 +01007041// Table for shape IDs. Keep in sync with the mshape_names[] table in
7042// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043static const int mshape_ids[] =
7044{
Bram Moolenaar30613902019-12-01 22:11:18 +01007045 GDK_LEFT_PTR, // arrow
7046 GDK_CURSOR_IS_PIXMAP, // blank
7047 GDK_XTERM, // beam
7048 GDK_SB_V_DOUBLE_ARROW, // updown
7049 GDK_SIZING, // udsizing
7050 GDK_SB_H_DOUBLE_ARROW, // leftright
7051 GDK_SIZING, // lrsizing
7052 GDK_WATCH, // busy
7053 GDK_X_CURSOR, // no
7054 GDK_CROSSHAIR, // crosshair
7055 GDK_HAND1, // hand1
7056 GDK_HAND2, // hand2
7057 GDK_PENCIL, // pencil
7058 GDK_QUESTION_ARROW, // question
7059 GDK_RIGHT_PTR, // right-arrow
7060 GDK_CENTER_PTR, // up-arrow
7061 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062};
7063
7064 void
7065mch_set_mouse_shape(int shape)
7066{
7067 int id;
7068 GdkCursor *c;
7069
Bram Moolenaar98921892016-02-23 17:14:37 +01007070 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 return;
7072
7073 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007074 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7075 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 else
7077 {
7078 if (shape >= MSHAPE_NUMBERED)
7079 {
7080 id = shape - MSHAPE_NUMBERED;
7081 if (id >= GDK_LAST_CURSOR)
7082 id = GDK_LEFT_PTR;
7083 else
Bram Moolenaar30613902019-12-01 22:11:18 +01007084 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 }
K.Takataeeec2542021-06-02 13:28:16 +02007086 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007088 else
7089 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007091 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007092 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007093# if GTK_CHECK_VERSION(3,0,0)
7094 g_object_unref(G_OBJECT(c));
7095# else
Bram Moolenaar30613902019-12-01 22:11:18 +01007096 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01007097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 }
7099 if (shape != MSHAPE_HIDE)
7100 last_shape = shape;
7101}
Bram Moolenaar30613902019-12-01 22:11:18 +01007102#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007103
7104
7105#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7106/*
7107 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7108 * scaled down if the current font is not big enough, or scaled up if the image
7109 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7110 * will be cut off if the current font is not big enough, or centered if it's
7111 * too small.
7112 */
7113# define SIGN_WIDTH (2 * gui.char_width)
7114# define SIGN_HEIGHT (gui.char_height)
7115# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7116
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 void
7118gui_mch_drawsign(int row, int col, int typenr)
7119{
7120 GdkPixbuf *sign;
7121
7122 sign = (GdkPixbuf *)sign_get_image(typenr);
7123
Bram Moolenaar98921892016-02-23 17:14:37 +01007124 if (sign != NULL && gui.drawarea != NULL
7125 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 {
7127 int width;
7128 int height;
7129 int xoffset;
7130 int yoffset;
7131 int need_scale;
7132
7133 width = gdk_pixbuf_get_width(sign);
7134 height = gdk_pixbuf_get_height(sign);
7135 /*
7136 * Decide whether we need to scale. Allow one pixel of border
7137 * width to be cut off, in order to avoid excessive scaling for
7138 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007139 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140 */
7141 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007142 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 || (width < 3 * SIGN_WIDTH / 4
7144 && height < 3 * SIGN_HEIGHT / 4));
7145 if (need_scale)
7146 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007147 double aspect;
7148 int w = width;
7149 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150
Bram Moolenaar30613902019-12-01 22:11:18 +01007151 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 aspect = (double)height / (double)width;
7153 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7154 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007155 if (((double)(MAX(height, SIGN_HEIGHT)) /
7156 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7157 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007158 // Change the aspect ratio by at most 15% to fill the
7159 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007160 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7161 height = MIN(height, SIGN_HEIGHT);
7162 }
7163 else
7164 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007166 if (w == width && h == height)
7167 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007168 // no change in dimensions; don't decrease reference counter
7169 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007170 need_scale = FALSE;
7171 }
7172 else
7173 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007174 // This doesn't seem to be worth caching, and doing so would
7175 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007176 sign = gdk_pixbuf_scale_simple(sign, width, height,
7177 GDK_INTERP_BILINEAR);
7178 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01007179 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 }
7182
Bram Moolenaar30613902019-12-01 22:11:18 +01007183 // The origin is the upper-left corner of the pixmap. Therefore
7184 // these offset may become negative if the pixmap is smaller than
7185 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 xoffset = (width - SIGN_WIDTH) / 2;
7187 yoffset = (height - SIGN_HEIGHT) / 2;
7188
Bram Moolenaar98921892016-02-23 17:14:37 +01007189# if GTK_CHECK_VERSION(3,0,0)
7190 {
7191 cairo_t *cr;
7192 cairo_surface_t *bg_surf;
7193 cairo_t *bg_cr;
7194 cairo_surface_t *sign_surf;
7195 cairo_t *sign_cr;
7196
7197 cr = cairo_create(gui.surface);
7198
7199 bg_surf = cairo_surface_create_similar(gui.surface,
7200 cairo_surface_get_content(gui.surface),
7201 SIGN_WIDTH, SIGN_HEIGHT);
7202 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007203 cairo_set_source_rgba(bg_cr,
7204 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7205 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007206 cairo_paint(bg_cr);
7207
7208 sign_surf = cairo_surface_create_similar(gui.surface,
7209 cairo_surface_get_content(gui.surface),
7210 SIGN_WIDTH, SIGN_HEIGHT);
7211 sign_cr = cairo_create(sign_surf);
7212 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7213 cairo_paint(sign_cr);
7214
7215 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7216 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7217 cairo_paint(sign_cr);
7218
7219 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7220 cairo_paint(cr);
7221
7222 cairo_destroy(sign_cr);
7223 cairo_surface_destroy(sign_surf);
7224 cairo_destroy(bg_cr);
7225 cairo_surface_destroy(bg_surf);
7226 cairo_destroy(cr);
7227
presuku9459b8d2021-11-16 20:03:56 +00007228 gtk_widget_queue_draw_area(gui.drawarea,
7229 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007230
7231 }
Bram Moolenaar30613902019-12-01 22:11:18 +01007232# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7234
7235 gdk_draw_rectangle(gui.drawarea->window,
7236 gui.text_gc,
7237 TRUE,
7238 FILL_X(col),
7239 FILL_Y(row),
7240 SIGN_WIDTH,
7241 SIGN_HEIGHT);
7242
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 gdk_pixbuf_render_to_drawable_alpha(sign,
7244 gui.drawarea->window,
7245 MAX(0, xoffset),
7246 MAX(0, yoffset),
7247 FILL_X(col) - MIN(0, xoffset),
7248 FILL_Y(row) - MIN(0, yoffset),
7249 MIN(width, SIGN_WIDTH),
7250 MIN(height, SIGN_HEIGHT),
7251 GDK_PIXBUF_ALPHA_BILEVEL,
7252 127,
7253 GDK_RGB_DITHER_NORMAL,
7254 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007255# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007256 if (need_scale)
7257 g_object_unref(sign);
7258 }
7259}
7260
7261 void *
7262gui_mch_register_sign(char_u *signfile)
7263{
7264 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7265 {
7266 GdkPixbuf *sign;
7267 GError *error = NULL;
7268 char_u *message;
7269
7270 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7271
7272 if (error == NULL)
7273 return sign;
7274
7275 message = (char_u *)error->message;
7276
7277 if (message != NULL && input_conv.vc_type != CONV_NONE)
7278 message = string_convert(&input_conv, message, NULL);
7279
7280 if (message != NULL)
7281 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007282 // The error message is already translated and will be more
7283 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007284 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285
7286 if (input_conv.vc_type != CONV_NONE)
7287 vim_free(message);
7288 }
7289 g_error_free(error);
7290 }
7291
7292 return NULL;
7293}
7294
7295 void
7296gui_mch_destroy_sign(void *sign)
7297{
7298 if (sign != NULL)
7299 g_object_unref(sign);
7300}
7301
Bram Moolenaar30613902019-12-01 22:11:18 +01007302#endif // FEAT_SIGN_ICONS