blob: 40f53d6f7ca278ec0a022a335b9197ae1fabc281 [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 * GUI/Motif support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10/*
11 * Common code for the Motif and Athena GUI.
12 * Not used for GTK.
13 */
14
Bram Moolenaarf7506ca2017-02-25 16:01:49 +010015#include "vim.h"
16
Bram Moolenaar071d4272004-06-13 20:20:40 +000017#include <X11/keysym.h>
18#include <X11/Xatom.h>
19#include <X11/StringDefs.h>
20#include <X11/Intrinsic.h>
21#include <X11/Shell.h>
22#include <X11/cursorfont.h>
23
Bram Moolenaar071d4272004-06-13 20:20:40 +000024/*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +010025 * XpmP.h is preferred, because it makes the signs drawn with a transparent
26 * background instead of black.
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 */
28#if defined(HAVE_XM_XPMP_H) && defined(FEAT_GUI_MOTIF) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +010029 && !defined(HAVE_X11_XPM_H)
Bram Moolenaar071d4272004-06-13 20:20:40 +000030# include <Xm/XpmP.h>
31#else
32# ifdef HAVE_X11_XPM_H
Bram Moolenaar88c86eb2019-01-17 17:13:30 +010033# ifdef VMS
34# include <xpm.h>
35# else
36# include <X11/xpm.h>
37# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000038# endif
39#endif
40
41#ifdef FEAT_XFONTSET
42# ifdef X_LOCALE
43# include <X11/Xlocale.h>
44# else
45# include <locale.h>
46# endif
47#endif
48
49#ifdef HAVE_X11_SUNKEYSYM_H
50# include <X11/Sunkeysym.h>
51#endif
52
53#ifdef HAVE_X11_XMU_EDITRES_H
54# include <X11/Xmu/Editres.h>
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#define VIM_NAME "vim"
58#define VIM_CLASS "Vim"
59
60/* Default resource values */
61#define DFLT_FONT "7x13"
62#ifdef FONTSET_ALWAYS
63# define DFLT_MENU_FONT XtDefaultFontSet
64#else
65# define DFLT_MENU_FONT XtDefaultFont
66#endif
67#define DFLT_TOOLTIP_FONT XtDefaultFontSet
68
69#ifdef FEAT_GUI_ATHENA
70# define DFLT_MENU_BG_COLOR "gray77"
71# define DFLT_MENU_FG_COLOR "black"
72# define DFLT_SCROLL_BG_COLOR "gray60"
73# define DFLT_SCROLL_FG_COLOR "gray77"
Bram Moolenaar46582282016-07-23 14:35:12 +020074# define DFLT_TOOLTIP_BG_COLOR "#ffff91"
75# define DFLT_TOOLTIP_FG_COLOR "#000000"
Bram Moolenaar071d4272004-06-13 20:20:40 +000076#else
77/* use the default (CDE) colors */
78# define DFLT_MENU_BG_COLOR ""
79# define DFLT_MENU_FG_COLOR ""
80# define DFLT_SCROLL_BG_COLOR ""
81# define DFLT_SCROLL_FG_COLOR ""
Bram Moolenaar46582282016-07-23 14:35:12 +020082# define DFLT_TOOLTIP_BG_COLOR "#ffff91"
83# define DFLT_TOOLTIP_FG_COLOR "#000000"
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#endif
85
86Widget vimShell = (Widget)0;
87
88static Atom wm_atoms[2]; /* Window Manager Atoms */
89#define DELETE_WINDOW_IDX 0 /* index in wm_atoms[] for WM_DELETE_WINDOW */
90#define SAVE_YOURSELF_IDX 1 /* index in wm_atoms[] for WM_SAVE_YOURSELF */
91
92#ifdef FEAT_XFONTSET
93/*
94 * We either draw with a fontset (when current_fontset != NULL) or with a
95 * normal font (current_fontset == NULL, use gui.text_gc and gui.back_gc).
96 */
97static XFontSet current_fontset = NULL;
98
99#define XDrawString(dpy, win, gc, x, y, str, n) \
100 do \
101 { \
102 if (current_fontset != NULL) \
103 XmbDrawString(dpy, win, current_fontset, gc, x, y, str, n); \
104 else \
105 XDrawString(dpy, win, gc, x, y, str, n); \
106 } while (0)
107
108#define XDrawString16(dpy, win, gc, x, y, str, n) \
109 do \
110 { \
111 if (current_fontset != NULL) \
112 XwcDrawString(dpy, win, current_fontset, gc, x, y, (wchar_t *)str, n); \
113 else \
Bram Moolenaara3227e22006-03-08 21:32:40 +0000114 XDrawString16(dpy, win, gc, x, y, (XChar2b *)str, n); \
115 } while (0)
116
117#define XDrawImageString16(dpy, win, gc, x, y, str, n) \
118 do \
119 { \
120 if (current_fontset != NULL) \
121 XwcDrawImageString(dpy, win, current_fontset, gc, x, y, (wchar_t *)str, n); \
122 else \
123 XDrawImageString16(dpy, win, gc, x, y, (XChar2b *)str, n); \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124 } while (0)
125
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100126static int check_fontset_sanity(XFontSet fs);
127static int fontset_width(XFontSet fs);
128static int fontset_ascent(XFontSet fs);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
130
131static guicolor_T prev_fg_color = INVALCOLOR;
132static guicolor_T prev_bg_color = INVALCOLOR;
Bram Moolenaarfb269802005-03-15 22:46:30 +0000133static guicolor_T prev_sp_color = INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
135#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
136static XButtonPressedEvent last_mouse_event;
137#endif
138
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100139static void gui_x11_check_copy_area(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#ifdef FEAT_CLIENTSERVER
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100141static void gui_x11_send_event_handler(Widget, XtPointer, XEvent *, Boolean *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100143static void gui_x11_wm_protocol_handler(Widget, XtPointer, XEvent *, Boolean *);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100144static Cursor gui_x11_create_blank_mouse(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
146
147/*
148 * Keycodes recognized by vim.
149 * NOTE: when changing this, the table in gui_gtk_x11.c probably needs the
150 * same change!
151 */
152static struct specialkey
153{
154 KeySym key_sym;
155 char_u vim_code0;
156 char_u vim_code1;
157} special_keys[] =
158{
159 {XK_Up, 'k', 'u'},
160 {XK_Down, 'k', 'd'},
161 {XK_Left, 'k', 'l'},
162 {XK_Right, 'k', 'r'},
163
164 {XK_F1, 'k', '1'},
165 {XK_F2, 'k', '2'},
166 {XK_F3, 'k', '3'},
167 {XK_F4, 'k', '4'},
168 {XK_F5, 'k', '5'},
169 {XK_F6, 'k', '6'},
170 {XK_F7, 'k', '7'},
171 {XK_F8, 'k', '8'},
172 {XK_F9, 'k', '9'},
173 {XK_F10, 'k', ';'},
174
175 {XK_F11, 'F', '1'},
176 {XK_F12, 'F', '2'},
177 {XK_F13, 'F', '3'},
178 {XK_F14, 'F', '4'},
179 {XK_F15, 'F', '5'},
180 {XK_F16, 'F', '6'},
181 {XK_F17, 'F', '7'},
182 {XK_F18, 'F', '8'},
183 {XK_F19, 'F', '9'},
184 {XK_F20, 'F', 'A'},
185
186 {XK_F21, 'F', 'B'},
187 {XK_F22, 'F', 'C'},
188 {XK_F23, 'F', 'D'},
189 {XK_F24, 'F', 'E'},
190 {XK_F25, 'F', 'F'},
191 {XK_F26, 'F', 'G'},
192 {XK_F27, 'F', 'H'},
193 {XK_F28, 'F', 'I'},
194 {XK_F29, 'F', 'J'},
195 {XK_F30, 'F', 'K'},
196
197 {XK_F31, 'F', 'L'},
198 {XK_F32, 'F', 'M'},
199 {XK_F33, 'F', 'N'},
200 {XK_F34, 'F', 'O'},
201 {XK_F35, 'F', 'P'}, /* keysymdef.h defines up to F35 */
202#ifdef SunXK_F36
203 {SunXK_F36, 'F', 'Q'},
204 {SunXK_F37, 'F', 'R'},
205#endif
206
207 {XK_Help, '%', '1'},
208 {XK_Undo, '&', '8'},
209 {XK_BackSpace, 'k', 'b'},
210 {XK_Insert, 'k', 'I'},
211 {XK_Delete, 'k', 'D'},
212 {XK_Home, 'k', 'h'},
213 {XK_End, '@', '7'},
214 {XK_Prior, 'k', 'P'},
215 {XK_Next, 'k', 'N'},
216 {XK_Print, '%', '9'},
217
218 /* Keypad keys: */
219#ifdef XK_KP_Left
220 {XK_KP_Left, 'k', 'l'},
221 {XK_KP_Right, 'k', 'r'},
222 {XK_KP_Up, 'k', 'u'},
223 {XK_KP_Down, 'k', 'd'},
224 {XK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
225 {XK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
226 {XK_KP_Home, 'K', '1'},
227 {XK_KP_End, 'K', '4'},
228 {XK_KP_Prior, 'K', '3'},
229 {XK_KP_Next, 'K', '5'},
230
231 {XK_KP_Add, 'K', '6'},
232 {XK_KP_Subtract, 'K', '7'},
233 {XK_KP_Divide, 'K', '8'},
234 {XK_KP_Multiply, 'K', '9'},
235 {XK_KP_Enter, 'K', 'A'},
236 {XK_KP_Decimal, 'K', 'B'},
237
238 {XK_KP_0, 'K', 'C'},
239 {XK_KP_1, 'K', 'D'},
240 {XK_KP_2, 'K', 'E'},
241 {XK_KP_3, 'K', 'F'},
242 {XK_KP_4, 'K', 'G'},
243 {XK_KP_5, 'K', 'H'},
244 {XK_KP_6, 'K', 'I'},
245 {XK_KP_7, 'K', 'J'},
246 {XK_KP_8, 'K', 'K'},
247 {XK_KP_9, 'K', 'L'},
248#endif
249
250 /* End of list marker: */
251 {(KeySym)0, 0, 0}
252};
253
254#define XtNboldFont "boldFont"
255#define XtCBoldFont "BoldFont"
256#define XtNitalicFont "italicFont"
257#define XtCItalicFont "ItalicFont"
258#define XtNboldItalicFont "boldItalicFont"
259#define XtCBoldItalicFont "BoldItalicFont"
260#define XtNscrollbarWidth "scrollbarWidth"
261#define XtCScrollbarWidth "ScrollbarWidth"
262#define XtNmenuHeight "menuHeight"
263#define XtCMenuHeight "MenuHeight"
264#define XtNmenuFont "menuFont"
265#define XtCMenuFont "MenuFont"
266#define XtNmenuFontSet "menuFontSet"
267#define XtCMenuFontSet "MenuFontSet"
268
269
270/* Resources for setting the foreground and background colors of menus */
271#define XtNmenuBackground "menuBackground"
272#define XtCMenuBackground "MenuBackground"
273#define XtNmenuForeground "menuForeground"
274#define XtCMenuForeground "MenuForeground"
275
276/* Resources for setting the foreground and background colors of scrollbars */
277#define XtNscrollBackground "scrollBackground"
278#define XtCScrollBackground "ScrollBackground"
279#define XtNscrollForeground "scrollForeground"
280#define XtCScrollForeground "ScrollForeground"
281
282/* Resources for setting the foreground and background colors of tooltip */
283#define XtNtooltipBackground "tooltipBackground"
284#define XtCTooltipBackground "TooltipBackground"
285#define XtNtooltipForeground "tooltipForeground"
286#define XtCTooltipForeground "TooltipForeground"
287#define XtNtooltipFont "tooltipFont"
288#define XtCTooltipFont "TooltipFont"
289
290/*
291 * X Resources:
292 */
293static XtResource vim_resources[] =
294{
295 {
296 XtNforeground,
297 XtCForeground,
298 XtRPixel,
299 sizeof(Pixel),
300 XtOffsetOf(gui_T, def_norm_pixel),
301 XtRString,
302 XtDefaultForeground
303 },
304 {
305 XtNbackground,
306 XtCBackground,
307 XtRPixel,
308 sizeof(Pixel),
309 XtOffsetOf(gui_T, def_back_pixel),
310 XtRString,
311 XtDefaultBackground
312 },
313 {
314 XtNfont,
315 XtCFont,
316 XtRString,
317 sizeof(String *),
318 XtOffsetOf(gui_T, rsrc_font_name),
319 XtRImmediate,
320 XtDefaultFont
321 },
322 {
323 XtNboldFont,
324 XtCBoldFont,
325 XtRString,
326 sizeof(String *),
327 XtOffsetOf(gui_T, rsrc_bold_font_name),
328 XtRImmediate,
329 ""
330 },
331 {
332 XtNitalicFont,
333 XtCItalicFont,
334 XtRString,
335 sizeof(String *),
336 XtOffsetOf(gui_T, rsrc_ital_font_name),
337 XtRImmediate,
338 ""
339 },
340 {
341 XtNboldItalicFont,
342 XtCBoldItalicFont,
343 XtRString,
344 sizeof(String *),
345 XtOffsetOf(gui_T, rsrc_boldital_font_name),
346 XtRImmediate,
347 ""
348 },
349 {
350 XtNgeometry,
351 XtCGeometry,
352 XtRString,
353 sizeof(String *),
354 XtOffsetOf(gui_T, geom),
355 XtRImmediate,
356 ""
357 },
358 {
359 XtNreverseVideo,
360 XtCReverseVideo,
361 XtRBool,
362 sizeof(Bool),
363 XtOffsetOf(gui_T, rsrc_rev_video),
364 XtRImmediate,
365 (XtPointer)False
366 },
367 {
368 XtNborderWidth,
369 XtCBorderWidth,
370 XtRInt,
371 sizeof(int),
372 XtOffsetOf(gui_T, border_width),
373 XtRImmediate,
374 (XtPointer)2
375 },
376 {
377 XtNscrollbarWidth,
378 XtCScrollbarWidth,
379 XtRInt,
380 sizeof(int),
381 XtOffsetOf(gui_T, scrollbar_width),
382 XtRImmediate,
383 (XtPointer)SB_DEFAULT_WIDTH
384 },
385#ifdef FEAT_MENU
386# ifdef FEAT_GUI_ATHENA /* with Motif the height is always computed */
387 {
388 XtNmenuHeight,
389 XtCMenuHeight,
390 XtRInt,
391 sizeof(int),
392 XtOffsetOf(gui_T, menu_height),
393 XtRImmediate,
394 (XtPointer)MENU_DEFAULT_HEIGHT /* Should figure out at run time */
395 },
396# endif
397 {
398# ifdef FONTSET_ALWAYS
399 XtNmenuFontSet,
400 XtCMenuFontSet,
401#else
402 XtNmenuFont,
403 XtCMenuFont,
404#endif
405 XtRString,
406 sizeof(char *),
407 XtOffsetOf(gui_T, rsrc_menu_font_name),
408 XtRString,
409 DFLT_MENU_FONT
410 },
411#endif
412 {
413 XtNmenuForeground,
414 XtCMenuForeground,
415 XtRString,
416 sizeof(char *),
417 XtOffsetOf(gui_T, rsrc_menu_fg_name),
418 XtRString,
419 DFLT_MENU_FG_COLOR
420 },
421 {
422 XtNmenuBackground,
423 XtCMenuBackground,
424 XtRString,
425 sizeof(char *),
426 XtOffsetOf(gui_T, rsrc_menu_bg_name),
427 XtRString,
428 DFLT_MENU_BG_COLOR
429 },
430 {
431 XtNscrollForeground,
432 XtCScrollForeground,
433 XtRString,
434 sizeof(char *),
435 XtOffsetOf(gui_T, rsrc_scroll_fg_name),
436 XtRString,
437 DFLT_SCROLL_FG_COLOR
438 },
439 {
440 XtNscrollBackground,
441 XtCScrollBackground,
442 XtRString,
443 sizeof(char *),
444 XtOffsetOf(gui_T, rsrc_scroll_bg_name),
445 XtRString,
446 DFLT_SCROLL_BG_COLOR
447 },
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100448#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 {
450 XtNtooltipForeground,
451 XtCTooltipForeground,
452 XtRString,
453 sizeof(char *),
454 XtOffsetOf(gui_T, rsrc_tooltip_fg_name),
455 XtRString,
456 DFLT_TOOLTIP_FG_COLOR
457 },
458 {
459 XtNtooltipBackground,
460 XtCTooltipBackground,
461 XtRString,
462 sizeof(char *),
463 XtOffsetOf(gui_T, rsrc_tooltip_bg_name),
464 XtRString,
465 DFLT_TOOLTIP_BG_COLOR
466 },
467 {
468 XtNtooltipFont,
469 XtCTooltipFont,
470 XtRString,
471 sizeof(char *),
472 XtOffsetOf(gui_T, rsrc_tooltip_font_name),
473 XtRString,
474 DFLT_TOOLTIP_FONT
475 },
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100476 /* This one may not be really needed? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 {
478 "balloonEvalFontSet",
479 XtCFontSet,
480 XtRFontSet,
481 sizeof(XFontSet),
482 XtOffsetOf(gui_T, tooltip_fontset),
483 XtRImmediate,
484 (XtPointer)NOFONTSET
485 },
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100486#endif /* FEAT_BEVAL_GUI */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487#ifdef FEAT_XIM
488 {
489 "preeditType",
490 "PreeditType",
491 XtRString,
492 sizeof(char*),
493 XtOffsetOf(gui_T, rsrc_preedit_type_name),
494 XtRString,
495 (XtPointer)"OverTheSpot,OffTheSpot,Root"
496 },
497 {
498 "inputMethod",
499 "InputMethod",
500 XtRString,
501 sizeof(char*),
502 XtOffsetOf(gui_T, rsrc_input_method),
503 XtRString,
504 NULL
505 },
506#endif /* FEAT_XIM */
507};
508
509/*
510 * This table holds all the X GUI command line options allowed. This includes
511 * the standard ones so that we can skip them when vim is started without the
512 * GUI (but the GUI might start up later).
513 * When changing this, also update doc/vim_gui.txt and the usage message!!!
514 */
515static XrmOptionDescRec cmdline_options[] =
516{
517 /* We handle these options ourselves */
518 {"-bg", ".background", XrmoptionSepArg, NULL},
519 {"-background", ".background", XrmoptionSepArg, NULL},
520 {"-fg", ".foreground", XrmoptionSepArg, NULL},
521 {"-foreground", ".foreground", XrmoptionSepArg, NULL},
522 {"-fn", ".font", XrmoptionSepArg, NULL},
523 {"-font", ".font", XrmoptionSepArg, NULL},
524 {"-boldfont", ".boldFont", XrmoptionSepArg, NULL},
525 {"-italicfont", ".italicFont", XrmoptionSepArg, NULL},
526 {"-geom", ".geometry", XrmoptionSepArg, NULL},
527 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
528 {"-reverse", "*reverseVideo", XrmoptionNoArg, "True"},
529 {"-rv", "*reverseVideo", XrmoptionNoArg, "True"},
530 {"+reverse", "*reverseVideo", XrmoptionNoArg, "False"},
531 {"+rv", "*reverseVideo", XrmoptionNoArg, "False"},
532 {"-display", ".display", XrmoptionSepArg, NULL},
Bram Moolenaara5792f52005-11-23 21:25:05 +0000533 {"-iconic", ".iconic", XrmoptionNoArg, "True"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 {"-name", ".name", XrmoptionSepArg, NULL},
535 {"-bw", ".borderWidth", XrmoptionSepArg, NULL},
536 {"-borderwidth", ".borderWidth", XrmoptionSepArg, NULL},
537 {"-sw", ".scrollbarWidth", XrmoptionSepArg, NULL},
538 {"-scrollbarwidth", ".scrollbarWidth", XrmoptionSepArg, NULL},
539 {"-mh", ".menuHeight", XrmoptionSepArg, NULL},
540 {"-menuheight", ".menuHeight", XrmoptionSepArg, NULL},
541#ifdef FONTSET_ALWAYS
542 {"-mf", ".menuFontSet", XrmoptionSepArg, NULL},
543 {"-menufont", ".menuFontSet", XrmoptionSepArg, NULL},
544 {"-menufontset", ".menuFontSet", XrmoptionSepArg, NULL},
545#else
546 {"-mf", ".menuFont", XrmoptionSepArg, NULL},
547 {"-menufont", ".menuFont", XrmoptionSepArg, NULL},
548#endif
549 {"-xrm", NULL, XrmoptionResArg, NULL}
550};
551
552static int gui_argc = 0;
553static char **gui_argv = NULL;
554
555/*
556 * Call-back routines.
557 */
558
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100560gui_x11_timer_cb(
561 XtPointer timed_out,
562 XtIntervalId *interval_id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563{
564 *((int *)timed_out) = TRUE;
565}
566
Bram Moolenaar1dccf632017-08-27 17:38:27 +0200567#ifdef FEAT_JOB_CHANNEL
568 static void
569channel_poll_cb(
570 XtPointer client_data,
571 XtIntervalId *interval_id UNUSED)
572{
573 XtIntervalId *channel_timer = (XtIntervalId *)client_data;
574
575 /* Using an event handler for a channel that may be disconnected does
576 * not work, it hangs. Instead poll for messages. */
577 channel_handle_events(TRUE);
578 parse_queued_messages();
579
580 /* repeat */
581 *channel_timer = XtAppAddTimeOut(app_context, (long_u)20,
582 channel_poll_cb, client_data);
583}
584#endif
585
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100587gui_x11_visibility_cb(
588 Widget w UNUSED,
589 XtPointer dud UNUSED,
590 XEvent *event,
591 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592{
593 if (event->type != VisibilityNotify)
594 return;
595
596 gui.visibility = event->xvisibility.state;
597
598 /*
599 * When we do an XCopyArea(), and the window is partially obscured, we want
600 * to receive an event to tell us whether it worked or not.
601 */
602 XSetGraphicsExposures(gui.dpy, gui.text_gc,
603 gui.visibility != VisibilityUnobscured);
604
605 /* This is needed for when redrawing is slow. */
606 gui_mch_update();
607}
608
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100610gui_x11_expose_cb(
611 Widget w UNUSED,
612 XtPointer dud UNUSED,
613 XEvent *event,
614 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616 XExposeEvent *gevent;
617 int new_x;
618
619 if (event->type != Expose)
620 return;
621
622 out_flush(); /* make sure all output has been processed */
623
624 gevent = (XExposeEvent *)event;
625 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
626
627 new_x = FILL_X(0);
628
629 /* Clear the border areas if needed */
630 if (gevent->x < new_x)
631 XClearArea(gui.dpy, gui.wid, 0, 0, new_x, 0, False);
632 if (gevent->y < FILL_Y(0))
633 XClearArea(gui.dpy, gui.wid, 0, 0, 0, FILL_Y(0), False);
634 if (gevent->x > FILL_X(Columns))
635 XClearArea(gui.dpy, gui.wid, FILL_X((int)Columns), 0, 0, 0, False);
636 if (gevent->y > FILL_Y(Rows))
637 XClearArea(gui.dpy, gui.wid, 0, FILL_Y((int)Rows), 0, 0, False);
638
639 /* This is needed for when redrawing is slow. */
640 gui_mch_update();
641}
642
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100643#if (defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI_MOTIF)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644/*
Bram Moolenaar231334e2005-07-25 20:46:57 +0000645 * This function fills in the XRectangle object with the current x,y
646 * coordinates and height, width so that an XtVaSetValues to the same shell of
Bram Moolenaar49325942007-05-10 19:19:59 +0000647 * those resources will restore the window to its former position and
Bram Moolenaar231334e2005-07-25 20:46:57 +0000648 * dimensions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 *
Bram Moolenaar231334e2005-07-25 20:46:57 +0000650 * Note: This function may fail, in which case the XRectangle will be
651 * unchanged. Be sure to have the XRectangle set with the proper values for a
652 * failed condition prior to calling this function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 */
654 static void
655shellRectangle(Widget shell, XRectangle *r)
656{
657 Window rootw, shellw, child, parentw;
658 int absx, absy;
659 XWindowAttributes a;
660 Window *children;
661 unsigned int childrenCount;
662
663 shellw = XtWindow(shell);
664 if (shellw == 0)
665 return;
666 for (;;)
667 {
668 XQueryTree(XtDisplay(shell), shellw, &rootw, &parentw,
669 &children, &childrenCount);
670 XFree(children);
671 if (parentw == rootw)
672 break;
673 shellw = parentw;
674 }
675 XGetWindowAttributes(XtDisplay(shell), shellw, &a);
676 XTranslateCoordinates(XtDisplay(shell), shellw, a.root, 0, 0,
677 &absx, &absy, &child);
678 r->x = absx;
679 r->y = absy;
680 XtVaGetValues(shell, XmNheight, &r->height, XmNwidth, &r->width, NULL);
681}
682#endif
683
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100685gui_x11_resize_window_cb(
686 Widget w UNUSED,
687 XtPointer dud UNUSED,
688 XEvent *event,
689 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690{
691 static int lastWidth, lastHeight;
692
693 if (event->type != ConfigureNotify)
694 return;
695
696 if (event->xconfigure.width != lastWidth
697 || event->xconfigure.height != lastHeight)
698 {
699 lastWidth = event->xconfigure.width;
700 lastHeight = event->xconfigure.height;
701 gui_resize_shell(event->xconfigure.width, event->xconfigure.height
702#ifdef FEAT_XIM
703 - xim_get_status_area_height()
704#endif
705 );
706 }
Bram Moolenaar67c53842010-05-22 18:28:27 +0200707#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI_MOTIF)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200708 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 {
710 XRectangle rec;
711
712 shellRectangle(w, &rec);
713 netbeans_frame_moved(rec.x, rec.y);
714 }
715#endif
716#ifdef FEAT_XIM
717 xim_set_preedit();
718#endif
719}
720
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100722gui_x11_focus_change_cb(
723 Widget w UNUSED,
724 XtPointer data UNUSED,
725 XEvent *event,
726 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727{
728 gui_focus_change(event->type == FocusIn);
729}
730
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100732gui_x11_enter_cb(
733 Widget w UNUSED,
734 XtPointer data UNUSED,
735 XEvent *event UNUSED,
736 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737{
738 gui_focus_change(TRUE);
739}
740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100742gui_x11_leave_cb(
743 Widget w UNUSED,
744 XtPointer data UNUSED,
745 XEvent *event UNUSED,
746 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747{
748 gui_focus_change(FALSE);
749}
750
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100751#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752# if X_HAVE_UTF8_STRING
753# define USE_UTF8LOOKUP
754# endif
755#endif
756
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100758gui_x11_key_hit_cb(
759 Widget w UNUSED,
760 XtPointer dud UNUSED,
761 XEvent *event,
762 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763{
764 XKeyPressedEvent *ev_press;
765#ifdef FEAT_XIM
766 char_u string2[256];
767 char_u string_shortbuf[256];
768 char_u *string = string_shortbuf;
769 Boolean string_alloced = False;
770 Status status;
771#else
772 char_u string[4], string2[3];
773#endif
774 KeySym key_sym, key_sym2;
775 int len, len2;
776 int i;
777 int modifiers;
778 int key;
779
780 ev_press = (XKeyPressedEvent *)event;
781
782#ifdef FEAT_XIM
783 if (xic)
784 {
785# ifdef USE_UTF8LOOKUP
786 /* XFree86 4.0.2 or newer: Be able to get UTF-8 characters even when
787 * the locale isn't utf-8. */
788 if (enc_utf8)
789 len = Xutf8LookupString(xic, ev_press, (char *)string,
790 sizeof(string_shortbuf), &key_sym, &status);
791 else
792# endif
793 len = XmbLookupString(xic, ev_press, (char *)string,
794 sizeof(string_shortbuf), &key_sym, &status);
795 if (status == XBufferOverflow)
796 {
797 string = (char_u *)XtMalloc(len + 1);
798 string_alloced = True;
799# ifdef USE_UTF8LOOKUP
800 /* XFree86 4.0.2 or newer: Be able to get UTF-8 characters even
801 * when the locale isn't utf-8. */
802 if (enc_utf8)
803 len = Xutf8LookupString(xic, ev_press, (char *)string,
804 len, &key_sym, &status);
805 else
806# endif
807 len = XmbLookupString(xic, ev_press, (char *)string,
808 len, &key_sym, &status);
809 }
810 if (status == XLookupNone || status == XLookupChars)
811 key_sym = XK_VoidSymbol;
812
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 /* Do conversion from 'termencoding' to 'encoding'. When using
814 * Xutf8LookupString() it has already been done. */
815 if (len > 0 && input_conv.vc_type != CONV_NONE
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100816# ifdef USE_UTF8LOOKUP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 && !enc_utf8
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100818# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 )
820 {
Bram Moolenaard23a8232018-02-10 18:45:26 +0100821 int maxlen = len * 4 + 40; /* guessed */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 char_u *p = (char_u *)XtMalloc(maxlen);
823
824 mch_memmove(p, string, len);
825 if (string_alloced)
826 XtFree((char *)string);
827 string = p;
828 string_alloced = True;
829 len = convert_input(p, len, maxlen);
830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831
832 /* Translate CSI to K_CSI, otherwise it could be recognized as the
833 * start of a special key. */
834 for (i = 0; i < len; ++i)
835 if (string[i] == CSI)
836 {
837 char_u *p = (char_u *)XtMalloc(len + 3);
838
839 mch_memmove(p, string, i + 1);
840 p[i + 1] = KS_EXTRA;
841 p[i + 2] = (int)KE_CSI;
842 mch_memmove(p + i + 3, string + i + 1, len - i);
843 if (string_alloced)
844 XtFree((char *)string);
845 string = p;
846 string_alloced = True;
847 i += 2;
848 len += 2;
849 }
850 }
851 else
852#endif
853 len = XLookupString(ev_press, (char *)string, sizeof(string),
854 &key_sym, NULL);
855
856#ifdef SunXK_F36
857 /*
858 * These keys have bogus lookup strings, and trapping them here is
859 * easier than trying to XRebindKeysym() on them with every possible
860 * combination of modifiers.
861 */
862 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
863 len = 0;
864#endif
865
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 if (key_sym == XK_space)
867 string[0] = ' '; /* Otherwise Ctrl-Space doesn't work */
868
869 /*
870 * Only on some machines ^_ requires Ctrl+Shift+minus. For consistency,
871 * allow just Ctrl+minus too.
872 */
873 if (key_sym == XK_minus && (ev_press->state & ControlMask))
874 string[0] = Ctrl__;
875
876#ifdef XK_ISO_Left_Tab
877 /* why do we get XK_ISO_Left_Tab instead of XK_Tab for shift-tab? */
878 if (key_sym == XK_ISO_Left_Tab)
879 {
880 key_sym = XK_Tab;
881 string[0] = TAB;
882 len = 1;
883 }
884#endif
885
886 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
887 * that already has the 8th bit set. And not when using a double-byte
888 * encoding, setting the 8th bit may make it the lead byte of a
889 * double-byte character. */
890 if (len == 1
891 && (ev_press->state & Mod1Mask)
892 && !(key_sym == XK_BackSpace || key_sym == XK_Delete)
893 && (string[0] & 0x80) == 0
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100894 && !enc_dbcs)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 {
896#if defined(FEAT_MENU) && defined(FEAT_GUI_MOTIF)
897 /* Ignore ALT keys when they are used for the menu only */
898 if (gui.menu_is_active
899 && (p_wak[0] == 'y'
900 || (p_wak[0] == 'm' && gui_is_menu_shortcut(string[0]))))
901 goto theend;
902#endif
903 /*
904 * Before we set the 8th bit, check to make sure the user doesn't
905 * already have a mapping defined for this sequence. We determine this
906 * by checking to see if the input would be the same without the
907 * Alt/Meta key.
908 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
909 */
910 ev_press->state &= ~Mod1Mask;
911 len2 = XLookupString(ev_press, (char *)string2, sizeof(string2),
912 &key_sym2, NULL);
913 if (key_sym2 == XK_space)
914 string2[0] = ' '; /* Otherwise Meta-Ctrl-Space doesn't work */
915 if ( len2 == 1
916 && string[0] == string2[0]
917 && !(key_sym == XK_Tab && (ev_press->state & ShiftMask)))
918 {
919 string[0] |= 0x80;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 if (enc_utf8) /* convert to utf-8 */
921 {
922 string[1] = string[0] & 0xbf;
923 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
924 if (string[1] == CSI)
925 {
926 string[2] = KS_EXTRA;
927 string[3] = (int)KE_CSI;
928 len = 4;
929 }
930 else
931 len = 2;
932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 }
934 else
935 ev_press->state |= Mod1Mask;
936 }
937
938 if (len == 1 && string[0] == CSI)
939 {
940 string[1] = KS_EXTRA;
941 string[2] = (int)KE_CSI;
942 len = -3;
943 }
944
945 /* Check for special keys. Also do this when len == 1 (key has an ASCII
946 * value) to detect backspace, delete and keypad keys. */
947 if (len == 0 || len == 1)
948 {
949 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
950 {
951 if (special_keys[i].key_sym == key_sym)
952 {
953 string[0] = CSI;
954 string[1] = special_keys[i].vim_code0;
955 string[2] = special_keys[i].vim_code1;
956 len = -3;
957 break;
958 }
959 }
960 }
961
962 /* Unrecognised key is ignored. */
963 if (len == 0)
964 goto theend;
965
966 /* Special keys (and a few others) may have modifiers. Also when using a
967 * double-byte encoding (can't set the 8th bit). */
968 if (len == -3 || key_sym == XK_space || key_sym == XK_Tab
969 || key_sym == XK_Return || key_sym == XK_Linefeed
970 || key_sym == XK_Escape
Bram Moolenaarfc3abf42019-01-24 15:54:21 +0100971 || (enc_dbcs && len == 1 && (ev_press->state & Mod1Mask)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 {
973 modifiers = 0;
974 if (ev_press->state & ShiftMask)
975 modifiers |= MOD_MASK_SHIFT;
976 if (ev_press->state & ControlMask)
977 modifiers |= MOD_MASK_CTRL;
978 if (ev_press->state & Mod1Mask)
979 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000980 if (ev_press->state & Mod4Mask)
981 modifiers |= MOD_MASK_META;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982
983 /*
984 * For some keys a shift modifier is translated into another key
985 * code.
986 */
987 if (len == -3)
988 key = TO_SPECIAL(string[1], string[2]);
989 else
990 key = string[0];
991 key = simplify_key(key, &modifiers);
992 if (key == CSI)
993 key = K_CSI;
994 if (IS_SPECIAL(key))
995 {
996 string[0] = CSI;
997 string[1] = K_SECOND(key);
998 string[2] = K_THIRD(key);
999 len = 3;
1000 }
1001 else
1002 {
1003 string[0] = key;
1004 len = 1;
1005 }
1006
1007 if (modifiers != 0)
1008 {
1009 string2[0] = CSI;
1010 string2[1] = KS_MODIFIER;
1011 string2[2] = modifiers;
1012 add_to_input_buf(string2, 3);
1013 }
1014 }
1015
1016 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1017#ifdef UNIX
1018 || (intr_char != 0 && string[0] == intr_char)
1019#endif
1020 ))
1021 {
1022 trash_input_buf();
1023 got_int = TRUE;
1024 }
1025
1026 add_to_input_buf(string, len);
1027
1028 /*
1029 * blank out the pointer if necessary
1030 */
1031 if (p_mh)
1032 gui_mch_mousehide(TRUE);
1033
1034#if defined(FEAT_BEVAL_TIP)
1035 {
1036 BalloonEval *be;
1037
1038 if ((be = gui_mch_currently_showing_beval()) != NULL)
1039 gui_mch_unpost_balloon(be);
1040 }
1041#endif
1042theend:
1043 {} /* some compilers need a statement here */
1044#ifdef FEAT_XIM
1045 if (string_alloced)
1046 XtFree((char *)string);
1047#endif
1048}
1049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001051gui_x11_mouse_cb(
1052 Widget w UNUSED,
1053 XtPointer dud UNUSED,
1054 XEvent *event,
1055 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056{
1057 static XtIntervalId timer = (XtIntervalId)0;
1058 static int timed_out = TRUE;
1059
1060 int button;
1061 int repeated_click = FALSE;
1062 int x, y;
1063 int_u x_modifiers;
1064 int_u vim_modifiers;
1065
1066 if (event->type == MotionNotify)
1067 {
1068 /* Get the latest position, avoids lagging behind on a drag. */
1069 x = event->xmotion.x;
1070 y = event->xmotion.y;
1071 x_modifiers = event->xmotion.state;
1072 button = (x_modifiers & (Button1Mask | Button2Mask | Button3Mask))
1073 ? MOUSE_DRAG : ' ';
1074
1075 /*
1076 * if our pointer is currently hidden, then we should show it.
1077 */
1078 gui_mch_mousehide(FALSE);
1079
1080 if (button != MOUSE_DRAG) /* just moving the rodent */
1081 {
1082#ifdef FEAT_MENU
1083 if (dud) /* moved in vimForm */
1084 y -= gui.menu_height;
1085#endif
1086 gui_mouse_moved(x, y);
1087 return;
1088 }
1089 }
1090 else
1091 {
1092 x = event->xbutton.x;
1093 y = event->xbutton.y;
1094 if (event->type == ButtonPress)
1095 {
1096 /* Handle multiple clicks */
1097 if (!timed_out)
1098 {
1099 XtRemoveTimeOut(timer);
1100 repeated_click = TRUE;
1101 }
1102 timed_out = FALSE;
1103 timer = XtAppAddTimeOut(app_context, (long_u)p_mouset,
1104 gui_x11_timer_cb, &timed_out);
1105 switch (event->xbutton.button)
1106 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001107 /* keep in sync with gui_gtk_x11.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 case Button1: button = MOUSE_LEFT; break;
1109 case Button2: button = MOUSE_MIDDLE; break;
1110 case Button3: button = MOUSE_RIGHT; break;
1111 case Button4: button = MOUSE_4; break;
1112 case Button5: button = MOUSE_5; break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001113 case 6: button = MOUSE_7; break;
1114 case 7: button = MOUSE_6; break;
1115 case 8: button = MOUSE_X1; break;
1116 case 9: button = MOUSE_X2; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 default:
1118 return; /* Unknown button */
1119 }
1120 }
1121 else if (event->type == ButtonRelease)
1122 button = MOUSE_RELEASE;
1123 else
1124 return; /* Unknown mouse event type */
1125
1126 x_modifiers = event->xbutton.state;
1127#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1128 last_mouse_event = event->xbutton;
1129#endif
1130 }
1131
1132 vim_modifiers = 0x0;
1133 if (x_modifiers & ShiftMask)
1134 vim_modifiers |= MOUSE_SHIFT;
1135 if (x_modifiers & ControlMask)
1136 vim_modifiers |= MOUSE_CTRL;
1137 if (x_modifiers & Mod1Mask) /* Alt or Meta key */
1138 vim_modifiers |= MOUSE_ALT;
1139
1140 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
1141}
1142
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143/*
1144 * End of call-back routines
1145 */
1146
1147/*
1148 * Parse the GUI related command-line arguments. Any arguments used are
1149 * deleted from argv, and *argc is decremented accordingly. This is called
1150 * when vim is started, whether or not the GUI has been started.
1151 */
1152 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001153gui_mch_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154{
1155 int arg;
1156 int i;
1157
1158 /*
1159 * Move all the entries in argv which are relevant to X into gui_argv.
1160 */
1161 gui_argc = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001162 gui_argv = LALLOC_MULT(char *, *argc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 if (gui_argv == NULL)
1164 return;
1165 gui_argv[gui_argc++] = argv[0];
1166 arg = 1;
1167 while (arg < *argc)
1168 {
1169 /* Look for argv[arg] in cmdline_options[] table */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001170 for (i = 0; i < (int)XtNumber(cmdline_options); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 if (strcmp(argv[arg], cmdline_options[i].option) == 0)
1172 break;
1173
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001174 if (i < (int)XtNumber(cmdline_options))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 {
1176 /* Remember finding "-rv" or "-reverse" */
1177 if (strcmp("-rv", argv[arg]) == 0
1178 || strcmp("-reverse", argv[arg]) == 0)
1179 found_reverse_arg = TRUE;
1180 else if ((strcmp("-fn", argv[arg]) == 0
1181 || strcmp("-font", argv[arg]) == 0)
1182 && arg + 1 < *argc)
1183 font_argument = argv[arg + 1];
1184
1185 /* Found match in table, so move it into gui_argv */
1186 gui_argv[gui_argc++] = argv[arg];
1187 if (--*argc > arg)
1188 {
1189 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1190 * sizeof(char *));
1191 if (cmdline_options[i].argKind != XrmoptionNoArg)
1192 {
1193 /* Move the options argument as well */
1194 gui_argv[gui_argc++] = argv[arg];
1195 if (--*argc > arg)
1196 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1197 * sizeof(char *));
1198 }
1199 }
1200 argv[*argc] = NULL;
1201 }
1202 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203#ifdef FEAT_NETBEANS_INTG
1204 if (strncmp("-nb", argv[arg], 3) == 0)
1205 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 gui.dofork = FALSE; /* don't fork() when starting GUI */
1207 netbeansArg = argv[arg];
1208 mch_memmove(&argv[arg], &argv[arg + 1],
1209 (--*argc - arg) * sizeof(char *));
1210 argv[*argc] = NULL;
1211 }
1212 else
1213#endif
1214 arg++;
1215 }
1216}
1217
1218#ifndef XtSpecificationRelease
1219# define CARDINAL (Cardinal *)
1220#else
1221# if XtSpecificationRelease == 4
1222# define CARDINAL (Cardinal *)
1223# else
1224# define CARDINAL (int *)
1225# endif
1226#endif
1227
1228/*
1229 * Check if the GUI can be started. Called before gvimrc is sourced.
1230 * Return OK or FAIL.
1231 */
1232 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001233gui_mch_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235#ifdef FEAT_XIM
1236 XtSetLanguageProc(NULL, NULL, NULL);
1237#endif
1238 open_app_context();
1239 if (app_context != NULL)
1240 gui.dpy = XtOpenDisplay(app_context, 0, VIM_NAME, VIM_CLASS,
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001241 cmdline_options, XtNumber(cmdline_options),
1242 CARDINAL &gui_argc, gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243
Bram Moolenaar889fe2c2018-05-13 16:23:40 +02001244# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1245 {
1246 /* The call to XtOpenDisplay() may have set the locale from the
1247 * environment. Set LC_NUMERIC to "C" to make sure that strtod() uses a
1248 * decimal point, not a comma. */
1249 char *p = setlocale(LC_NUMERIC, NULL);
1250
1251 if (p == NULL || strcmp(p, "C") != 0)
1252 setlocale(LC_NUMERIC, "C");
1253 }
1254# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 if (app_context == NULL || gui.dpy == NULL)
1256 {
1257 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001258 emsg(_(e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 return FAIL;
1260 }
1261 return OK;
1262}
1263
1264
1265#ifdef USE_XSMP
1266/*
1267 * Handle XSMP processing, de-registering the attachment upon error
1268 */
1269static XtInputId _xsmp_xtinputid;
1270
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001272local_xsmp_handle_requests(
1273 XtPointer c UNUSED,
1274 int *s UNUSED,
1275 XtInputId *i UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276{
1277 if (xsmp_handle_requests() == FAIL)
1278 XtRemoveInput(_xsmp_xtinputid);
1279}
1280#endif
1281
1282
1283/*
1284 * Initialise the X GUI. Create all the windows, set up all the call-backs etc.
1285 * Returns OK for success, FAIL when the GUI can't be started.
1286 */
1287 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001288gui_mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289{
1290 XtGCMask gc_mask;
1291 XGCValues gc_vals;
1292 int x, y, mask;
1293 unsigned w, h;
1294
1295#if 0
1296 /* Uncomment this to enable synchronous mode for debugging */
1297 XSynchronize(gui.dpy, True);
1298#endif
1299
1300 vimShell = XtVaAppCreateShell(VIM_NAME, VIM_CLASS,
1301 applicationShellWidgetClass, gui.dpy, NULL);
1302
1303 /*
1304 * Get the application resources
1305 */
1306 XtVaGetApplicationResources(vimShell, (XtPointer)&gui,
1307 vim_resources, XtNumber(vim_resources), NULL);
1308
1309 gui.scrollbar_height = gui.scrollbar_width;
1310
1311 /*
1312 * Get the colors ourselves. Using the automatic conversion doesn't
1313 * handle looking for approximate colors.
1314 */
1315 /* NOTE: These next few lines are an exact duplicate of gui_athena.c's
1316 * gui_mch_def_colors(). Why?
1317 */
1318 gui.menu_fg_pixel = gui_get_color((char_u *)gui.rsrc_menu_fg_name);
1319 gui.menu_bg_pixel = gui_get_color((char_u *)gui.rsrc_menu_bg_name);
1320 gui.scroll_fg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_fg_name);
1321 gui.scroll_bg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_bg_name);
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001322#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 gui.tooltip_fg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_fg_name);
1324 gui.tooltip_bg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_bg_name);
1325#endif
1326
1327#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
1328 /* If the menu height was set, don't change it at runtime */
1329 if (gui.menu_height != MENU_DEFAULT_HEIGHT)
1330 gui.menu_height_fixed = TRUE;
1331#endif
1332
1333 /* Set default foreground and background colours */
1334 gui.norm_pixel = gui.def_norm_pixel;
1335 gui.back_pixel = gui.def_back_pixel;
1336
1337 /* Check if reverse video needs to be applied (on Sun it's done by X) */
1338 if (gui.rsrc_rev_video && gui_get_lightness(gui.back_pixel)
1339 > gui_get_lightness(gui.norm_pixel))
1340 {
1341 gui.norm_pixel = gui.def_back_pixel;
1342 gui.back_pixel = gui.def_norm_pixel;
1343 gui.def_norm_pixel = gui.norm_pixel;
1344 gui.def_back_pixel = gui.back_pixel;
1345 }
1346
1347 /* Get the colors from the "Normal", "Tooltip", "Scrollbar" and "Menu"
1348 * group (set in syntax.c or in a vimrc file) */
1349 set_normal_colors();
1350
1351 /*
1352 * Check that none of the colors are the same as the background color
1353 */
1354 gui_check_colors();
1355
1356 /*
1357 * Set up the GCs. The font attributes will be set in gui_init_font().
1358 */
1359 gc_mask = GCForeground | GCBackground;
1360 gc_vals.foreground = gui.norm_pixel;
1361 gc_vals.background = gui.back_pixel;
1362 gui.text_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1363
1364 gc_vals.foreground = gui.back_pixel;
1365 gc_vals.background = gui.norm_pixel;
1366 gui.back_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1367
1368 gc_mask |= GCFunction;
1369 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1370 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1371 gc_vals.function = GXxor;
1372 gui.invert_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1373
1374 gui.visibility = VisibilityUnobscured;
1375 x11_setup_atoms(gui.dpy);
1376
1377 if (gui_win_x != -1 && gui_win_y != -1)
1378 gui_mch_set_winpos(gui_win_x, gui_win_y);
1379
1380 /* Now adapt the supplied(?) geometry-settings */
1381 /* Added by Kjetil Jacobsen <kjetilja@stud.cs.uit.no> */
1382 if (gui.geom != NULL && *gui.geom != NUL)
1383 {
1384 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
1385 if (mask & WidthValue)
1386 Columns = w;
1387 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00001388 {
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001389 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00001390 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00001392 }
Bram Moolenaarc33916a2013-07-01 21:43:08 +02001393 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 /*
1395 * Set the (x,y) position of the main window only if specified in the
1396 * users geometry, so we get good defaults when they don't. This needs
1397 * to be done before the shell is popped up.
1398 */
1399 if (mask & (XValue|YValue))
1400 XtVaSetValues(vimShell, XtNgeometry, gui.geom, NULL);
1401 }
1402
1403 gui_x11_create_widgets();
1404
1405 /*
1406 * Add an icon to Vim (Marcel Douben: 11 May 1998).
1407 */
1408 if (vim_strchr(p_go, GO_ICON) != NULL)
1409 {
1410#ifndef HAVE_XPM
1411# include "vim_icon.xbm"
1412# include "vim_mask.xbm"
1413
1414 Arg arg[2];
1415
1416 XtSetArg(arg[0], XtNiconPixmap,
1417 XCreateBitmapFromData(gui.dpy,
1418 DefaultRootWindow(gui.dpy),
1419 (char *)vim_icon_bits,
1420 vim_icon_width,
1421 vim_icon_height));
1422 XtSetArg(arg[1], XtNiconMask,
1423 XCreateBitmapFromData(gui.dpy,
1424 DefaultRootWindow(gui.dpy),
1425 (char *)vim_mask_icon_bits,
1426 vim_mask_icon_width,
1427 vim_mask_icon_height));
1428 XtSetValues(vimShell, arg, (Cardinal)2);
1429#else
1430/* Use Pixmaps, looking much nicer. */
1431
1432/* If you get an error message here, you still need to unpack the runtime
1433 * archive! */
1434# ifdef magick
1435# undef magick
1436# endif
1437# define magick vim32x32
1438# include "../runtime/vim32x32.xpm"
1439# undef magick
1440# define magick vim16x16
1441# include "../runtime/vim16x16.xpm"
1442# undef magick
1443# define magick vim48x48
1444# include "../runtime/vim48x48.xpm"
1445# undef magick
1446
1447 static Pixmap icon = 0;
1448 static Pixmap icon_mask = 0;
1449 static char **magick = vim32x32;
1450 Window root_window;
1451 XIconSize *size;
1452 int number_sizes;
1453 Display *dsp;
1454 Screen *scr;
1455 XpmAttributes attr;
1456 Colormap cmap;
1457
1458 /*
1459 * Adjust the icon to the preferences of the actual window manager.
1460 */
1461 root_window = XRootWindowOfScreen(XtScreen(vimShell));
1462 if (XGetIconSizes(XtDisplay(vimShell), root_window,
1463 &size, &number_sizes) != 0)
1464 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 if (number_sizes > 0)
1466 {
Bram Moolenaar6f292662013-07-14 15:06:50 +02001467 if (size->max_height >= 48 && size->max_width >= 48)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 magick = vim48x48;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001469 else if (size->max_height >= 32 && size->max_width >= 32)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 magick = vim32x32;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001471 else if (size->max_height >= 16 && size->max_width >= 16)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 magick = vim16x16;
1473 }
1474 }
1475
1476 dsp = XtDisplay(vimShell);
1477 scr = XtScreen(vimShell);
1478
1479 cmap = DefaultColormap(dsp, DefaultScreen(dsp));
1480 XtVaSetValues(vimShell, XtNcolormap, cmap, NULL);
1481
1482 attr.valuemask = 0L;
1483 attr.valuemask = XpmCloseness | XpmReturnPixels | XpmColormap | XpmDepth;
1484 attr.closeness = 65535; /* accuracy isn't crucial */
1485 attr.colormap = cmap;
1486 attr.depth = DefaultDepthOfScreen(scr);
1487
1488 if (!icon)
Bram Moolenaare8208012008-06-20 09:59:25 +00001489 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 XpmCreatePixmapFromData(dsp, root_window, magick, &icon,
1491 &icon_mask, &attr);
Bram Moolenaare8208012008-06-20 09:59:25 +00001492 XpmFreeAttributes(&attr);
1493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494
1495# ifdef FEAT_GUI_ATHENA
1496 XtVaSetValues(vimShell, XtNiconPixmap, icon, XtNiconMask, icon_mask, NULL);
1497# else
1498 XtVaSetValues(vimShell, XmNiconPixmap, icon, XmNiconMask, icon_mask, NULL);
1499# endif
1500#endif
1501 }
1502
1503 if (gui.color_approx)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001504 emsg(_("Vim E458: Cannot allocate colormap entry, some colors may be incorrect"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001506#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 gui_init_tooltip_font();
1508#endif
1509#ifdef FEAT_MENU
1510 gui_init_menu_font();
1511#endif
1512
1513#ifdef USE_XSMP
1514 /* Attach listener on ICE connection */
1515 if (-1 != xsmp_icefd)
1516 _xsmp_xtinputid = XtAppAddInput(app_context, xsmp_icefd,
1517 (XtPointer)XtInputReadMask, local_xsmp_handle_requests, NULL);
1518#endif
1519
1520 return OK;
1521}
1522
1523/*
1524 * Called when starting the GUI fails after calling gui_mch_init().
1525 */
1526 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001527gui_mch_uninit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528{
1529 gui_x11_destroy_widgets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 XtCloseDisplay(gui.dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 gui.dpy = NULL;
1532 vimShell = (Widget)0;
Bram Moolenaard23a8232018-02-10 18:45:26 +01001533 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534}
1535
1536/*
1537 * Called when the foreground or background color has been changed.
1538 */
1539 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001540gui_mch_new_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541{
1542 long_u gc_mask;
1543 XGCValues gc_vals;
1544
1545 gc_mask = GCForeground | GCBackground;
1546 gc_vals.foreground = gui.norm_pixel;
1547 gc_vals.background = gui.back_pixel;
1548 if (gui.text_gc != NULL)
1549 XChangeGC(gui.dpy, gui.text_gc, gc_mask, &gc_vals);
1550
1551 gc_vals.foreground = gui.back_pixel;
1552 gc_vals.background = gui.norm_pixel;
1553 if (gui.back_gc != NULL)
1554 XChangeGC(gui.dpy, gui.back_gc, gc_mask, &gc_vals);
1555
1556 gc_mask |= GCFunction;
1557 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1558 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1559 gc_vals.function = GXxor;
1560 if (gui.invert_gc != NULL)
1561 XChangeGC(gui.dpy, gui.invert_gc, gc_mask, &gc_vals);
1562
1563 gui_x11_set_back_color();
1564}
1565
1566/*
1567 * Open the GUI window which was created by a call to gui_mch_init().
1568 */
1569 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001570gui_mch_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571{
1572 /* Actually open the window */
Bram Moolenaara5792f52005-11-23 21:25:05 +00001573 XtRealizeWidget(vimShell);
1574 XtManageChild(XtNameToWidget(vimShell, "*vimForm"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
1576 gui.wid = gui_x11_get_wid();
1577 gui.blank_pointer = gui_x11_create_blank_mouse();
1578
1579 /*
1580 * Add a callback for the Close item on the window managers menu, and the
1581 * save-yourself event.
1582 */
1583 wm_atoms[SAVE_YOURSELF_IDX] =
1584 XInternAtom(gui.dpy, "WM_SAVE_YOURSELF", False);
1585 wm_atoms[DELETE_WINDOW_IDX] =
1586 XInternAtom(gui.dpy, "WM_DELETE_WINDOW", False);
1587 XSetWMProtocols(gui.dpy, XtWindow(vimShell), wm_atoms, 2);
1588 XtAddEventHandler(vimShell, NoEventMask, True, gui_x11_wm_protocol_handler,
1589 NULL);
1590#ifdef HAVE_X11_XMU_EDITRES_H
1591 /*
1592 * Enable editres protocol (see "man editres").
1593 * Usually will need to add -lXmu to the linker line as well.
1594 */
1595 XtAddEventHandler(vimShell, (EventMask)0, True, _XEditResCheckMessages,
1596 (XtPointer)NULL);
1597#endif
1598
1599#ifdef FEAT_CLIENTSERVER
1600 if (serverName == NULL && serverDelayedStartName != NULL)
1601 {
1602 /* This is a :gui command in a plain vim with no previous server */
1603 commWindow = XtWindow(vimShell);
1604 (void)serverRegisterName(gui.dpy, serverDelayedStartName);
1605 }
1606 else
1607 {
1608 /*
1609 * Cannot handle "widget-less" windows with XtProcessEvent() we'll
1610 * have to change the "server" registration to that of the main window
1611 * If we have not registered a name yet, remember the window
1612 */
1613 serverChangeRegisteredWindow(gui.dpy, XtWindow(vimShell));
1614 }
1615 XtAddEventHandler(vimShell, PropertyChangeMask, False,
1616 gui_x11_send_event_handler, NULL);
1617#endif
1618
1619
1620#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
1621 /* The Athena GUI needs this again after opening the window */
1622 gui_position_menu();
1623# ifdef FEAT_TOOLBAR
1624 gui_mch_set_toolbar_pos(0, gui.menu_height, gui.menu_width,
1625 gui.toolbar_height);
1626# endif
1627#endif
1628
1629 /* Get the colors for the highlight groups (gui_check_colors() might have
1630 * changed them) */
1631 highlight_gui_started(); /* re-init colors and fonts */
1632
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#ifdef FEAT_XIM
1634 xim_init();
1635#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636
1637 return OK;
1638}
1639
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001640#if defined(FEAT_BEVAL_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641/*
1642 * Convert the tooltip fontset name to an XFontSet.
1643 */
1644 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001645gui_init_tooltip_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646{
1647 XrmValue from, to;
1648
1649 from.addr = (char *)gui.rsrc_tooltip_font_name;
1650 from.size = strlen(from.addr);
1651 to.addr = (XtPointer)&gui.tooltip_fontset;
1652 to.size = sizeof(XFontSet);
1653
1654 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1655 {
1656 /* Failed. What to do? */
1657 }
1658}
1659#endif
1660
1661#if defined(FEAT_MENU) || defined(PROTO)
1662/* Convert the menu font/fontset name to an XFontStruct/XFontset */
1663 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001664gui_init_menu_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665{
1666 XrmValue from, to;
1667
1668#ifdef FONTSET_ALWAYS
1669 from.addr = (char *)gui.rsrc_menu_font_name;
1670 from.size = strlen(from.addr);
1671 to.addr = (XtPointer)&gui.menu_fontset;
1672 to.size = sizeof(GuiFontset);
1673
1674 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1675 {
1676 /* Failed. What to do? */
1677 }
1678#else
1679 from.addr = (char *)gui.rsrc_menu_font_name;
1680 from.size = strlen(from.addr);
1681 to.addr = (XtPointer)&gui.menu_font;
1682 to.size = sizeof(GuiFont);
1683
1684 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontStruct, &to) == False)
1685 {
1686 /* Failed. What to do? */
1687 }
1688#endif
1689}
1690#endif
1691
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001693gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694{
1695#if 0
1696 /* Lesstif gives an error message here, and so does Solaris. The man page
1697 * says that this isn't needed when exiting, so just skip it. */
1698 XtCloseDisplay(gui.dpy);
1699#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01001700 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701}
1702
1703/*
1704 * Get the position of the top left corner of the window.
1705 */
1706 int
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001707gui_mch_get_winpos(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708{
1709 Dimension xpos, ypos;
1710
1711 XtVaGetValues(vimShell,
1712 XtNx, &xpos,
1713 XtNy, &ypos,
1714 NULL);
1715 *x = xpos;
1716 *y = ypos;
1717 return OK;
1718}
1719
1720/*
1721 * Set the position of the top left corner of the window to the given
1722 * coordinates.
1723 */
1724 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001725gui_mch_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
1727 XtVaSetValues(vimShell,
1728 XtNx, x,
1729 XtNy, y,
1730 NULL);
1731}
1732
1733 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001734gui_mch_set_shellsize(
1735 int width,
1736 int height,
1737 int min_width,
1738 int min_height,
1739 int base_width,
1740 int base_height,
1741 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742{
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001743#ifdef FEAT_XIM
1744 height += xim_get_status_area_height(),
1745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 XtVaSetValues(vimShell,
1747 XtNwidthInc, gui.char_width,
1748 XtNheightInc, gui.char_height,
1749#if defined(XtSpecificationRelease) && XtSpecificationRelease >= 4
1750 XtNbaseWidth, base_width,
1751 XtNbaseHeight, base_height,
1752#endif
1753 XtNminWidth, min_width,
1754 XtNminHeight, min_height,
1755 XtNwidth, width,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 XtNheight, height,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 NULL);
1758}
1759
1760/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00001761 * Allow 10 pixels for horizontal borders, 'guiheadroom' for vertical borders.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 * Is there no way in X to find out how wide the borders really are?
1763 */
1764 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001765gui_mch_get_screen_dimensions(
1766 int *screen_w,
1767 int *screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768{
1769 *screen_w = DisplayWidth(gui.dpy, DefaultScreen(gui.dpy)) - 10;
1770 *screen_h = DisplayHeight(gui.dpy, DefaultScreen(gui.dpy)) - p_ghr;
1771}
1772
1773/*
1774 * Initialise vim to use the font "font_name". If it's NULL, pick a default
1775 * font.
1776 * If "fontset" is TRUE, load the "font_name" as a fontset.
1777 * Return FAIL if the font could not be loaded, OK otherwise.
1778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001780gui_mch_init_font(
1781 char_u *font_name,
1782 int do_fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
1784 XFontStruct *font = NULL;
1785
1786#ifdef FEAT_XFONTSET
1787 XFontSet fontset = NULL;
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001788#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001790#ifdef FEAT_GUI_MOTIF
1791 /* A font name equal "*" is indicating, that we should activate the font
1792 * selection dialogue to get a new font name. So let us do it here. */
1793 if (font_name != NULL && STRCMP(font_name, "*") == 0)
1794 font_name = gui_xm_select_font(hl_get_font_name());
1795#endif
1796
1797#ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 if (do_fontset)
1799 {
1800 /* If 'guifontset' is set, VIM treats all font specifications as if
1801 * they were fontsets, and 'guifontset' becomes the default. */
1802 if (font_name != NULL)
1803 {
1804 fontset = (XFontSet)gui_mch_get_fontset(font_name, FALSE, TRUE);
1805 if (fontset == NULL)
1806 return FAIL;
1807 }
1808 }
1809 else
1810#endif
1811 {
1812 if (font_name == NULL)
1813 {
1814 /*
1815 * If none of the fonts in 'font' could be loaded, try the one set
1816 * in the X resource, and finally just try using DFLT_FONT, which
1817 * will hopefully always be there.
1818 */
1819 font_name = gui.rsrc_font_name;
1820 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1821 if (font == NULL)
1822 font_name = (char_u *)DFLT_FONT;
1823 }
1824 if (font == NULL)
1825 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1826 if (font == NULL)
1827 return FAIL;
1828 }
1829
1830 gui_mch_free_font(gui.norm_font);
1831#ifdef FEAT_XFONTSET
1832 gui_mch_free_fontset(gui.fontset);
1833
1834 if (fontset != NULL)
1835 {
1836 gui.norm_font = NOFONT;
1837 gui.fontset = (GuiFontset)fontset;
1838 gui.char_width = fontset_width(fontset);
1839 gui.char_height = fontset_height(fontset) + p_linespace;
1840 gui.char_ascent = fontset_ascent(fontset) + p_linespace / 2;
1841 }
1842 else
1843#endif
1844 {
1845 gui.norm_font = (GuiFont)font;
1846#ifdef FEAT_XFONTSET
1847 gui.fontset = NOFONTSET;
1848#endif
1849 gui.char_width = font->max_bounds.width;
1850 gui.char_height = font->ascent + font->descent + p_linespace;
1851 gui.char_ascent = font->ascent + p_linespace / 2;
1852 }
1853
1854 hl_set_font_name(font_name);
1855
1856 /*
1857 * Try to load other fonts for bold, italic, and bold-italic.
1858 * We should also try to work out what font to use for these when they are
1859 * not specified by X resources, but we don't yet.
1860 */
1861 if (font_name == gui.rsrc_font_name)
1862 {
1863 if (gui.bold_font == NOFONT
1864 && gui.rsrc_bold_font_name != NULL
1865 && *gui.rsrc_bold_font_name != NUL)
1866 gui.bold_font = gui_mch_get_font(gui.rsrc_bold_font_name, FALSE);
1867 if (gui.ital_font == NOFONT
1868 && gui.rsrc_ital_font_name != NULL
1869 && *gui.rsrc_ital_font_name != NUL)
1870 gui.ital_font = gui_mch_get_font(gui.rsrc_ital_font_name, FALSE);
1871 if (gui.boldital_font == NOFONT
1872 && gui.rsrc_boldital_font_name != NULL
1873 && *gui.rsrc_boldital_font_name != NUL)
1874 gui.boldital_font = gui_mch_get_font(gui.rsrc_boldital_font_name,
1875 FALSE);
1876 }
1877 else
1878 {
1879 /* When not using the font specified by the resources, also don't use
1880 * the bold/italic fonts, otherwise setting 'guifont' will look very
1881 * strange. */
1882 if (gui.bold_font != NOFONT)
1883 {
1884 XFreeFont(gui.dpy, (XFontStruct *)gui.bold_font);
1885 gui.bold_font = NOFONT;
1886 }
1887 if (gui.ital_font != NOFONT)
1888 {
1889 XFreeFont(gui.dpy, (XFontStruct *)gui.ital_font);
1890 gui.ital_font = NOFONT;
1891 }
1892 if (gui.boldital_font != NOFONT)
1893 {
1894 XFreeFont(gui.dpy, (XFontStruct *)gui.boldital_font);
1895 gui.boldital_font = NOFONT;
1896 }
1897 }
1898
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001899#ifdef FEAT_GUI_MOTIF
1900 gui_motif_synch_fonts();
1901#endif
1902
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 return OK;
1904}
1905
1906/*
1907 * Get a font structure for highlighting.
1908 */
1909 GuiFont
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001910gui_mch_get_font(char_u *name, int giveErrorIfMissing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
1912 XFontStruct *font;
1913
Bram Moolenaard23a8232018-02-10 18:45:26 +01001914 if (!gui.in_use || name == NULL) /* can't do this when GUI not running */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 return NOFONT;
1916
1917 font = XLoadQueryFont(gui.dpy, (char *)name);
1918
1919 if (font == NULL)
1920 {
1921 if (giveErrorIfMissing)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001922 semsg(_(e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 return NOFONT;
1924 }
1925
1926#ifdef DEBUG
1927 printf("Font Information for '%s':\n", name);
1928 printf(" w = %d, h = %d, ascent = %d, descent = %d\n",
1929 font->max_bounds.width, font->ascent + font->descent,
1930 font->ascent, font->descent);
1931 printf(" max ascent = %d, max descent = %d, max h = %d\n",
1932 font->max_bounds.ascent, font->max_bounds.descent,
1933 font->max_bounds.ascent + font->max_bounds.descent);
1934 printf(" min lbearing = %d, min rbearing = %d\n",
1935 font->min_bounds.lbearing, font->min_bounds.rbearing);
1936 printf(" max lbearing = %d, max rbearing = %d\n",
1937 font->max_bounds.lbearing, font->max_bounds.rbearing);
1938 printf(" leftink = %d, rightink = %d\n",
1939 (font->min_bounds.lbearing < 0),
1940 (font->max_bounds.rbearing > font->max_bounds.width));
1941 printf("\n");
1942#endif
1943
1944 if (font->max_bounds.width != font->min_bounds.width)
1945 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001946 semsg(_(e_fontwidth), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 XFreeFont(gui.dpy, font);
1948 return NOFONT;
1949 }
1950 return (GuiFont)font;
1951}
1952
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001953#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001954/*
1955 * Return the name of font "font" in allocated memory.
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001956 */
1957 char_u *
Bram Moolenaar87748452017-03-12 17:10:33 +01001958gui_mch_get_fontname(GuiFont font, char_u *name)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001959{
Bram Moolenaar87748452017-03-12 17:10:33 +01001960 char_u *ret = NULL;
1961
1962 if (name != NULL && font == NULL)
1963 {
1964 /* In this case, there's no way other than doing this. */
1965 ret = vim_strsave(name);
1966 }
1967 else if (font != NULL)
1968 {
1969 /* In this case, try to retrieve the XLFD corresponding to 'font'->fid;
1970 * if failed, use 'name' unless it's NULL. */
1971 unsigned long value = 0L;
1972
1973 if (XGetFontProperty(font, XA_FONT, &value))
1974 {
1975 char *xa_font_name = NULL;
1976
1977 xa_font_name = XGetAtomName(gui.dpy, value);
1978 if (xa_font_name != NULL)
1979 {
1980 ret = vim_strsave((char_u *)xa_font_name);
1981 XFree(xa_font_name);
1982 }
1983 else if (name != NULL)
1984 ret = vim_strsave(name);
1985 }
1986 else if (name != NULL)
1987 ret = vim_strsave(name);
1988 }
1989 return ret;
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001990}
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001991#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001992
Bram Moolenaar231334e2005-07-25 20:46:57 +00001993/*
1994 * Adjust gui.char_height (after 'linespace' was changed).
1995 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001997gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998{
1999#ifdef FEAT_XFONTSET
2000 if (gui.fontset != NOFONTSET)
2001 {
2002 gui.char_height = fontset_height((XFontSet)gui.fontset) + p_linespace;
2003 gui.char_ascent = fontset_ascent((XFontSet)gui.fontset)
2004 + p_linespace / 2;
2005 }
2006 else
2007#endif
2008 {
2009 XFontStruct *font = (XFontStruct *)gui.norm_font;
2010
2011 gui.char_height = font->ascent + font->descent + p_linespace;
2012 gui.char_ascent = font->ascent + p_linespace / 2;
2013 }
2014 return OK;
2015}
2016
2017/*
2018 * Set the current text font.
2019 */
2020 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002021gui_mch_set_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 static Font prev_font = (Font)-1;
2024 Font fid = ((XFontStruct *)font)->fid;
2025
2026 if (fid != prev_font)
2027 {
2028 XSetFont(gui.dpy, gui.text_gc, fid);
2029 XSetFont(gui.dpy, gui.back_gc, fid);
2030 prev_font = fid;
2031 gui.char_ascent = ((XFontStruct *)font)->ascent + p_linespace / 2;
2032 }
2033#ifdef FEAT_XFONTSET
2034 current_fontset = (XFontSet)NULL;
2035#endif
2036}
2037
2038#if defined(FEAT_XFONTSET) || defined(PROTO)
2039/*
2040 * Set the current text fontset.
2041 * Adjust the ascent, in case it's different.
2042 */
2043 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002044gui_mch_set_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045{
2046 current_fontset = (XFontSet)fontset;
2047 gui.char_ascent = fontset_ascent(current_fontset) + p_linespace / 2;
2048}
2049#endif
2050
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051/*
2052 * If a font is not going to be used, free its structure.
2053 */
2054 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002055gui_mch_free_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056{
2057 if (font != NOFONT)
2058 XFreeFont(gui.dpy, (XFontStruct *)font);
2059}
2060
2061#if defined(FEAT_XFONTSET) || defined(PROTO)
2062/*
2063 * If a fontset is not going to be used, free its structure.
2064 */
2065 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002066gui_mch_free_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067{
2068 if (fontset != NOFONTSET)
2069 XFreeFontSet(gui.dpy, (XFontSet)fontset);
2070}
2071
2072/*
2073 * Load the fontset "name".
2074 * Return a reference to the fontset, or NOFONTSET when failing.
2075 */
2076 GuiFontset
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002077gui_mch_get_fontset(
2078 char_u *name,
2079 int giveErrorIfMissing,
2080 int fixed_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081{
2082 XFontSet fontset;
2083 char **missing, *def_str;
2084 int num_missing;
2085
2086 if (!gui.in_use || name == NULL)
2087 return NOFONTSET;
2088
2089 fontset = XCreateFontSet(gui.dpy, (char *)name, &missing, &num_missing,
2090 &def_str);
2091 if (num_missing > 0)
2092 {
2093 int i;
2094
2095 if (giveErrorIfMissing)
2096 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002097 semsg(_("E250: Fonts for the following charsets are missing in fontset %s:"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 for (i = 0; i < num_missing; i++)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002099 semsg("%s", missing[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 }
2101 XFreeStringList(missing);
2102 }
2103
2104 if (fontset == NULL)
2105 {
2106 if (giveErrorIfMissing)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002107 semsg(_(e_fontset), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 return NOFONTSET;
2109 }
2110
2111 if (fixed_width && check_fontset_sanity(fontset) == FAIL)
2112 {
2113 XFreeFontSet(gui.dpy, fontset);
2114 return NOFONTSET;
2115 }
2116 return (GuiFontset)fontset;
2117}
2118
2119/*
2120 * Check if fontset "fs" is fixed width.
2121 */
2122 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002123check_fontset_sanity(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 XFontStruct **xfs;
2126 char **font_name;
2127 int fn;
2128 char *base_name;
2129 int i;
2130 int min_width;
2131 int min_font_idx = 0;
2132
2133 base_name = XBaseFontNameListOfFontSet(fs);
2134 fn = XFontsOfFontSet(fs, &xfs, &font_name);
2135 for (i = 0; i < fn; i++)
2136 {
2137 if (xfs[i]->max_bounds.width != xfs[i]->min_bounds.width)
2138 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002139 semsg(_("E252: Fontset name: %s"), base_name);
2140 semsg(_("Font '%s' is not fixed-width"), font_name[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 return FAIL;
2142 }
2143 }
2144 /* scan base font width */
2145 min_width = 32767;
2146 for (i = 0; i < fn; i++)
2147 {
2148 if (xfs[i]->max_bounds.width<min_width)
2149 {
2150 min_width = xfs[i]->max_bounds.width;
2151 min_font_idx = i;
2152 }
2153 }
2154 for (i = 0; i < fn; i++)
2155 {
2156 if ( xfs[i]->max_bounds.width != 2 * min_width
2157 && xfs[i]->max_bounds.width != min_width)
2158 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002159 semsg(_("E253: Fontset name: %s"), base_name);
2160 semsg(_("Font0: %s"), font_name[min_font_idx]);
Bram Moolenaar500f3612019-01-16 22:15:11 +01002161 semsg(_("Font%d: %s"), i, font_name[i]);
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002162 semsg(_("Font%d width is not twice that of font0"), i);
2163 semsg(_("Font0 width: %d"),
2164 (int)xfs[min_font_idx]->max_bounds.width);
2165 semsg(_("Font%d width: %d"), i, (int)xfs[i]->max_bounds.width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 return FAIL;
2167 }
2168 }
2169 /* it seems ok. Good Luck!! */
2170 return OK;
2171}
2172
2173 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002174fontset_width(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002176 return XmbTextEscapement(fs, "Vim", 3) / 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177}
2178
2179 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002180fontset_height(
2181 XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182{
2183 XFontSetExtents *extents;
2184
2185 extents = XExtentsOfFontSet(fs);
2186 return extents->max_logical_extent.height;
2187}
2188
2189#if (defined(FONTSET_ALWAYS) && defined(FEAT_GUI_ATHENA) \
2190 && defined(FEAT_MENU)) || defined(PROTO)
2191/*
2192 * Returns the bounding box height around the actual glyph image of all
2193 * characters in all fonts of the fontset.
2194 */
2195 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002196fontset_height2(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197{
2198 XFontSetExtents *extents;
2199
2200 extents = XExtentsOfFontSet(fs);
2201 return extents->max_ink_extent.height;
2202}
2203#endif
2204
2205/* NOT USED YET
2206 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002207fontset_descent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208{
2209 XFontSetExtents *extents;
2210
2211 extents = XExtentsOfFontSet (fs);
2212 return extents->max_logical_extent.height + extents->max_logical_extent.y;
2213}
2214*/
2215
2216 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002217fontset_ascent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218{
2219 XFontSetExtents *extents;
2220
2221 extents = XExtentsOfFontSet(fs);
2222 return -extents->max_logical_extent.y;
2223}
2224
2225#endif /* FEAT_XFONTSET */
2226
2227/*
2228 * Return the Pixel value (color) for the given color name.
2229 * Return INVALCOLOR for error.
2230 */
2231 guicolor_T
Bram Moolenaar46582282016-07-23 14:35:12 +02002232gui_mch_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002234 guicolor_T requested;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235
2236 /* can't do this when GUI not running */
Bram Moolenaar46582282016-07-23 14:35:12 +02002237 if (!gui.in_use || name == NULL || *name == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 return INVALCOLOR;
2239
Bram Moolenaar46582282016-07-23 14:35:12 +02002240 requested = gui_get_color_cmn(name);
2241 if (requested == INVALCOLOR)
2242 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002244 return gui_mch_get_rgb_color(
Bram Moolenaar46582282016-07-23 14:35:12 +02002245 (requested & 0xff0000) >> 16,
2246 (requested & 0xff00) >> 8,
2247 requested & 0xff);
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002248}
2249
2250/*
2251 * Return the Pixel value (color) for the given RGB values.
2252 * Return INVALCOLOR for error.
2253 */
2254 guicolor_T
2255gui_mch_get_rgb_color(int r, int g, int b)
2256{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002257 XColor available;
Bram Moolenaard60547b2017-07-24 20:15:30 +02002258 Colormap colormap;
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002259
Bram Moolenaar778df2a2018-05-06 19:19:36 +02002260/* Using XParseColor() is very slow, put rgb in XColor directly.
2261
2262 char spec[8]; // space enough to hold "#RRGGBB"
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002263 vim_snprintf(spec, sizeof(spec), "#%.2x%.2x%.2x", r, g, b);
Bram Moolenaar46582282016-07-23 14:35:12 +02002264 if (XParseColor(gui.dpy, colormap, (char *)spec, &available) != 0
2265 && XAllocColor(gui.dpy, colormap, &available) != 0)
2266 return (guicolor_T)available.pixel;
Bram Moolenaar778df2a2018-05-06 19:19:36 +02002267*/
2268 colormap = DefaultColormap(gui.dpy, DefaultScreen(gui.dpy));
2269 vim_memset(&available, 0, sizeof(XColor));
2270 available.red = r << 8;
2271 available.green = g << 8;
2272 available.blue = b << 8;
2273 if (XAllocColor(gui.dpy, colormap, &available) != 0)
2274 return (guicolor_T)available.pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275
2276 return INVALCOLOR;
2277}
2278
2279/*
Bram Moolenaarfb269802005-03-15 22:46:30 +00002280 * Set the current text foreground color.
2281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002283gui_mch_set_fg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284{
2285 if (color != prev_fg_color)
2286 {
2287 XSetForeground(gui.dpy, gui.text_gc, (Pixel)color);
2288 prev_fg_color = color;
2289 }
2290}
2291
2292/*
2293 * Set the current text background color.
2294 */
2295 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002296gui_mch_set_bg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
2298 if (color != prev_bg_color)
2299 {
2300 XSetBackground(gui.dpy, gui.text_gc, (Pixel)color);
2301 prev_bg_color = color;
2302 }
2303}
2304
2305/*
Bram Moolenaarfb269802005-03-15 22:46:30 +00002306 * Set the current text special color.
2307 */
2308 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002309gui_mch_set_sp_color(guicolor_T color)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002310{
2311 prev_sp_color = color;
2312}
2313
2314/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 * create a mouse pointer that is blank
2316 */
2317 static Cursor
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002318gui_x11_create_blank_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319{
2320 Pixmap blank_pixmap = XCreatePixmap(gui.dpy, gui.wid, 1, 1, 1);
2321 GC gc = XCreateGC(gui.dpy, blank_pixmap, (unsigned long)0, (XGCValues*)0);
2322 XDrawPoint(gui.dpy, blank_pixmap, gc, 0, 0);
2323 XFreeGC(gui.dpy, gc);
2324 return XCreatePixmapCursor(gui.dpy, blank_pixmap, blank_pixmap,
2325 (XColor*)&gui.norm_pixel, (XColor*)&gui.norm_pixel, 0, 0);
2326}
2327
Bram Moolenaarfb269802005-03-15 22:46:30 +00002328/*
2329 * Draw a curled line at the bottom of the character cell.
2330 */
2331 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002332draw_curl(int row, int col, int cells)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002333{
2334 int i;
2335 int offset;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002336 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarfb269802005-03-15 22:46:30 +00002337
2338 XSetForeground(gui.dpy, gui.text_gc, prev_sp_color);
2339 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
2340 {
2341 offset = val[i % 8];
2342 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, i,
2343 FILL_Y(row + 1) - 1 - offset);
2344 }
2345 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
2346}
2347
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002349gui_mch_draw_string(
2350 int row,
2351 int col,
2352 char_u *s,
2353 int len,
2354 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355{
2356 int cells = len;
Bram Moolenaara3227e22006-03-08 21:32:40 +00002357 static void *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 static int buflen = 0;
2359 char_u *p;
2360 int wlen = 0;
2361 int c;
2362
2363 if (enc_utf8)
2364 {
2365 /* Convert UTF-8 byte sequence to 16 bit characters for the X
2366 * functions. Need a buffer for the 16 bit characters. Keep it
2367 * between calls, because allocating it each time is slow. */
2368 if (buflen < len)
2369 {
2370 XtFree((char *)buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002371 buf = (void *)XtMalloc(len * (sizeof(XChar2b) < sizeof(wchar_t)
2372 ? sizeof(wchar_t) : sizeof(XChar2b)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 buflen = len;
2374 }
2375 p = s;
2376 cells = 0;
2377 while (p < s + len)
2378 {
2379 c = utf_ptr2char(p);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002380#ifdef FEAT_XFONTSET
Bram Moolenaara3227e22006-03-08 21:32:40 +00002381 if (current_fontset != NULL)
2382 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002383# ifdef SMALL_WCHAR_T
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002384 if (c >= 0x10000)
Bram Moolenaara3227e22006-03-08 21:32:40 +00002385 c = 0xbf; /* show chars > 0xffff as ? */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002386# endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00002387 ((wchar_t *)buf)[wlen] = c;
2388 }
2389 else
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002390#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00002391 {
2392 if (c >= 0x10000)
2393 c = 0xbf; /* show chars > 0xffff as ? */
2394 ((XChar2b *)buf)[wlen].byte1 = (unsigned)c >> 8;
2395 ((XChar2b *)buf)[wlen].byte2 = c;
2396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 ++wlen;
2398 cells += utf_char2cells(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002399 p += utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 }
2401 }
2402 else if (has_mbyte)
2403 {
2404 cells = 0;
2405 for (p = s; p < s + len; )
2406 {
2407 cells += ptr2cells(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002408 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 }
2410 }
2411
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412#ifdef FEAT_XFONTSET
2413 if (current_fontset != NULL)
2414 {
2415 /* Setup a clip rectangle to avoid spilling over in the next or
2416 * previous line. This is apparently needed for some fonts which are
2417 * used in a fontset. */
2418 XRectangle clip;
2419
2420 clip.x = 0;
2421 clip.y = 0;
2422 clip.height = gui.char_height;
2423 clip.width = gui.char_width * cells + 1;
2424 XSetClipRectangles(gui.dpy, gui.text_gc, FILL_X(col), FILL_Y(row),
2425 &clip, 1, Unsorted);
2426 }
2427#endif
2428
2429 if (flags & DRAW_TRANSP)
2430 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 if (enc_utf8)
2432 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2433 TEXT_Y(row), buf, wlen);
2434 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2436 TEXT_Y(row), (char *)s, len);
2437 }
2438 else if (p_linespace != 0
2439#ifdef FEAT_XFONTSET
2440 || current_fontset != NULL
2441#endif
2442 )
2443 {
2444 XSetForeground(gui.dpy, gui.text_gc, prev_bg_color);
2445 XFillRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
2446 FILL_Y(row), gui.char_width * cells, gui.char_height);
2447 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
Bram Moolenaarfb269802005-03-15 22:46:30 +00002448
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 if (enc_utf8)
2450 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2451 TEXT_Y(row), buf, wlen);
2452 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2454 TEXT_Y(row), (char *)s, len);
2455 }
2456 else
2457 {
2458 /* XmbDrawImageString has bug, don't use it for fontset. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 if (enc_utf8)
2460 XDrawImageString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2461 TEXT_Y(row), buf, wlen);
2462 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 XDrawImageString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2464 TEXT_Y(row), (char *)s, len);
2465 }
2466
2467 /* Bold trick: draw the text again with a one-pixel offset. */
2468 if (flags & DRAW_BOLD)
2469 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 if (enc_utf8)
2471 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2472 TEXT_Y(row), buf, wlen);
2473 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2475 TEXT_Y(row), (char *)s, len);
2476 }
2477
Bram Moolenaarfb269802005-03-15 22:46:30 +00002478 /* Undercurl: draw curl at the bottom of the character cell. */
2479 if (flags & DRAW_UNDERC)
2480 draw_curl(row, col, cells);
2481
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 /* Underline: draw a line at the bottom of the character cell. */
2483 if (flags & DRAW_UNDERL)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002484 {
2485 int y = FILL_Y(row + 1) - 1;
2486
2487 /* When p_linespace is 0, overwrite the bottom row of pixels.
2488 * Otherwise put the line just below the character. */
2489 if (p_linespace > 1)
2490 y -= p_linespace - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 XDrawLine(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
Bram Moolenaarfb269802005-03-15 22:46:30 +00002492 y, FILL_X(col + cells) - 1, y);
2493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002495 if (flags & DRAW_STRIKE)
2496 {
2497 int y = FILL_Y(row + 1) - gui.char_height/2;
2498
2499 XSetForeground(gui.dpy, gui.text_gc, prev_sp_color);
2500 XDrawLine(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
2501 y, FILL_X(col + cells) - 1, y);
2502 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
2503 }
2504
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505#ifdef FEAT_XFONTSET
2506 if (current_fontset != NULL)
2507 XSetClipMask(gui.dpy, gui.text_gc, None);
2508#endif
2509}
2510
2511/*
2512 * Return OK if the key with the termcap name "name" is supported.
2513 */
2514 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002515gui_mch_haskey(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
2517 int i;
2518
2519 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
2520 if (name[0] == special_keys[i].vim_code0 &&
2521 name[1] == special_keys[i].vim_code1)
2522 return OK;
2523 return FAIL;
2524}
2525
2526/*
2527 * Return the text window-id and display. Only required for X-based GUI's
2528 */
2529 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002530gui_get_x11_windis(Window *win, Display **dis)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531{
2532 *win = XtWindow(vimShell);
2533 *dis = gui.dpy;
2534 return OK;
2535}
2536
2537 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002538gui_mch_beep(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539{
2540 XBell(gui.dpy, 0);
2541}
2542
2543 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002544gui_mch_flash(int msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 /* Do a visual beep by reversing the foreground and background colors */
2547 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2548 FILL_X((int)Columns) + gui.border_offset,
2549 FILL_Y((int)Rows) + gui.border_offset);
2550 XSync(gui.dpy, False);
2551 ui_delay((long)msec, TRUE); /* wait for a few msec */
2552 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2553 FILL_X((int)Columns) + gui.border_offset,
2554 FILL_Y((int)Rows) + gui.border_offset);
2555}
2556
2557/*
2558 * Invert a rectangle from row r, column c, for nr rows and nc columns.
2559 */
2560 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002561gui_mch_invert_rectangle(
2562 int r,
2563 int c,
2564 int nr,
2565 int nc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc,
2568 FILL_X(c), FILL_Y(r), (nc) * gui.char_width, (nr) * gui.char_height);
2569}
2570
2571/*
2572 * Iconify the GUI window.
2573 */
2574 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002575gui_mch_iconify(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 XIconifyWindow(gui.dpy, XtWindow(vimShell), DefaultScreen(gui.dpy));
2578}
2579
2580#if defined(FEAT_EVAL) || defined(PROTO)
2581/*
2582 * Bring the Vim window to the foreground.
2583 */
2584 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002585gui_mch_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587 XMapRaised(gui.dpy, XtWindow(vimShell));
2588}
2589#endif
2590
2591/*
2592 * Draw a cursor without focus.
2593 */
2594 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002595gui_mch_draw_hollow_cursor(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596{
2597 int w = 1;
2598
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 if (mb_lefthalve(gui.row, gui.col))
2600 w = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 gui_mch_set_fg_color(color);
2602 XDrawRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(gui.col),
2603 FILL_Y(gui.row), w * gui.char_width - 1, gui.char_height - 1);
2604}
2605
2606/*
2607 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
2608 * color "color".
2609 */
2610 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002611gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612{
2613 gui_mch_set_fg_color(color);
2614
2615 XFillRectangle(gui.dpy, gui.wid, gui.text_gc,
2616#ifdef FEAT_RIGHTLEFT
2617 /* vertical line should be on the right of current point */
2618 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
2619#endif
2620 FILL_X(gui.col),
2621 FILL_Y(gui.row) + gui.char_height - h,
2622 w, h);
2623}
2624
2625/*
2626 * Catch up with any queued X events. This may put keyboard input into the
2627 * input buffer, call resize call-backs, trigger timers etc. If there is
2628 * nothing in the X event queue (& no timers pending), then we return
2629 * immediately.
2630 */
2631 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002632gui_mch_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633{
2634 XtInputMask mask, desired;
2635
2636#ifdef ALT_X_INPUT
2637 if (suppress_alternate_input)
2638 desired = (XtIMXEvent | XtIMTimer);
2639 else
2640#endif
2641 desired = (XtIMAll);
2642 while ((mask = XtAppPending(app_context)) && (mask & desired)
2643 && !vim_is_input_buf_full())
2644 XtAppProcessEvent(app_context, desired);
2645}
2646
2647/*
2648 * GUI input routine called by gui_wait_for_chars(). Waits for a character
2649 * from the keyboard.
2650 * wtime == -1 Wait forever.
2651 * wtime == 0 This should never happen.
2652 * wtime > 0 Wait wtime milliseconds for a character.
2653 * Returns OK if a character was found to be available within the given time,
2654 * or FAIL otherwise.
2655 */
2656 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002657gui_mch_wait_for_chars(long wtime)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658{
Bram Moolenaar4231da42016-06-02 14:30:04 +02002659 int focus;
2660 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661
2662 /*
2663 * Make this static, in case gui_x11_timer_cb is called after leaving
2664 * this function (otherwise a random value on the stack may be changed).
2665 */
2666 static int timed_out;
2667 XtIntervalId timer = (XtIntervalId)0;
2668 XtInputMask desired;
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002669#ifdef FEAT_JOB_CHANNEL
2670 XtIntervalId channel_timer = (XtIntervalId)0;
2671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
2673 timed_out = FALSE;
2674
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01002675 if (wtime >= 0)
2676 timer = XtAppAddTimeOut(app_context,
2677 (long_u)(wtime == 0 ? 1L : wtime),
2678 gui_x11_timer_cb, &timed_out);
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002679#ifdef FEAT_JOB_CHANNEL
2680 /* If there is a channel with the keep_open flag we need to poll for input
2681 * on them. */
2682 if (channel_any_keep_open())
2683 channel_timer = XtAppAddTimeOut(app_context, (long_u)20,
2684 channel_poll_cb, (XtPointer)&channel_timer);
2685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 focus = gui.in_focus;
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01002688 desired = (XtIMAll);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 while (!timed_out)
2690 {
2691 /* Stop or start blinking when focus changes */
2692 if (gui.in_focus != focus)
2693 {
2694 if (gui.in_focus)
2695 gui_mch_start_blink();
2696 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01002697 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 focus = gui.in_focus;
2699 }
2700
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002701#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02002702# ifdef FEAT_TIMERS
2703 did_add_timer = FALSE;
2704# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002705 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02002706# ifdef FEAT_TIMERS
2707 if (did_add_timer)
2708 /* Need to recompute the waiting time. */
2709 break;
2710# endif
Bram Moolenaar03531f72010-11-16 15:04:57 +01002711#endif
2712
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 /*
2714 * Don't use gui_mch_update() because then we will spin-lock until a
2715 * char arrives, instead we use XtAppProcessEvent() to hang until an
2716 * event arrives. No need to check for input_buf_full because we are
2717 * returning as soon as it contains a single char. Note that
2718 * XtAppNextEvent() may not be used because it will not return after a
2719 * timer event has arrived -- webb
2720 */
2721 XtAppProcessEvent(app_context, desired);
2722
2723 if (input_available())
2724 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02002725 retval = OK;
2726 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 }
2728 }
Bram Moolenaar4231da42016-06-02 14:30:04 +02002729
2730 if (timer != (XtIntervalId)0 && !timed_out)
2731 XtRemoveTimeOut(timer);
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002732#ifdef FEAT_JOB_CHANNEL
2733 if (channel_timer != (XtIntervalId)0)
2734 XtRemoveTimeOut(channel_timer);
2735#endif
Bram Moolenaar4231da42016-06-02 14:30:04 +02002736
2737 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738}
2739
2740/*
2741 * Output routines.
2742 */
2743
2744/* Flush any output to the screen */
2745 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002746gui_mch_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747{
2748 XFlush(gui.dpy);
2749}
2750
2751/*
2752 * Clear a rectangular region of the screen from text pos (row1, col1) to
2753 * (row2, col2) inclusive.
2754 */
2755 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002756gui_mch_clear_block(
2757 int row1,
2758 int col1,
2759 int row2,
2760 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761{
2762 int x;
2763
2764 x = FILL_X(col1);
2765
2766 /* Clear one extra pixel at the far right, for when bold characters have
2767 * spilled over to the next column. */
2768 XFillRectangle(gui.dpy, gui.wid, gui.back_gc, x, FILL_Y(row1),
2769 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
2770 (row2 - row1 + 1) * gui.char_height);
2771}
2772
2773 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002774gui_mch_clear_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775{
2776 XClearArea(gui.dpy, gui.wid, 0, 0, 0, 0, False);
2777}
2778
2779/*
2780 * Delete the given number of lines from the given row, scrolling up any
2781 * text further down within the scroll region.
2782 */
2783 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002784gui_mch_delete_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786 if (gui.visibility == VisibilityFullyObscured)
2787 return; /* Can't see the window */
2788
2789 /* copy one extra pixel at the far right, for when bold has spilled
2790 * over */
2791 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2792 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
2793 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2794 + (gui.scroll_region_right == Columns - 1),
2795 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2796 FILL_X(gui.scroll_region_left), FILL_Y(row));
2797
2798 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
2799 gui.scroll_region_left,
2800 gui.scroll_region_bot, gui.scroll_region_right);
2801 gui_x11_check_copy_area();
2802}
2803
2804/*
2805 * Insert the given number of lines before the given row, scrolling down any
2806 * following text within the scroll region.
2807 */
2808 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002809gui_mch_insert_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
2811 if (gui.visibility == VisibilityFullyObscured)
2812 return; /* Can't see the window */
2813
2814 /* copy one extra pixel at the far right, for when bold has spilled
2815 * over */
2816 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2817 FILL_X(gui.scroll_region_left), FILL_Y(row),
2818 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2819 + (gui.scroll_region_right == Columns - 1),
2820 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2821 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines));
2822
2823 gui_clear_block(row, gui.scroll_region_left,
2824 row + num_lines - 1, gui.scroll_region_right);
2825 gui_x11_check_copy_area();
2826}
2827
2828/*
2829 * Update the region revealed by scrolling up/down.
2830 */
2831 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002832gui_x11_check_copy_area(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833{
2834 XEvent event;
2835 XGraphicsExposeEvent *gevent;
2836
2837 if (gui.visibility != VisibilityPartiallyObscured)
2838 return;
2839
2840 XFlush(gui.dpy);
2841
2842 /* Wait to check whether the scroll worked or not */
2843 for (;;)
2844 {
2845 if (XCheckTypedEvent(gui.dpy, NoExpose, &event))
2846 return; /* The scroll worked. */
2847
2848 if (XCheckTypedEvent(gui.dpy, GraphicsExpose, &event))
2849 {
2850 gevent = (XGraphicsExposeEvent *)&event;
2851 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
2852 if (gevent->count == 0)
2853 return; /* This was the last expose event */
2854 }
2855 XSync(gui.dpy, False);
2856 }
2857}
2858
2859/*
2860 * X Selection stuff, for cutting and pasting text to other windows.
2861 */
2862
2863 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002864clip_mch_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865{
2866 clip_x11_lose_selection(vimShell, cbd);
2867}
2868
2869 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002870clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871{
2872 return clip_x11_own_selection(vimShell, cbd);
2873}
2874
2875 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002876clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002878 clip_x11_request_selection(vimShell, gui.dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879}
2880
2881 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002882clip_mch_set_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002883 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884{
2885 clip_x11_set_selection(cbd);
2886}
2887
2888#if defined(FEAT_MENU) || defined(PROTO)
2889/*
2890 * Menu stuff.
2891 */
2892
2893/*
2894 * Make a menu either grey or not grey.
2895 */
2896 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002897gui_mch_menu_grey(vimmenu_T *menu, int grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898{
2899 if (menu->id != (Widget)0)
2900 {
2901 gui_mch_menu_hidden(menu, False);
2902 if (grey
2903#ifdef FEAT_GUI_MOTIF
2904 || !menu->sensitive
2905#endif
2906 )
2907 XtSetSensitive(menu->id, False);
2908 else
2909 XtSetSensitive(menu->id, True);
2910 }
2911}
2912
2913/*
2914 * Make menu item hidden or not hidden
2915 */
2916 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002917gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918{
2919 if (menu->id != (Widget)0)
2920 {
2921 if (hidden)
2922 XtUnmanageChild(menu->id);
2923 else
2924 XtManageChild(menu->id);
2925 }
2926}
2927
2928/*
2929 * This is called after setting all the menus to grey/hidden or not.
2930 */
2931 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002932gui_mch_draw_menubar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933{
2934 /* Nothing to do in X */
2935}
2936
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002938gui_x11_menu_cb(
2939 Widget w UNUSED,
2940 XtPointer client_data,
2941 XtPointer call_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942{
2943 gui_menu_cb((vimmenu_T *)client_data);
2944}
2945
2946#endif /* FEAT_MENU */
2947
2948
2949
2950/*
2951 * Function called when window closed. Works like ":qa".
2952 * Should put up a requester!
2953 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002955gui_x11_wm_protocol_handler(
2956 Widget w UNUSED,
2957 XtPointer client_data UNUSED,
2958 XEvent *event,
2959 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 /*
2962 * Only deal with Client messages.
2963 */
2964 if (event->type != ClientMessage)
2965 return;
2966
2967 /*
2968 * The WM_SAVE_YOURSELF event arrives when the window manager wants to
2969 * exit. That can be cancelled though, thus Vim shouldn't exit here.
2970 * Just sync our swap files.
2971 */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002972 if ((Atom)((XClientMessageEvent *)event)->data.l[0] ==
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 wm_atoms[SAVE_YOURSELF_IDX])
2974 {
2975 out_flush();
2976 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2977
2978 /* Set the window's WM_COMMAND property, to let the window manager
2979 * know we are done saving ourselves. We don't want to be restarted,
2980 * thus set argv to NULL. */
2981 XSetCommand(gui.dpy, XtWindow(vimShell), NULL, 0);
2982 return;
2983 }
2984
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002985 if ((Atom)((XClientMessageEvent *)event)->data.l[0] !=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 wm_atoms[DELETE_WINDOW_IDX])
2987 return;
2988
2989 gui_shell_closed();
2990}
2991
2992#ifdef FEAT_CLIENTSERVER
2993/*
2994 * Function called when property changed. Check for incoming commands
2995 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002997gui_x11_send_event_handler(
2998 Widget w UNUSED,
2999 XtPointer client_data UNUSED,
3000 XEvent *event,
3001 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002{
3003 XPropertyEvent *e = (XPropertyEvent *) event;
3004
3005 if (e->type == PropertyNotify && e->window == commWindow
3006 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02003007 serverEventProc(gui.dpy, event, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008}
3009#endif
3010
3011/*
3012 * Cursor blink functions.
3013 *
3014 * This is a simple state machine:
3015 * BLINK_NONE not blinking at all
3016 * BLINK_OFF blinking, cursor is not shown
3017 * BLINK_ON blinking, cursor is shown
3018 */
3019
3020#define BLINK_NONE 0
3021#define BLINK_OFF 1
3022#define BLINK_ON 2
3023
3024static int blink_state = BLINK_NONE;
3025static long_u blink_waittime = 700;
3026static long_u blink_ontime = 400;
3027static long_u blink_offtime = 250;
3028static XtIntervalId blink_timer = (XtIntervalId)0;
3029
Bram Moolenaar703a8042016-06-04 16:24:32 +02003030 int
3031gui_mch_is_blinking(void)
3032{
3033 return blink_state != BLINK_NONE;
3034}
3035
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +02003036 int
3037gui_mch_is_blink_off(void)
3038{
3039 return blink_state == BLINK_OFF;
3040}
3041
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01003043gui_mch_set_blinking(long waittime, long on, long off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044{
3045 blink_waittime = waittime;
3046 blink_ontime = on;
3047 blink_offtime = off;
3048}
3049
3050/*
3051 * Stop the cursor blinking. Show the cursor if it wasn't shown.
3052 */
3053 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01003054gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055{
3056 if (blink_timer != (XtIntervalId)0)
3057 {
3058 XtRemoveTimeOut(blink_timer);
3059 blink_timer = (XtIntervalId)0;
3060 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01003061 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 gui_update_cursor(TRUE, FALSE);
3063 blink_state = BLINK_NONE;
3064}
3065
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003067gui_x11_blink_cb(
3068 XtPointer timed_out UNUSED,
3069 XtIntervalId *interval_id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070{
3071 if (blink_state == BLINK_ON)
3072 {
3073 gui_undraw_cursor();
3074 blink_state = BLINK_OFF;
3075 blink_timer = XtAppAddTimeOut(app_context, blink_offtime,
3076 gui_x11_blink_cb, NULL);
3077 }
3078 else
3079 {
3080 gui_update_cursor(TRUE, FALSE);
3081 blink_state = BLINK_ON;
3082 blink_timer = XtAppAddTimeOut(app_context, blink_ontime,
3083 gui_x11_blink_cb, NULL);
3084 }
3085}
3086
3087/*
Bram Moolenaar1dccf632017-08-27 17:38:27 +02003088 * Start the cursor blinking. If it was already blinking, this restarts the
3089 * waiting time and shows the cursor.
3090 */
3091 void
3092gui_mch_start_blink(void)
3093{
3094 if (blink_timer != (XtIntervalId)0)
3095 XtRemoveTimeOut(blink_timer);
3096 /* Only switch blinking on if none of the times is zero */
3097 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
3098 {
3099 blink_timer = XtAppAddTimeOut(app_context, blink_waittime,
3100 gui_x11_blink_cb, NULL);
3101 blink_state = BLINK_ON;
3102 gui_update_cursor(TRUE, FALSE);
3103 }
3104}
3105
3106/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 * Return the RGB value of a pixel as a long.
3108 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003109 guicolor_T
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003110gui_mch_get_rgb(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111{
3112 XColor xc;
3113 Colormap colormap;
3114
3115 colormap = DefaultColormap(gui.dpy, XDefaultScreen(gui.dpy));
3116 xc.pixel = pixel;
3117 XQueryColor(gui.dpy, colormap, &xc);
3118
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003119 return (guicolor_T)(((xc.red & 0xff00) << 8) + (xc.green & 0xff00)
3120 + ((unsigned)xc.blue >> 8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121}
3122
3123/*
3124 * Add the callback functions.
3125 */
3126 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003127gui_x11_callbacks(Widget textArea, Widget vimForm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128{
3129 XtAddEventHandler(textArea, VisibilityChangeMask, FALSE,
3130 gui_x11_visibility_cb, (XtPointer)0);
3131
3132 XtAddEventHandler(textArea, ExposureMask, FALSE, gui_x11_expose_cb,
3133 (XtPointer)0);
3134
3135 XtAddEventHandler(vimShell, StructureNotifyMask, FALSE,
3136 gui_x11_resize_window_cb, (XtPointer)0);
3137
3138 XtAddEventHandler(vimShell, FocusChangeMask, FALSE, gui_x11_focus_change_cb,
3139 (XtPointer)0);
3140 /*
3141 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3142 * Only needed for some window managers.
3143 */
3144 if (vim_strchr(p_go, GO_POINTER) != NULL)
3145 {
3146 XtAddEventHandler(vimShell, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3147 (XtPointer)0);
3148 XtAddEventHandler(textArea, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3149 (XtPointer)0);
3150 XtAddEventHandler(textArea, EnterWindowMask, FALSE, gui_x11_enter_cb,
3151 (XtPointer)0);
3152 XtAddEventHandler(vimShell, EnterWindowMask, FALSE, gui_x11_enter_cb,
3153 (XtPointer)0);
3154 }
3155
3156 XtAddEventHandler(vimForm, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3157 (XtPointer)0);
3158 XtAddEventHandler(textArea, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3159 (XtPointer)0);
3160
3161 /* get pointer moved events from scrollbar, needed for 'mousefocus' */
3162 XtAddEventHandler(vimForm, PointerMotionMask,
3163 FALSE, gui_x11_mouse_cb, (XtPointer)1);
3164 XtAddEventHandler(textArea, ButtonPressMask | ButtonReleaseMask |
3165 ButtonMotionMask | PointerMotionMask,
3166 FALSE, gui_x11_mouse_cb, (XtPointer)0);
3167}
3168
3169/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003170 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003172 void
3173gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174{
3175 int rootx, rooty, winx, winy;
3176 Window root, child;
3177 unsigned int mask;
3178
3179 if (gui.wid && XQueryPointer(gui.dpy, gui.wid, &root, &child,
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003180 &rootx, &rooty, &winx, &winy, &mask)) {
3181 *x = winx;
3182 *y = winy;
3183 } else {
3184 *x = -1;
3185 *y = -1;
3186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187}
3188
3189 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003190gui_mch_setmouse(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191{
3192 if (gui.wid)
3193 XWarpPointer(gui.dpy, (Window)0, gui.wid, 0, 0, 0, 0, x, y);
3194}
3195
3196#if (defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)) || defined(PROTO)
3197 XButtonPressedEvent *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003198gui_x11_get_last_mouse_event(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199{
3200 return &last_mouse_event;
3201}
3202#endif
3203
3204#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
3205
3206/* Signs are currently always 2 chars wide. Hopefully the font is big enough
3207 * to provide room for the bitmap! */
3208# define SIGN_WIDTH (gui.char_width * 2)
3209
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003211gui_mch_drawsign(int row, int col, int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 XImage *sign;
3214
3215 if (gui.in_use && (sign = (XImage *)sign_get_image(typenr)) != NULL)
3216 {
3217 XClearArea(gui.dpy, gui.wid, TEXT_X(col), TEXT_Y(row) - sign->height,
3218 SIGN_WIDTH, gui.char_height, FALSE);
3219 XPutImage(gui.dpy, gui.wid, gui.text_gc, sign, 0, 0,
3220 TEXT_X(col) + (SIGN_WIDTH - sign->width) / 2,
3221 TEXT_Y(row) - sign->height,
3222 sign->width, sign->height);
3223 }
3224}
3225
3226 void *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003227gui_mch_register_sign(char_u *signfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228{
3229 XpmAttributes attrs;
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003230 XImage *sign = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 int status;
3232
3233 /*
3234 * Setup the color substitution table.
3235 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 if (signfile[0] != NUL && signfile[0] != '-')
3237 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003238 XpmColorSymbol color[5] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003240 {"none", NULL, 0},
3241 {"iconColor1", NULL, 0},
3242 {"bottomShadowColor", NULL, 0},
3243 {"topShadowColor", NULL, 0},
3244 {"selectColor", NULL, 0}
3245 };
3246 attrs.valuemask = XpmColorSymbols;
3247 attrs.numsymbols = 2;
3248 attrs.colorsymbols = color;
3249 attrs.colorsymbols[0].pixel = gui.back_pixel;
3250 attrs.colorsymbols[1].pixel = gui.norm_pixel;
3251 status = XpmReadFileToImage(gui.dpy, (char *)signfile,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 &sign, NULL, &attrs);
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003253 if (status == 0)
3254 {
3255 /* Sign width is fixed at two columns now.
3256 if (sign->width > gui.sign_width)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003257 gui.sign_width = sign->width + 8; */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 }
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003259 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003260 emsg(_(e_signdata));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 }
3262
3263 return (void *)sign;
3264}
3265
3266 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003267gui_mch_destroy_sign(void *sign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003269 XDestroyImage((XImage*)sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270}
3271#endif
3272
3273
3274#ifdef FEAT_MOUSESHAPE
3275/* The last set mouse pointer shape is remembered, to be used when it goes
3276 * from hidden to not hidden. */
3277static int last_shape = 0;
3278#endif
3279
3280/*
3281 * Use the blank mouse pointer or not.
3282 */
3283 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003284gui_mch_mousehide(
3285 int hide) /* TRUE = use blank ptr, FALSE = use parent ptr */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286{
3287 if (gui.pointer_hidden != hide)
3288 {
3289 gui.pointer_hidden = hide;
3290 if (hide)
3291 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3292 else
3293#ifdef FEAT_MOUSESHAPE
3294 mch_set_mouse_shape(last_shape);
3295#else
3296 XUndefineCursor(gui.dpy, gui.wid);
3297#endif
3298 }
3299}
3300
3301#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3302
3303/* Table for shape IDs. Keep in sync with the mshape_names[] table in
3304 * misc2.c! */
3305static int mshape_ids[] =
3306{
3307 XC_left_ptr, /* arrow */
3308 0, /* blank */
3309 XC_xterm, /* beam */
3310 XC_sb_v_double_arrow, /* updown */
3311 XC_sizing, /* udsizing */
3312 XC_sb_h_double_arrow, /* leftright */
3313 XC_sizing, /* lrsizing */
3314 XC_watch, /* busy */
3315 XC_X_cursor, /* no */
3316 XC_crosshair, /* crosshair */
3317 XC_hand1, /* hand1 */
3318 XC_hand2, /* hand2 */
3319 XC_pencil, /* pencil */
3320 XC_question_arrow, /* question */
3321 XC_right_ptr, /* right-arrow */
3322 XC_center_ptr, /* up-arrow */
3323 XC_left_ptr /* last one */
3324};
3325
3326 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003327mch_set_mouse_shape(int shape)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328{
3329 int id;
3330
3331 if (!gui.in_use)
3332 return;
3333
3334 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
3335 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3336 else
3337 {
3338 if (shape >= MSHAPE_NUMBERED)
3339 {
3340 id = shape - MSHAPE_NUMBERED;
3341 if (id >= XC_num_glyphs)
3342 id = XC_left_ptr;
3343 else
3344 id &= ~1; /* they are always even (why?) */
3345 }
3346 else
3347 id = mshape_ids[shape];
3348
3349 XDefineCursor(gui.dpy, gui.wid, XCreateFontCursor(gui.dpy, id));
3350 }
3351 if (shape != MSHAPE_HIDE)
3352 last_shape = shape;
3353}
3354#endif
3355
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003356#if (defined(FEAT_TOOLBAR) && defined(FEAT_BEVAL_GUI)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357/*
3358 * Set the balloon-eval used for the tooltip of a toolbar menu item.
3359 * The check for a non-toolbar item was added, because there is a crash when
3360 * passing a normal menu item here. Can't explain that, but better avoid it.
3361 */
3362 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003363gui_mch_menu_set_tip(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364{
3365 if (menu->id != NULL && menu->parent != NULL
3366 && menu_is_toolbar(menu->parent->name))
3367 {
3368 /* Always destroy and create the balloon, in case the string was
3369 * changed. */
3370 if (menu->tip != NULL)
3371 {
3372 gui_mch_destroy_beval_area(menu->tip);
3373 menu->tip = NULL;
3374 }
3375 if (menu->strings[MENU_INDEX_TIP] != NULL)
3376 menu->tip = gui_mch_create_beval_area(
3377 menu->id,
3378 menu->strings[MENU_INDEX_TIP],
3379 NULL,
3380 NULL);
3381 }
3382}
3383#endif