blob: 4460fb3cf75c0c5ab7bef3b46d669a6e422896b3 [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;
1163
Bram Moolenaar20892c12011-06-26 04:49:00 +02001164 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 key_sym = event->keyval;
1166 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168#ifdef FEAT_XIM
1169 if (xim_queue_key_press_event(event, TRUE))
1170 return TRUE;
1171#endif
1172
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173#ifdef SunXK_F36
1174 /*
1175 * These keys have bogus lookup strings, and trapping them here is
1176 * easier than trying to XRebindKeysym() on them with every possible
1177 * combination of modifiers.
1178 */
1179 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1180 len = 0;
1181 else
1182#endif
1183 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001184 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
Bram Moolenaar30613902019-12-01 22:11:18 +01001186 // Careful: convert_input() doesn't handle the NUL character.
1187 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 if (len > 1 && input_conv.vc_type != CONV_NONE)
1189 len = convert_input(string2, len, sizeof(string2));
1190
1191 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 d = string;
1193 for (i = 0; i < len; ++i)
1194 {
1195 *d++ = s[i];
1196 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1197 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001198 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 *d++ = KS_EXTRA;
1200 *d++ = (int)KE_CSI;
1201 }
1202 }
1203 len = d - string;
1204 }
1205
Bram Moolenaar30613902019-12-01 22:11:18 +01001206 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 if (key_sym == GDK_ISO_Left_Tab)
1208 {
1209 key_sym = GDK_Tab;
1210 state |= GDK_SHIFT_MASK;
1211 }
1212
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001214 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1215 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 if ((state & GDK_MOD1_MASK)
1217 && gui.menu_is_active
1218 && (*p_wak == 'y'
1219 || (*p_wak == 'm'
1220 && len == 1
1221 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001222 // For GTK2 we return false to signify that we haven't handled the
1223 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225#endif
1226
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001227 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1228 // done later, the same as it happens for the terminal. Hopefully that
1229 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
Bram Moolenaar30613902019-12-01 22:11:18 +01001231 // Check for special keys. Also do this when len == 1 (key has an ASCII
1232 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 if (len == 0 || len == 1)
1234 {
1235 for (i = 0; special_keys[i].key_sym != 0; i++)
1236 {
1237 if (special_keys[i].key_sym == key_sym)
1238 {
1239 string[0] = CSI;
1240 string[1] = special_keys[i].code0;
1241 string[2] = special_keys[i].code1;
1242 len = -3;
1243 break;
1244 }
1245 }
1246 }
1247
Bram Moolenaar30613902019-12-01 22:11:18 +01001248 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 return TRUE;
1250
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001251 // For some keys a shift modifier is translated into another key code.
1252 if (len == -3)
1253 key = TO_SPECIAL(string[1], string[2]);
1254 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001255 {
1256 string[len] = NUL;
1257 key = mb_ptr2char(string);
1258 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001259
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001260 // Handle modifiers.
1261 modifiers = modifiers_gdk2vim(state);
1262
1263 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001264 key = simplify_key(key, &modifiers);
1265 if (key == CSI)
1266 key = K_CSI;
1267 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001269 string[0] = CSI;
1270 string[1] = K_SECOND(key);
1271 string[2] = K_THIRD(key);
1272 len = 3;
1273 }
1274 else
1275 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001276 // Some keys need adjustment when the Ctrl modifier is used.
1277 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001278
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001279 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001280 modifiers = may_remove_shift_modifier(modifiers, key);
1281
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001282 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001285 if (modifiers != 0)
1286 {
1287 string2[0] = CSI;
1288 string2[1] = KS_MODIFIER;
1289 string2[2] = modifiers;
1290 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 }
1292
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001293 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001295 int int_ch = check_for_interrupt(key, modifiers);
1296
1297 if (int_ch != NUL)
1298 {
1299 trash_input_buf();
1300 string[0] = int_ch;
1301 len = 1;
1302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 }
1304
1305 add_to_input_buf(string, len);
1306
Bram Moolenaar30613902019-12-01 22:11:18 +01001307 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (p_mh)
1309 gui_mch_mousehide(TRUE);
1310
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 return TRUE;
1312}
1313
Bram Moolenaar98921892016-02-23 17:14:37 +01001314#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001316key_release_event(GtkWidget *widget UNUSED,
1317 GdkEventKey *event,
1318 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319{
Bram Moolenaar98921892016-02-23 17:14:37 +01001320# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001321 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 /*
1323 * GTK+ 2 input methods may do fancy stuff on key release events too.
1324 * With the default IM for instance, you can enter any UCS code point
1325 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1326 */
1327 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001328# else
1329 return TRUE;
1330# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331}
1332#endif
1333
1334
Bram Moolenaar30613902019-12-01 22:11:18 +01001335/////////////////////////////////////////////////////////////////////////////
1336// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337
Bram Moolenaar30613902019-12-01 22:11:18 +01001338// Remember when clip_lose_selection was called from here, we must not call
1339// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001340static int in_selection_clear_event = FALSE;
1341
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001343selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001345 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001347 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 if (event->selection == clip_plus.gtk_sel_atom)
1349 clip_lose_selection(&clip_plus);
1350 else
1351 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001352 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 return TRUE;
1355}
1356
Bram Moolenaar30613902019-12-01 22:11:18 +01001357#define RS_NONE 0 // selection_received_cb() not called yet
1358#define RS_OK 1 // selection_received_cb() called and OK
1359#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360static int received_selection = RS_NONE;
1361
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001363selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001365 guint time_ UNUSED,
1366 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001368 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 char_u *text;
1370 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001373 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374
Bram Moolenaar98921892016-02-23 17:14:37 +01001375 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 cbd = &clip_plus;
1377 else
1378 cbd = &clip_star;
1379
Bram Moolenaar98921892016-02-23 17:14:37 +01001380 text = (char_u *)gtk_selection_data_get_data(data);
1381 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382
1383 if (text == NULL || len <= 0)
1384 {
1385 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001386 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 return;
1389 }
1390
Bram Moolenaar98921892016-02-23 17:14:37 +01001391 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 {
1393 motion_type = *text++;
1394 --len;
1395 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001396 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 {
1398 char_u *enc;
1399 vimconv_T conv;
1400
1401 motion_type = *text++;
1402 --len;
1403
1404 enc = text;
1405 text += STRLEN(text) + 1;
1406 len -= text - enc;
1407
Bram Moolenaar30613902019-12-01 22:11:18 +01001408 // If the encoding of the text is different from 'encoding', attempt
1409 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 conv.vc_type = CONV_NONE;
1411 convert_setup(&conv, enc, p_enc);
1412 if (conv.vc_type != CONV_NONE)
1413 {
1414 tmpbuf = string_convert(&conv, text, &len);
1415 if (tmpbuf != NULL)
1416 text = tmpbuf;
1417 convert_setup(&conv, NULL, NULL);
1418 }
1419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
Bram Moolenaar30613902019-12-01 22:11:18 +01001421 // gtk_selection_data_get_text() handles all the nasty details
1422 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 else
1424 {
1425 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1426 if (tmpbuf_utf8 != NULL)
1427 {
1428 len = STRLEN(tmpbuf_utf8);
1429 if (input_conv.vc_type != CONV_NONE)
1430 {
1431 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1432 if (tmpbuf != NULL)
1433 text = tmpbuf;
1434 }
1435 else
1436 text = tmpbuf_utf8;
1437 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001438 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1439 {
1440 vimconv_T conv;
1441
Bram Moolenaar30613902019-12-01 22:11:18 +01001442 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001443 conv.vc_type = CONV_NONE;
1444 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1445
1446 if (conv.vc_type != CONV_NONE)
1447 {
1448 text += 2;
1449 len -= 2;
1450 tmpbuf = string_convert(&conv, text, &len);
1451 convert_setup(&conv, NULL, NULL);
1452 }
1453 if (tmpbuf != NULL)
1454 text = tmpbuf;
1455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457
Bram Moolenaar30613902019-12-01 22:11:18 +01001458 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001459 while (len > 0 && text[len - 1] == NUL)
1460 --len;
1461
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 clip_yank_selection(motion_type, text, (long)len, cbd);
1463 received_selection = RS_OK;
1464 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466}
1467
1468/*
1469 * Prepare our selection data for passing it to the external selection
1470 * client.
1471 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001473selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 GtkSelectionData *selection_data,
1475 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001476 guint time_ UNUSED,
1477 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478{
1479 char_u *string;
1480 char_u *tmpbuf;
1481 long_u tmplen;
1482 int length;
1483 int motion_type;
1484 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001485 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar98921892016-02-23 17:14:37 +01001487 if (gtk_selection_data_get_selection(selection_data)
1488 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 cbd = &clip_plus;
1490 else
1491 cbd = &clip_star;
1492
1493 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001494 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495
1496 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001497 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 && info != (guint)TARGET_UTF8_STRING
1499 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 && info != (guint)TARGET_VIM
1501 && info != (guint)TARGET_COMPOUND_TEXT
1502 && info != (guint)TARGET_TEXT)
1503 return;
1504
Bram Moolenaar30613902019-12-01 22:11:18 +01001505 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 clip_get_selection(cbd);
1507
1508 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1509 if (motion_type < 0 || string == NULL)
1510 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001511 // Due to int arguments we can't handle more than G_MAXINT. Also
1512 // reserve one extra byte for NUL or the motion type; just in case.
1513 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1515
1516 if (info == (guint)TARGET_VIM)
1517 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001518 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 if (tmpbuf != NULL)
1520 {
1521 tmpbuf[0] = motion_type;
1522 mch_memmove(tmpbuf + 1, string, (size_t)length);
1523 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001524 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 ++length;
1526 vim_free(string);
1527 string = tmpbuf;
1528 type = vim_atom;
1529 }
1530
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001531 else if (info == (guint)TARGET_HTML)
1532 {
1533 vimconv_T conv;
1534
Bram Moolenaar30613902019-12-01 22:11:18 +01001535 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001536 conv.vc_type = CONV_NONE;
1537 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1538 if (conv.vc_type != CONV_NONE)
1539 {
1540 tmpbuf = string_convert(&conv, string, &length);
1541 convert_setup(&conv, NULL, NULL);
1542 vim_free(string);
1543 string = tmpbuf;
1544 }
1545
Bram Moolenaar30613902019-12-01 22:11:18 +01001546 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001547 if (string != NULL)
1548 {
1549 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001550 if (tmpbuf != NULL)
1551 {
1552 tmpbuf[0] = 0xff;
1553 tmpbuf[1] = 0xfe;
1554 mch_memmove(tmpbuf + 2, string, (size_t)length);
1555 vim_free(string);
1556 string = tmpbuf;
1557 length += 2;
1558 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001559
Bram Moolenaar98921892016-02-23 17:14:37 +01001560#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001561 // Looks redundant even for GTK2 because these values are
1562 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001563 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001564 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001565#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001566 gtk_selection_data_set(selection_data, html_atom, 16,
1567 string, length);
1568 vim_free(string);
1569 }
1570 return;
1571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 else if (info == (guint)TARGET_VIMENC)
1573 {
1574 int l = STRLEN(p_enc);
1575
Bram Moolenaar30613902019-12-01 22:11:18 +01001576 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001577 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 if (tmpbuf != NULL)
1579 {
1580 tmpbuf[0] = motion_type;
1581 STRCPY(tmpbuf + 1, p_enc);
1582 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001583 length += l + 2;
1584 vim_free(string);
1585 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 type = vimenc_atom;
1588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
Bram Moolenaar30613902019-12-01 22:11:18 +01001590 // gtk_selection_data_set_text() handles everything for us. This is
1591 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 else
1593 {
1594 if (output_conv.vc_type != CONV_NONE)
1595 {
1596 tmpbuf = string_convert(&output_conv, string, &length);
1597 vim_free(string);
1598 if (tmpbuf == NULL)
1599 return;
1600 string = tmpbuf;
1601 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001602 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1604 {
1605 gtk_selection_data_set_text(selection_data,
1606 (const char *)string, length);
1607 }
1608 vim_free(string);
1609 return;
1610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611
1612 if (string != NULL)
1613 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001614#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001615 // Looks redundant even for GTK2 because these values are
1616 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001618 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 gtk_selection_data_set(selection_data, type, 8, string, length);
1621 vim_free(string);
1622 }
1623}
1624
1625/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001626 * Check if the GUI can be started. Called before gvimrc is sourced and
1627 * before fork().
1628 * Return OK or FAIL.
1629 */
1630 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001631gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001632{
1633 char_u *p;
1634
Bram Moolenaar30613902019-12-01 22:11:18 +01001635 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001636 p = mch_getenv((char_u *)"DISPLAY");
1637 if (p == NULL || *p == NUL)
1638 {
1639 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001640 if (give_message)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001641 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar29695702012-05-18 17:03:18 +02001642 return FAIL;
1643 }
1644 return OK;
1645}
1646
1647/*
1648 * Check if the GUI can be started. Called before gvimrc is sourced but after
1649 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 * Return OK or FAIL.
1651 */
1652 int
1653gui_mch_init_check(void)
1654{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001655#ifdef USE_GRESOURCE
1656 static int res_registered = FALSE;
1657
1658 if (!res_registered)
1659 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001660 // Call this function in the GUI process; otherwise, the resources
1661 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001662 res_registered = TRUE;
1663 gui_gtk_register_resource();
1664 }
1665#endif
1666
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001667#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001668 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1669 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001670 gdk_set_allowed_backends ("x11");
1671#endif
1672
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673#ifdef FEAT_GUI_GNOME
1674 if (gtk_socket_id == 0)
1675 using_gnome = 1;
1676#endif
1677
Bram Moolenaar30613902019-12-01 22:11:18 +01001678 // This defaults to argv[0], but we want it to match the name of the
1679 // shipped gvim.desktop so that Vim's windows can be associated with this
1680 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001681 g_set_prgname("gvim");
1682
Bram Moolenaar30613902019-12-01 22:11:18 +01001683 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 if (!gtk_init_check(&gui_argc, &gui_argv))
1685 {
1686 gui.dying = TRUE;
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001687 emsg(_((char *)e_cannot_open_display));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 return FAIL;
1689 }
1690
1691 return OK;
1692}
1693
Bram Moolenaar30613902019-12-01 22:11:18 +01001694/////////////////////////////////////////////////////////////////////////////
1695// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
1697
1698static guint mouse_click_timer = 0;
1699static int mouse_timed_out = TRUE;
1700
1701/*
1702 * Timer used to recognize multiple clicks of the mouse button
1703 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001704 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705mouse_click_timer_cb(gpointer data)
1706{
Bram Moolenaar30613902019-12-01 22:11:18 +01001707 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 int *timed_out = (int *) data;
1709
1710 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001711 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712}
1713
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001714static guint motion_repeat_timer = 0;
1715static int motion_repeat_offset = FALSE;
1716static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717
1718 static void
1719process_motion_notify(int x, int y, GdkModifierType state)
1720{
1721 int button;
1722 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001723 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Chris Daltonee93e322021-11-23 12:27:48 +00001725 // Need to add GDK_BUTTON1_MASK state when dragging a touch.
1726 state |= dragging_button_state;
1727
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1729 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1730 GDK_BUTTON5_MASK))
1731 ? MOUSE_DRAG : ' ';
1732
Bram Moolenaar30613902019-12-01 22:11:18 +01001733 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 gui_mch_mousehide(FALSE);
1735
Bram Moolenaar30613902019-12-01 22:11:18 +01001736 // Just moving the rodent above the drawing area without any button
1737 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 if (button != MOUSE_DRAG)
1739 {
1740 gui_mouse_moved(x, y);
1741 return;
1742 }
1743
Bram Moolenaar30613902019-12-01 22:11:18 +01001744 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001745 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaar30613902019-12-01 22:11:18 +01001747 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1749
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 /*
1751 * Auto repeat timer handling.
1752 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001753 gtk_widget_get_allocation(gui.drawarea, &allocation);
1754
1755 if (x < 0 || y < 0
1756 || x >= allocation.width
1757 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 {
1759
1760 int dx;
1761 int dy;
1762 int offshoot;
1763 int delay = 10;
1764
Bram Moolenaar30613902019-12-01 22:11:18 +01001765 // Calculate the maximal distance of the cursor from the drawing area.
1766 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001767 dx = x < 0 ? -x : x - allocation.width;
1768 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769
1770 offshoot = dx > dy ? dx : dy;
1771
Bram Moolenaar30613902019-12-01 22:11:18 +01001772 // Make a linearly decaying timer delay with a threshold of 5 at a
1773 // distance of 127 pixels from the main window.
1774 //
1775 // One could think endlessly about the most ergonomic variant here.
1776 // For example it could make sense to calculate the distance from the
1777 // drags start instead...
1778 //
1779 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 if (offshoot > 127)
1781 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001782 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 delay = 5;
1784 }
1785 else
1786 {
1787 delay = (130 * (127 - offshoot)) / 127 + 5;
1788 }
1789
Bram Moolenaar30613902019-12-01 22:11:18 +01001790 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001792 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1793 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 }
1795}
1796
Bram Moolenaar98921892016-02-23 17:14:37 +01001797#if GTK_CHECK_VERSION(3,0,0)
1798 static GdkDevice *
1799gui_gtk_get_pointer_device(GtkWidget *widget)
1800{
1801 GdkWindow * const win = gtk_widget_get_window(widget);
1802 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001803# if GTK_CHECK_VERSION(3,20,0)
1804 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1805 return gdk_seat_get_pointer(seat);
1806# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001807 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1808 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001809# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001810}
1811
1812 static GdkWindow *
1813gui_gtk_get_pointer(GtkWidget *widget,
1814 gint *x,
1815 gint *y,
1816 GdkModifierType *state)
1817{
1818 GdkWindow * const win = gtk_widget_get_window(widget);
1819 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1820 return gdk_window_get_device_position(win, dev , x, y, state);
1821}
1822
Bram Moolenaar2369c152016-03-04 23:08:25 +01001823# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001824 static GdkWindow *
1825gui_gtk_window_at_position(GtkWidget *widget,
1826 gint *x,
1827 gint *y)
1828{
1829 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1830 return gdk_device_get_window_at_position(dev, x, y);
1831}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001832# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001833#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001834# define gui_gtk_get_pointer(wid, x, y, s) \
1835 gdk_window_get_pointer((wid)->window, x, y, s)
1836# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001837#endif
1838
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839/*
1840 * Timer used to recognize multiple clicks of the mouse button.
1841 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001842 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001843motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844{
1845 int x;
1846 int y;
1847 GdkModifierType state;
1848
Bram Moolenaar98921892016-02-23 17:14:37 +01001849 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850
1851 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1852 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1853 GDK_BUTTON5_MASK)))
1854 {
1855 motion_repeat_timer = 0;
1856 return FALSE;
1857 }
1858
Bram Moolenaar30613902019-12-01 22:11:18 +01001859 // If there already is a mouse click in the input buffer, wait another
1860 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 if (vim_used_in_input_buf() > 10)
1862 return TRUE;
1863
1864 motion_repeat_timer = 0;
1865
1866 /*
1867 * Fake a motion event.
1868 * Trick: Pretend the mouse moved to the next character on every other
1869 * event, otherwise drag events will be discarded, because they are still
1870 * in the same character.
1871 */
1872 if (motion_repeat_offset)
1873 x += gui.char_width;
1874
1875 motion_repeat_offset = !motion_repeat_offset;
1876 process_motion_notify(x, y, state);
1877
Bram Moolenaar30613902019-12-01 22:11:18 +01001878 // Don't happen again. We will get reinstalled in the synthetic event
1879 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 return FALSE;
1881}
1882
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001884motion_notify_event(GtkWidget *widget,
1885 GdkEventMotion *event,
1886 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887{
1888 if (event->is_hint)
1889 {
1890 int x;
1891 int y;
1892 GdkModifierType state;
1893
Bram Moolenaar98921892016-02-23 17:14:37 +01001894 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 process_motion_notify(x, y, state);
1896 }
1897 else
1898 {
1899 process_motion_notify((int)event->x, (int)event->y,
1900 (GdkModifierType)event->state);
1901 }
1902
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904}
1905
1906
1907/*
1908 * Mouse button handling. Note please that we are capturing multiple click's
1909 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1910 * This is due to the way the generic VIM code is recognizing multiple clicks.
1911 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001913button_press_event(GtkWidget *widget,
1914 GdkEventButton *event,
1915 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 int button;
1918 int repeated_click = FALSE;
1919 int x, y;
1920 int_u vim_modifiers;
1921
Bram Moolenaar20892c12011-06-26 04:49:00 +02001922 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001923
Bram Moolenaar30613902019-12-01 22:11:18 +01001924 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001925 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 gtk_widget_grab_focus(widget);
1927
1928 /*
1929 * Don't let additional events about multiple clicks send by GTK to us
1930 * after the initial button press event confuse us.
1931 */
1932 if (event->type != GDK_BUTTON_PRESS)
1933 return FALSE;
1934
1935 x = event->x;
1936 y = event->y;
1937
Bram Moolenaar30613902019-12-01 22:11:18 +01001938 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 if (!mouse_timed_out && mouse_click_timer)
1940 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001941 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 mouse_click_timer = 0;
1943 repeated_click = TRUE;
1944 }
1945
1946 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001947 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1948 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949
1950 switch (event->button)
1951 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001952 // Keep in sync with gui_x11.c.
1953 // Buttons 4-7 are handled in scroll_event()
Chris Daltonee93e322021-11-23 12:27:48 +00001954 case 1:
1955 button = MOUSE_LEFT;
1956 // needed for touch-drag
1957 dragging_button_state |= GDK_BUTTON1_MASK;
1958 break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001959 case 2: button = MOUSE_MIDDLE; break;
1960 case 3: button = MOUSE_RIGHT; break;
1961 case 8: button = MOUSE_X1; break;
1962 case 9: button = MOUSE_X2; break;
1963 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001964 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966
1967#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001968 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 if (im_is_preediting())
1970 xim_reset();
1971#endif
1972
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001973 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974
1975 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
1977 return TRUE;
1978}
1979
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001981 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001984scroll_event(GtkWidget *widget,
1985 GdkEventScroll *event,
1986 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001989 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990
Bram Moolenaar98921892016-02-23 17:14:37 +01001991 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 gtk_widget_grab_focus(widget);
1993
1994 switch (event->direction)
1995 {
1996 case GDK_SCROLL_UP:
1997 button = MOUSE_4;
1998 break;
1999 case GDK_SCROLL_DOWN:
2000 button = MOUSE_5;
2001 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002002 case GDK_SCROLL_LEFT:
2003 button = MOUSE_7;
2004 break;
2005 case GDK_SCROLL_RIGHT:
2006 button = MOUSE_6;
2007 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01002008 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 return FALSE;
2010 }
2011
2012# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01002013 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 if (im_is_preediting())
2015 xim_reset();
2016# endif
2017
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002018 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
2020 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2021 FALSE, vim_modifiers);
2022
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 return TRUE;
2024}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025
2026
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002028button_release_event(GtkWidget *widget UNUSED,
2029 GdkEventButton *event,
2030 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031{
2032 int x, y;
2033 int_u vim_modifiers;
2034
Bram Moolenaar20892c12011-06-26 04:49:00 +02002035 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002036
Bram Moolenaar30613902019-12-01 22:11:18 +01002037 // Remove any motion "machine gun" timers used for automatic further
2038 // extension of allocation areas if outside of the applications window
2039 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if (motion_repeat_timer)
2041 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002042 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 motion_repeat_timer = 0;
2044 }
2045
2046 x = event->x;
2047 y = event->y;
2048
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002049 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050
2051 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
Chris Daltonee93e322021-11-23 12:27:48 +00002053 switch (event->button)
2054 {
2055 case 1: // MOUSE_LEFT
2056 dragging_button_state = 0;
2057 break;
2058 }
2059
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 return TRUE;
2061}
2062
2063
2064#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01002065/////////////////////////////////////////////////////////////////////////////
2066// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067
2068/*
2069 * Count how many items there may be and separate them with a NUL.
2070 * Apparently the items are separated with \r\n. This is not documented,
2071 * thus be careful not to go past the end. Also allow separation with
2072 * NUL characters.
2073 */
2074 static int
2075count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2076{
2077 int i;
2078 char_u *p = out;
2079 int count = 0;
2080
2081 for (i = 0; i < len; ++i)
2082 {
2083 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2084 {
2085 if (p > out && p[-1] != NUL)
2086 {
2087 ++count;
2088 *p++ = NUL;
2089 }
2090 }
2091 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2092 {
2093 *p++ = hexhex2nr(raw + i + 1);
2094 i += 2;
2095 }
2096 else
2097 *p++ = raw[i];
2098 }
2099 if (p > out && p[-1] != NUL)
2100 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002101 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 ++count;
2103 }
2104 return count;
2105}
2106
2107/*
2108 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2109 * this process, URI which protocol is not "file:" are removed. Return
2110 * length of array (less than "max").
2111 */
2112 static int
2113filter_uri_list(char_u **outlist, int max, char_u *src)
2114{
2115 int i, j;
2116
2117 for (i = j = 0; i < max; ++i)
2118 {
2119 outlist[i] = NULL;
2120 if (STRNCMP(src, "file:", 5) == 0)
2121 {
2122 src += 5;
2123 if (STRNCMP(src, "//localhost", 11) == 0)
2124 src += 11;
2125 while (src[0] == '/' && src[1] == '/')
2126 ++src;
2127 outlist[j++] = vim_strsave(src);
2128 }
2129 src += STRLEN(src) + 1;
2130 }
2131 return j;
2132}
2133
2134 static char_u **
2135parse_uri_list(int *count, char_u *data, int len)
2136{
2137 int n = 0;
2138 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002139 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002141 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
2143 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002144 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 n = filter_uri_list(array, n, tmp);
2146 }
2147 vim_free(tmp);
2148 *count = n;
2149 return array;
2150}
2151
2152 static void
2153drag_handle_uri_list(GdkDragContext *context,
2154 GtkSelectionData *data,
2155 guint time_,
2156 GdkModifierType state,
2157 gint x,
2158 gint y)
2159{
2160 char_u **fnames;
2161 int nfiles = 0;
2162
Bram Moolenaar98921892016-02-23 17:14:37 +01002163 fnames = parse_uri_list(&nfiles,
2164 (char_u *)gtk_selection_data_get_data(data),
2165 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166
2167 if (fnames != NULL && nfiles > 0)
2168 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002169 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170
Bram Moolenaar30613902019-12-01 22:11:18 +01002171 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002173 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174
2175 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2176 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002177 else
2178 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179}
2180
2181 static void
2182drag_handle_text(GdkDragContext *context,
2183 GtkSelectionData *data,
2184 guint time_,
2185 GdkModifierType state)
2186{
2187 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2188 char_u *text;
2189 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191
Bram Moolenaar98921892016-02-23 17:14:37 +01002192 text = (char_u *)gtk_selection_data_get_data(data);
2193 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194
Bram Moolenaar98921892016-02-23 17:14:37 +01002195 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 if (input_conv.vc_type != CONV_NONE)
2198 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 if (tmpbuf != NULL)
2200 text = tmpbuf;
2201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
2203 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002204 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002207 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
2209 if (dropkey[2] != 0)
2210 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2211 else
2212 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213}
2214
2215/*
2216 * DND receiver.
2217 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 static void
2219drag_data_received_cb(GtkWidget *widget,
2220 GdkDragContext *context,
2221 gint x,
2222 gint y,
2223 GtkSelectionData *data,
2224 guint info,
2225 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002226 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227{
2228 GdkModifierType state;
2229
Bram Moolenaar30613902019-12-01 22:11:18 +01002230 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002231 const guchar * const data_data = gtk_selection_data_get_data(data);
2232 const gint data_length = gtk_selection_data_get_length(data);
2233 const gint data_format = gtk_selection_data_get_format(data);
2234
2235 if (data_data == NULL
2236 || data_length <= 0
2237 || data_format != 8
2238 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 {
2240 gtk_drag_finish(context, FALSE, FALSE, time_);
2241 return;
2242 }
2243
Bram Moolenaar30613902019-12-01 22:11:18 +01002244 // Get the current modifier state for proper distinguishment between
2245 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002246 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247
Bram Moolenaar30613902019-12-01 22:11:18 +01002248 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 if (info == (guint)TARGET_TEXT_URI_LIST)
2250 drag_handle_uri_list(context, data, time_, state, x, y);
2251 else
2252 drag_handle_text(context, data, time_, state);
2253
2254}
Bram Moolenaar30613902019-12-01 22:11:18 +01002255#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256
2257
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002258#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259/*
2260 * GnomeClient interact callback. Check for unsaved buffers that cannot
2261 * be abandoned and pop up a dialog asking the user for confirmation if
2262 * necessary.
2263 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002265sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002267 GnomeDialogType type UNUSED,
2268 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269{
2270 cmdmod_T save_cmdmod;
2271 gboolean shutdown_cancelled;
2272
2273 save_cmdmod = cmdmod;
2274
2275# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002276 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277# endif
2278# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002279 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280# endif
2281 /*
2282 * If there are changed buffers, present the user with
2283 * a dialog if possible, otherwise give an error message.
2284 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002285 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286
2287 exiting = FALSE;
2288 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002289 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 out_flush();
2291 /*
2292 * If the user hit the [Cancel] button the whole shutdown
2293 * will be cancelled. Wow, quite powerful feature (:
2294 */
2295 gnome_interaction_key_return(key, shutdown_cancelled);
2296}
2297
2298/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 * "save_yourself" signal handler. Initiate an interaction to ask the user
2300 * for confirmation if necessary. Save the current editing session and tell
2301 * the session manager how to restart Vim.
2302 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 static gboolean
2304sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002305 gint phase UNUSED,
2306 GnomeSaveStyle save_style UNUSED,
2307 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002309 gboolean fast UNUSED,
2310 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311{
2312 static const char suffix[] = "-session.vim";
2313 char *session_file;
2314 unsigned int len;
2315 gboolean success;
2316
Bram Moolenaar30613902019-12-01 22:11:18 +01002317 // Always request an interaction if possible. check_changed_any()
2318 // won't actually show a dialog unless any buffers have been modified.
2319 // There doesn't seem to be an obvious way to check that without
2320 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 if (interact_style == GNOME_INTERACT_ANY)
2322 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2323 &sm_client_check_changed_any,
2324 NULL);
2325 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002326 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327
Bram Moolenaar30613902019-12-01 22:11:18 +01002328 // The path is unique for each session save. We do neither know nor care
2329 // which session script will actually be used later. This decision is in
2330 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 session_file = gnome_config_get_real_path(
2332 gnome_client_get_config_prefix(client));
2333 len = strlen(session_file);
2334
2335 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002336 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337
2338 session_file = g_renew(char, session_file, len + sizeof(suffix));
2339 memcpy(session_file + len, suffix, sizeof(suffix));
2340
2341 success = write_session_file((char_u *)session_file);
2342
2343 if (success)
2344 {
2345 const char *argv[8];
2346 int i;
2347
Bram Moolenaar30613902019-12-01 22:11:18 +01002348 // Tell the session manager how to wipe out the stored session data.
2349 // This isn't as dangerous as it looks, don't worry :) session_file
2350 // is a unique absolute filename. Usually it'll be something like
2351 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 i = 0;
2353 argv[i++] = "rm";
2354 argv[i++] = session_file;
2355 argv[i] = NULL;
2356
2357 gnome_client_set_discard_command(client, i, (char **)argv);
2358
Bram Moolenaar30613902019-12-01 22:11:18 +01002359 // Tell the session manager how to restore the just saved session.
2360 // This is easily done thanks to Vim's -S option. Pass the -f flag
2361 // since there's no need to fork -- it might even cause confusion.
2362 // Also pass the window role to give the WM something to match on.
2363 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 i = 0;
2365 argv[i++] = restart_command;
2366 argv[i++] = "-f";
2367 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 argv[i++] = "--role";
2369 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 argv[i++] = "-S";
2371 argv[i++] = session_file;
2372 argv[i] = NULL;
2373
2374 gnome_client_set_restart_command(client, i, (char **)argv);
2375 gnome_client_set_clone_command(client, 0, NULL);
2376 }
2377
2378 g_free(session_file);
2379
2380 return success;
2381}
2382
2383/*
2384 * Called when the session manager wants us to die. There isn't much to save
2385 * here since "save_yourself" has been emitted before (unless serious trouble
2386 * is happening).
2387 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002389sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
Bram Moolenaar30613902019-12-01 22:11:18 +01002391 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 full_screen = FALSE;
2393
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002394 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002395 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002396 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 preserve_exit();
2398}
2399
2400/*
2401 * Connect our signal handlers to be notified on session save and shutdown.
2402 */
2403 static void
2404setup_save_yourself(void)
2405{
2406 GnomeClient *client;
2407
2408 client = gnome_master_client();
2409
2410 if (client != NULL)
2411 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002412 // Must use the deprecated gtk_signal_connect() for compatibility
2413 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2415 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2416 gtk_signal_connect(GTK_OBJECT(client), "die",
2417 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2418 }
2419}
2420
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002421#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422
2423# ifdef USE_XSMP
2424/*
2425 * GTK tells us that XSMP needs attention
2426 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002428local_xsmp_handle_requests(
2429 GIOChannel *source UNUSED,
2430 GIOCondition condition,
2431 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432{
2433 if (condition == G_IO_IN)
2434 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002435 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 if (xsmp_handle_requests() == FAIL)
2437 g_io_channel_unref((GIOChannel *)data);
2438 return TRUE;
2439 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002440 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 g_io_channel_unref((GIOChannel *)data);
2442 xsmp_close();
2443 return TRUE;
2444}
Bram Moolenaar30613902019-12-01 22:11:18 +01002445# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446
2447/*
2448 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2449 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2450 */
2451 static void
2452setup_save_yourself(void)
2453{
2454 Atom *existing_atoms = NULL;
2455 int count = 0;
2456
Bram Moolenaar98921892016-02-23 17:14:37 +01002457# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 if (xsmp_icefd != -1)
2459 {
2460 /*
2461 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2462 * set up GTK IO monitor
2463 */
2464 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2465
2466 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2467 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002468 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 }
2470 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002473 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474
Bram Moolenaar30613902019-12-01 22:11:18 +01002475 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002476 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2477
2478 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2479 GDK_WINDOW_XID(mainwin_win),
2480 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 {
2482 Atom *new_atoms;
2483 Atom save_yourself_xatom;
2484 int i;
2485
2486 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2487
Bram Moolenaar30613902019-12-01 22:11:18 +01002488 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 for (i = 0; i < count; ++i)
2490 if (existing_atoms[i] == save_yourself_xatom)
2491 break;
2492
2493 if (i == count)
2494 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002495 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002496 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 if (new_atoms != NULL)
2498 {
2499 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2500 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002501 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2502 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 new_atoms, count + 1);
2504 vim_free(new_atoms);
2505 }
2506 }
2507 XFree(existing_atoms);
2508 }
2509 }
2510}
2511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512/*
2513 * Installing a global event filter seems to be the only way to catch
2514 * client messages of type WM_PROTOCOLS without overriding GDK's own
2515 * client message event filter. Well, that's still better than trying
2516 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 *
2518 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2519 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2520 * I have the nasty feeling modern session managers just don't send this
2521 * deprecated message anymore. Addition: confirmed by several people.
2522 *
2523 * The GNOME session support is much cooler anyway. Unlike this ugly
2524 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2525 * it should work with KDE as well.
2526 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002528global_event_filter(GdkXEvent *xev,
2529 GdkEvent *event UNUSED,
2530 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531{
2532 XEvent *xevent = (XEvent *)xev;
2533
2534 if (xevent != NULL
2535 && xevent->type == ClientMessage
2536 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002537 && (long_u)xevent->xclient.data.l[0]
2538 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 {
2540 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002541 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 /*
2543 * Set the window's WM_COMMAND property, to let the window manager
2544 * know we are done saving ourselves. We don't want to be
2545 * restarted, thus set argv to NULL.
2546 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002547 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2548 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 NULL, 0);
2550 return GDK_FILTER_REMOVE;
2551 }
2552
2553 return GDK_FILTER_CONTINUE;
2554}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002555#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556
2557
2558/*
2559 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2560 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002562mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
Bram Moolenaar30613902019-12-01 22:11:18 +01002564// If you get an error message here, you still need to unpack the runtime
2565// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566#ifdef magick
2567# undef magick
2568#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002569 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571#define magick vim32x32
2572#include "../runtime/vim32x32.xpm"
2573#undef magick
2574#define magick vim16x16
2575#include "../runtime/vim16x16.xpm"
2576#undef magick
2577#define magick vim48x48
2578#include "../runtime/vim48x48.xpm"
2579#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581
Bram Moolenaar98921892016-02-23 17:14:37 +01002582 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002583
Bram Moolenaar30613902019-12-01 22:11:18 +01002584 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (echo_wid_arg)
2586 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002587 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 fflush(stdout);
2589 }
2590
2591 if (vim_strchr(p_go, GO_ICON) != NULL)
2592 {
2593 /*
2594 * Add an icon to the main window. For fun and convenience of the user.
2595 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 GList *icons = NULL;
2597
2598 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2599 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2600 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2601
2602 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2603
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002604 // TODO: is this type cast OK?
2605 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
2608
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002609#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002610 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002613 // Setup to indicate to the window manager that we want to catch the
2614 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2615 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002616#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 if (using_gnome)
2618#endif
2619 setup_save_yourself();
2620
2621#ifdef FEAT_CLIENTSERVER
2622 if (serverName == NULL && serverDelayedStartName != NULL)
2623 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002624 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002625 commWindow = GDK_WINDOW_XID(mainwin_win);
2626
2627 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2628 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 }
2630 else
2631 {
2632 /*
2633 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2634 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002635 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002637 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2638 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 }
2640 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002641 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2642 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643#endif
2644}
2645
2646 static GdkCursor *
2647create_blank_pointer(void)
2648{
2649 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002650#if GTK_CHECK_VERSION(3,0,0)
2651 GdkPixbuf *blank_mask;
2652#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002654#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002656#if GTK_CHECK_VERSION(3,0,0)
2657 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2658#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 GdkColor color = { 0, 0, 0, 0 };
2660 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002661#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002663#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002664 {
2665 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2666 GdkScreen * const scrn = gdk_window_get_screen(win);
2667 root_window = gdk_screen_get_root_window(scrn);
2668 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002669#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 root_window = gtk_widget_get_root_window(gui.mainwin);
2671#endif
2672
Bram Moolenaar30613902019-12-01 22:11:18 +01002673 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2674 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002675#if GTK_CHECK_VERSION(3,0,0)
2676 {
2677 cairo_surface_t *surf;
2678 cairo_t *cr;
2679
2680 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2681 cr = cairo_create(surf);
2682
Bram Moolenaar36edf062016-07-21 22:10:12 +02002683 cairo_set_source_rgba(cr,
2684 color.red,
2685 color.green,
2686 color.blue,
2687 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002688 cairo_rectangle(cr, 0, 0, 1, 1);
2689 cairo_fill(cr);
2690 cairo_destroy(cr);
2691
2692 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2693 cairo_surface_destroy(surf);
2694
2695 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2696 blank_mask, 0, 0);
2697 g_object_unref(blank_mask);
2698 }
2699#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2701 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2702 &color, &color, 0, 0);
2703 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705
2706 return cursor;
2707}
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 static void
2710mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002711 GdkScreen *previous_screen UNUSED,
2712 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713{
2714 if (!gtk_widget_has_screen(widget))
2715 return;
2716
2717 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002718 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 */
2720 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002721#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002722 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002723#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 gui.blank_pointer = create_blank_pointer();
2728
Bram Moolenaar98921892016-02-23 17:14:37 +01002729 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2730 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2731 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732
2733 /*
2734 * Create a new PangoContext for this screen, and initialize it
2735 * with the current font if necessary.
2736 */
2737 if (gui.text_context != NULL)
2738 g_object_unref(gui.text_context);
2739
2740 gui.text_context = gtk_widget_create_pango_context(widget);
2741 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2742
2743 if (gui.norm_font != NULL)
2744 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002745 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002746 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 }
2748}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
2750/*
2751 * After the drawing area comes up, we calculate all colors and create the
2752 * dummy blank cursor.
2753 *
2754 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2755 * fact that the main VIM engine doesn't take them into account anywhere.
2756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002758drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002761 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
2763#ifdef FEAT_XIM
2764 xim_init();
2765#endif
2766 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002767#if GTK_CHECK_VERSION(3,0,0)
2768 gui.surface = gdk_window_create_similar_surface(
2769 gtk_widget_get_window(widget),
2770 CAIRO_CONTENT_COLOR_ALPHA,
2771 gtk_widget_get_allocated_width(widget),
2772 gtk_widget_get_allocated_height(widget));
2773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776
2777 gui.blank_pointer = create_blank_pointer();
2778 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002779 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780
Bram Moolenaar30613902019-12-01 22:11:18 +01002781 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2783 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2784 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2785 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002786 gtk_widget_get_allocation(sbar, &allocation);
2787 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2788 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789
2790 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002791 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2792 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793}
2794
2795/*
2796 * Properly clean up on shutdown.
2797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002799drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800{
Bram Moolenaar30613902019-12-01 22:11:18 +01002801 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 full_screen = FALSE;
2803
2804#ifdef FEAT_XIM
2805 im_shutdown();
2806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 if (gui.ascii_glyphs != NULL)
2808 {
2809 pango_glyph_string_free(gui.ascii_glyphs);
2810 gui.ascii_glyphs = NULL;
2811 }
2812 if (gui.ascii_font != NULL)
2813 {
2814 g_object_unref(gui.ascii_font);
2815 gui.ascii_font = NULL;
2816 }
2817 g_object_unref(gui.text_context);
2818 gui.text_context = NULL;
2819
Bram Moolenaar98921892016-02-23 17:14:37 +01002820#if GTK_CHECK_VERSION(3,0,0)
2821 if (gui.surface != NULL)
2822 {
2823 cairo_surface_destroy(gui.surface);
2824 gui.surface = NULL;
2825 }
2826#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 g_object_unref(gui.text_gc);
2828 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830
Bram Moolenaar98921892016-02-23 17:14:37 +01002831#if GTK_CHECK_VERSION(3,0,0)
2832 g_object_unref(G_OBJECT(gui.blank_pointer));
2833#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837}
2838
Bram Moolenaara859f042016-11-17 19:11:55 +01002839#if GTK_CHECK_VERSION(3,22,2)
2840 static void
2841drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2842 gpointer data UNUSED)
2843#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002845drawarea_style_set_cb(GtkWidget *widget UNUSED,
2846 GtkStyle *previous_style UNUSED,
2847 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849{
2850 gui_mch_new_colors();
2851}
2852
Bram Moolenaar98921892016-02-23 17:14:37 +01002853#if GTK_CHECK_VERSION(3,0,0)
2854 static gboolean
2855drawarea_configure_event_cb(GtkWidget *widget,
2856 GdkEventConfigure *event,
2857 gpointer data UNUSED)
2858{
2859 static int cur_width = 0;
2860 static int cur_height = 0;
2861
2862 g_return_val_if_fail(event
2863 && event->width >= 1 && event->height >= 1, TRUE);
2864
Bram Moolenaar182707a2016-11-21 20:55:58 +01002865# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002866 // As of 3.22.2, GdkWindows have started distributing configure events to
2867 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2868 //
2869 // As can be seen from the implementation of move_native_children() and
2870 // configure_native_child() in gdkwindow.c, those functions actually
2871 // propagate configure events to every child, failing to distinguish
2872 // "native" one from non-native one.
2873 //
2874 // Naturally, configure events propagated to here like that are fallacious
2875 // and, as a matter of fact, they trigger a geometric collapse of
2876 // gui.drawarea in fullscreen and maximized modes.
2877 //
2878 // To filter out such nuisance events, we are making use of the fact that
2879 // the field send_event of such GdkEventConfigures is set to FALSE in
2880 // configure_native_child().
2881 //
2882 // Obviously, this is a terrible hack making GVim depend on GTK's
2883 // implementation details. Therefore, watch out any relevant internal
2884 // changes happening in GTK in the feature (sigh).
2885 //
2886 // Follow-up
2887 // After a few weeks later, the GdkWindow change mentioned above was
2888 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2889 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002890 if (event->send_event == FALSE)
2891 return TRUE;
2892# endif
2893
Bram Moolenaar98921892016-02-23 17:14:37 +01002894 if (event->width == cur_width && event->height == cur_height)
2895 return TRUE;
2896
2897 cur_width = event->width;
2898 cur_height = event->height;
2899
2900 if (gui.surface != NULL)
2901 cairo_surface_destroy(gui.surface);
2902
2903 gui.surface = gdk_window_create_similar_surface(
2904 gtk_widget_get_window(widget),
2905 CAIRO_CONTENT_COLOR_ALPHA,
2906 event->width, event->height);
2907
2908 gtk_widget_queue_draw(widget);
2909
2910 return TRUE;
2911}
2912#endif
2913
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914/*
2915 * Callback routine for the "delete_event" signal on the toplevel window.
2916 * Tries to vim gracefully, or refuses to exit with changed buffers.
2917 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002919delete_event_cb(GtkWidget *widget UNUSED,
2920 GdkEventAny *event UNUSED,
2921 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 gui_shell_closed();
2924 return TRUE;
2925}
2926
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002927#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2928 static int
2929get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2930{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002931# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002932 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2933
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002934 if (using_gnome && widget != NULL)
2935 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002936 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002937 BonoboDockItem *dockitem;
2938
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002939 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002940 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2941 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002942 // Only menu & toolbar are dock items. Could tabline be?
2943 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002944 widget = parent;
2945 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002946
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002947 if (dockitem == NULL || dockitem->is_floating)
2948 return 0;
2949 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2950 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002951 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002952# else
2953# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002954# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002955
Bram Moolenaar98921892016-02-23 17:14:37 +01002956 if (widget != NULL
2957 && item_orientation == orientation
2958 && gtk_widget_get_realized(widget)
2959 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002960 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002961# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002962 GtkAllocation allocation;
2963
2964 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002965 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002966# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002967 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2968 return widget->allocation.height;
2969 else
2970 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002971# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002972 }
2973 return 0;
2974}
2975#endif
2976
2977 static int
2978get_menu_tool_width(void)
2979{
2980 int width = 0;
2981
Bram Moolenaar30613902019-12-01 22:11:18 +01002982#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002983# ifdef FEAT_MENU
2984 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2985# endif
2986# ifdef FEAT_TOOLBAR
2987 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2988# endif
2989# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002990 if (gui.tabline != NULL)
2991 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002992# endif
2993#endif
2994
2995 return width;
2996}
2997
2998 static int
2999get_menu_tool_height(void)
3000{
3001 int height = 0;
3002
3003#ifdef FEAT_MENU
3004 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3005#endif
3006#ifdef FEAT_TOOLBAR
3007 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3008#endif
3009#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003010 if (gui.tabline != NULL)
3011 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003012#endif
3013
3014 return height;
3015}
3016
Bram Moolenaar30613902019-12-01 22:11:18 +01003017// This controls whether we can set the real window hints at
3018// start-up when in a GtkPlug.
3019// 0 = normal processing (default)
3020// 1 = init. hints set, no-one's tried to reset since last check
3021// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003022static int init_window_hints_state = 0;
3023
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003024 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003025update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003026{
3027 static int old_width = 0;
3028 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003029 static int old_min_width = 0;
3030 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003031 static int old_char_width = 0;
3032 static int old_char_height = 0;
3033
3034 int width;
3035 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003036 int min_width;
3037 int min_height;
3038
Bram Moolenaar30613902019-12-01 22:11:18 +01003039 // At start-up, don't try to set the hints until the initial
3040 // values have been used (those that dictate our initial size)
3041 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003042 if (!(force_width && force_height) && init_window_hints_state > 0)
3043 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003044 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003045 init_window_hints_state = 2;
3046 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003047 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003048
Bram Moolenaar30613902019-12-01 22:11:18 +01003049 // This also needs to be done when the main window isn't there yet,
3050 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003051 width = gui_get_base_width();
3052 height = gui_get_base_height();
3053# ifdef FEAT_MENU
3054 height += tabline_height() * gui.char_height;
3055# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003056 width += get_menu_tool_width();
3057 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003058
Bram Moolenaar30613902019-12-01 22:11:18 +01003059 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
3060 // their actual widget size. When we set our size ourselves (e.g.,
3061 // 'set columns=' or init. -geom) we briefly set the min. to the size
3062 // we wish to be instead of the legitimate minimum so that we actually
3063 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003064 if (force_width && force_height)
3065 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003066 min_width = force_width;
3067 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003068 }
3069 else
3070 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003071 min_width = width + MIN_COLUMNS * gui.char_width;
3072 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003073 }
3074
Bram Moolenaar30613902019-12-01 22:11:18 +01003075 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003076 if (width != old_width
3077 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003078 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003079 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003080 || gui.char_width != old_char_width
3081 || gui.char_height != old_char_height)
3082 {
3083 GdkGeometry geometry;
3084 GdkWindowHints geometry_mask;
3085
3086 geometry.width_inc = gui.char_width;
3087 geometry.height_inc = gui.char_height;
3088 geometry.base_width = width;
3089 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003090 geometry.min_width = min_width;
3091 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003092 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3093 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01003094 // Using gui.formwin as geometry widget doesn't work as expected
3095 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3096 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003097 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3098 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003099 old_width = width;
3100 old_height = height;
3101 old_min_width = min_width;
3102 old_min_height = min_height;
3103 old_char_width = gui.char_width;
3104 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003105 }
3106}
3107
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003108#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3109 void
3110gui_mch_set_dark_theme(int dark)
3111{
3112# if GTK_CHECK_VERSION(3,0,0)
3113 GtkSettings *gtk_settings;
3114
3115 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3116 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3117# endif
3118}
Bram Moolenaar30613902019-12-01 22:11:18 +01003119#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003120
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121#ifdef FEAT_TOOLBAR
3122
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123/*
3124 * This extra effort wouldn't be necessary if we only used stock icons in the
3125 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3126 * shouldn't be treated differently, thus we do need this.
3127 */
3128 static void
3129icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3130{
3131 if (GTK_IS_IMAGE(widget))
3132 {
3133 GtkImage *image = (GtkImage *)widget;
3134
Bram Moolenaar98921892016-02-23 17:14:37 +01003135# if GTK_CHECK_VERSION(3,10,0)
3136 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3137 {
3138 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3139 const gchar *icon_name;
3140
3141 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02003142 image = (GtkImage *)gtk_image_new_from_icon_name(
3143 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01003144 }
3145# else
Bram Moolenaar30613902019-12-01 22:11:18 +01003146 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3148 {
3149 GtkIconSet *icon_set;
3150 GtkIconSize icon_size;
3151
3152 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3153 icon_size = (GtkIconSize)(long)user_data;
3154
3155 gtk_icon_set_ref(icon_set);
3156 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3157 gtk_icon_set_unref(icon_set);
3158 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 }
3161 else if (GTK_IS_CONTAINER(widget))
3162 {
3163 gtk_container_foreach((GtkContainer *)widget,
3164 &icon_size_changed_foreach,
3165 user_data);
3166 }
3167}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168
3169 static void
3170set_toolbar_style(GtkToolbar *toolbar)
3171{
3172 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 GtkIconSize size;
3174 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3177 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3178 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003179 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3181 style = GTK_TOOLBAR_BOTH;
3182 else if (toolbar_flags & TOOLBAR_TEXT)
3183 style = GTK_TOOLBAR_TEXT;
3184 else
3185 style = GTK_TOOLBAR_ICONS;
3186
3187 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003188# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003190# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 switch (tbis_flags)
3193 {
3194 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3195 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3196 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3197 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003198 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3199 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 default: size = GTK_ICON_SIZE_INVALID; break;
3201 }
3202 oldsize = gtk_toolbar_get_icon_size(toolbar);
3203
3204 if (size == GTK_ICON_SIZE_INVALID)
3205 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003206 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 gtk_toolbar_unset_icon_size(toolbar);
3208 size = gtk_toolbar_get_icon_size(toolbar);
3209 }
3210 if (size != oldsize)
3211 {
3212 gtk_container_foreach(GTK_CONTAINER(toolbar),
3213 &icon_size_changed_foreach,
3214 GINT_TO_POINTER((int)size));
3215 }
3216 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217}
3218
Bram Moolenaar30613902019-12-01 22:11:18 +01003219#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003221#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3222static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003223static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003224# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003225static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003226# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003227static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003228
3229/*
3230 * Handle selecting an item in the tab line popup menu.
3231 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003232 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003233tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003234{
Bram Moolenaar30613902019-12-01 22:11:18 +01003235 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003236 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003237}
3238
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003239 static void
3240add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3241{
3242 GtkWidget *item;
3243 char_u *utf_text;
3244
3245 utf_text = CONVERT_TO_UTF8(text);
3246 item = gtk_menu_item_new_with_label((const char *)utf_text);
3247 gtk_widget_show(item);
3248 CONVERT_TO_UTF8_FREE(utf_text);
3249
3250 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003251 g_signal_connect(G_OBJECT(item), "activate",
3252 G_CALLBACK(tabline_menu_handler),
3253 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003254}
3255
Bram Moolenaara5621492006-02-25 21:55:24 +00003256/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003257 * Create a menu for the tab line.
3258 */
3259 static GtkWidget *
3260create_tabline_menu(void)
3261{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003262 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003263
3264 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003265 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003266 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3267 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003268
3269 return menu;
3270}
3271
3272 static gboolean
3273on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3274{
Bram Moolenaar30613902019-12-01 22:11:18 +01003275 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003276 if (event->type == GDK_BUTTON_PRESS)
3277 {
3278 GdkEventButton *bevent = (GdkEventButton *)event;
3279 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003280 int y = bevent->y;
3281 GtkWidget *tabwidget;
3282 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003283
Bram Moolenaar30613902019-12-01 22:11:18 +01003284 // When ignoring events return TRUE so that the selected page doesn't
3285 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003286 if (hold_gui_events
3287# ifdef FEAT_CMDWIN
3288 || cmdwin_type != 0
3289# endif
3290 )
3291 return TRUE;
3292
Bram Moolenaar98921892016-02-23 17:14:37 +01003293 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003294
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003295 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003296 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3297 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003298
Bram Moolenaar30613902019-12-01 22:11:18 +01003299 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003300 if (bevent->button == 3)
3301 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003302# if GTK_CHECK_VERSION(3,22,2)
3303 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3304# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003305 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3306 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003307# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003308 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003309 return TRUE;
3310 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003311 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003312 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003313 if (clicked_page == 0)
3314 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003315 // Click after all tabs moves to next tab page. When "x" is
3316 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003317 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003318 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003319 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003320 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003321
Bram Moolenaar30613902019-12-01 22:11:18 +01003322 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003323 return FALSE;
3324}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003325
3326/*
3327 * Handle selecting one of the tabs.
3328 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003329 static void
3330on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003331 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003332 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003333 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003334 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003335{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003336 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003337 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003338}
3339
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003340# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003341/*
3342 * Handle reordering the tabs (using D&D).
3343 */
3344 static void
3345on_tab_reordered(
3346 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003347 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003348 gint idx,
3349 gpointer data UNUSED)
3350{
3351 if (!ignore_tabline_evt)
3352 {
3353 if ((tabpage_index(curtab) - 1) < idx)
3354 tabpage_move(idx + 1);
3355 else
3356 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003357 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003358}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003359# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003360
3361/*
3362 * Show or hide the tabline.
3363 */
3364 void
3365gui_mch_show_tabline(int showit)
3366{
3367 if (gui.tabline == NULL)
3368 return;
3369
3370 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3371 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003372 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003373 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003374 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003375 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003376 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003377 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003378
3379 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003380}
3381
3382/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003383 * Return TRUE when tabline is displayed.
3384 */
3385 int
3386gui_mch_showing_tabline(void)
3387{
3388 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003389 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003390}
3391
3392/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003393 * Update the labels of the tabline.
3394 */
3395 void
3396gui_mch_update_tabline(void)
3397{
3398 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003399 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003400 GtkWidget *label;
3401 tabpage_T *tp;
3402 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003403 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003404 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003405 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003406
3407 if (gui.tabline == NULL)
3408 return;
3409
3410 ignore_tabline_evt = TRUE;
3411
Bram Moolenaar30613902019-12-01 22:11:18 +01003412 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003413 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3414 {
3415 if (tp == curtab)
3416 curtabidx = nr;
3417
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003418 tab_num = nr + 1;
3419
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003420 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3421 if (page == NULL)
3422 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003423 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003424# if GTK_CHECK_VERSION(3,2,0)
3425 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3426 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3427# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003428 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003429# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003430 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003431 event_box = gtk_event_box_new();
3432 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003433 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003434# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003435 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003436# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003437 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003438 gtk_widget_show(label);
3439 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3440 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003441 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003442 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003443# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003444 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3445 page,
3446 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003447# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003448 }
3449
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003450 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003451 g_object_set_data(G_OBJECT(event_box), "tab_num",
3452 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003453 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003454 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003455 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003456 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003457 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003458
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003459 get_tabline_label(tp, TRUE);
3460 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003461# if GTK_CHECK_VERSION(3,0,0)
3462 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3463# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003464 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3465 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003466# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003467 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003468 }
3469
Bram Moolenaar30613902019-12-01 22:11:18 +01003470 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003471 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3472 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3473
Bram Moolenaar98921892016-02-23 17:14:37 +01003474 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3475 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003476
Bram Moolenaar30613902019-12-01 22:11:18 +01003477 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003478 gui_mch_update();
3479
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003480 ignore_tabline_evt = FALSE;
3481}
3482
3483/*
3484 * Set the current tab to "nr". First tab is 1.
3485 */
3486 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003487gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003488{
3489 if (gui.tabline == NULL)
3490 return;
3491
3492 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003493 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3494 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003495 ignore_tabline_evt = FALSE;
3496}
3497
Bram Moolenaar30613902019-12-01 22:11:18 +01003498#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003499
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003501 * Add selection targets for PRIMARY and CLIPBOARD selections.
3502 */
3503 void
3504gui_gtk_set_selection_targets(void)
3505{
3506 int i, j = 0;
3507 int n_targets = N_SELECTION_TARGETS;
3508 GtkTargetEntry targets[N_SELECTION_TARGETS];
3509
3510 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3511 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003512 // OpenOffice tries to use TARGET_HTML and fails when we don't
3513 // return something, instead of trying another target. Therefore only
3514 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003515 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3516 n_targets--;
3517 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003518 targets[j++] = selection_targets[i];
3519 }
3520
3521 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3522 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3523 gtk_selection_add_targets(gui.drawarea,
3524 (GdkAtom)GDK_SELECTION_PRIMARY,
3525 targets, n_targets);
3526 gtk_selection_add_targets(gui.drawarea,
3527 (GdkAtom)clip_plus.gtk_sel_atom,
3528 targets, n_targets);
3529}
3530
3531/*
3532 * Set up for receiving DND items.
3533 */
3534 void
3535gui_gtk_set_dnd_targets(void)
3536{
3537 int i, j = 0;
3538 int n_targets = N_DND_TARGETS;
3539 GtkTargetEntry targets[N_DND_TARGETS];
3540
3541 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3542 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003543 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003544 n_targets--;
3545 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003546 targets[j++] = dnd_targets[i];
3547 }
3548
3549 gtk_drag_dest_unset(gui.drawarea);
3550 gtk_drag_dest_set(gui.drawarea,
3551 GTK_DEST_DEFAULT_ALL,
3552 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003553 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003554}
3555
3556/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3558 * Returns OK for success, FAIL when the GUI can't be started.
3559 */
3560 int
3561gui_mch_init(void)
3562{
3563 GtkWidget *vbox;
3564
3565#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003566 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3567 // exits on failure, but that's a non-issue because we already called
3568 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003570 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3572 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003573# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003574 {
3575 char *p = setlocale(LC_NUMERIC, NULL);
3576
Bram Moolenaar30613902019-12-01 22:11:18 +01003577 // Make sure strtod() uses a decimal point, not a comma. Gnome
3578 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003579 if (p == NULL || strcmp(p, "C") != 0)
3580 setlocale(LC_NUMERIC, "C");
3581 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003582# endif
3583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003585 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003587#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003588 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 /*
3592 * Force UTF-8 output no matter what the value of 'encoding' is.
3593 * did_set_string_option() in option.c prohibits changing 'termencoding'
3594 * to something else than UTF-8 if the GUI is in use.
3595 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +01003596 set_option_value_give_err((char_u *)"termencoding",
3597 0L, (char_u *)"utf-8", 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003599#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003601#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003602 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3603 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003604#if !GTK_CHECK_VERSION(3,0,0)
3605# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003607# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608#endif
3609
Bram Moolenaar30613902019-12-01 22:11:18 +01003610 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 gui.border_width = 2;
3612 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3613 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003614#if GTK_CHECK_VERSION(3,0,0)
3615 gui.fgcolor = g_new(GdkRGBA, 1);
3616 gui.bgcolor = g_new(GdkRGBA, 1);
3617 gui.spcolor = g_new(GdkRGBA, 1);
3618#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003619 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003621 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003623 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003624 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626
Bram Moolenaar30613902019-12-01 22:11:18 +01003627 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003628 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630
Bram Moolenaar30613902019-12-01 22:11:18 +01003631 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 gui.norm_pixel = gui.def_norm_pixel;
3633 gui.back_pixel = gui.def_back_pixel;
3634
3635 if (gtk_socket_id != 0)
3636 {
3637 GtkWidget *plug;
3638
Bram Moolenaar30613902019-12-01 22:11:18 +01003639 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3641 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003642 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 {
3644 gui.mainwin = plug;
3645 }
3646 else
3647 {
3648 g_warning("Connection to GTK+ socket (ID %u) failed",
3649 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003650 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 gtk_socket_id = 0;
3652 }
3653 }
3654
3655 if (gtk_socket_id == 0)
3656 {
3657#ifdef FEAT_GUI_GNOME
3658 if (using_gnome)
3659 {
3660 gui.mainwin = gnome_app_new("Vim", NULL);
3661# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003662 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 xsmp_close();
3664# endif
3665 }
3666 else
3667#endif
3668 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3669 }
3670
3671 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3672
Bram Moolenaar30613902019-12-01 22:11:18 +01003673 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3675 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
Bram Moolenaar98921892016-02-23 17:14:37 +01003677 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3679
Bram Moolenaar98921892016-02-23 17:14:37 +01003680 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3681 G_CALLBACK(&delete_event_cb), NULL);
3682
3683 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3684 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003685
3686 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003688
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 gui.accel_group = gtk_accel_group_new();
3690 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691
Bram Moolenaar30613902019-12-01 22:11:18 +01003692 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003693#if GTK_CHECK_VERSION(3,2,0)
3694 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3695 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3696#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003698#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699
3700#ifdef FEAT_GUI_GNOME
3701 if (using_gnome)
3702 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003703# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003704 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3706# endif
3707 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3708 }
3709 else
3710#endif
3711 {
3712 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3713 gtk_widget_show(vbox);
3714 }
3715
3716#ifdef FEAT_MENU
3717 /*
3718 * Create the menubar and handle
3719 */
3720 gui.menubar = gtk_menu_bar_new();
3721 gtk_widget_set_name(gui.menubar, "vim-menubar");
3722
Bram Moolenaar30613902019-12-01 22:11:18 +01003723 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003724 {
3725 GtkSettings *gtk_settings;
3726
3727 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3728 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3729 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003730
3731
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732# ifdef FEAT_GUI_GNOME
3733 if (using_gnome)
3734 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 BonoboDockItem *dockitem;
3736
3737 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3738 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3739 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003740 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003741 bonobo_dock_item_set_behavior(dockitem,
3742 bonobo_dock_item_get_behavior(dockitem)
3743 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 }
3746 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003747# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003749 // Always show the menubar, otherwise <F10> doesn't work. It may be
3750 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003751 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3753 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003754#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755
3756#ifdef FEAT_TOOLBAR
3757 /*
3758 * Create the toolbar and handle
3759 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003760 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003761# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003762 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3763 // N.B. Since the default value of GtkToolbar::button-relief is
3764 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003765# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 gtk_rc_parse_string(
3767 "style \"vim-toolbar-style\" {\n"
3768 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3769 "}\n"
3770 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003771# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 gui.toolbar = gtk_toolbar_new();
3773 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3775
3776# ifdef FEAT_GUI_GNOME
3777 if (using_gnome)
3778 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 BonoboDockItem *dockitem;
3780
3781 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3782 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3783 GNOME_APP_TOOLBAR_NAME);
3784 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003785 // When the toolbar is floating it gets stuck. So long as that isn't
3786 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003787 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003788 bonobo_dock_item_get_behavior(dockitem)
3789 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 }
3792 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003793# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3796 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3797 gtk_widget_show(gui.toolbar);
3798 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3799 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003800#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003802#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003803 /*
3804 * Use a Notebook for the tab pages labels. The labels are hidden by
3805 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003806 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003807 gui.tabline = gtk_notebook_new();
3808 gtk_widget_show(gui.tabline);
3809 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3810 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3811 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003812 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003813# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003814 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003815# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003816
Bram Moolenaar98921892016-02-23 17:14:37 +01003817# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003818 tabline_tooltip = gtk_tooltips_new();
3819 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003820# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003821
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003822 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003823 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003824
Bram Moolenaar30613902019-12-01 22:11:18 +01003825 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003826# if GTK_CHECK_VERSION(3,2,0)
3827 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3828 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3829# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003830 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003831# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003832 gtk_widget_show(page);
3833 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3834 label = gtk_label_new("-Empty-");
3835 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003836 event_box = gtk_event_box_new();
3837 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003838 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003839# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003840 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003841# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003842 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003843 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003844# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003845 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003846# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003847 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003848
Bram Moolenaar98921892016-02-23 17:14:37 +01003849 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3850 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003851# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003852 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3853 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003854# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003855
Bram Moolenaar30613902019-12-01 22:11:18 +01003856 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003857 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003858 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3859 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003860#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003861
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003862 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003863 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003864#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003866#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003867#if GTK_CHECK_VERSION(3,22,2)
3868 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870
3871 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003872#if GTK_CHECK_VERSION(3,0,0)
3873 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875
Bram Moolenaar30613902019-12-01 22:11:18 +01003876 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 gtk_widget_set_events(gui.drawarea,
3878 GDK_EXPOSURE_MASK |
3879 GDK_ENTER_NOTIFY_MASK |
3880 GDK_LEAVE_NOTIFY_MASK |
3881 GDK_BUTTON_PRESS_MASK |
3882 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 GDK_KEY_PRESS_MASK |
3885 GDK_KEY_RELEASE_MASK |
3886 GDK_POINTER_MOTION_MASK |
3887 GDK_POINTER_MOTION_HINT_MASK);
3888
3889 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003890 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 gtk_widget_show(gui.formwin);
3892 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3893
Bram Moolenaar30613902019-12-01 22:11:18 +01003894 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3895 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003896 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3897 : G_OBJECT(gui.drawarea),
3898 "key-press-event",
3899 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003900#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003901 // Also forward key release events for the benefit of GTK+ 2 input
3902 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3904 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003905 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 G_CALLBACK(&key_release_event), NULL);
3907#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003908 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3909 G_CALLBACK(drawarea_realize_cb), NULL);
3910 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3911 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003912#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003913 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3914 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003915#endif
3916#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003917 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3918 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003919#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003920 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3921 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
Bram Moolenaar98921892016-02-23 17:14:37 +01003924#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003928#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3930 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3931#endif
3932
3933 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003934 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003935 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936
3937 /*
3938 * Set clipboard specific atoms
3939 */
3940 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3943 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3944
3945 /*
3946 * Start out by adding the configured border width into the border offset.
3947 */
3948 gui.border_offset = gui.border_width;
3949
Bram Moolenaar98921892016-02-23 17:14:37 +01003950#if GTK_CHECK_VERSION(3,0,0)
3951 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3952 G_CALLBACK(draw_event), NULL);
3953#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3955 GTK_SIGNAL_FUNC(visibility_event), NULL);
3956 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3957 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
3960 /*
3961 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3962 * Only needed for some window managers.
3963 */
3964 if (vim_strchr(p_go, GO_POINTER) != NULL)
3965 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003966 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3967 G_CALLBACK(leave_notify_event), NULL);
3968 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3969 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 }
3971
Bram Moolenaar30613902019-12-01 22:11:18 +01003972 // Real windows can get focus ... GtkPlug, being a mere container can't,
3973 // only its widgets. Arguably, this could be common code and we not use
3974 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003975 if (gtk_socket_id == 0)
3976 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003977 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3978 G_CALLBACK(focus_out_event), NULL);
3979 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3980 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003981 }
3982 else
3983 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003984 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3985 G_CALLBACK(focus_out_event), NULL);
3986 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3987 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003988#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003989 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3990 G_CALLBACK(focus_out_event), NULL);
3991 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
3992 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01003993#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995
Bram Moolenaar98921892016-02-23 17:14:37 +01003996 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
3997 G_CALLBACK(motion_notify_event), NULL);
3998 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
3999 G_CALLBACK(button_press_event), NULL);
4000 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4001 G_CALLBACK(button_release_event), NULL);
4002 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4003 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004
4005 /*
4006 * Add selection handler functions.
4007 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004008 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4009 G_CALLBACK(selection_clear_event), NULL);
4010 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4011 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012
Bram Moolenaara76638f2010-06-05 12:49:46 +02004013 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014
Bram Moolenaar98921892016-02-23 17:14:37 +01004015 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4016 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017
Bram Moolenaar30613902019-12-01 22:11:18 +01004018 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 gui.in_focus = FALSE;
4020
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004021 // Handle changes to the "Xft/DPI" setting.
4022 {
4023 GtkSettings *gtk_settings =
4024 gtk_settings_get_for_screen(gdk_screen_get_default());
4025
4026 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4027 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4028 }
4029
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 return OK;
4031}
4032
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004033#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034/*
4035 * This is called from gui_start() after a fork() has been done.
4036 * We have to tell the session manager our new PID.
4037 */
4038 void
4039gui_mch_forked(void)
4040{
4041 if (using_gnome)
4042 {
4043 GnomeClient *client;
4044
4045 client = gnome_master_client();
4046
4047 if (client != NULL)
4048 gnome_client_set_process_id(client, getpid());
4049 }
4050}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004051#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052
Bram Moolenaar98921892016-02-23 17:14:37 +01004053#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004054 static GdkRGBA
4055color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004056{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004057 GdkRGBA rgba;
4058 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4059 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4060 rgba.blue = ((color & 0xff)) / 255.0;
4061 rgba.alpha = 1.0;
4062 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004063}
4064
4065 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004066set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004067{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004068 const GdkRGBA rgba = color_to_rgba(color);
4069 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004070}
Bram Moolenaar30613902019-12-01 22:11:18 +01004071#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01004072
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073/*
4074 * Called when the foreground or background color has been changed.
4075 * This used to change the graphics contexts directly but we are
4076 * currently manipulating them where desired.
4077 */
4078 void
4079gui_mch_new_colors(void)
4080{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004081 if (gui.drawarea != NULL
4082#if GTK_CHECK_VERSION(3,22,2)
4083 && gui.formwin != NULL
4084#endif
4085 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004087#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004088 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02004089#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004090#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01004091 GtkStyleContext * const context =
4092 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01004093 GtkCssProvider * const provider = gtk_css_provider_new();
4094 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01004095 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01004096 " background-color: #%.2lx%.2lx%.2lx;\n"
4097 "}\n",
4098 (gui.back_pixel >> 16) & 0xff,
4099 (gui.back_pixel >> 8) & 0xff,
4100 gui.back_pixel & 0xff);
4101
4102 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4103 gtk_style_context_add_provider(context,
4104 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4105
4106 g_free(css);
4107 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01004108#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004109 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004110
Bram Moolenaar36edf062016-07-21 22:10:12 +02004111 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004112 {
4113 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004114 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004115 if (pat != NULL)
4116 {
4117 gdk_window_set_background_pattern(da_win, pat);
4118 cairo_pattern_destroy(pat);
4119 }
4120 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004121 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004122 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004123#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 GdkColor color = { 0, 0, 0, 0 };
4125
4126 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004127 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01004128#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 }
4130}
4131
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132/*
4133 * This signal informs us about the need to rearrange our sub-widgets.
4134 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004136form_configure_event(GtkWidget *widget UNUSED,
4137 GdkEventConfigure *event,
4138 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139{
Ernie Raeld42b8392022-04-23 19:52:23 +01004140 int usable_height = event->height;
4141#ifdef TRACK_RESIZE_HISTORY
4142 // Resize requests are made for gui.mainwin;
4143 // get its dimensions for searching if this event
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004144 // is a response to a vim request.
Ernie Raeld42b8392022-04-23 19:52:23 +01004145 int w, h;
4146 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004147
Ernie Raeld42b8392022-04-23 19:52:23 +01004148# ifdef ENABLE_RESIZE_HISTORY_LOG
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004149 ch_log(NULL, "gui_gtk: form_configure_event: (%d, %d) [%d, %d]",
4150 w, h, (int)Columns, (int)Rows);
Ernie Raeld42b8392022-04-23 19:52:23 +01004151# endif
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004152
Ernie Raeld42b8392022-04-23 19:52:23 +01004153 // Look through history of recent vim resize requests.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004154 // If this event matches:
4155 // - "latest resize hist" We're caught up;
4156 // clear the history and process this event.
4157 // If history is, old to new, 100, 99, 100, 99. If this event is
4158 // 99 for the stale, it is matched against the current. History
Ernie Raeld42b8392022-04-23 19:52:23 +01004159 // is cleared, we may bounce, but no worse than before.
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004160 // - "older/stale hist" If match an unused event in history,
4161 // then discard this event, and mark the matching event as used.
4162 // - "no match" Figure it's a user resize event, clear history.
4163 // NOTE: clear history is default, then all incoming events are processed
4164
4165 if (!MATCH_WIDTH_HEIGHT(latest_resize_hist, w, h)
4166 && match_stale_width_height(w, h))
4167 // discard stale event
4168 return TRUE;
4169 clear_resize_hists();
Ernie Raeld42b8392022-04-23 19:52:23 +01004170#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004171
Bram Moolenaar182707a2016-11-21 20:55:58 +01004172#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01004173 // As of 3.22.2, GdkWindows have started distributing configure events to
4174 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4175 //
4176 // As can be seen from the implementation of move_native_children() and
4177 // configure_native_child() in gdkwindow.c, those functions actually
4178 // propagate configure events to every child, failing to distinguish
4179 // "native" one from non-native one.
4180 //
4181 // Naturally, configure events propagated to here like that are fallacious
4182 // and, as a matter of fact, they trigger a geometric collapse of
4183 // gui.formwin.
4184 //
4185 // To filter out such fallacious events, check if the given event is the
4186 // one that was sent out to the right place. Ignore it if not.
4187 //
4188 // Follow-up
4189 // After a few weeks later, the GdkWindow change mentioned above was
4190 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4191 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004192 if (event->window != gtk_widget_get_window(gui.formwin))
4193 return TRUE;
4194#endif
4195
Bram Moolenaar30613902019-12-01 22:11:18 +01004196 // When in a GtkPlug, we can't guarantee valid heights (as a round
4197 // no. of char-heights), so we have to manually sanitise them.
4198 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004199 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004200 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004201
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004202 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004203 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004204 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205
4206 return TRUE;
4207}
4208
4209/*
4210 * Function called when window already closed.
4211 * We can't do much more here than to trying to preserve what had been done,
4212 * since the window is already inevitably going away.
4213 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004214 static void
4215mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216{
Bram Moolenaar30613902019-12-01 22:11:18 +01004217 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 full_screen = FALSE;
4219
4220 gui.mainwin = NULL;
4221 gui.drawarea = NULL;
4222
Bram Moolenaar30613902019-12-01 22:11:18 +01004223 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004225 vim_strncpy(IObuff,
4226 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4227 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 preserve_exit();
4229 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004230#ifdef USE_GRESOURCE
4231 gui_gtk_unregister_resource();
4232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233}
4234
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004235 void
4236gui_gtk_get_screen_geom_of_win(
4237 GtkWidget *wid,
4238 int point_x, // x position of window if not initialized
4239 int point_y, // y position of window if not initialized
4240 int *screen_x,
4241 int *screen_y,
4242 int *width,
4243 int *height)
4244{
4245 GdkRectangle geometry;
4246 GdkWindow *win = gtk_widget_get_window(wid);
4247#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004248 GdkDisplay *dpy;
4249 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004250
Bram Moolenaar24001432021-03-20 12:36:46 +01004251 if (wid != NULL && gtk_widget_get_realized(wid))
4252 dpy = gtk_widget_get_display(wid);
4253 else
4254 dpy = gdk_display_get_default();
4255 if (win != NULL)
4256 monitor = gdk_display_get_monitor_at_window(dpy, win);
4257 else
4258 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004259 gdk_monitor_get_geometry(monitor, &geometry);
4260#else
4261 GdkScreen* screen;
4262 int monitor;
4263
4264 if (wid != NULL && gtk_widget_has_screen(wid))
4265 screen = gtk_widget_get_screen(wid);
4266 else
4267 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004268 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004269 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004270 else
4271 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004272 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4273#endif
4274 *screen_x = geometry.x;
4275 *screen_y = geometry.y;
4276 *width = geometry.width;
4277 *height = geometry.height;
4278}
4279
4280/*
4281 * The screen size is used to make sure the initial window doesn't get bigger
4282 * than the screen. This subtracts some room for menubar, toolbar and window
4283 * decorations.
4284 */
4285 static void
4286gui_gtk_get_screen_dimensions(
4287 int point_x,
4288 int point_y,
4289 int *screen_w,
4290 int *screen_h)
4291{
4292 int x, y;
4293
4294 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4295 &x, &y, screen_w, screen_h);
4296
4297 // Subtract 'guiheadroom' from the height to allow some room for the
4298 // window manager (task list and window title bar).
4299 *screen_h -= p_ghr;
4300
4301 /*
4302 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4303 * the toolbar and menubar for GTK, we subtract them from the screen
4304 * height, so that the window size can be made to fit on the screen.
4305 * This should be completely changed later.
4306 */
4307 *screen_w -= get_menu_tool_width();
4308 *screen_h -= get_menu_tool_height();
4309}
4310
4311 void
4312gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4313{
4314 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4315}
4316
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004317
4318/*
4319 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4320 * hints (and thus the required size from -geom), but that after that we
4321 * put the hints back to normal (the actual minimum size) so we may
4322 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004323 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004324 * only way we have of making ourselves bigger (by set lines/columns).
4325 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004326 * second after the final attempt to reset the real minimum hints (done by
4327 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004328 * We'll not let the default hints be set while this timer's active.
4329 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004330 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004331check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004332{
4333 if (init_window_hints_state == 1)
4334 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004335 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004336 init_window_hints_state = 0;
4337 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004338 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004339 }
4340
Bram Moolenaar30613902019-12-01 22:11:18 +01004341 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004342 init_window_hints_state = 1;
4343 return TRUE;
4344}
4345
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346/*
4347 * Open the GUI window which was created by a call to gui_mch_init().
4348 */
4349 int
4350gui_mch_open(void)
4351{
4352 guicolor_T fg_pixel = INVALCOLOR;
4353 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004354 guint pixel_width;
4355 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 /*
4358 * Allow setting a window role on the command line, or invent one
4359 * if none was specified. This is mainly useful for GNOME session
4360 * support; allowing the WM to restore window placement.
4361 */
4362 if (role_argument != NULL)
4363 {
4364 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4365 }
4366 else
4367 {
4368 char *role;
4369
Bram Moolenaar30613902019-12-01 22:11:18 +01004370 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 role = g_strdup_printf("vim-%u-%u-%u",
4372 (unsigned)mch_get_pid(),
4373 (unsigned)g_random_int(),
4374 (unsigned)time(NULL));
4375
4376 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4377 g_free(role);
4378 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379
4380 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382
Bram Moolenaar30613902019-12-01 22:11:18 +01004383 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 if (gui.geom != NULL)
4385 {
4386 int mask;
4387 unsigned int w, h;
4388 int x = 0;
4389 int y = 0;
4390
4391 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4392
4393 if (mask & WidthValue)
4394 Columns = w;
4395 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004396 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004397 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004398 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004400 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004401 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004402
4403 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4404 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4405
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004406 pixel_width += get_menu_tool_width();
4407 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004408
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004410 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004411 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004412
4413#ifdef FEAT_GUI_GTK
4414 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4415#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004416 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004417#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004418 hh += p_ghr + get_menu_tool_height();
4419 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004420 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004421 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004422 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004423 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004425 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004426 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004427
Bram Moolenaar30613902019-12-01 22:11:18 +01004428 // From now until everyone's stopped trying to set the window hints
4429 // to their correct minimum values, stop them being set as we need
4430 // them to remain at our required size for the parent GtkSocket to
4431 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004432 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004433 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004434 update_window_manager_hints(pixel_width, pixel_height);
4435 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004436 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 }
4439
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004440 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4441 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004442 // For GTK2 changing the size of the form widget doesn't cause window
4443 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004444 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004445 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004446 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447
4448 if (foreground_argument != NULL)
4449 fg_pixel = gui_get_color((char_u *)foreground_argument);
4450 if (fg_pixel == INVALCOLOR)
4451 fg_pixel = gui_get_color((char_u *)"Black");
4452
4453 if (background_argument != NULL)
4454 bg_pixel = gui_get_color((char_u *)background_argument);
4455 if (bg_pixel == INVALCOLOR)
4456 bg_pixel = gui_get_color((char_u *)"White");
4457
4458 if (found_reverse_arg)
4459 {
4460 gui.def_norm_pixel = bg_pixel;
4461 gui.def_back_pixel = fg_pixel;
4462 }
4463 else
4464 {
4465 gui.def_norm_pixel = fg_pixel;
4466 gui.def_back_pixel = bg_pixel;
4467 }
4468
Bram Moolenaar30613902019-12-01 22:11:18 +01004469 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4470 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 set_normal_colors();
4472
Bram Moolenaar30613902019-12-01 22:11:18 +01004473 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 gui_check_colors();
4475
Bram Moolenaar30613902019-12-01 22:11:18 +01004476 // Get the colors for the highlight groups (gui_check_colors() might have
4477 // changed them).
4478 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479
Bram Moolenaar98921892016-02-23 17:14:37 +01004480 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4481 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 /*
4484 * Notify the fixed area about the need to resize the contents of the
4485 * gui.formwin, which we use for random positioning of the included
4486 * components.
4487 *
4488 * We connect this signal deferred finally after anything is in place,
4489 * since this is intended to handle resizements coming from the window
4490 * manager upon us and should not interfere with what VIM is requesting
4491 * upon startup.
4492 */
Ernie Raeld42b8392022-04-23 19:52:23 +01004493#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004494 latest_resize_hist = ALLOC_CLEAR_ONE(resize_hist_T);
Ernie Raeld42b8392022-04-23 19:52:23 +01004495#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004496 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004497 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498
4499#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004500 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004501 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502
Bram Moolenaar98921892016-02-23 17:14:37 +01004503 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004504 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505#endif
4506
Bram Moolenaar30613902019-12-01 22:11:18 +01004507 // With GTK+ 2, we need to iconify the window before calling show()
4508 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 if (found_iconic_arg && gtk_socket_id == 0)
4510 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511
4512 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004513#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 unsigned long menu_handler = 0;
4515# ifdef FEAT_TOOLBAR
4516 unsigned long tool_handler = 0;
4517# endif
4518 /*
4519 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4520 * show when restoring the saved layout configuration. We can't just
4521 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4522 * a toplevel window and thus will be realized immediately. Instead,
4523 * connect signal handlers to hide the widgets just after they've been
4524 * marked visible, but before the main window is realized.
4525 */
4526 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4527 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4528 G_CALLBACK(&gtk_widget_hide),
4529 NULL);
4530# ifdef FEAT_TOOLBAR
4531 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4532 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4533 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4534 G_CALLBACK(&gtk_widget_hide),
4535 NULL);
4536# endif
4537#endif
4538 gtk_widget_show(gui.mainwin);
4539
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004540#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 if (menu_handler != 0)
4542 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4543# ifdef FEAT_TOOLBAR
4544 if (tool_handler != 0)
4545 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4546# endif
4547#endif
4548 }
4549
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 return OK;
4551}
4552
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004553/*
4554 * Clean up for when exiting Vim.
4555 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004557gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004559 // Clean up, unless we don't want to invoke free().
4560 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562}
4563
4564/*
4565 * Get the position of the top left corner of the window.
4566 */
4567 int
4568gui_mch_get_winpos(int *x, int *y)
4569{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 return OK;
4572}
4573
4574/*
4575 * Set the position of the top left corner of the window to the given
4576 * coordinates.
4577 */
4578 void
4579gui_mch_set_winpos(int x, int y)
4580{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582}
4583
Bram Moolenaar98921892016-02-23 17:14:37 +01004584#if !GTK_CHECK_VERSION(3,0,0)
4585# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586static int resize_idle_installed = FALSE;
4587/*
4588 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4589 * the shell size doesn't exceed the window size, i.e. if the window manager
4590 * ignored our size request. Usually this happens if the window is maximized.
4591 *
4592 * FIXME: It'd be nice if we could find a little more orthodox solution.
4593 * See also the remark below in gui_mch_set_shellsize().
4594 *
4595 * DISABLED: When doing ":set lines+=1" this function would first invoke
4596 * gui_resize_shell() with the old size, then the normal callback would
4597 * report the new size through form_configure_event(). That caused the window
4598 * layout to be messed up.
4599 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 static gboolean
4601force_shell_resize_idle(gpointer data)
4602{
4603 if (gui.mainwin != NULL
4604 && GTK_WIDGET_REALIZED(gui.mainwin)
4605 && GTK_WIDGET_VISIBLE(gui.mainwin))
4606 {
4607 int width;
4608 int height;
4609
4610 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4611
4612 width -= get_menu_tool_width();
4613 height -= get_menu_tool_height();
4614
4615 gui_resize_shell(width, height);
4616 }
4617
4618 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004619 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620}
Bram Moolenaar98921892016-02-23 17:14:37 +01004621# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004622#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623
Bram Moolenaar09736232009-09-23 16:14:49 +00004624/*
4625 * Return TRUE if the main window is maximized.
4626 */
4627 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004628gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004629{
Bram Moolenaar98921892016-02-23 17:14:37 +01004630 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4631 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4632 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004633}
4634
4635/*
4636 * Unmaximize the main window
4637 */
4638 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004639gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004640{
4641 if (gui.mainwin != NULL)
4642 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4643}
Bram Moolenaar09736232009-09-23 16:14:49 +00004644
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004646 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4647 * is set. Compute the new Rows and Columns. This is like resizing the
4648 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004649 */
4650 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004651gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004652{
4653 int w, h;
4654
4655 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4656 w -= get_menu_tool_width();
4657 h -= get_menu_tool_height();
4658 gui_resize_shell(w, h);
4659}
4660
4661/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 * Set the windows size.
4663 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 void
4665gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004666 int min_width UNUSED, int min_height UNUSED,
4667 int base_width UNUSED, int base_height UNUSED,
4668 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669{
Bram Moolenaar30613902019-12-01 22:11:18 +01004670 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 gui_mch_update();
4672
Bram Moolenaar30613902019-12-01 22:11:18 +01004673 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004674 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004675 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004676
Bram Moolenaar30613902019-12-01 22:11:18 +01004677 // With GTK+ 2, changing the size of the form widget doesn't resize
4678 // the window. So let's do it the other way around and resize the
4679 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 width += get_menu_tool_width();
4681 height += get_menu_tool_height();
4682
Ernie Raeld42b8392022-04-23 19:52:23 +01004683#ifdef TRACK_RESIZE_HISTORY
Ernie Rael9f53e7b2022-04-17 18:27:49 +01004684 alloc_resize_hist(width, height); // track the resize request
Ernie Raeld42b8392022-04-23 19:52:23 +01004685#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004686 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004687 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004688 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004689 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690
Bram Moolenaar98921892016-02-23 17:14:37 +01004691# if !GTK_CHECK_VERSION(3,0,0)
4692# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 if (!resize_idle_installed)
4694 {
4695 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4696 &force_shell_resize_idle, NULL, NULL);
4697 resize_idle_installed = TRUE;
4698 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004699# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004700# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 /*
4702 * Wait until all events are processed to prevent a crash because the
4703 * real size of the drawing area doesn't reflect Vim's internal ideas.
4704 *
4705 * This is a bit of a hack, since Vim is a terminal application with a GUI
4706 * on top, while the GUI expects to be the boss.
4707 */
4708 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709}
4710
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004712gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if (title != NULL && output_conv.vc_type != CONV_NONE)
4715 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716
4717 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4718
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 if (output_conv.vc_type != CONV_NONE)
4720 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
4723#if defined(FEAT_MENU) || defined(PROTO)
4724 void
4725gui_mch_enable_menu(int showit)
4726{
4727 GtkWidget *widget;
4728
4729# ifdef FEAT_GUI_GNOME
4730 if (using_gnome)
4731 widget = gui.menubar_h;
4732 else
4733# endif
4734 widget = gui.menubar;
4735
Bram Moolenaar30613902019-12-01 22:11:18 +01004736 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004737 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 {
4739 if (showit)
4740 gtk_widget_show(widget);
4741 else
4742 gtk_widget_hide(widget);
4743
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004744 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 }
4746}
Bram Moolenaar30613902019-12-01 22:11:18 +01004747#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748
4749#if defined(FEAT_TOOLBAR) || defined(PROTO)
4750 void
4751gui_mch_show_toolbar(int showit)
4752{
4753 GtkWidget *widget;
4754
4755 if (gui.toolbar == NULL)
4756 return;
4757
4758# ifdef FEAT_GUI_GNOME
4759 if (using_gnome)
4760 widget = gui.toolbar_h;
4761 else
4762# endif
4763 widget = gui.toolbar;
4764
4765 if (showit)
4766 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4767
Bram Moolenaar98921892016-02-23 17:14:37 +01004768 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 {
4770 if (showit)
4771 gtk_widget_show(widget);
4772 else
4773 gtk_widget_hide(widget);
4774
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004775 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 }
4777}
Bram Moolenaar30613902019-12-01 22:11:18 +01004778#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780/*
4781 * Check if a given font is a CJK font. This is done in a very crude manner. It
4782 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4783 * font. Consequently, this function cannot be used as a general purpose check
4784 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4785 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4786 */
4787 static int
4788is_cjk_font(PangoFontDescription *font_desc)
4789{
4790 static const char * const cjk_langs[] =
4791 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4792
4793 PangoFont *font;
4794 unsigned i;
4795 int is_cjk = FALSE;
4796
4797 font = pango_context_load_font(gui.text_context, font_desc);
4798
4799 if (font == NULL)
4800 return FALSE;
4801
4802 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4803 {
4804 PangoCoverage *coverage;
4805 gunichar uc;
4806
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004807 // Valgrind reports a leak for pango_language_from_string(), but the
4808 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 coverage = pango_font_get_coverage(
4810 font, pango_language_from_string(cjk_langs[i]));
4811
4812 if (coverage != NULL)
4813 {
4814 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4815 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4816 pango_coverage_unref(coverage);
4817 }
4818 }
4819
4820 g_object_unref(font);
4821
4822 return is_cjk;
4823}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824
Bram Moolenaar231334e2005-07-25 20:46:57 +00004825/*
4826 * Adjust gui.char_height (after 'linespace' was changed).
4827 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004829gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 PangoFontMetrics *metrics;
4832 int ascent;
4833 int descent;
4834
4835 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4836 pango_context_get_language(gui.text_context));
4837 ascent = pango_font_metrics_get_ascent(metrics);
4838 descent = pango_font_metrics_get_descent(metrics);
4839
4840 pango_font_metrics_unref(metrics);
4841
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004842 // Round up when the value is more than about 1/16 of a pixel above a whole
4843 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4844 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4845 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004846 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4848
Bram Moolenaar30613902019-12-01 22:11:18 +01004849 // A not-positive value of char_height may crash Vim. Only happens
4850 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 gui.char_ascent = MAX(gui.char_ascent, 0);
4852 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4853
4854 return OK;
4855}
4856
Bram Moolenaar98921892016-02-23 17:14:37 +01004857#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004858// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004859 static gboolean
4860font_filter(const PangoFontFamily *family,
4861 const PangoFontFace *face UNUSED,
4862 gpointer data UNUSED)
4863{
4864 return pango_font_family_is_monospace((PangoFontFamily *)family);
4865}
4866#endif
4867
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868/*
4869 * Put up a font dialog and return the selected font name in allocated memory.
4870 * "oldval" is the previous value. Return NULL when cancelled.
4871 * This should probably go into gui_gtk.c. Hmm.
4872 * FIXME:
4873 * The GTK2 font selection dialog has no filtering API. So we could either
4874 * a) implement our own (possibly copying the code from somewhere else) or
4875 * b) just live with it.
4876 */
4877 char_u *
4878gui_mch_font_dialog(char_u *oldval)
4879{
4880 GtkWidget *dialog;
4881 int response;
4882 char_u *fontname = NULL;
4883 char_u *oldname;
4884
Bram Moolenaar98921892016-02-23 17:14:37 +01004885#if GTK_CHECK_VERSION(3,2,0)
4886 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4887 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4888 NULL, NULL);
4889#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892
4893 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4894 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4895
4896 if (oldval != NULL && oldval[0] != NUL)
4897 {
4898 if (output_conv.vc_type != CONV_NONE)
4899 oldname = string_convert(&output_conv, oldval, NULL);
4900 else
4901 oldname = oldval;
4902
Bram Moolenaar30613902019-12-01 22:11:18 +01004903 // Annoying bug in GTK (or Pango): if the font name does not include a
4904 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4906 {
4907 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4908
4909 if (p != NULL)
4910 {
4911 STRCPY(p + STRLEN(p), " 10");
4912 if (oldname != oldval)
4913 vim_free(oldname);
4914 oldname = p;
4915 }
4916 }
4917
Bram Moolenaar98921892016-02-23 17:14:37 +01004918#if GTK_CHECK_VERSION(3,2,0)
4919 gtk_font_chooser_set_font(
4920 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4921#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 gtk_font_selection_dialog_set_font_name(
4923 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925
4926 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004927 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004929 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004930#if GTK_CHECK_VERSION(3,2,0)
4931 gtk_font_chooser_set_font(
4932 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4933#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004934 gtk_font_selection_dialog_set_font_name(
4935 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937
4938 response = gtk_dialog_run(GTK_DIALOG(dialog));
4939
4940 if (response == GTK_RESPONSE_OK)
4941 {
4942 char *name;
4943
Bram Moolenaar98921892016-02-23 17:14:37 +01004944#if GTK_CHECK_VERSION(3,2,0)
4945 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4946#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 name = gtk_font_selection_dialog_get_font_name(
4948 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 if (name != NULL)
4951 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004952 char_u *p;
4953
Bram Moolenaar30613902019-12-01 22:11:18 +01004954 // Apparently some font names include a comma, need to escape
4955 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004956 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004958 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004959 {
4960 fontname = string_convert(&input_conv, p, NULL);
4961 vim_free(p);
4962 }
4963 else
4964 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 }
4966 }
4967
4968 if (response != GTK_RESPONSE_NONE)
4969 gtk_widget_destroy(dialog);
4970
4971 return fontname;
4972}
4973
4974/*
4975 * Some monospace fonts don't support a bold weight, and fall back
4976 * silently to the regular weight. But this is no good since our text
4977 * drawing function can emulate bold by overstriking. So let's try
4978 * to detect whether bold weight is actually available and emulate it
4979 * otherwise.
4980 *
4981 * Note that we don't need to check for italic style since Xft can
4982 * emulate italic on its own, provided you have a proper fontconfig
4983 * setup. We wouldn't be able to emulate it in Vim anyway.
4984 */
4985 static void
4986get_styled_font_variants(void)
4987{
4988 PangoFontDescription *bold_font_desc;
4989 PangoFont *plain_font;
4990 PangoFont *bold_font;
4991
4992 gui.font_can_bold = FALSE;
4993
4994 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4995
4996 if (plain_font == NULL)
4997 return;
4998
4999 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5000 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5001
5002 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5003 /*
5004 * The comparison relies on the unique handle nature of a PangoFont*,
5005 * i.e. it's assumed that a different PangoFont* won't refer to the
5006 * same font. Seems to work, and failing here isn't critical anyway.
5007 */
5008 if (bold_font != NULL)
5009 {
5010 gui.font_can_bold = (bold_font != plain_font);
5011 g_object_unref(bold_font);
5012 }
5013
5014 pango_font_description_free(bold_font_desc);
5015 g_object_unref(plain_font);
5016}
5017
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018static PangoEngineShape *default_shape_engine = NULL;
5019
5020/*
5021 * Create a map from ASCII characters in the range [32,126] to glyphs
5022 * of the current font. This is used by gui_gtk2_draw_string() to skip
5023 * the itemize and shaping process for the most common case.
5024 */
5025 static void
5026ascii_glyph_table_init(void)
5027{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005028 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 PangoAttrList *attr_list;
5030 GList *item_list;
5031 int i;
5032
5033 if (gui.ascii_glyphs != NULL)
5034 pango_glyph_string_free(gui.ascii_glyphs);
5035 if (gui.ascii_font != NULL)
5036 g_object_unref(gui.ascii_font);
5037
5038 gui.ascii_glyphs = NULL;
5039 gui.ascii_font = NULL;
5040
Bram Moolenaar30613902019-12-01 22:11:18 +01005041 // For safety, fill in question marks for the control characters.
5042 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005043 for (i = 0; i < 128; ++i)
5044 {
5045 if (i >= 32 && i < 127)
5046 ascii_chars[2 * i] = i;
5047 else
5048 ascii_chars[2 * i] = '?';
5049 ascii_chars[2 * i + 1] = ' ';
5050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051
5052 attr_list = pango_attr_list_new();
5053 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5054 0, sizeof(ascii_chars), attr_list, NULL);
5055
Bram Moolenaar30613902019-12-01 22:11:18 +01005056 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 {
5058 PangoItem *item;
5059 int width;
5060
5061 item = (PangoItem *)item_list->data;
5062 width = gui.char_width * PANGO_SCALE;
5063
Bram Moolenaar30613902019-12-01 22:11:18 +01005064 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 default_shape_engine = item->analysis.shape_engine;
5066
5067 gui.ascii_font = item->analysis.font;
5068 g_object_ref(gui.ascii_font);
5069
5070 gui.ascii_glyphs = pango_glyph_string_new();
5071
5072 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5073 &item->analysis, gui.ascii_glyphs);
5074
5075 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5076
5077 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5078 {
5079 PangoGlyphGeometry *geom;
5080
5081 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5082 geom->x_offset += MAX(0, width - geom->width) / 2;
5083 geom->width = width;
5084 }
5085 }
5086
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02005087 // TODO: is this type cast OK?
5088 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 g_list_free(item_list);
5090 pango_attr_list_unref(attr_list);
5091}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092
5093/*
5094 * Initialize Vim to use the font or fontset with the given name.
5095 * Return FAIL if the font could not be loaded, OK otherwise.
5096 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005098gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 PangoFontDescription *font_desc;
5101 PangoLayout *layout;
5102 int width;
5103
Bram Moolenaar30613902019-12-01 22:11:18 +01005104 // If font_name is NULL, this means to use the default, which should
5105 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 if (font_name == NULL)
5107 font_name = (char_u *)DEFAULT_FONT;
5108
5109 font_desc = gui_mch_get_font(font_name, FALSE);
5110
5111 if (font_desc == NULL)
5112 return FAIL;
5113
5114 gui_mch_free_font(gui.norm_font);
5115 gui.norm_font = font_desc;
5116
5117 pango_context_set_font_description(gui.text_context, font_desc);
5118
5119 layout = pango_layout_new(gui.text_context);
5120 pango_layout_set_text(layout, "MW", 2);
5121 pango_layout_get_size(layout, &width, NULL);
5122 /*
5123 * Set char_width to half the width obtained from pango_layout_get_size()
5124 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5125 * Pango to use the same width for both non-CJK characters (e.g. Latin
5126 * letters and numbers) and CJK characters. This results in 's p a c e d
5127 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5128 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5129 * width for CJK fonts.
5130 *
5131 * For related bugs, see:
5132 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5133 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5134 *
5135 * With this, for all four of the following cases, Vim works fine:
5136 * guifont=CJK_fixed_width_font
5137 * guifont=Non_CJK_fixed_font
5138 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5139 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5140 */
5141 if (is_cjk_font(gui.norm_font))
5142 {
5143 int cjk_width;
5144
Bram Moolenaar30613902019-12-01 22:11:18 +01005145 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5147 pango_layout_get_size(layout, &cjk_width, NULL);
5148
Bram Moolenaar30613902019-12-01 22:11:18 +01005149 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 width /= 2;
5151 }
5152 g_object_unref(layout);
5153
5154 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5155
Bram Moolenaar30613902019-12-01 22:11:18 +01005156 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 if (gui.char_width <= 0)
5158 gui.char_width = 8;
5159
Bram Moolenaar231334e2005-07-25 20:46:57 +00005160 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161
Bram Moolenaar30613902019-12-01 22:11:18 +01005162 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 hl_set_font_name(font_name);
5164
5165 get_styled_font_variants();
5166 ascii_glyph_table_init();
5167
Bram Moolenaar30613902019-12-01 22:11:18 +01005168 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 if (gui.wide_font != NULL
5170 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5171 {
5172 pango_font_description_free(gui.wide_font);
5173 gui.wide_font = NULL;
5174 }
5175
Bram Moolenaare161c792009-11-03 17:13:59 +00005176 if (gui_mch_maximized())
5177 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005178 // Update lines and columns in accordance with the new font, keep the
5179 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005180 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005181 }
5182 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005183 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005184 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00005185 update_window_manager_hints(0, 0);
5186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187
5188 return OK;
5189}
5190
5191/*
5192 * Get a reference to the font "name".
5193 * Return zero for failure.
5194 */
5195 GuiFont
5196gui_mch_get_font(char_u *name, int report_error)
5197{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199
Bram Moolenaar30613902019-12-01 22:11:18 +01005200 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 if (!gui.in_use || name == NULL)
5202 return NULL;
5203
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 if (output_conv.vc_type != CONV_NONE)
5205 {
5206 char_u *buf;
5207
5208 buf = string_convert(&output_conv, name, NULL);
5209 if (buf != NULL)
5210 {
5211 font = pango_font_description_from_string((const char *)buf);
5212 vim_free(buf);
5213 }
5214 else
5215 font = NULL;
5216 }
5217 else
5218 font = pango_font_description_from_string((const char *)name);
5219
5220 if (font != NULL)
5221 {
5222 PangoFont *real_font;
5223
Bram Moolenaar30613902019-12-01 22:11:18 +01005224 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 if (pango_font_description_get_size(font) <= 0)
5226 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5227
5228 real_font = pango_context_load_font(gui.text_context, font);
5229
5230 if (real_font == NULL)
5231 {
5232 pango_font_description_free(font);
5233 font = NULL;
5234 }
5235 else
5236 g_object_unref(real_font);
5237 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238
5239 if (font == NULL)
5240 {
5241 if (report_error)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00005242 semsg(_((char *)e_unknown_font_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 return NULL;
5244 }
5245
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246 return font;
5247}
5248
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005249#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005250/*
5251 * Return the name of font "font" in allocated memory.
5252 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005253 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005254gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005255{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005256 if (font != NOFONT)
5257 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005258 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005259
Bram Moolenaar89d40322006-08-29 15:30:07 +00005260 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005261 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005262 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005263
Bram Moolenaar89d40322006-08-29 15:30:07 +00005264 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005265 return s;
5266 }
5267 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005268 return NULL;
5269}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005270#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005271
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272/*
5273 * If a font is not going to be used, free its structure.
5274 */
5275 void
5276gui_mch_free_font(GuiFont font)
5277{
5278 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280}
5281
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005283 * Return the Pixel value (color) for the given color name.
5284 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 * Return INVALCOLOR for error.
5286 */
5287 guicolor_T
5288gui_mch_get_color(char_u *name)
5289{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005290 guicolor_T color = INVALCOLOR;
5291
Bram Moolenaar30613902019-12-01 22:11:18 +01005292 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005293 return color;
5294
5295 if (name != NULL)
5296 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297
Bram Moolenaar98921892016-02-23 17:14:37 +01005298#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005299 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005300#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005301 if (color == INVALCOLOR)
5302 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005304 return gui_mch_get_rgb_color(
5305 (color & 0xff0000) >> 16,
5306 (color & 0xff00) >> 8,
5307 color & 0xff);
5308#endif
5309}
5310
5311/*
5312 * Return the Pixel value (color) for the given RGB values.
5313 * Return INVALCOLOR for error.
5314 */
5315 guicolor_T
5316gui_mch_get_rgb_color(int r, int g, int b)
5317{
5318#if GTK_CHECK_VERSION(3,0,0)
5319 return gui_get_rgb_color_cmn(r, g, b);
5320#else
5321 GdkColor gcolor;
5322 int ret;
5323
5324 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5325 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5326 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327
Bram Moolenaar36edf062016-07-21 22:10:12 +02005328 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5329 &gcolor, FALSE, TRUE);
5330
5331 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333}
5334
5335/*
5336 * Set the current text foreground color.
5337 */
5338 void
5339gui_mch_set_fg_color(guicolor_T color)
5340{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005341#if GTK_CHECK_VERSION(3,0,0)
5342 *gui.fgcolor = color_to_rgba(color);
5343#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346}
5347
5348/*
5349 * Set the current text background color.
5350 */
5351 void
5352gui_mch_set_bg_color(guicolor_T color)
5353{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005354#if GTK_CHECK_VERSION(3,0,0)
5355 *gui.bgcolor = color_to_rgba(color);
5356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359}
5360
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005361/*
5362 * Set the current text special color.
5363 */
5364 void
5365gui_mch_set_sp_color(guicolor_T color)
5366{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005367#if GTK_CHECK_VERSION(3,0,0)
5368 *gui.spcolor = color_to_rgba(color);
5369#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005370 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005371#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005372}
5373
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374/*
5375 * Function-like convenience macro for the sake of efficiency.
5376 */
5377#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5378 G_STMT_START{ \
5379 PangoAttribute *tmp_attr_; \
5380 tmp_attr_ = (Attribute); \
5381 tmp_attr_->start_index = (Start); \
5382 tmp_attr_->end_index = (End); \
5383 pango_attr_list_insert((AttrList), tmp_attr_); \
5384 }G_STMT_END
5385
5386 static void
5387apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5388{
5389 char_u *start = NULL;
5390 char_u *p;
5391 int uc;
5392
5393 for (p = s; p < s + len; p += utf_byte2len(*p))
5394 {
5395 uc = utf_ptr2char(p);
5396
5397 if (start == NULL)
5398 {
5399 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5400 start = p;
5401 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005402 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5404 {
5405 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5406 attr_list, start - s, p - s);
5407 start = NULL;
5408 }
5409 }
5410
5411 if (start != NULL)
5412 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5413 attr_list, start - s, len);
5414}
5415
5416 static int
5417count_cluster_cells(char_u *s, PangoItem *item,
5418 PangoGlyphString* glyphs, int i,
5419 int *cluster_width,
5420 int *last_glyph_rbearing)
5421{
5422 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005423 int next; // glyph start index of next cluster
5424 int start, end; // string segment of current cluster
5425 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 int uc;
5427 int cellcount = 0;
5428
5429 width = glyphs->glyphs[i].geometry.width;
5430
5431 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5432 {
5433 if (glyphs->glyphs[next].attr.is_cluster_start)
5434 break;
5435 else if (glyphs->glyphs[next].geometry.width > width)
5436 width = glyphs->glyphs[next].geometry.width;
5437 }
5438
5439 start = item->offset + glyphs->log_clusters[i];
5440 end = item->offset + ((next < glyphs->num_glyphs) ?
5441 glyphs->log_clusters[next] : item->length);
5442
5443 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5444 {
5445 uc = utf_ptr2char(p);
5446 if (uc < 0x80)
5447 ++cellcount;
5448 else if (!utf_iscomposing(uc))
5449 cellcount += utf_char2cells(uc);
5450 }
5451
5452 if (last_glyph_rbearing != NULL
5453 && cellcount > 0 && next == glyphs->num_glyphs)
5454 {
5455 PangoRectangle ink_rect;
5456 /*
5457 * If a certain combining mark had to be taken from a non-monospace
5458 * font, we have to compensate manually by adapting x_offset according
5459 * to the ink extents of the previous glyph.
5460 */
5461 pango_font_get_glyph_extents(item->analysis.font,
5462 glyphs->glyphs[i].glyph,
5463 &ink_rect, NULL);
5464
5465 if (PANGO_RBEARING(ink_rect) > 0)
5466 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5467 }
5468
5469 if (cellcount > 0)
5470 *cluster_width = width;
5471
5472 return cellcount;
5473}
5474
5475/*
5476 * If there are only combining characters in the cluster, we cannot just
5477 * change the width of the previous glyph since there is none. Therefore
5478 * some guesswork is needed.
5479 *
5480 * If ink_rect.x is negative Pango apparently has taken care of the composing
5481 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5482 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005483 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 *
5485 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5486 * the position of the previous glyph. Apparently this happens only with old
5487 * X fonts which don't provide the special combining information needed by
5488 * Pango.
5489 */
5490 static void
5491setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5492 int last_cellcount, int last_cluster_width,
5493 int last_glyph_rbearing)
5494{
5495 PangoRectangle ink_rect;
5496 PangoRectangle logical_rect;
5497 int width;
5498
5499 width = last_cellcount * gui.char_width * PANGO_SCALE;
5500 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5501 glyph->geometry.width = 0;
5502
5503 pango_font_get_glyph_extents(item->analysis.font,
5504 glyph->glyph,
5505 &ink_rect, &logical_rect);
5506 if (ink_rect.x < 0)
5507 {
5508 glyph->geometry.x_offset += last_glyph_rbearing;
5509 glyph->geometry.y_offset = logical_rect.height
5510 - (gui.char_height - p_linespace) * PANGO_SCALE;
5511 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005512 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005513 // If the accent width is smaller than the cluster width, position it
5514 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005515 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516}
5517
Bram Moolenaar98921892016-02-23 17:14:37 +01005518#if GTK_CHECK_VERSION(3,0,0)
5519 static void
5520draw_glyph_string(int row, int col, int num_cells, int flags,
5521 PangoFont *font, PangoGlyphString *glyphs,
5522 cairo_t *cr)
5523#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 static void
5525draw_glyph_string(int row, int col, int num_cells, int flags,
5526 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005527#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528{
5529 if (!(flags & DRAW_TRANSP))
5530 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005531#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005532 cairo_set_source_rgba(cr,
5533 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5534 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005535 cairo_rectangle(cr,
5536 FILL_X(col), FILL_Y(row),
5537 num_cells * gui.char_width, gui.char_height);
5538 cairo_fill(cr);
5539#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5541
5542 gdk_draw_rectangle(gui.drawarea->window,
5543 gui.text_gc,
5544 TRUE,
5545 FILL_X(col),
5546 FILL_Y(row),
5547 num_cells * gui.char_width,
5548 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005549#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 }
5551
Bram Moolenaar98921892016-02-23 17:14:37 +01005552#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005553 cairo_set_source_rgba(cr,
5554 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5555 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005556 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5557 pango_cairo_show_glyph_string(cr, font, glyphs);
5558#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5560
5561 gdk_draw_glyphs(gui.drawarea->window,
5562 gui.text_gc,
5563 font,
5564 TEXT_X(col),
5565 TEXT_Y(row),
5566 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568
Bram Moolenaar30613902019-12-01 22:11:18 +01005569 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005571#if GTK_CHECK_VERSION(3,0,0)
5572 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005573 cairo_set_source_rgba(cr,
5574 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5575 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005576 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5577 pango_cairo_show_glyph_string(cr, font, glyphs);
5578 }
5579#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 gdk_draw_glyphs(gui.drawarea->window,
5581 gui.text_gc,
5582 font,
5583 TEXT_X(col) + 1,
5584 TEXT_Y(row),
5585 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587}
5588
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005589/*
5590 * Draw underline and undercurl at the bottom of the character cell.
5591 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005592#if GTK_CHECK_VERSION(3,0,0)
5593 static void
5594draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5595#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005596 static void
5597draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005598#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005599{
5600 int i;
5601 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005602 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005603 int y = FILL_Y(row + 1) - 1;
5604
Bram Moolenaar30613902019-12-01 22:11:18 +01005605 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005606 if (flags & DRAW_UNDERC)
5607 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005608#if GTK_CHECK_VERSION(3,0,0)
5609 cairo_set_line_width(cr, 1.0);
5610 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005611 cairo_set_source_rgba(cr,
5612 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5613 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005614 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5615 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005616 {
5617 offset = val[i % 8];
5618 cairo_line_to(cr, i, y - offset + 0.5);
5619 }
5620 cairo_stroke(cr);
5621#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005622 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5623 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5624 {
5625 offset = val[i % 8];
5626 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5627 }
5628 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005629#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005630 }
5631
Bram Moolenaar30613902019-12-01 22:11:18 +01005632 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005633 if (flags & DRAW_STRIKE)
5634 {
5635#if GTK_CHECK_VERSION(3,0,0)
5636 cairo_set_line_width(cr, 1.0);
5637 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5638 cairo_set_source_rgba(cr,
5639 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5640 gui.spcolor->alpha);
5641 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5642 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5643 cairo_stroke(cr);
5644#else
5645 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5646 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5647 FILL_X(col), y + 1 - gui.char_height/2,
5648 FILL_X(col + cells), y + 1 - gui.char_height/2);
5649 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5650#endif
5651 }
5652
Bram Moolenaar30613902019-12-01 22:11:18 +01005653 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005654 if (flags & DRAW_UNDERL)
5655 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005656 // When p_linespace is 0, overwrite the bottom row of pixels.
5657 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005658 if (p_linespace > 1)
5659 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005660#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005661 cairo_set_line_width(cr, 1.0);
5662 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5663 cairo_set_source_rgba(cr,
5664 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5665 gui.fgcolor->alpha);
5666 cairo_move_to(cr, FILL_X(col), y + 0.5);
5667 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5668 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005669#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005670 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5671 FILL_X(col), y,
5672 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005673#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005674 }
5675}
5676
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 int
5678gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5679{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005680 char_u *conv_buf = NULL; // result of UTF-8 conversion
5681 char_u *new_conv_buf;
5682 int convlen;
5683 char_u *sp, *bp;
5684 int plen;
5685 int len_sum; // return value needs to add up since we are
5686 // printing substrings
5687 int byte_sum; // byte position in string
5688 char_u *cs; // current *s pointer
5689 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005690 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005691 int slen;
5692 int is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005693 int is_utf8;
5694 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
Bram Moolenaar98921892016-02-23 17:14:37 +01005696 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 return len;
5698
5699 if (output_conv.vc_type != CONV_NONE)
5700 {
5701 /*
5702 * Convert characters from 'encoding' to 'termencoding', which is set
5703 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5704 * prohibits changing this to something else than UTF-8 if the GUI is
5705 * in use.
5706 */
5707 convlen = len;
5708 conv_buf = string_convert(&output_conv, s, &convlen);
5709 g_return_val_if_fail(conv_buf != NULL, len);
5710
Bram Moolenaar30613902019-12-01 22:11:18 +01005711 // Correct for differences in char width: some chars are
5712 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5713 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5715 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005716 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5718 {
5719 new_conv_buf = alloc(convlen + 2);
5720 if (new_conv_buf == NULL)
5721 return len;
5722 plen += bp - conv_buf;
5723 mch_memmove(new_conv_buf, conv_buf, plen);
5724 new_conv_buf[plen] = ' ';
5725 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5726 convlen - plen + 1);
5727 vim_free(conv_buf);
5728 conv_buf = new_conv_buf;
5729 ++convlen;
5730 bp = conv_buf + plen;
5731 plen = 1;
5732 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005733 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 bp += plen;
5735 }
5736 s = conv_buf;
5737 len = convlen;
5738 }
5739
5740 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005741 * Ligature support and complex utf-8 char optimization:
5742 * String received to output to screen can print using pre-cached glyphs
5743 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5744 * Since we receive mixed content string, split it into logical segments
5745 * that are guaranteed to go trough glyphs as much as possible. Since
5746 * single ligature char prints as ascii, print it that way.
5747 */
5748 len_sum = 0; // return value needs to add up since we are printing
5749 // substrings
5750 byte_sum = 0;
5751 cs = s;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005752 // First char decides starting needs_pango mode, 0=ascii 1=utf8/ligatures.
5753 // Even if it is ligature char, two chars or more make ligature.
5754 // Ascii followed by utf8 is also going trough pango.
5755 is_utf8 = (*cs & 0x80);
5756 is_ligature = gui.ligatures_map[*cs] && (len > 1);
5757 if (is_ligature)
5758 is_ligature = gui.ligatures_map[*(cs + 1)];
5759 if (!is_utf8 && len > 1)
5760 is_utf8 = (*(cs + 1) & 0x80) != 0;
5761 needs_pango = is_utf8 || is_ligature;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005762
5763 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5764 // print glyphs or use Pango
5765 while (cs < s + len)
5766 {
5767 slen = 0;
5768 while (slen < (len - byte_sum))
5769 {
5770 is_ligature = gui.ligatures_map[*(cs + slen)];
5771 // look ahead, single ligature char between ascii is ascii
5772 if (is_ligature && !needs_pango)
5773 {
5774 if ((slen + 1) < (len - byte_sum))
Dusan Popovic3c19b502021-11-20 22:03:30 +00005775 is_ligature = gui.ligatures_map[*(cs + slen + 1)];
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005776 else
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005777 is_ligature = 0;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005778 }
5779 is_utf8 = *(cs + slen) & 0x80;
Dusan Popovic3c19b502021-11-20 22:03:30 +00005780 // ascii followed by utf8 could be combining
5781 // if so send it trough pango
5782 if ((!is_utf8) && ((slen + 1) < (len - byte_sum)))
5783 is_utf8 = (*(cs + slen + 1) & 0x80);
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005784 should_need_pango = (is_ligature || is_utf8);
5785 if (needs_pango != should_need_pango) // mode switch
5786 break;
5787 if (needs_pango)
5788 {
5789 if (is_ligature)
5790 {
5791 slen++; // ligature char by char
5792 }
Bram Moolenaar2c236702021-11-21 11:15:49 +00005793 else // is_utf8
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005794 {
5795 if ((*(cs + slen) & 0xC0) == 0x80)
5796 {
5797 // a continuation, find next 0xC0 != 0x80 but don't
5798 // include it
5799 while ((slen < (len - byte_sum))
5800 && ((*(cs + slen) & 0xC0) == 0x80))
5801 {
5802 slen++;
5803 }
5804 }
5805 else if ((*(cs + slen) & 0xE0) == 0xC0)
5806 {
5807 // + one byte utf8
5808 slen++;
5809 }
5810 else if ((*(cs + slen) & 0xF0) == 0xE0)
5811 {
5812 // + two bytes utf8
5813 slen += 2;
5814 }
5815 else if ((*(cs + slen) & 0xF8) == 0xF0)
5816 {
5817 // + three bytes utf8
5818 slen += 3;
5819 }
5820 else
5821 {
5822 // this should not happen, try moving forward, Pango
5823 // will catch it
5824 slen++;
5825 }
5826 }
5827 }
5828 else
5829 {
5830 slen++; // ascii
5831 }
5832 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005833
Bram Moolenaard68a0042021-10-20 23:08:11 +01005834 if (slen < len)
5835 {
5836 // temporarily zero terminate substring, print, restore char, wrap
5837 backup_ch = *(cs + slen);
5838 *(cs + slen) = NUL;
5839 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005840 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5841 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005842 if (slen < len)
5843 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005844 cs += slen;
5845 byte_sum += slen;
5846 needs_pango = should_need_pango;
5847 }
5848 vim_free(conv_buf);
5849 return len_sum;
5850}
5851
5852 int
5853gui_gtk2_draw_string_ext(
5854 int row,
5855 int col,
5856 char_u *s,
5857 int len,
5858 int flags,
5859 int force_pango)
5860{
5861 GdkRectangle area; // area for clip mask
5862 PangoGlyphString *glyphs; // glyphs of current item
5863 int column_offset = 0; // column offset in cells
5864 int i;
5865#if GTK_CHECK_VERSION(3,0,0)
5866 cairo_t *cr;
5867#endif
5868
5869 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 * Restrict all drawing to the current screen line in order to prevent
5871 * fuzzy font lookups from messing up the screen.
5872 */
5873 area.x = gui.border_offset;
5874 area.y = FILL_Y(row);
5875 area.width = gui.num_cols * gui.char_width;
5876 area.height = gui.char_height;
5877
Bram Moolenaar98921892016-02-23 17:14:37 +01005878#if GTK_CHECK_VERSION(3,0,0)
5879 cr = cairo_create(gui.surface);
5880 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5881 cairo_clip(cr);
5882#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5884 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005885#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886
5887 glyphs = pango_glyph_string_new();
5888
5889 /*
5890 * Optimization hack: If possible, skip the itemize and shaping process
5891 * for pure ASCII strings. This optimization is particularly effective
5892 * because Vim draws space characters to clear parts of the screen.
5893 */
5894 if (!(flags & DRAW_ITALIC)
5895 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005896 && gui.ascii_glyphs != NULL
5897 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 {
5899 char_u *p;
5900
5901 for (p = s; p < s + len; ++p)
5902 if (*p & 0x80)
5903 goto not_ascii;
5904
5905 pango_glyph_string_set_size(glyphs, len);
5906
5907 for (i = 0; i < len; ++i)
5908 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005909 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 glyphs->log_clusters[i] = i;
5911 }
5912
Bram Moolenaar98921892016-02-23 17:14:37 +01005913#if GTK_CHECK_VERSION(3,0,0)
5914 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
5919 column_offset = len;
5920 }
5921 else
5922not_ascii:
5923 {
5924 PangoAttrList *attr_list;
5925 GList *item_list;
5926 int cluster_width;
5927 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005928 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929
Bram Moolenaar30613902019-12-01 22:11:18 +01005930 // Safety check: pango crashes when invoked with invalid utf-8
5931 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005932 if (!utf_valid_string(s, s + len))
5933 {
5934 column_offset = len;
5935 goto skipitall;
5936 }
5937
Bram Moolenaar30613902019-12-01 22:11:18 +01005938 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 cluster_width = PANGO_SCALE * gui.char_width;
5940
Bram Moolenaar30613902019-12-01 22:11:18 +01005941 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5943
5944 attr_list = pango_attr_list_new();
5945
Bram Moolenaar30613902019-12-01 22:11:18 +01005946 // If 'guifontwide' is set then use that for double-width characters.
5947 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 if (gui.wide_font != NULL)
5949 apply_wide_font_attr(s, len, attr_list);
5950
5951 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5952 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5953 attr_list, 0, len);
5954 if (flags & DRAW_ITALIC)
5955 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5956 attr_list, 0, len);
5957 /*
5958 * Break the text into segments with consistent directional level
5959 * and shaping engine. Pure Latin text needs only a single segment,
5960 * so there's no need to worry about the loop's efficiency. Better
5961 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5962 */
5963 item_list = pango_itemize(gui.text_context,
5964 (const char *)s, 0, len, attr_list, NULL);
5965
5966 while (item_list != NULL)
5967 {
5968 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005969 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970
5971 item = (PangoItem *)item_list->data;
5972 item_list = g_list_delete_link(item_list, item_list);
5973 /*
5974 * Increment the bidirectional embedding level by 1 if it is not
5975 * even. An odd number means the output will be RTL, but we don't
5976 * want that since Vim handles right-to-left text on its own. It
5977 * would probably be sufficient to just set level = 0, but you can
5978 * never know :)
5979 *
5980 * Unfortunately we can't take advantage of Pango's ability to
5981 * render both LTR and RTL at the same time. In order to support
5982 * that, Vim's main screen engine would have to make use of Pango
5983 * functionality.
5984 */
5985 item->analysis.level = (item->analysis.level + 1) & (~1U);
5986
Bram Moolenaar30613902019-12-01 22:11:18 +01005987 // HACK: Overrule the shape engine, we don't want shaping to be
5988 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 item->analysis.shape_engine = default_shape_engine;
5990
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005991#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005992 pango_shape_full((const char *)s + item->offset, item->length,
5993 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005994#else
5995 pango_shape((const char *)s + item->offset, item->length,
5996 &item->analysis, glyphs);
5997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 /*
5999 * Fixed-width hack: iterate over the array and assign a fixed
6000 * width to each glyph, thus overriding the choice made by the
6001 * shaping engine. We use utf_char2cells() to determine the
6002 * number of cells needed.
6003 *
6004 * Also perform all kind of dark magic to get composing
6005 * characters right (and pretty too of course).
6006 */
6007 for (i = 0; i < glyphs->num_glyphs; ++i)
6008 {
6009 PangoGlyphInfo *glyph;
6010
6011 glyph = &glyphs->glyphs[i];
6012
6013 if (glyph->attr.is_cluster_start)
6014 {
6015 int cellcount;
6016
6017 cellcount = count_cluster_cells(
6018 s, item, glyphs, i, &cluster_width,
6019 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6020
6021 if (cellcount > 0)
6022 {
6023 int width;
6024
6025 width = cellcount * gui.char_width * PANGO_SCALE;
6026 glyph->geometry.x_offset +=
6027 MAX(0, width - cluster_width) / 2;
6028 glyph->geometry.width = width;
6029 }
6030 else
6031 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006032 // If there are only combining characters in the
6033 // cluster, we cannot just change the width of the
6034 // previous glyph since there is none. Therefore
6035 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036 setup_zero_width_cluster(item, glyph, cells,
6037 cluster_width,
6038 last_glyph_rbearing);
6039 }
6040
6041 item_cells += cellcount;
6042 cells = cellcount;
6043 }
6044 else if (i > 0)
6045 {
6046 int width;
6047
Bram Moolenaar30613902019-12-01 22:11:18 +01006048 // There is a previous glyph, so we deal with combining
6049 // characters the canonical way.
6050 // In some circumstances Pango uses a positive x_offset,
6051 // then use the width of the previous glyph for this one
6052 // and set the previous width to zero.
6053 // Otherwise we get a negative x_offset, Pango has already
6054 // positioned the combining char, keep the widths as they
6055 // are.
6056 // For both adjust the x_offset to position the glyph in
6057 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006058 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006059 {
6060 glyphs->glyphs[i].geometry.width =
6061 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006062 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064 width = cells * gui.char_width * PANGO_SCALE;
6065 glyph->geometry.x_offset +=
6066 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006068 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069 {
6070 glyph->geometry.width = 0;
6071 }
6072 }
6073
Bram Moolenaar30613902019-12-01 22:11:18 +01006074 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01006075#if GTK_CHECK_VERSION(3,0,0)
6076 draw_glyph_string(row, col + column_offset, item_cells,
6077 flags, item->analysis.font, glyphs,
6078 cr);
6079#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 draw_glyph_string(row, col + column_offset, item_cells,
6081 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006082#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083
6084 pango_item_free(item);
6085
6086 column_offset += item_cells;
6087 }
6088
6089 pango_attr_list_unref(attr_list);
6090 }
6091
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006092skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01006093 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01006094#if GTK_CHECK_VERSION(3,0,0)
6095 draw_under(flags, row, col, column_offset, cr);
6096#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006097 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006098#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099
6100 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101
Bram Moolenaar98921892016-02-23 17:14:37 +01006102#if GTK_CHECK_VERSION(3,0,0)
6103 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00006104 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
6105 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006106#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006108#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109
6110 return column_offset;
6111}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112
6113/*
6114 * Return OK if the key with the termcap name "name" is supported.
6115 */
6116 int
6117gui_mch_haskey(char_u *name)
6118{
6119 int i;
6120
6121 for (i = 0; special_keys[i].key_sym != 0; i++)
6122 if (name[0] == special_keys[i].code0
6123 && name[1] == special_keys[i].code1)
6124 return OK;
6125 return FAIL;
6126}
6127
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006128#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129/*
6130 * Return the text window-id and display. Only required for X-based GUI's
6131 */
6132 int
6133gui_get_x11_windis(Window *win, Display **dis)
6134{
Bram Moolenaar98921892016-02-23 17:14:37 +01006135 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006137 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6138 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 return OK;
6140 }
6141
6142 *dis = NULL;
6143 *win = 0;
6144 return FAIL;
6145}
6146#endif
6147
6148#if defined(FEAT_CLIENTSERVER) \
6149 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6150
6151 Display *
6152gui_mch_get_display(void)
6153{
Bram Moolenaar98921892016-02-23 17:14:37 +01006154 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6155 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 else
6157 return NULL;
6158}
6159#endif
6160
6161 void
6162gui_mch_beep(void)
6163{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 GdkDisplay *display;
6165
Bram Moolenaar98921892016-02-23 17:14:37 +01006166 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167 display = gtk_widget_get_display(gui.mainwin);
6168 else
6169 display = gdk_display_get_default();
6170
6171 if (display != NULL)
6172 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173}
6174
6175 void
6176gui_mch_flash(int msec)
6177{
Bram Moolenaar98921892016-02-23 17:14:37 +01006178#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01006179 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01006180 (void)msec;
6181#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 GdkGCValues values;
6183 GdkGC *invert_gc;
6184
6185 if (gui.drawarea->window == NULL)
6186 return;
6187
6188 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6189 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6190 values.function = GDK_XOR;
6191 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6192 &values,
6193 GDK_GC_FOREGROUND |
6194 GDK_GC_BACKGROUND |
6195 GDK_GC_FUNCTION);
6196 gdk_gc_set_exposures(invert_gc,
6197 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6198 /*
6199 * Do a visual beep by changing back and forth in some undetermined way,
6200 * the foreground and background colors. This is due to the fact that
6201 * there can't be really any prediction about the effects of XOR on
6202 * arbitrary X11 servers. However this seems to be enough for what we
6203 * intend it to do.
6204 */
6205 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6206 TRUE,
6207 0, 0,
6208 FILL_X((int)Columns) + gui.border_offset,
6209 FILL_Y((int)Rows) + gui.border_offset);
6210
6211 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006212 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213
6214 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6215 TRUE,
6216 0, 0,
6217 FILL_X((int)Columns) + gui.border_offset,
6218 FILL_Y((int)Rows) + gui.border_offset);
6219
6220 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222}
6223
6224/*
6225 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6226 */
6227 void
6228gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6229{
Bram Moolenaar98921892016-02-23 17:14:37 +01006230#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006231 const GdkRectangle rect = {
6232 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6233 };
6234 cairo_t * const cr = cairo_create(gui.surface);
6235
Bram Moolenaar36edf062016-07-21 22:10:12 +02006236 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006237# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6238 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6239# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006240 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006241# endif
presuku9459b8d2021-11-16 20:03:56 +00006242 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006243 cairo_fill(cr);
6244
6245 cairo_destroy(cr);
6246
presuku9459b8d2021-11-16 20:03:56 +00006247 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6248 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006249#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 GdkGCValues values;
6251 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252
6253 if (gui.drawarea->window == NULL)
6254 return;
6255
Bram Moolenaar89d40322006-08-29 15:30:07 +00006256 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6257 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 values.function = GDK_XOR;
6259 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6260 &values,
6261 GDK_GC_FOREGROUND |
6262 GDK_GC_BACKGROUND |
6263 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006264 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6265 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6267 TRUE,
6268 FILL_X(c), FILL_Y(r),
6269 (nc) * gui.char_width, (nr) * gui.char_height);
6270 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272}
6273
6274/*
6275 * Iconify the GUI window.
6276 */
6277 void
6278gui_mch_iconify(void)
6279{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281}
6282
6283#if defined(FEAT_EVAL) || defined(PROTO)
6284/*
6285 * Bring the Vim window to the foreground.
6286 */
6287 void
6288gui_mch_set_foreground(void)
6289{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291}
6292#endif
6293
6294/*
6295 * Draw a cursor without focus.
6296 */
6297 void
6298gui_mch_draw_hollow_cursor(guicolor_T color)
6299{
6300 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006301#if GTK_CHECK_VERSION(3,0,0)
6302 cairo_t *cr;
6303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304
Bram Moolenaar98921892016-02-23 17:14:37 +01006305 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 return;
6307
Bram Moolenaar98921892016-02-23 17:14:37 +01006308#if GTK_CHECK_VERSION(3,0,0)
6309 cr = cairo_create(gui.surface);
6310#endif
6311
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 gui_mch_set_fg_color(color);
6313
Bram Moolenaar98921892016-02-23 17:14:37 +01006314#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006315 cairo_set_source_rgba(cr,
6316 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6317 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006318#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 if (mb_lefthalve(gui.row, gui.col))
6322 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006323#if GTK_CHECK_VERSION(3,0,0)
6324 cairo_set_line_width(cr, 1.0);
6325 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6326 cairo_rectangle(cr,
6327 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6328 i * gui.char_width - 1, gui.char_height - 1);
6329 cairo_stroke(cr);
6330 cairo_destroy(cr);
6331#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6333 FALSE,
6334 FILL_X(gui.col), FILL_Y(gui.row),
6335 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337}
6338
6339/*
6340 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6341 * color "color".
6342 */
6343 void
6344gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6345{
Bram Moolenaar98921892016-02-23 17:14:37 +01006346 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 return;
6348
6349 gui_mch_set_fg_color(color);
6350
Bram Moolenaar98921892016-02-23 17:14:37 +01006351#if GTK_CHECK_VERSION(3,0,0)
6352 {
6353 cairo_t *cr;
6354
6355 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006356 cairo_set_source_rgba(cr,
6357 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6358 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006359 cairo_rectangle(cr,
6360# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006361 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006362 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6363# endif
6364 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6365 w, h);
6366 cairo_fill(cr);
6367 cairo_destroy(cr);
6368 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006369#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6371 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6372 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006373# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006374 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377 FILL_X(gui.col),
6378 FILL_Y(gui.row) + gui.char_height - h,
6379 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006380#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381}
6382
6383
6384/*
6385 * Catch up with any queued X11 events. This may put keyboard input into the
6386 * input buffer, call resize call-backs, trigger timers etc. If there is
6387 * nothing in the X11 event queue (& no timers pending), then we return
6388 * immediately.
6389 */
6390 void
6391gui_mch_update(void)
6392{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006393 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6394 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395}
6396
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006397 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398input_timer_cb(gpointer data)
6399{
6400 int *timed_out = (int *) data;
6401
Bram Moolenaar30613902019-12-01 22:11:18 +01006402 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 *timed_out = TRUE;
6404
Bram Moolenaar30613902019-12-01 22:11:18 +01006405 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406}
6407
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006408#ifdef FEAT_JOB_CHANNEL
6409 static timeout_cb_type
6410channel_poll_cb(gpointer data UNUSED)
6411{
Bram Moolenaar30613902019-12-01 22:11:18 +01006412 // Using an event handler for a channel that may be disconnected does
6413 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006414 channel_handle_events(TRUE);
6415 parse_queued_messages();
6416
Bram Moolenaar30613902019-12-01 22:11:18 +01006417 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006418}
6419#endif
6420
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421/*
6422 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6423 * from the keyboard.
6424 * wtime == -1 Wait forever.
6425 * wtime == 0 This should never happen.
6426 * wtime > 0 Wait wtime milliseconds for a character.
6427 * Returns OK if a character was found to be available within the given time,
6428 * or FAIL otherwise.
6429 */
6430 int
6431gui_mch_wait_for_chars(long wtime)
6432{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006433 int focus;
6434 guint timer;
6435 static int timed_out;
6436 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006437#ifdef FEAT_JOB_CHANNEL
6438 guint channel_timer = 0;
6439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440
6441 timed_out = FALSE;
6442
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006443 // This timeout makes sure that we will return if no characters arrived in
6444 // time. If "wtime" is zero just use one.
6445 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006446 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006447 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 else
6449 timer = 0;
6450
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006451#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006452 // If there is a channel with the keep_open flag we need to poll for input
6453 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006454 if (channel_any_keep_open())
6455 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6456#endif
6457
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 focus = gui.in_focus;
6459
6460 do
6461 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006462 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463 if (gui.in_focus != focus)
6464 {
6465 if (gui.in_focus)
6466 gui_mch_start_blink();
6467 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006468 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 focus = gui.in_focus;
6470 }
6471
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006472#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006473# ifdef FEAT_TIMERS
6474 did_add_timer = FALSE;
6475# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006476 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006477# ifdef FEAT_TIMERS
6478 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006479 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006480 goto theend;
6481# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006482#endif
6483
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 /*
6485 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006486 * Skip this if input is available anyway (can happen in rare
6487 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006489 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006490 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491
Bram Moolenaar30613902019-12-01 22:11:18 +01006492 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 if (input_available())
6494 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006495 retval = OK;
6496 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 }
6498 } while (wtime < 0 || !timed_out);
6499
6500 /*
6501 * Flush all eventually pending (drawing) events.
6502 */
6503 gui_mch_update();
6504
Bram Moolenaar4231da42016-06-02 14:30:04 +02006505theend:
6506 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006507 timeout_remove(timer);
6508#ifdef FEAT_JOB_CHANNEL
6509 if (channel_timer != 0)
6510 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006511#endif
6512
6513 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514}
6515
6516
Bram Moolenaar30613902019-12-01 22:11:18 +01006517/////////////////////////////////////////////////////////////////////////////
6518// Output drawing routines.
6519//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520
6521
Bram Moolenaar30613902019-12-01 22:11:18 +01006522// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 void
6524gui_mch_flush(void)
6525{
Bram Moolenaar98921892016-02-23 17:14:37 +01006526 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006527#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006528 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006529#else
6530 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532}
6533
6534/*
6535 * Clear a rectangular region of the screen from text pos (row1, col1) to
6536 * (row2, col2) inclusive.
6537 */
6538 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006539gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006541
6542 int col1 = check_col(col1arg);
6543 int col2 = check_col(col2arg);
6544 int row1 = check_row(row1arg);
6545 int row2 = check_row(row2arg);
6546
Bram Moolenaar98921892016-02-23 17:14:37 +01006547#if GTK_CHECK_VERSION(3,0,0)
6548 if (gtk_widget_get_window(gui.drawarea) == NULL)
6549 return;
6550#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551 GdkColor color;
6552
6553 if (gui.drawarea->window == NULL)
6554 return;
6555
6556 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558
Bram Moolenaar98921892016-02-23 17:14:37 +01006559#if GTK_CHECK_VERSION(3,0,0)
6560 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006561 // Add one pixel to the far right column in case a double-stroked
6562 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006563 const GdkRectangle rect = {
6564 FILL_X(col1), FILL_Y(row1),
6565 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6566 (row2 - row1 + 1) * gui.char_height
6567 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006568 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006569# if GTK_CHECK_VERSION(3,22,2)
6570 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6571# else
presuku9459b8d2021-11-16 20:03:56 +00006572 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006573 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6574 if (pat != NULL)
6575 cairo_set_source(cr, pat);
6576 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006577 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006578# endif
presuku9459b8d2021-11-16 20:03:56 +00006579 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006580 cairo_fill(cr);
6581 cairo_destroy(cr);
6582
presuku9459b8d2021-11-16 20:03:56 +00006583 gtk_widget_queue_draw_area(gui.drawarea,
6584 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006585 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006586#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 gdk_gc_set_foreground(gui.text_gc, &color);
6588
Bram Moolenaar30613902019-12-01 22:11:18 +01006589 // Clear one extra pixel at the far right, for when bold characters have
6590 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6592 FILL_X(col1), FILL_Y(row1),
6593 (col2 - col1 + 1) * gui.char_width
6594 + (col2 == Columns - 1),
6595 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006596#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597}
6598
Bram Moolenaar98921892016-02-23 17:14:37 +01006599#if GTK_CHECK_VERSION(3,0,0)
6600 static void
6601gui_gtk_window_clear(GdkWindow *win)
6602{
6603 const GdkRectangle rect = {
6604 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6605 };
6606 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006607# if GTK_CHECK_VERSION(3,22,2)
6608 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6609# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006610 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6611 if (pat != NULL)
6612 cairo_set_source(cr, pat);
6613 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006614 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006615# endif
presuku9459b8d2021-11-16 20:03:56 +00006616 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006617 cairo_fill(cr);
6618 cairo_destroy(cr);
6619
presuku9459b8d2021-11-16 20:03:56 +00006620 gtk_widget_queue_draw_area(gui.drawarea,
6621 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006622}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006623#else
6624# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006625#endif
6626
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 void
6628gui_mch_clear_all(void)
6629{
Bram Moolenaar98921892016-02-23 17:14:37 +01006630 if (gtk_widget_get_window(gui.drawarea) != NULL)
6631 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632}
6633
Bram Moolenaar98921892016-02-23 17:14:37 +01006634#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635/*
6636 * Redraw any text revealed by scrolling up/down.
6637 */
6638 static void
6639check_copy_area(void)
6640{
6641 GdkEvent *event;
6642 int expose_count;
6643
6644 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6645 return;
6646
Bram Moolenaar30613902019-12-01 22:11:18 +01006647 // Avoid redrawing the cursor while scrolling or it'll end up where
6648 // we don't want it to be. I'm not sure if it's correct to call
6649 // gui_dont_update_cursor() at this point but it works as a quick
6650 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006651 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652
6653 do
6654 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006655 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6657
6658 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006659 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660
6661 gui_redraw(event->expose.area.x, event->expose.area.y,
6662 event->expose.area.width, event->expose.area.height);
6663
6664 expose_count = event->expose.count;
6665 gdk_event_free(event);
6666 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006667 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668
6669 gui_can_update_cursor();
6670}
Bram Moolenaar30613902019-12-01 22:11:18 +01006671#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006672
6673#if GTK_CHECK_VERSION(3,0,0)
6674 static void
6675gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6676 int src_x, int src_y,
6677 int width, int height)
6678{
6679 cairo_t * const cr = cairo_create(gui.surface);
6680
6681 cairo_rectangle(cr, dest_x, dest_y, width, height);
6682 cairo_clip(cr);
6683 cairo_push_group(cr);
6684 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6685 cairo_paint(cr);
6686 cairo_pop_group_to_source(cr);
6687 cairo_paint(cr);
6688
6689 cairo_destroy(cr);
6690}
6691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006692
6693/*
6694 * Delete the given number of lines from the given row, scrolling up any
6695 * text further down within the scroll region.
6696 */
6697 void
6698gui_mch_delete_lines(int row, int num_lines)
6699{
Bram Moolenaar98921892016-02-23 17:14:37 +01006700#if GTK_CHECK_VERSION(3,0,0)
6701 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6702 const int nrows = gui.scroll_region_bot - row + 1;
6703 const int src_nrows = nrows - num_lines;
6704
6705 gui_gtk_surface_copy_rect(
6706 FILL_X(gui.scroll_region_left), FILL_Y(row),
6707 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6708 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6709 gui_clear_block(
6710 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6711 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006712 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006713 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006714 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006715#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006717 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718
6719 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6720 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6721
Bram Moolenaar30613902019-12-01 22:11:18 +01006722 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6724 FILL_X(gui.scroll_region_left), FILL_Y(row),
6725 gui.drawarea->window,
6726 FILL_X(gui.scroll_region_left),
6727 FILL_Y(row + num_lines),
6728 gui.char_width * (gui.scroll_region_right
6729 - gui.scroll_region_left + 1) + 1,
6730 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6731
6732 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6733 gui.scroll_region_left,
6734 gui.scroll_region_bot, gui.scroll_region_right);
6735 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006736#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737}
6738
6739/*
6740 * Insert the given number of lines before the given row, scrolling down any
6741 * following text within the scroll region.
6742 */
6743 void
6744gui_mch_insert_lines(int row, int num_lines)
6745{
Bram Moolenaar98921892016-02-23 17:14:37 +01006746#if GTK_CHECK_VERSION(3,0,0)
6747 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6748 const int nrows = gui.scroll_region_bot - row + 1;
6749 const int src_nrows = nrows - num_lines;
6750
6751 gui_gtk_surface_copy_rect(
6752 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6753 FILL_X(gui.scroll_region_left), FILL_Y(row),
6754 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006755 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006756 row, gui.scroll_region_left,
6757 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006758 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006759 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006760 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006761#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006763 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764
6765 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6766 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6767
Bram Moolenaar30613902019-12-01 22:11:18 +01006768 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6770 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6771 gui.drawarea->window,
6772 FILL_X(gui.scroll_region_left), FILL_Y(row),
6773 gui.char_width * (gui.scroll_region_right
6774 - gui.scroll_region_left + 1) + 1,
6775 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6776
6777 gui_clear_block(row, gui.scroll_region_left,
6778 row + num_lines - 1, gui.scroll_region_right);
6779 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006780#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781}
6782
6783/*
6784 * X Selection stuff, for cutting and pasting text to other windows.
6785 */
6786 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006787clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788{
6789 GdkAtom target;
6790 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006791 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792
6793 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6794 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006795 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6796 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797 received_selection = RS_NONE;
6798 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6799
6800 gtk_selection_convert(gui.drawarea,
6801 cbd->gtk_sel_atom, target,
6802 (guint32)GDK_CURRENT_TIME);
6803
Bram Moolenaar30613902019-12-01 22:11:18 +01006804 // Hack: Wait up to three seconds for the selection. A hang was
6805 // noticed here when using the netrw plugin combined with ":gui"
6806 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006807 start = time(NULL);
6808 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006809 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810
6811 if (received_selection != RS_FAIL)
6812 return;
6813 }
6814
Bram Moolenaar30613902019-12-01 22:11:18 +01006815 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006816 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6817 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818}
6819
6820/*
6821 * Disown the selection.
6822 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006824clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006826 if (!in_selection_clear_event)
6827 {
6828 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6829 gui_mch_update();
6830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831}
6832
6833/*
6834 * Own the selection and return OK if it worked.
6835 */
6836 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006837clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838{
6839 int success;
6840
6841 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006842 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843 gui_mch_update();
6844 return (success) ? OK : FAIL;
6845}
6846
6847/*
6848 * Send the current selection to the clipboard. Do nothing for X because we
6849 * will fill in the selection only when requested by another app.
6850 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006852clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006853{
6854}
6855
Bram Moolenaar113e1072019-01-20 15:30:40 +01006856#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006857 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006858clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006859{
6860 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6861}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006862#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006863
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864
6865#if defined(FEAT_MENU) || defined(PROTO)
6866/*
6867 * Make a menu item appear either active or not active (grey or not grey).
6868 */
6869 void
6870gui_mch_menu_grey(vimmenu_T *menu, int grey)
6871{
6872 if (menu->id == NULL)
6873 return;
6874
6875 if (menu_is_separator(menu->name))
6876 grey = TRUE;
6877
6878 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006879 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006880 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 {
6882 gtk_widget_set_sensitive(menu->id, !grey);
6883 gui_mch_update();
6884 }
6885}
6886
6887/*
6888 * Make menu item hidden or not hidden.
6889 */
6890 void
6891gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6892{
6893 if (menu->id == 0)
6894 return;
6895
6896 if (hidden)
6897 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006898 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 {
6900 gtk_widget_hide(menu->id);
6901 gui_mch_update();
6902 }
6903 }
6904 else
6905 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006906 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 {
6908 gtk_widget_show(menu->id);
6909 gui_mch_update();
6910 }
6911 }
6912}
6913
6914/*
6915 * This is called after setting all the menus to grey/hidden or not.
6916 */
6917 void
6918gui_mch_draw_menubar(void)
6919{
Bram Moolenaar30613902019-12-01 22:11:18 +01006920 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 gui_mch_update();
6922}
Bram Moolenaar30613902019-12-01 22:11:18 +01006923#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
6925/*
6926 * Scrollbar stuff.
6927 */
6928 void
6929gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6930{
6931 if (sb->id == NULL)
6932 return;
6933
Bram Moolenaar98921892016-02-23 17:14:37 +01006934 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006935 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936}
6937
6938
6939/*
6940 * Return the RGB value of a pixel as long.
6941 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006942 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943gui_mch_get_rgb(guicolor_T pixel)
6944{
Bram Moolenaar98921892016-02-23 17:14:37 +01006945#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006946 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006947#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006948 GdkColor color;
6949
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6951 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006953 return (guicolor_T)(
6954 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006956 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958}
6959
6960/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006961 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006963 void
6964gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965{
Bram Moolenaar98921892016-02-23 17:14:37 +01006966 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967}
6968
6969 void
6970gui_mch_setmouse(int x, int y)
6971{
Bram Moolenaar30613902019-12-01 22:11:18 +01006972 // Sorry for the Xlib call, but we can't avoid it, since there is no
6973 // internal GDK mechanism present to accomplish this. (and for good
6974 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01006975 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6976 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6977 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978}
6979
6980
6981#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01006982// The last set mouse pointer shape is remembered, to be used when it goes
6983// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984static int last_shape = 0;
6985#endif
6986
6987/*
6988 * Use the blank mouse pointer or not.
6989 *
6990 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6991 */
6992 void
6993gui_mch_mousehide(int hide)
6994{
6995 if (gui.pointer_hidden != hide)
6996 {
6997 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006998 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 {
7000 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007001 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7002 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 else
7004#ifdef FEAT_MOUSESHAPE
7005 mch_set_mouse_shape(last_shape);
7006#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02007007 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008#endif
7009 }
7010 }
7011}
7012
7013#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7014
Bram Moolenaar30613902019-12-01 22:11:18 +01007015// Table for shape IDs. Keep in sync with the mshape_names[] table in
7016// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017static const int mshape_ids[] =
7018{
Bram Moolenaar30613902019-12-01 22:11:18 +01007019 GDK_LEFT_PTR, // arrow
7020 GDK_CURSOR_IS_PIXMAP, // blank
7021 GDK_XTERM, // beam
7022 GDK_SB_V_DOUBLE_ARROW, // updown
7023 GDK_SIZING, // udsizing
7024 GDK_SB_H_DOUBLE_ARROW, // leftright
7025 GDK_SIZING, // lrsizing
7026 GDK_WATCH, // busy
7027 GDK_X_CURSOR, // no
7028 GDK_CROSSHAIR, // crosshair
7029 GDK_HAND1, // hand1
7030 GDK_HAND2, // hand2
7031 GDK_PENCIL, // pencil
7032 GDK_QUESTION_ARROW, // question
7033 GDK_RIGHT_PTR, // right-arrow
7034 GDK_CENTER_PTR, // up-arrow
7035 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036};
7037
7038 void
7039mch_set_mouse_shape(int shape)
7040{
7041 int id;
7042 GdkCursor *c;
7043
Bram Moolenaar98921892016-02-23 17:14:37 +01007044 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 return;
7046
7047 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007048 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7049 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 else
7051 {
7052 if (shape >= MSHAPE_NUMBERED)
7053 {
7054 id = shape - MSHAPE_NUMBERED;
7055 if (id >= GDK_LAST_CURSOR)
7056 id = GDK_LEFT_PTR;
7057 else
Bram Moolenaar30613902019-12-01 22:11:18 +01007058 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 }
K.Takataeeec2542021-06-02 13:28:16 +02007060 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007062 else
7063 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007065 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007066 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007067# if GTK_CHECK_VERSION(3,0,0)
7068 g_object_unref(G_OBJECT(c));
7069# else
Bram Moolenaar30613902019-12-01 22:11:18 +01007070 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01007071# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 }
7073 if (shape != MSHAPE_HIDE)
7074 last_shape = shape;
7075}
Bram Moolenaar30613902019-12-01 22:11:18 +01007076#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077
7078
7079#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7080/*
7081 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7082 * scaled down if the current font is not big enough, or scaled up if the image
7083 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7084 * will be cut off if the current font is not big enough, or centered if it's
7085 * too small.
7086 */
7087# define SIGN_WIDTH (2 * gui.char_width)
7088# define SIGN_HEIGHT (gui.char_height)
7089# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7090
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 void
7092gui_mch_drawsign(int row, int col, int typenr)
7093{
7094 GdkPixbuf *sign;
7095
7096 sign = (GdkPixbuf *)sign_get_image(typenr);
7097
Bram Moolenaar98921892016-02-23 17:14:37 +01007098 if (sign != NULL && gui.drawarea != NULL
7099 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 {
7101 int width;
7102 int height;
7103 int xoffset;
7104 int yoffset;
7105 int need_scale;
7106
7107 width = gdk_pixbuf_get_width(sign);
7108 height = gdk_pixbuf_get_height(sign);
7109 /*
7110 * Decide whether we need to scale. Allow one pixel of border
7111 * width to be cut off, in order to avoid excessive scaling for
7112 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007113 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 */
7115 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007116 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 || (width < 3 * SIGN_WIDTH / 4
7118 && height < 3 * SIGN_HEIGHT / 4));
7119 if (need_scale)
7120 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007121 double aspect;
7122 int w = width;
7123 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124
Bram Moolenaar30613902019-12-01 22:11:18 +01007125 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 aspect = (double)height / (double)width;
7127 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7128 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007129 if (((double)(MAX(height, SIGN_HEIGHT)) /
7130 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7131 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007132 // Change the aspect ratio by at most 15% to fill the
7133 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007134 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7135 height = MIN(height, SIGN_HEIGHT);
7136 }
7137 else
7138 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007140 if (w == width && h == height)
7141 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007142 // no change in dimensions; don't decrease reference counter
7143 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007144 need_scale = FALSE;
7145 }
7146 else
7147 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007148 // This doesn't seem to be worth caching, and doing so would
7149 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007150 sign = gdk_pixbuf_scale_simple(sign, width, height,
7151 GDK_INTERP_BILINEAR);
7152 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01007153 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 }
7156
Bram Moolenaar30613902019-12-01 22:11:18 +01007157 // The origin is the upper-left corner of the pixmap. Therefore
7158 // these offset may become negative if the pixmap is smaller than
7159 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 xoffset = (width - SIGN_WIDTH) / 2;
7161 yoffset = (height - SIGN_HEIGHT) / 2;
7162
Bram Moolenaar98921892016-02-23 17:14:37 +01007163# if GTK_CHECK_VERSION(3,0,0)
7164 {
7165 cairo_t *cr;
7166 cairo_surface_t *bg_surf;
7167 cairo_t *bg_cr;
7168 cairo_surface_t *sign_surf;
7169 cairo_t *sign_cr;
7170
7171 cr = cairo_create(gui.surface);
7172
7173 bg_surf = cairo_surface_create_similar(gui.surface,
7174 cairo_surface_get_content(gui.surface),
7175 SIGN_WIDTH, SIGN_HEIGHT);
7176 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007177 cairo_set_source_rgba(bg_cr,
7178 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7179 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007180 cairo_paint(bg_cr);
7181
7182 sign_surf = cairo_surface_create_similar(gui.surface,
7183 cairo_surface_get_content(gui.surface),
7184 SIGN_WIDTH, SIGN_HEIGHT);
7185 sign_cr = cairo_create(sign_surf);
7186 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7187 cairo_paint(sign_cr);
7188
7189 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7190 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7191 cairo_paint(sign_cr);
7192
7193 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7194 cairo_paint(cr);
7195
7196 cairo_destroy(sign_cr);
7197 cairo_surface_destroy(sign_surf);
7198 cairo_destroy(bg_cr);
7199 cairo_surface_destroy(bg_surf);
7200 cairo_destroy(cr);
7201
presuku9459b8d2021-11-16 20:03:56 +00007202 gtk_widget_queue_draw_area(gui.drawarea,
7203 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007204
7205 }
Bram Moolenaar30613902019-12-01 22:11:18 +01007206# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7208
7209 gdk_draw_rectangle(gui.drawarea->window,
7210 gui.text_gc,
7211 TRUE,
7212 FILL_X(col),
7213 FILL_Y(row),
7214 SIGN_WIDTH,
7215 SIGN_HEIGHT);
7216
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217 gdk_pixbuf_render_to_drawable_alpha(sign,
7218 gui.drawarea->window,
7219 MAX(0, xoffset),
7220 MAX(0, yoffset),
7221 FILL_X(col) - MIN(0, xoffset),
7222 FILL_Y(row) - MIN(0, yoffset),
7223 MIN(width, SIGN_WIDTH),
7224 MIN(height, SIGN_HEIGHT),
7225 GDK_PIXBUF_ALPHA_BILEVEL,
7226 127,
7227 GDK_RGB_DITHER_NORMAL,
7228 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007229# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 if (need_scale)
7231 g_object_unref(sign);
7232 }
7233}
7234
7235 void *
7236gui_mch_register_sign(char_u *signfile)
7237{
7238 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7239 {
7240 GdkPixbuf *sign;
7241 GError *error = NULL;
7242 char_u *message;
7243
7244 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7245
7246 if (error == NULL)
7247 return sign;
7248
7249 message = (char_u *)error->message;
7250
7251 if (message != NULL && input_conv.vc_type != CONV_NONE)
7252 message = string_convert(&input_conv, message, NULL);
7253
7254 if (message != NULL)
7255 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007256 // The error message is already translated and will be more
7257 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007258 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259
7260 if (input_conv.vc_type != CONV_NONE)
7261 vim_free(message);
7262 }
7263 g_error_free(error);
7264 }
7265
7266 return NULL;
7267}
7268
7269 void
7270gui_mch_destroy_sign(void *sign)
7271{
7272 if (sign != NULL)
7273 g_object_unref(sign);
7274}
7275
Bram Moolenaar30613902019-12-01 22:11:18 +01007276#endif // FEAT_SIGN_ICONS