blob: f1d9bf8e5877fa4d07ee2a508b3200f9f388d96d [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
Bram Moolenaar734a8672019-12-02 22:49:38 +010060// Default resource values
Bram Moolenaar071d4272004-06-13 20:20:40 +000061#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
Bram Moolenaar734a8672019-12-02 22:49:38 +010077// use the default (CDE) colors
Bram Moolenaar071d4272004-06-13 20:20:40 +000078# 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
Bram Moolenaar734a8672019-12-02 22:49:38 +010088static 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000091
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'},
Bram Moolenaar734a8672019-12-02 22:49:38 +0100201 {XK_F35, 'F', 'P'}, // keysymdef.h defines up to F35
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202#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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100218 // Keypad keys:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219#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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100250 // End of list marker:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 {(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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100270// Resources for setting the foreground and background colors of menus
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271#define XtNmenuBackground "menuBackground"
272#define XtCMenuBackground "MenuBackground"
273#define XtNmenuForeground "menuForeground"
274#define XtCMenuForeground "MenuForeground"
275
Bram Moolenaar734a8672019-12-02 22:49:38 +0100276// Resources for setting the foreground and background colors of scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277#define XtNscrollBackground "scrollBackground"
278#define XtCScrollBackground "ScrollBackground"
279#define XtNscrollForeground "scrollForeground"
280#define XtCScrollForeground "ScrollForeground"
281
Bram Moolenaar734a8672019-12-02 22:49:38 +0100282// Resources for setting the foreground and background colors of tooltip
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283#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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100386# ifdef FEAT_GUI_ATHENA // with Motif the height is always computed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 {
388 XtNmenuHeight,
389 XtCMenuHeight,
390 XtRInt,
391 sizeof(int),
392 XtOffsetOf(gui_T, menu_height),
393 XtRImmediate,
Bram Moolenaar734a8672019-12-02 22:49:38 +0100394 (XtPointer)MENU_DEFAULT_HEIGHT // Should figure out at run time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 },
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 Moolenaar734a8672019-12-02 22:49:38 +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 Moolenaar734a8672019-12-02 22:49:38 +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 },
Bram Moolenaar734a8672019-12-02 22:49:38 +0100506#endif // FEAT_XIM
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507};
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{
Bram Moolenaar734a8672019-12-02 22:49:38 +0100517 // We handle these options ourselves
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 {"-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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100575 // Using an event handler for a channel that may be disconnected does
576 // not work, it hangs. Instead poll for messages.
Bram Moolenaar1dccf632017-08-27 17:38:27 +0200577 channel_handle_events(TRUE);
578 parse_queued_messages();
579
Bram Moolenaar734a8672019-12-02 22:49:38 +0100580 // repeat
Bram Moolenaar1dccf632017-08-27 17:38:27 +0200581 *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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100605 // This is needed for when redrawing is slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100622 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
624 gevent = (XExposeEvent *)event;
625 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
626
627 new_x = FILL_X(0);
628
Bram Moolenaar734a8672019-12-02 22:49:38 +0100629 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100639 // This is needed for when redrawing is slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 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
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200774 KeySym key_sym;
775 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100786 // XFree86 4.0.2 or newer: Be able to get UTF-8 characters even when
787 // the locale isn't utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100800 // XFree86 4.0.2 or newer: Be able to get UTF-8 characters even
801 // when the locale isn't utf-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 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 Moolenaar734a8672019-12-02 22:49:38 +0100813 // Do conversion from 'termencoding' to 'encoding'. When using
814 // Xutf8LookupString() it has already been done.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 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 Moolenaar734a8672019-12-02 22:49:38 +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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100832 // Translate CSI to K_CSI, otherwise it could be recognized as the
833 // start of a special key.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 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)
Bram Moolenaar734a8672019-12-02 22:49:38 +0100867 string[0] = ' '; // Otherwise Ctrl-Space doesn't work
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
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
Bram Moolenaar734a8672019-12-02 22:49:38 +0100877 // why do we get XK_ISO_Left_Tab instead of XK_Tab for shift-tab?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 if (key_sym == XK_ISO_Left_Tab)
879 {
880 key_sym = XK_Tab;
881 string[0] = TAB;
882 len = 1;
883 }
884#endif
885
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200886 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
887 // done later, the same as it happens for the terminal. Hopefully that
888 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
890 if (len == 1 && string[0] == CSI)
891 {
892 string[1] = KS_EXTRA;
893 string[2] = (int)KE_CSI;
894 len = -3;
895 }
896
Bram Moolenaar734a8672019-12-02 22:49:38 +0100897 // Check for special keys. Also do this when len == 1 (key has an ASCII
898 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 if (len == 0 || len == 1)
900 {
901 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
902 {
903 if (special_keys[i].key_sym == key_sym)
904 {
905 string[0] = CSI;
906 string[1] = special_keys[i].vim_code0;
907 string[2] = special_keys[i].vim_code1;
908 len = -3;
909 break;
910 }
911 }
912 }
913
Bram Moolenaar734a8672019-12-02 22:49:38 +0100914 // Unrecognised key is ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 if (len == 0)
916 goto theend;
917
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200918 // Handle modifiers.
919 modifiers = 0;
920 if (ev_press->state & ShiftMask)
921 modifiers |= MOD_MASK_SHIFT;
922 if (ev_press->state & ControlMask)
Bram Moolenaarc9983702020-05-28 21:03:53 +0200923 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200924 modifiers |= MOD_MASK_CTRL;
Bram Moolenaarc9983702020-05-28 21:03:53 +0200925 if (len == 1 && string[0] < 0x20)
926 // Use the character before applyng CTRL.
927 string[0] += 0x40;
928 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200929 if (ev_press->state & Mod1Mask)
930 modifiers |= MOD_MASK_ALT;
931 if (ev_press->state & Mod4Mask)
932 modifiers |= MOD_MASK_META;
933
934 /*
935 * For some keys a shift modifier is translated into another key
936 * code.
937 */
938 if (len == -3)
939 key = TO_SPECIAL(string[1], string[2]);
940 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +0200941 {
942 string[len] = NUL;
943 key = mb_ptr2char(string);
944 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200945 key = simplify_key(key, &modifiers);
946 if (key == CSI)
947 key = K_CSI;
948 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200950 string[0] = CSI;
951 string[1] = K_SECOND(key);
952 string[2] = K_THIRD(key);
953 len = 3;
954 }
955 else
956 {
Bram Moolenaar820ffa52020-06-21 15:09:14 +0200957 len = mb_char2bytes(key, string);
Bram Moolenaar80a20df2020-05-26 22:14:27 +0200958
959 // Remove the SHIFT modifier for keys where it's already included,
960 // e.g., '(', '!' and '*'.
Bram Moolenaardaff0fb2020-09-27 13:16:46 +0200961 modifiers = may_remove_shift_modifier(modifiers, key);
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200962 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
Bram Moolenaarfd615a32020-05-16 14:01:51 +0200964 if (modifiers != 0)
965 {
966 string2[0] = CSI;
967 string2[1] = KS_MODIFIER;
968 string2[2] = modifiers;
969 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 }
971
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +0200972 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +0200974 int int_ch = check_for_interrupt(key, modifiers);
975
976 if (int_ch != NUL)
977 {
978 trash_input_buf();
979 string[0] = int_ch;
980 len = 1;
981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 }
983
984 add_to_input_buf(string, len);
985
986 /*
987 * blank out the pointer if necessary
988 */
989 if (p_mh)
990 gui_mch_mousehide(TRUE);
991
992#if defined(FEAT_BEVAL_TIP)
993 {
994 BalloonEval *be;
995
996 if ((be = gui_mch_currently_showing_beval()) != NULL)
997 gui_mch_unpost_balloon(be);
998 }
999#endif
1000theend:
Bram Moolenaar734a8672019-12-02 22:49:38 +01001001 {} // some compilers need a statement here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002#ifdef FEAT_XIM
1003 if (string_alloced)
1004 XtFree((char *)string);
1005#endif
1006}
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001009gui_x11_mouse_cb(
1010 Widget w UNUSED,
1011 XtPointer dud UNUSED,
1012 XEvent *event,
1013 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014{
1015 static XtIntervalId timer = (XtIntervalId)0;
1016 static int timed_out = TRUE;
1017
1018 int button;
1019 int repeated_click = FALSE;
1020 int x, y;
1021 int_u x_modifiers;
1022 int_u vim_modifiers;
1023
1024 if (event->type == MotionNotify)
1025 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001026 // Get the latest position, avoids lagging behind on a drag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 x = event->xmotion.x;
1028 y = event->xmotion.y;
1029 x_modifiers = event->xmotion.state;
1030 button = (x_modifiers & (Button1Mask | Button2Mask | Button3Mask))
1031 ? MOUSE_DRAG : ' ';
1032
1033 /*
1034 * if our pointer is currently hidden, then we should show it.
1035 */
1036 gui_mch_mousehide(FALSE);
1037
Bram Moolenaar734a8672019-12-02 22:49:38 +01001038 if (button != MOUSE_DRAG) // just moving the rodent
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 {
1040#ifdef FEAT_MENU
Bram Moolenaar734a8672019-12-02 22:49:38 +01001041 if (dud) // moved in vimForm
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 y -= gui.menu_height;
1043#endif
1044 gui_mouse_moved(x, y);
1045 return;
1046 }
1047 }
1048 else
1049 {
1050 x = event->xbutton.x;
1051 y = event->xbutton.y;
1052 if (event->type == ButtonPress)
1053 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001054 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 if (!timed_out)
1056 {
1057 XtRemoveTimeOut(timer);
1058 repeated_click = TRUE;
1059 }
1060 timed_out = FALSE;
1061 timer = XtAppAddTimeOut(app_context, (long_u)p_mouset,
1062 gui_x11_timer_cb, &timed_out);
1063 switch (event->xbutton.button)
1064 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001065 // keep in sync with gui_gtk_x11.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 case Button1: button = MOUSE_LEFT; break;
1067 case Button2: button = MOUSE_MIDDLE; break;
1068 case Button3: button = MOUSE_RIGHT; break;
1069 case Button4: button = MOUSE_4; break;
1070 case Button5: button = MOUSE_5; break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001071 case 6: button = MOUSE_7; break;
1072 case 7: button = MOUSE_6; break;
1073 case 8: button = MOUSE_X1; break;
1074 case 9: button = MOUSE_X2; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 default:
Bram Moolenaar734a8672019-12-02 22:49:38 +01001076 return; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 }
1078 }
1079 else if (event->type == ButtonRelease)
1080 button = MOUSE_RELEASE;
1081 else
Bram Moolenaar734a8672019-12-02 22:49:38 +01001082 return; // Unknown mouse event type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083
1084 x_modifiers = event->xbutton.state;
1085#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1086 last_mouse_event = event->xbutton;
1087#endif
1088 }
1089
1090 vim_modifiers = 0x0;
1091 if (x_modifiers & ShiftMask)
1092 vim_modifiers |= MOUSE_SHIFT;
1093 if (x_modifiers & ControlMask)
1094 vim_modifiers |= MOUSE_CTRL;
Bram Moolenaar734a8672019-12-02 22:49:38 +01001095 if (x_modifiers & Mod1Mask) // Alt or Meta key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 vim_modifiers |= MOUSE_ALT;
1097
1098 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
1099}
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101/*
1102 * End of call-back routines
1103 */
1104
1105/*
1106 * Parse the GUI related command-line arguments. Any arguments used are
1107 * deleted from argv, and *argc is decremented accordingly. This is called
1108 * when vim is started, whether or not the GUI has been started.
1109 */
1110 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001111gui_mch_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112{
1113 int arg;
1114 int i;
1115
1116 /*
1117 * Move all the entries in argv which are relevant to X into gui_argv.
1118 */
1119 gui_argc = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001120 gui_argv = LALLOC_MULT(char *, *argc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 if (gui_argv == NULL)
1122 return;
1123 gui_argv[gui_argc++] = argv[0];
1124 arg = 1;
1125 while (arg < *argc)
1126 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001127 // Look for argv[arg] in cmdline_options[] table
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001128 for (i = 0; i < (int)XtNumber(cmdline_options); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 if (strcmp(argv[arg], cmdline_options[i].option) == 0)
1130 break;
1131
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001132 if (i < (int)XtNumber(cmdline_options))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001134 // Remember finding "-rv" or "-reverse"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 if (strcmp("-rv", argv[arg]) == 0
1136 || strcmp("-reverse", argv[arg]) == 0)
1137 found_reverse_arg = TRUE;
1138 else if ((strcmp("-fn", argv[arg]) == 0
1139 || strcmp("-font", argv[arg]) == 0)
1140 && arg + 1 < *argc)
1141 font_argument = argv[arg + 1];
1142
Bram Moolenaar734a8672019-12-02 22:49:38 +01001143 // Found match in table, so move it into gui_argv
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 gui_argv[gui_argc++] = argv[arg];
1145 if (--*argc > arg)
1146 {
1147 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1148 * sizeof(char *));
1149 if (cmdline_options[i].argKind != XrmoptionNoArg)
1150 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001151 // Move the options argument as well
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 gui_argv[gui_argc++] = argv[arg];
1153 if (--*argc > arg)
1154 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1155 * sizeof(char *));
1156 }
1157 }
1158 argv[*argc] = NULL;
1159 }
1160 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161#ifdef FEAT_NETBEANS_INTG
1162 if (strncmp("-nb", argv[arg], 3) == 0)
1163 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001164 gui.dofork = FALSE; // don't fork() when starting GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 netbeansArg = argv[arg];
1166 mch_memmove(&argv[arg], &argv[arg + 1],
1167 (--*argc - arg) * sizeof(char *));
1168 argv[*argc] = NULL;
1169 }
1170 else
1171#endif
1172 arg++;
1173 }
1174}
1175
1176#ifndef XtSpecificationRelease
1177# define CARDINAL (Cardinal *)
1178#else
1179# if XtSpecificationRelease == 4
1180# define CARDINAL (Cardinal *)
1181# else
1182# define CARDINAL (int *)
1183# endif
1184#endif
1185
1186/*
1187 * Check if the GUI can be started. Called before gvimrc is sourced.
1188 * Return OK or FAIL.
1189 */
1190 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001191gui_mch_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192{
1193#ifdef FEAT_XIM
1194 XtSetLanguageProc(NULL, NULL, NULL);
1195#endif
1196 open_app_context();
1197 if (app_context != NULL)
1198 gui.dpy = XtOpenDisplay(app_context, 0, VIM_NAME, VIM_CLASS,
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001199 cmdline_options, XtNumber(cmdline_options),
1200 CARDINAL &gui_argc, gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201
Bram Moolenaar889fe2c2018-05-13 16:23:40 +02001202# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
1203 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001204 // The call to XtOpenDisplay() may have set the locale from the
1205 // environment. Set LC_NUMERIC to "C" to make sure that strtod() uses a
1206 // decimal point, not a comma.
Bram Moolenaar889fe2c2018-05-13 16:23:40 +02001207 char *p = setlocale(LC_NUMERIC, NULL);
1208
1209 if (p == NULL || strcmp(p, "C") != 0)
1210 setlocale(LC_NUMERIC, "C");
1211 }
1212# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 if (app_context == NULL || gui.dpy == NULL)
1214 {
1215 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001216 emsg(_(e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 return FAIL;
1218 }
1219 return OK;
1220}
1221
1222
1223#ifdef USE_XSMP
1224/*
1225 * Handle XSMP processing, de-registering the attachment upon error
1226 */
1227static XtInputId _xsmp_xtinputid;
1228
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001230local_xsmp_handle_requests(
1231 XtPointer c UNUSED,
1232 int *s UNUSED,
1233 XtInputId *i UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234{
1235 if (xsmp_handle_requests() == FAIL)
1236 XtRemoveInput(_xsmp_xtinputid);
1237}
1238#endif
1239
1240
1241/*
1242 * Initialise the X GUI. Create all the windows, set up all the call-backs etc.
1243 * Returns OK for success, FAIL when the GUI can't be started.
1244 */
1245 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001246gui_mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247{
1248 XtGCMask gc_mask;
1249 XGCValues gc_vals;
1250 int x, y, mask;
1251 unsigned w, h;
1252
1253#if 0
Bram Moolenaar734a8672019-12-02 22:49:38 +01001254 // Uncomment this to enable synchronous mode for debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 XSynchronize(gui.dpy, True);
1256#endif
1257
1258 vimShell = XtVaAppCreateShell(VIM_NAME, VIM_CLASS,
1259 applicationShellWidgetClass, gui.dpy, NULL);
1260
1261 /*
1262 * Get the application resources
1263 */
1264 XtVaGetApplicationResources(vimShell, (XtPointer)&gui,
1265 vim_resources, XtNumber(vim_resources), NULL);
1266
1267 gui.scrollbar_height = gui.scrollbar_width;
1268
1269 /*
1270 * Get the colors ourselves. Using the automatic conversion doesn't
1271 * handle looking for approximate colors.
1272 */
Bram Moolenaar734a8672019-12-02 22:49:38 +01001273 // NOTE: These next few lines are an exact duplicate of gui_athena.c's
1274 // gui_mch_def_colors(). Why?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 gui.menu_fg_pixel = gui_get_color((char_u *)gui.rsrc_menu_fg_name);
1276 gui.menu_bg_pixel = gui_get_color((char_u *)gui.rsrc_menu_bg_name);
1277 gui.scroll_fg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_fg_name);
1278 gui.scroll_bg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_bg_name);
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001279#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 gui.tooltip_fg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_fg_name);
1281 gui.tooltip_bg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_bg_name);
1282#endif
1283
1284#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
Bram Moolenaar734a8672019-12-02 22:49:38 +01001285 // If the menu height was set, don't change it at runtime
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 if (gui.menu_height != MENU_DEFAULT_HEIGHT)
1287 gui.menu_height_fixed = TRUE;
1288#endif
1289
Bram Moolenaar734a8672019-12-02 22:49:38 +01001290 // Set default foreground and background colours
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 gui.norm_pixel = gui.def_norm_pixel;
1292 gui.back_pixel = gui.def_back_pixel;
1293
Bram Moolenaar734a8672019-12-02 22:49:38 +01001294 // Check if reverse video needs to be applied (on Sun it's done by X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 if (gui.rsrc_rev_video && gui_get_lightness(gui.back_pixel)
1296 > gui_get_lightness(gui.norm_pixel))
1297 {
1298 gui.norm_pixel = gui.def_back_pixel;
1299 gui.back_pixel = gui.def_norm_pixel;
1300 gui.def_norm_pixel = gui.norm_pixel;
1301 gui.def_back_pixel = gui.back_pixel;
1302 }
1303
Bram Moolenaar734a8672019-12-02 22:49:38 +01001304 // Get the colors from the "Normal", "Tooltip", "Scrollbar" and "Menu"
1305 // group (set in syntax.c or in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 set_normal_colors();
1307
1308 /*
1309 * Check that none of the colors are the same as the background color
1310 */
1311 gui_check_colors();
1312
1313 /*
1314 * Set up the GCs. The font attributes will be set in gui_init_font().
1315 */
1316 gc_mask = GCForeground | GCBackground;
1317 gc_vals.foreground = gui.norm_pixel;
1318 gc_vals.background = gui.back_pixel;
1319 gui.text_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1320
1321 gc_vals.foreground = gui.back_pixel;
1322 gc_vals.background = gui.norm_pixel;
1323 gui.back_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1324
1325 gc_mask |= GCFunction;
1326 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1327 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1328 gc_vals.function = GXxor;
1329 gui.invert_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1330
1331 gui.visibility = VisibilityUnobscured;
1332 x11_setup_atoms(gui.dpy);
1333
1334 if (gui_win_x != -1 && gui_win_y != -1)
1335 gui_mch_set_winpos(gui_win_x, gui_win_y);
1336
Bram Moolenaar734a8672019-12-02 22:49:38 +01001337 // Now adapt the supplied(?) geometry-settings
1338 // Added by Kjetil Jacobsen <kjetilja@stud.cs.uit.no>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 if (gui.geom != NULL && *gui.geom != NUL)
1340 {
1341 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
1342 if (mask & WidthValue)
1343 Columns = w;
1344 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00001345 {
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001346 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00001347 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00001349 }
Bram Moolenaarc33916a2013-07-01 21:43:08 +02001350 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * Set the (x,y) position of the main window only if specified in the
1353 * users geometry, so we get good defaults when they don't. This needs
1354 * to be done before the shell is popped up.
1355 */
1356 if (mask & (XValue|YValue))
1357 XtVaSetValues(vimShell, XtNgeometry, gui.geom, NULL);
1358 }
1359
1360 gui_x11_create_widgets();
1361
1362 /*
1363 * Add an icon to Vim (Marcel Douben: 11 May 1998).
1364 */
1365 if (vim_strchr(p_go, GO_ICON) != NULL)
1366 {
1367#ifndef HAVE_XPM
1368# include "vim_icon.xbm"
1369# include "vim_mask.xbm"
1370
1371 Arg arg[2];
1372
1373 XtSetArg(arg[0], XtNiconPixmap,
1374 XCreateBitmapFromData(gui.dpy,
1375 DefaultRootWindow(gui.dpy),
1376 (char *)vim_icon_bits,
1377 vim_icon_width,
1378 vim_icon_height));
1379 XtSetArg(arg[1], XtNiconMask,
1380 XCreateBitmapFromData(gui.dpy,
1381 DefaultRootWindow(gui.dpy),
1382 (char *)vim_mask_icon_bits,
1383 vim_mask_icon_width,
1384 vim_mask_icon_height));
1385 XtSetValues(vimShell, arg, (Cardinal)2);
1386#else
Bram Moolenaar734a8672019-12-02 22:49:38 +01001387// Use Pixmaps, looking much nicer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388
Bram Moolenaar734a8672019-12-02 22:49:38 +01001389// If you get an error message here, you still need to unpack the runtime
1390// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391# ifdef magick
1392# undef magick
1393# endif
1394# define magick vim32x32
1395# include "../runtime/vim32x32.xpm"
1396# undef magick
1397# define magick vim16x16
1398# include "../runtime/vim16x16.xpm"
1399# undef magick
1400# define magick vim48x48
1401# include "../runtime/vim48x48.xpm"
1402# undef magick
1403
1404 static Pixmap icon = 0;
1405 static Pixmap icon_mask = 0;
1406 static char **magick = vim32x32;
1407 Window root_window;
1408 XIconSize *size;
1409 int number_sizes;
1410 Display *dsp;
1411 Screen *scr;
1412 XpmAttributes attr;
1413 Colormap cmap;
1414
1415 /*
1416 * Adjust the icon to the preferences of the actual window manager.
1417 */
1418 root_window = XRootWindowOfScreen(XtScreen(vimShell));
1419 if (XGetIconSizes(XtDisplay(vimShell), root_window,
1420 &size, &number_sizes) != 0)
1421 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 if (number_sizes > 0)
1423 {
Bram Moolenaar6f292662013-07-14 15:06:50 +02001424 if (size->max_height >= 48 && size->max_width >= 48)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 magick = vim48x48;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001426 else if (size->max_height >= 32 && size->max_width >= 32)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 magick = vim32x32;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001428 else if (size->max_height >= 16 && size->max_width >= 16)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 magick = vim16x16;
1430 }
1431 }
1432
1433 dsp = XtDisplay(vimShell);
1434 scr = XtScreen(vimShell);
1435
1436 cmap = DefaultColormap(dsp, DefaultScreen(dsp));
1437 XtVaSetValues(vimShell, XtNcolormap, cmap, NULL);
1438
1439 attr.valuemask = 0L;
1440 attr.valuemask = XpmCloseness | XpmReturnPixels | XpmColormap | XpmDepth;
Bram Moolenaar734a8672019-12-02 22:49:38 +01001441 attr.closeness = 65535; // accuracy isn't crucial
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 attr.colormap = cmap;
1443 attr.depth = DefaultDepthOfScreen(scr);
1444
1445 if (!icon)
Bram Moolenaare8208012008-06-20 09:59:25 +00001446 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 XpmCreatePixmapFromData(dsp, root_window, magick, &icon,
1448 &icon_mask, &attr);
Bram Moolenaare8208012008-06-20 09:59:25 +00001449 XpmFreeAttributes(&attr);
1450 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451
1452# ifdef FEAT_GUI_ATHENA
1453 XtVaSetValues(vimShell, XtNiconPixmap, icon, XtNiconMask, icon_mask, NULL);
1454# else
1455 XtVaSetValues(vimShell, XmNiconPixmap, icon, XmNiconMask, icon_mask, NULL);
1456# endif
1457#endif
1458 }
1459
1460 if (gui.color_approx)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001461 emsg(_("Vim E458: Cannot allocate colormap entry, some colors may be incorrect"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001463#ifdef FEAT_BEVAL_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 gui_init_tooltip_font();
1465#endif
1466#ifdef FEAT_MENU
1467 gui_init_menu_font();
1468#endif
1469
1470#ifdef USE_XSMP
Bram Moolenaar734a8672019-12-02 22:49:38 +01001471 // Attach listener on ICE connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 if (-1 != xsmp_icefd)
1473 _xsmp_xtinputid = XtAppAddInput(app_context, xsmp_icefd,
1474 (XtPointer)XtInputReadMask, local_xsmp_handle_requests, NULL);
1475#endif
1476
1477 return OK;
1478}
1479
1480/*
1481 * Called when starting the GUI fails after calling gui_mch_init().
1482 */
1483 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001484gui_mch_uninit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485{
1486 gui_x11_destroy_widgets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487 XtCloseDisplay(gui.dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 gui.dpy = NULL;
1489 vimShell = (Widget)0;
Bram Moolenaard23a8232018-02-10 18:45:26 +01001490 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491}
1492
1493/*
1494 * Called when the foreground or background color has been changed.
1495 */
1496 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001497gui_mch_new_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498{
1499 long_u gc_mask;
1500 XGCValues gc_vals;
1501
1502 gc_mask = GCForeground | GCBackground;
1503 gc_vals.foreground = gui.norm_pixel;
1504 gc_vals.background = gui.back_pixel;
1505 if (gui.text_gc != NULL)
1506 XChangeGC(gui.dpy, gui.text_gc, gc_mask, &gc_vals);
1507
1508 gc_vals.foreground = gui.back_pixel;
1509 gc_vals.background = gui.norm_pixel;
1510 if (gui.back_gc != NULL)
1511 XChangeGC(gui.dpy, gui.back_gc, gc_mask, &gc_vals);
1512
1513 gc_mask |= GCFunction;
1514 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1515 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1516 gc_vals.function = GXxor;
1517 if (gui.invert_gc != NULL)
1518 XChangeGC(gui.dpy, gui.invert_gc, gc_mask, &gc_vals);
1519
1520 gui_x11_set_back_color();
1521}
1522
1523/*
1524 * Open the GUI window which was created by a call to gui_mch_init().
1525 */
1526 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001527gui_mch_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528{
Bram Moolenaar734a8672019-12-02 22:49:38 +01001529 // Actually open the window
Bram Moolenaara5792f52005-11-23 21:25:05 +00001530 XtRealizeWidget(vimShell);
1531 XtManageChild(XtNameToWidget(vimShell, "*vimForm"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532
1533 gui.wid = gui_x11_get_wid();
1534 gui.blank_pointer = gui_x11_create_blank_mouse();
1535
1536 /*
1537 * Add a callback for the Close item on the window managers menu, and the
1538 * save-yourself event.
1539 */
1540 wm_atoms[SAVE_YOURSELF_IDX] =
1541 XInternAtom(gui.dpy, "WM_SAVE_YOURSELF", False);
1542 wm_atoms[DELETE_WINDOW_IDX] =
1543 XInternAtom(gui.dpy, "WM_DELETE_WINDOW", False);
1544 XSetWMProtocols(gui.dpy, XtWindow(vimShell), wm_atoms, 2);
1545 XtAddEventHandler(vimShell, NoEventMask, True, gui_x11_wm_protocol_handler,
1546 NULL);
1547#ifdef HAVE_X11_XMU_EDITRES_H
1548 /*
1549 * Enable editres protocol (see "man editres").
1550 * Usually will need to add -lXmu to the linker line as well.
1551 */
1552 XtAddEventHandler(vimShell, (EventMask)0, True, _XEditResCheckMessages,
1553 (XtPointer)NULL);
1554#endif
1555
1556#ifdef FEAT_CLIENTSERVER
1557 if (serverName == NULL && serverDelayedStartName != NULL)
1558 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001559 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 commWindow = XtWindow(vimShell);
1561 (void)serverRegisterName(gui.dpy, serverDelayedStartName);
1562 }
1563 else
1564 {
1565 /*
1566 * Cannot handle "widget-less" windows with XtProcessEvent() we'll
1567 * have to change the "server" registration to that of the main window
1568 * If we have not registered a name yet, remember the window
1569 */
1570 serverChangeRegisteredWindow(gui.dpy, XtWindow(vimShell));
1571 }
1572 XtAddEventHandler(vimShell, PropertyChangeMask, False,
1573 gui_x11_send_event_handler, NULL);
1574#endif
1575
1576
1577#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
Bram Moolenaar734a8672019-12-02 22:49:38 +01001578 // The Athena GUI needs this again after opening the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 gui_position_menu();
1580# ifdef FEAT_TOOLBAR
1581 gui_mch_set_toolbar_pos(0, gui.menu_height, gui.menu_width,
1582 gui.toolbar_height);
1583# endif
1584#endif
1585
Bram Moolenaar734a8672019-12-02 22:49:38 +01001586 // Get the colors for the highlight groups (gui_check_colors() might have
1587 // changed them)
1588 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590#ifdef FEAT_XIM
1591 xim_init();
1592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
1594 return OK;
1595}
1596
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001597#if defined(FEAT_BEVAL_GUI) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598/*
1599 * Convert the tooltip fontset name to an XFontSet.
1600 */
1601 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001602gui_init_tooltip_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603{
1604 XrmValue from, to;
1605
1606 from.addr = (char *)gui.rsrc_tooltip_font_name;
1607 from.size = strlen(from.addr);
1608 to.addr = (XtPointer)&gui.tooltip_fontset;
1609 to.size = sizeof(XFontSet);
1610
1611 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1612 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001613 // Failed. What to do?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 }
1615}
1616#endif
1617
1618#if defined(FEAT_MENU) || defined(PROTO)
Bram Moolenaar734a8672019-12-02 22:49:38 +01001619// Convert the menu font/fontset name to an XFontStruct/XFontset
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001621gui_init_menu_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622{
1623 XrmValue from, to;
1624
1625#ifdef FONTSET_ALWAYS
1626 from.addr = (char *)gui.rsrc_menu_font_name;
1627 from.size = strlen(from.addr);
1628 to.addr = (XtPointer)&gui.menu_fontset;
1629 to.size = sizeof(GuiFontset);
1630
1631 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1632 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001633 // Failed. What to do?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 }
1635#else
1636 from.addr = (char *)gui.rsrc_menu_font_name;
1637 from.size = strlen(from.addr);
1638 to.addr = (XtPointer)&gui.menu_font;
1639 to.size = sizeof(GuiFont);
1640
1641 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontStruct, &to) == False)
1642 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001643 // Failed. What to do?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 }
1645#endif
1646}
1647#endif
1648
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001650gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651{
1652#if 0
Bram Moolenaar734a8672019-12-02 22:49:38 +01001653 // Lesstif gives an error message here, and so does Solaris. The man page
1654 // says that this isn't needed when exiting, so just skip it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 XtCloseDisplay(gui.dpy);
1656#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01001657 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658}
1659
1660/*
1661 * Get the position of the top left corner of the window.
1662 */
1663 int
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001664gui_mch_get_winpos(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665{
1666 Dimension xpos, ypos;
1667
1668 XtVaGetValues(vimShell,
1669 XtNx, &xpos,
1670 XtNy, &ypos,
1671 NULL);
1672 *x = xpos;
1673 *y = ypos;
1674 return OK;
1675}
1676
1677/*
1678 * Set the position of the top left corner of the window to the given
1679 * coordinates.
1680 */
1681 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001682gui_mch_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683{
1684 XtVaSetValues(vimShell,
1685 XtNx, x,
1686 XtNy, y,
1687 NULL);
1688}
1689
1690 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001691gui_mch_set_shellsize(
1692 int width,
1693 int height,
1694 int min_width,
1695 int min_height,
1696 int base_width,
1697 int base_height,
1698 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699{
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001700#ifdef FEAT_XIM
1701 height += xim_get_status_area_height(),
1702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 XtVaSetValues(vimShell,
1704 XtNwidthInc, gui.char_width,
1705 XtNheightInc, gui.char_height,
1706#if defined(XtSpecificationRelease) && XtSpecificationRelease >= 4
1707 XtNbaseWidth, base_width,
1708 XtNbaseHeight, base_height,
1709#endif
1710 XtNminWidth, min_width,
1711 XtNminHeight, min_height,
1712 XtNwidth, width,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 XtNheight, height,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 NULL);
1715}
1716
1717/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00001718 * Allow 10 pixels for horizontal borders, 'guiheadroom' for vertical borders.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 * Is there no way in X to find out how wide the borders really are?
1720 */
1721 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001722gui_mch_get_screen_dimensions(
1723 int *screen_w,
1724 int *screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 *screen_w = DisplayWidth(gui.dpy, DefaultScreen(gui.dpy)) - 10;
1727 *screen_h = DisplayHeight(gui.dpy, DefaultScreen(gui.dpy)) - p_ghr;
1728}
1729
1730/*
1731 * Initialise vim to use the font "font_name". If it's NULL, pick a default
1732 * font.
1733 * If "fontset" is TRUE, load the "font_name" as a fontset.
1734 * Return FAIL if the font could not be loaded, OK otherwise.
1735 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001737gui_mch_init_font(
1738 char_u *font_name,
1739 int do_fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740{
1741 XFontStruct *font = NULL;
1742
1743#ifdef FEAT_XFONTSET
1744 XFontSet fontset = NULL;
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001747#ifdef FEAT_GUI_MOTIF
Bram Moolenaar734a8672019-12-02 22:49:38 +01001748 // A font name equal "*" is indicating, that we should activate the font
1749 // selection dialogue to get a new font name. So let us do it here.
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001750 if (font_name != NULL && STRCMP(font_name, "*") == 0)
1751 font_name = gui_xm_select_font(hl_get_font_name());
1752#endif
1753
1754#ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (do_fontset)
1756 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001757 // If 'guifontset' is set, VIM treats all font specifications as if
1758 // they were fontsets, and 'guifontset' becomes the default.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 if (font_name != NULL)
1760 {
1761 fontset = (XFontSet)gui_mch_get_fontset(font_name, FALSE, TRUE);
1762 if (fontset == NULL)
1763 return FAIL;
1764 }
1765 }
1766 else
1767#endif
1768 {
1769 if (font_name == NULL)
1770 {
1771 /*
1772 * If none of the fonts in 'font' could be loaded, try the one set
1773 * in the X resource, and finally just try using DFLT_FONT, which
1774 * will hopefully always be there.
1775 */
1776 font_name = gui.rsrc_font_name;
1777 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1778 if (font == NULL)
1779 font_name = (char_u *)DFLT_FONT;
1780 }
1781 if (font == NULL)
1782 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1783 if (font == NULL)
1784 return FAIL;
1785 }
1786
1787 gui_mch_free_font(gui.norm_font);
1788#ifdef FEAT_XFONTSET
1789 gui_mch_free_fontset(gui.fontset);
1790
1791 if (fontset != NULL)
1792 {
1793 gui.norm_font = NOFONT;
1794 gui.fontset = (GuiFontset)fontset;
1795 gui.char_width = fontset_width(fontset);
1796 gui.char_height = fontset_height(fontset) + p_linespace;
1797 gui.char_ascent = fontset_ascent(fontset) + p_linespace / 2;
1798 }
1799 else
1800#endif
1801 {
1802 gui.norm_font = (GuiFont)font;
1803#ifdef FEAT_XFONTSET
1804 gui.fontset = NOFONTSET;
1805#endif
1806 gui.char_width = font->max_bounds.width;
1807 gui.char_height = font->ascent + font->descent + p_linespace;
1808 gui.char_ascent = font->ascent + p_linespace / 2;
1809 }
1810
1811 hl_set_font_name(font_name);
1812
1813 /*
1814 * Try to load other fonts for bold, italic, and bold-italic.
1815 * We should also try to work out what font to use for these when they are
1816 * not specified by X resources, but we don't yet.
1817 */
1818 if (font_name == gui.rsrc_font_name)
1819 {
1820 if (gui.bold_font == NOFONT
1821 && gui.rsrc_bold_font_name != NULL
1822 && *gui.rsrc_bold_font_name != NUL)
1823 gui.bold_font = gui_mch_get_font(gui.rsrc_bold_font_name, FALSE);
1824 if (gui.ital_font == NOFONT
1825 && gui.rsrc_ital_font_name != NULL
1826 && *gui.rsrc_ital_font_name != NUL)
1827 gui.ital_font = gui_mch_get_font(gui.rsrc_ital_font_name, FALSE);
1828 if (gui.boldital_font == NOFONT
1829 && gui.rsrc_boldital_font_name != NULL
1830 && *gui.rsrc_boldital_font_name != NUL)
1831 gui.boldital_font = gui_mch_get_font(gui.rsrc_boldital_font_name,
1832 FALSE);
1833 }
1834 else
1835 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001836 // When not using the font specified by the resources, also don't use
1837 // the bold/italic fonts, otherwise setting 'guifont' will look very
1838 // strange.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 if (gui.bold_font != NOFONT)
1840 {
1841 XFreeFont(gui.dpy, (XFontStruct *)gui.bold_font);
1842 gui.bold_font = NOFONT;
1843 }
1844 if (gui.ital_font != NOFONT)
1845 {
1846 XFreeFont(gui.dpy, (XFontStruct *)gui.ital_font);
1847 gui.ital_font = NOFONT;
1848 }
1849 if (gui.boldital_font != NOFONT)
1850 {
1851 XFreeFont(gui.dpy, (XFontStruct *)gui.boldital_font);
1852 gui.boldital_font = NOFONT;
1853 }
1854 }
1855
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001856#ifdef FEAT_GUI_MOTIF
1857 gui_motif_synch_fonts();
1858#endif
1859
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 return OK;
1861}
1862
1863/*
1864 * Get a font structure for highlighting.
1865 */
1866 GuiFont
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001867gui_mch_get_font(char_u *name, int giveErrorIfMissing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868{
1869 XFontStruct *font;
1870
Bram Moolenaar734a8672019-12-02 22:49:38 +01001871 if (!gui.in_use || name == NULL) // can't do this when GUI not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 return NOFONT;
1873
1874 font = XLoadQueryFont(gui.dpy, (char *)name);
1875
1876 if (font == NULL)
1877 {
1878 if (giveErrorIfMissing)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001879 semsg(_(e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 return NOFONT;
1881 }
1882
1883#ifdef DEBUG
1884 printf("Font Information for '%s':\n", name);
1885 printf(" w = %d, h = %d, ascent = %d, descent = %d\n",
1886 font->max_bounds.width, font->ascent + font->descent,
1887 font->ascent, font->descent);
1888 printf(" max ascent = %d, max descent = %d, max h = %d\n",
1889 font->max_bounds.ascent, font->max_bounds.descent,
1890 font->max_bounds.ascent + font->max_bounds.descent);
1891 printf(" min lbearing = %d, min rbearing = %d\n",
1892 font->min_bounds.lbearing, font->min_bounds.rbearing);
1893 printf(" max lbearing = %d, max rbearing = %d\n",
1894 font->max_bounds.lbearing, font->max_bounds.rbearing);
1895 printf(" leftink = %d, rightink = %d\n",
1896 (font->min_bounds.lbearing < 0),
1897 (font->max_bounds.rbearing > font->max_bounds.width));
1898 printf("\n");
1899#endif
1900
1901 if (font->max_bounds.width != font->min_bounds.width)
1902 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001903 semsg(_(e_fontwidth), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 XFreeFont(gui.dpy, font);
1905 return NOFONT;
1906 }
1907 return (GuiFont)font;
1908}
1909
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001910#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001911/*
1912 * Return the name of font "font" in allocated memory.
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001913 */
1914 char_u *
Bram Moolenaar87748452017-03-12 17:10:33 +01001915gui_mch_get_fontname(GuiFont font, char_u *name)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001916{
Bram Moolenaar87748452017-03-12 17:10:33 +01001917 char_u *ret = NULL;
1918
1919 if (name != NULL && font == NULL)
1920 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001921 // In this case, there's no way other than doing this.
Bram Moolenaar87748452017-03-12 17:10:33 +01001922 ret = vim_strsave(name);
1923 }
1924 else if (font != NULL)
1925 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01001926 // In this case, try to retrieve the XLFD corresponding to 'font'->fid;
1927 // if failed, use 'name' unless it's NULL.
Bram Moolenaar87748452017-03-12 17:10:33 +01001928 unsigned long value = 0L;
1929
1930 if (XGetFontProperty(font, XA_FONT, &value))
1931 {
1932 char *xa_font_name = NULL;
1933
1934 xa_font_name = XGetAtomName(gui.dpy, value);
1935 if (xa_font_name != NULL)
1936 {
1937 ret = vim_strsave((char_u *)xa_font_name);
1938 XFree(xa_font_name);
1939 }
1940 else if (name != NULL)
1941 ret = vim_strsave(name);
1942 }
1943 else if (name != NULL)
1944 ret = vim_strsave(name);
1945 }
1946 return ret;
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001947}
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001948#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00001949
Bram Moolenaar231334e2005-07-25 20:46:57 +00001950/*
1951 * Adjust gui.char_height (after 'linespace' was changed).
1952 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001954gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
1956#ifdef FEAT_XFONTSET
1957 if (gui.fontset != NOFONTSET)
1958 {
1959 gui.char_height = fontset_height((XFontSet)gui.fontset) + p_linespace;
1960 gui.char_ascent = fontset_ascent((XFontSet)gui.fontset)
1961 + p_linespace / 2;
1962 }
1963 else
1964#endif
1965 {
1966 XFontStruct *font = (XFontStruct *)gui.norm_font;
1967
1968 gui.char_height = font->ascent + font->descent + p_linespace;
1969 gui.char_ascent = font->ascent + p_linespace / 2;
1970 }
1971 return OK;
1972}
1973
1974/*
1975 * Set the current text font.
1976 */
1977 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001978gui_mch_set_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979{
1980 static Font prev_font = (Font)-1;
1981 Font fid = ((XFontStruct *)font)->fid;
1982
1983 if (fid != prev_font)
1984 {
1985 XSetFont(gui.dpy, gui.text_gc, fid);
1986 XSetFont(gui.dpy, gui.back_gc, fid);
1987 prev_font = fid;
1988 gui.char_ascent = ((XFontStruct *)font)->ascent + p_linespace / 2;
1989 }
1990#ifdef FEAT_XFONTSET
1991 current_fontset = (XFontSet)NULL;
1992#endif
1993}
1994
1995#if defined(FEAT_XFONTSET) || defined(PROTO)
1996/*
1997 * Set the current text fontset.
1998 * Adjust the ascent, in case it's different.
1999 */
2000 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002001gui_mch_set_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002{
2003 current_fontset = (XFontSet)fontset;
2004 gui.char_ascent = fontset_ascent(current_fontset) + p_linespace / 2;
2005}
2006#endif
2007
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008/*
2009 * If a font is not going to be used, free its structure.
2010 */
2011 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002012gui_mch_free_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013{
2014 if (font != NOFONT)
2015 XFreeFont(gui.dpy, (XFontStruct *)font);
2016}
2017
2018#if defined(FEAT_XFONTSET) || defined(PROTO)
2019/*
2020 * If a fontset is not going to be used, free its structure.
2021 */
2022 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002023gui_mch_free_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024{
2025 if (fontset != NOFONTSET)
2026 XFreeFontSet(gui.dpy, (XFontSet)fontset);
2027}
2028
2029/*
2030 * Load the fontset "name".
2031 * Return a reference to the fontset, or NOFONTSET when failing.
2032 */
2033 GuiFontset
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002034gui_mch_get_fontset(
2035 char_u *name,
2036 int giveErrorIfMissing,
2037 int fixed_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038{
2039 XFontSet fontset;
2040 char **missing, *def_str;
2041 int num_missing;
2042
2043 if (!gui.in_use || name == NULL)
2044 return NOFONTSET;
2045
2046 fontset = XCreateFontSet(gui.dpy, (char *)name, &missing, &num_missing,
2047 &def_str);
2048 if (num_missing > 0)
2049 {
2050 int i;
2051
2052 if (giveErrorIfMissing)
2053 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002054 semsg(_("E250: Fonts for the following charsets are missing in fontset %s:"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 for (i = 0; i < num_missing; i++)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002056 semsg("%s", missing[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 }
2058 XFreeStringList(missing);
2059 }
2060
2061 if (fontset == NULL)
2062 {
2063 if (giveErrorIfMissing)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002064 semsg(_(e_fontset), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 return NOFONTSET;
2066 }
2067
2068 if (fixed_width && check_fontset_sanity(fontset) == FAIL)
2069 {
2070 XFreeFontSet(gui.dpy, fontset);
2071 return NOFONTSET;
2072 }
2073 return (GuiFontset)fontset;
2074}
2075
2076/*
2077 * Check if fontset "fs" is fixed width.
2078 */
2079 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002080check_fontset_sanity(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081{
2082 XFontStruct **xfs;
2083 char **font_name;
2084 int fn;
2085 char *base_name;
2086 int i;
2087 int min_width;
2088 int min_font_idx = 0;
2089
2090 base_name = XBaseFontNameListOfFontSet(fs);
2091 fn = XFontsOfFontSet(fs, &xfs, &font_name);
2092 for (i = 0; i < fn; i++)
2093 {
2094 if (xfs[i]->max_bounds.width != xfs[i]->min_bounds.width)
2095 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002096 semsg(_("E252: Fontset name: %s"), base_name);
2097 semsg(_("Font '%s' is not fixed-width"), font_name[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 return FAIL;
2099 }
2100 }
Bram Moolenaar734a8672019-12-02 22:49:38 +01002101 // scan base font width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 min_width = 32767;
2103 for (i = 0; i < fn; i++)
2104 {
2105 if (xfs[i]->max_bounds.width<min_width)
2106 {
2107 min_width = xfs[i]->max_bounds.width;
2108 min_font_idx = i;
2109 }
2110 }
2111 for (i = 0; i < fn; i++)
2112 {
2113 if ( xfs[i]->max_bounds.width != 2 * min_width
2114 && xfs[i]->max_bounds.width != min_width)
2115 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002116 semsg(_("E253: Fontset name: %s"), base_name);
2117 semsg(_("Font0: %s"), font_name[min_font_idx]);
Bram Moolenaar500f3612019-01-16 22:15:11 +01002118 semsg(_("Font%d: %s"), i, font_name[i]);
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01002119 semsg(_("Font%d width is not twice that of font0"), i);
2120 semsg(_("Font0 width: %d"),
2121 (int)xfs[min_font_idx]->max_bounds.width);
2122 semsg(_("Font%d width: %d"), i, (int)xfs[i]->max_bounds.width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 return FAIL;
2124 }
2125 }
Bram Moolenaar734a8672019-12-02 22:49:38 +01002126 // it seems ok. Good Luck!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 return OK;
2128}
2129
2130 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002131fontset_width(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002133 return XmbTextEscapement(fs, "Vim", 3) / 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134}
2135
2136 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002137fontset_height(
2138 XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139{
2140 XFontSetExtents *extents;
2141
2142 extents = XExtentsOfFontSet(fs);
2143 return extents->max_logical_extent.height;
2144}
2145
2146#if (defined(FONTSET_ALWAYS) && defined(FEAT_GUI_ATHENA) \
2147 && defined(FEAT_MENU)) || defined(PROTO)
2148/*
2149 * Returns the bounding box height around the actual glyph image of all
2150 * characters in all fonts of the fontset.
2151 */
2152 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002153fontset_height2(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154{
2155 XFontSetExtents *extents;
2156
2157 extents = XExtentsOfFontSet(fs);
2158 return extents->max_ink_extent.height;
2159}
2160#endif
2161
Bram Moolenaar734a8672019-12-02 22:49:38 +01002162#if 0
2163// NOT USED YET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002165fontset_descent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166{
2167 XFontSetExtents *extents;
2168
2169 extents = XExtentsOfFontSet (fs);
2170 return extents->max_logical_extent.height + extents->max_logical_extent.y;
2171}
Bram Moolenaar734a8672019-12-02 22:49:38 +01002172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173
2174 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002175fontset_ascent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176{
2177 XFontSetExtents *extents;
2178
2179 extents = XExtentsOfFontSet(fs);
2180 return -extents->max_logical_extent.y;
2181}
2182
Bram Moolenaar734a8672019-12-02 22:49:38 +01002183#endif // FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184
2185/*
2186 * Return the Pixel value (color) for the given color name.
2187 * Return INVALCOLOR for error.
2188 */
2189 guicolor_T
Bram Moolenaar46582282016-07-23 14:35:12 +02002190gui_mch_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002192 guicolor_T requested;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
Bram Moolenaar734a8672019-12-02 22:49:38 +01002194 // can't do this when GUI not running
Bram Moolenaar46582282016-07-23 14:35:12 +02002195 if (!gui.in_use || name == NULL || *name == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 return INVALCOLOR;
2197
Bram Moolenaar46582282016-07-23 14:35:12 +02002198 requested = gui_get_color_cmn(name);
2199 if (requested == INVALCOLOR)
2200 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002202 return gui_mch_get_rgb_color(
Bram Moolenaar46582282016-07-23 14:35:12 +02002203 (requested & 0xff0000) >> 16,
2204 (requested & 0xff00) >> 8,
2205 requested & 0xff);
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002206}
2207
2208/*
2209 * Return the Pixel value (color) for the given RGB values.
2210 * Return INVALCOLOR for error.
2211 */
2212 guicolor_T
2213gui_mch_get_rgb_color(int r, int g, int b)
2214{
Bram Moolenaard23a8232018-02-10 18:45:26 +01002215 XColor available;
Bram Moolenaard60547b2017-07-24 20:15:30 +02002216 Colormap colormap;
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002217
Bram Moolenaar734a8672019-12-02 22:49:38 +01002218#if 0
2219// Using XParseColor() is very slow, put rgb in XColor directly.
Bram Moolenaar778df2a2018-05-06 19:19:36 +02002220
2221 char spec[8]; // space enough to hold "#RRGGBB"
Bram Moolenaar26af85d2017-07-23 16:45:10 +02002222 vim_snprintf(spec, sizeof(spec), "#%.2x%.2x%.2x", r, g, b);
Bram Moolenaar46582282016-07-23 14:35:12 +02002223 if (XParseColor(gui.dpy, colormap, (char *)spec, &available) != 0
2224 && XAllocColor(gui.dpy, colormap, &available) != 0)
2225 return (guicolor_T)available.pixel;
Bram Moolenaar734a8672019-12-02 22:49:38 +01002226#endif
Bram Moolenaar778df2a2018-05-06 19:19:36 +02002227 colormap = DefaultColormap(gui.dpy, DefaultScreen(gui.dpy));
Bram Moolenaara80faa82020-04-12 19:37:17 +02002228 CLEAR_FIELD(available);
Bram Moolenaar778df2a2018-05-06 19:19:36 +02002229 available.red = r << 8;
2230 available.green = g << 8;
2231 available.blue = b << 8;
2232 if (XAllocColor(gui.dpy, colormap, &available) != 0)
2233 return (guicolor_T)available.pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234
2235 return INVALCOLOR;
2236}
2237
2238/*
Bram Moolenaarfb269802005-03-15 22:46:30 +00002239 * Set the current text foreground color.
2240 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002242gui_mch_set_fg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243{
2244 if (color != prev_fg_color)
2245 {
2246 XSetForeground(gui.dpy, gui.text_gc, (Pixel)color);
2247 prev_fg_color = color;
2248 }
2249}
2250
2251/*
2252 * Set the current text background color.
2253 */
2254 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002255gui_mch_set_bg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256{
2257 if (color != prev_bg_color)
2258 {
2259 XSetBackground(gui.dpy, gui.text_gc, (Pixel)color);
2260 prev_bg_color = color;
2261 }
2262}
2263
2264/*
Bram Moolenaarfb269802005-03-15 22:46:30 +00002265 * Set the current text special color.
2266 */
2267 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002268gui_mch_set_sp_color(guicolor_T color)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002269{
2270 prev_sp_color = color;
2271}
2272
2273/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 * create a mouse pointer that is blank
2275 */
2276 static Cursor
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002277gui_x11_create_blank_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278{
2279 Pixmap blank_pixmap = XCreatePixmap(gui.dpy, gui.wid, 1, 1, 1);
2280 GC gc = XCreateGC(gui.dpy, blank_pixmap, (unsigned long)0, (XGCValues*)0);
2281 XDrawPoint(gui.dpy, blank_pixmap, gc, 0, 0);
2282 XFreeGC(gui.dpy, gc);
2283 return XCreatePixmapCursor(gui.dpy, blank_pixmap, blank_pixmap,
2284 (XColor*)&gui.norm_pixel, (XColor*)&gui.norm_pixel, 0, 0);
2285}
2286
Bram Moolenaarfb269802005-03-15 22:46:30 +00002287/*
2288 * Draw a curled line at the bottom of the character cell.
2289 */
2290 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002291draw_curl(int row, int col, int cells)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002292{
2293 int i;
2294 int offset;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002295 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarfb269802005-03-15 22:46:30 +00002296
2297 XSetForeground(gui.dpy, gui.text_gc, prev_sp_color);
2298 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
2299 {
2300 offset = val[i % 8];
2301 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, i,
2302 FILL_Y(row + 1) - 1 - offset);
2303 }
2304 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
2305}
2306
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002308gui_mch_draw_string(
2309 int row,
2310 int col,
2311 char_u *s,
2312 int len,
2313 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
2315 int cells = len;
Bram Moolenaara3227e22006-03-08 21:32:40 +00002316 static void *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 static int buflen = 0;
2318 char_u *p;
2319 int wlen = 0;
2320 int c;
2321
2322 if (enc_utf8)
2323 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01002324 // Convert UTF-8 byte sequence to 16 bit characters for the X
2325 // functions. Need a buffer for the 16 bit characters. Keep it
2326 // between calls, because allocating it each time is slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 if (buflen < len)
2328 {
2329 XtFree((char *)buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002330 buf = (void *)XtMalloc(len * (sizeof(XChar2b) < sizeof(wchar_t)
2331 ? sizeof(wchar_t) : sizeof(XChar2b)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 buflen = len;
2333 }
2334 p = s;
2335 cells = 0;
2336 while (p < s + len)
2337 {
2338 c = utf_ptr2char(p);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002339#ifdef FEAT_XFONTSET
Bram Moolenaara3227e22006-03-08 21:32:40 +00002340 if (current_fontset != NULL)
2341 {
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002342# ifdef SMALL_WCHAR_T
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002343 if (c >= 0x10000)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002344 c = 0xbf; // show chars > 0xffff as ?
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002345# endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00002346 ((wchar_t *)buf)[wlen] = c;
2347 }
2348 else
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002349#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00002350 {
2351 if (c >= 0x10000)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002352 c = 0xbf; // show chars > 0xffff as ?
Bram Moolenaara3227e22006-03-08 21:32:40 +00002353 ((XChar2b *)buf)[wlen].byte1 = (unsigned)c >> 8;
2354 ((XChar2b *)buf)[wlen].byte2 = c;
2355 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 ++wlen;
2357 cells += utf_char2cells(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002358 p += utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 }
2360 }
2361 else if (has_mbyte)
2362 {
2363 cells = 0;
2364 for (p = s; p < s + len; )
2365 {
2366 cells += ptr2cells(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002367 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
2369 }
2370
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371#ifdef FEAT_XFONTSET
2372 if (current_fontset != NULL)
2373 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01002374 // Setup a clip rectangle to avoid spilling over in the next or
2375 // previous line. This is apparently needed for some fonts which are
2376 // used in a fontset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 XRectangle clip;
2378
2379 clip.x = 0;
2380 clip.y = 0;
2381 clip.height = gui.char_height;
2382 clip.width = gui.char_width * cells + 1;
2383 XSetClipRectangles(gui.dpy, gui.text_gc, FILL_X(col), FILL_Y(row),
2384 &clip, 1, Unsorted);
2385 }
2386#endif
2387
2388 if (flags & DRAW_TRANSP)
2389 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 if (enc_utf8)
2391 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2392 TEXT_Y(row), buf, wlen);
2393 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2395 TEXT_Y(row), (char *)s, len);
2396 }
2397 else if (p_linespace != 0
2398#ifdef FEAT_XFONTSET
2399 || current_fontset != NULL
2400#endif
2401 )
2402 {
2403 XSetForeground(gui.dpy, gui.text_gc, prev_bg_color);
2404 XFillRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
2405 FILL_Y(row), gui.char_width * cells, gui.char_height);
2406 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
Bram Moolenaarfb269802005-03-15 22:46:30 +00002407
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 if (enc_utf8)
2409 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2410 TEXT_Y(row), buf, wlen);
2411 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2413 TEXT_Y(row), (char *)s, len);
2414 }
2415 else
2416 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01002417 // XmbDrawImageString has bug, don't use it for fontset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (enc_utf8)
2419 XDrawImageString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2420 TEXT_Y(row), buf, wlen);
2421 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 XDrawImageString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2423 TEXT_Y(row), (char *)s, len);
2424 }
2425
Bram Moolenaar734a8672019-12-02 22:49:38 +01002426 // Bold trick: draw the text again with a one-pixel offset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 if (flags & DRAW_BOLD)
2428 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 if (enc_utf8)
2430 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2431 TEXT_Y(row), buf, wlen);
2432 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2434 TEXT_Y(row), (char *)s, len);
2435 }
2436
Bram Moolenaar734a8672019-12-02 22:49:38 +01002437 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarfb269802005-03-15 22:46:30 +00002438 if (flags & DRAW_UNDERC)
2439 draw_curl(row, col, cells);
2440
Bram Moolenaar734a8672019-12-02 22:49:38 +01002441 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 if (flags & DRAW_UNDERL)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002443 {
2444 int y = FILL_Y(row + 1) - 1;
2445
Bram Moolenaar734a8672019-12-02 22:49:38 +01002446 // When p_linespace is 0, overwrite the bottom row of pixels.
2447 // Otherwise put the line just below the character.
Bram Moolenaarfb269802005-03-15 22:46:30 +00002448 if (p_linespace > 1)
2449 y -= p_linespace - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 XDrawLine(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
Bram Moolenaarfb269802005-03-15 22:46:30 +00002451 y, FILL_X(col + cells) - 1, y);
2452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002454 if (flags & DRAW_STRIKE)
2455 {
2456 int y = FILL_Y(row + 1) - gui.char_height/2;
2457
2458 XSetForeground(gui.dpy, gui.text_gc, prev_sp_color);
2459 XDrawLine(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
2460 y, FILL_X(col + cells) - 1, y);
2461 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
2462 }
2463
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464#ifdef FEAT_XFONTSET
2465 if (current_fontset != NULL)
2466 XSetClipMask(gui.dpy, gui.text_gc, None);
2467#endif
2468}
2469
2470/*
2471 * Return OK if the key with the termcap name "name" is supported.
2472 */
2473 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002474gui_mch_haskey(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475{
2476 int i;
2477
2478 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
2479 if (name[0] == special_keys[i].vim_code0 &&
2480 name[1] == special_keys[i].vim_code1)
2481 return OK;
2482 return FAIL;
2483}
2484
2485/*
2486 * Return the text window-id and display. Only required for X-based GUI's
2487 */
2488 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002489gui_get_x11_windis(Window *win, Display **dis)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490{
2491 *win = XtWindow(vimShell);
2492 *dis = gui.dpy;
2493 return OK;
2494}
2495
2496 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002497gui_mch_beep(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498{
2499 XBell(gui.dpy, 0);
2500}
2501
2502 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002503gui_mch_flash(int msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504{
Bram Moolenaar734a8672019-12-02 22:49:38 +01002505 // Do a visual beep by reversing the foreground and background colors
Bram Moolenaar071d4272004-06-13 20:20:40 +00002506 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2507 FILL_X((int)Columns) + gui.border_offset,
2508 FILL_Y((int)Rows) + gui.border_offset);
2509 XSync(gui.dpy, False);
Bram Moolenaar734a8672019-12-02 22:49:38 +01002510 ui_delay((long)msec, TRUE); // wait for a few msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2512 FILL_X((int)Columns) + gui.border_offset,
2513 FILL_Y((int)Rows) + gui.border_offset);
2514}
2515
2516/*
2517 * Invert a rectangle from row r, column c, for nr rows and nc columns.
2518 */
2519 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002520gui_mch_invert_rectangle(
2521 int r,
2522 int c,
2523 int nr,
2524 int nc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525{
2526 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc,
2527 FILL_X(c), FILL_Y(r), (nc) * gui.char_width, (nr) * gui.char_height);
2528}
2529
2530/*
2531 * Iconify the GUI window.
2532 */
2533 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002534gui_mch_iconify(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535{
2536 XIconifyWindow(gui.dpy, XtWindow(vimShell), DefaultScreen(gui.dpy));
2537}
2538
2539#if defined(FEAT_EVAL) || defined(PROTO)
2540/*
2541 * Bring the Vim window to the foreground.
2542 */
2543 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002544gui_mch_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545{
2546 XMapRaised(gui.dpy, XtWindow(vimShell));
2547}
2548#endif
2549
2550/*
2551 * Draw a cursor without focus.
2552 */
2553 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002554gui_mch_draw_hollow_cursor(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555{
2556 int w = 1;
2557
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (mb_lefthalve(gui.row, gui.col))
2559 w = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 gui_mch_set_fg_color(color);
2561 XDrawRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(gui.col),
2562 FILL_Y(gui.row), w * gui.char_width - 1, gui.char_height - 1);
2563}
2564
2565/*
2566 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
2567 * color "color".
2568 */
2569 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002570gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571{
2572 gui_mch_set_fg_color(color);
2573
2574 XFillRectangle(gui.dpy, gui.wid, gui.text_gc,
2575#ifdef FEAT_RIGHTLEFT
Bram Moolenaar734a8672019-12-02 22:49:38 +01002576 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
2578#endif
2579 FILL_X(gui.col),
2580 FILL_Y(gui.row) + gui.char_height - h,
2581 w, h);
2582}
2583
2584/*
2585 * Catch up with any queued X events. This may put keyboard input into the
2586 * input buffer, call resize call-backs, trigger timers etc. If there is
2587 * nothing in the X event queue (& no timers pending), then we return
2588 * immediately.
2589 */
2590 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002591gui_mch_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592{
2593 XtInputMask mask, desired;
2594
2595#ifdef ALT_X_INPUT
2596 if (suppress_alternate_input)
2597 desired = (XtIMXEvent | XtIMTimer);
2598 else
2599#endif
2600 desired = (XtIMAll);
2601 while ((mask = XtAppPending(app_context)) && (mask & desired)
2602 && !vim_is_input_buf_full())
2603 XtAppProcessEvent(app_context, desired);
2604}
2605
2606/*
2607 * GUI input routine called by gui_wait_for_chars(). Waits for a character
2608 * from the keyboard.
2609 * wtime == -1 Wait forever.
2610 * wtime == 0 This should never happen.
2611 * wtime > 0 Wait wtime milliseconds for a character.
2612 * Returns OK if a character was found to be available within the given time,
2613 * or FAIL otherwise.
2614 */
2615 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002616gui_mch_wait_for_chars(long wtime)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
Bram Moolenaar4231da42016-06-02 14:30:04 +02002618 int focus;
2619 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620
2621 /*
2622 * Make this static, in case gui_x11_timer_cb is called after leaving
2623 * this function (otherwise a random value on the stack may be changed).
2624 */
2625 static int timed_out;
2626 XtIntervalId timer = (XtIntervalId)0;
2627 XtInputMask desired;
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002628#ifdef FEAT_JOB_CHANNEL
2629 XtIntervalId channel_timer = (XtIntervalId)0;
2630#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631
2632 timed_out = FALSE;
2633
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01002634 if (wtime >= 0)
2635 timer = XtAppAddTimeOut(app_context,
2636 (long_u)(wtime == 0 ? 1L : wtime),
2637 gui_x11_timer_cb, &timed_out);
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002638#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar734a8672019-12-02 22:49:38 +01002639 // If there is a channel with the keep_open flag we need to poll for input
2640 // on them.
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002641 if (channel_any_keep_open())
2642 channel_timer = XtAppAddTimeOut(app_context, (long_u)20,
2643 channel_poll_cb, (XtPointer)&channel_timer);
2644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645
2646 focus = gui.in_focus;
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01002647 desired = (XtIMAll);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 while (!timed_out)
2649 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01002650 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (gui.in_focus != focus)
2652 {
2653 if (gui.in_focus)
2654 gui_mch_start_blink();
2655 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01002656 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 focus = gui.in_focus;
2658 }
2659
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002660#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02002661# ifdef FEAT_TIMERS
2662 did_add_timer = FALSE;
2663# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002664 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02002665# ifdef FEAT_TIMERS
2666 if (did_add_timer)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002667 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02002668 break;
2669# endif
Bram Moolenaar03531f72010-11-16 15:04:57 +01002670#endif
2671
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 /*
2673 * Don't use gui_mch_update() because then we will spin-lock until a
2674 * char arrives, instead we use XtAppProcessEvent() to hang until an
2675 * event arrives. No need to check for input_buf_full because we are
2676 * returning as soon as it contains a single char. Note that
2677 * XtAppNextEvent() may not be used because it will not return after a
2678 * timer event has arrived -- webb
2679 */
2680 XtAppProcessEvent(app_context, desired);
2681
2682 if (input_available())
2683 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02002684 retval = OK;
2685 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 }
2687 }
Bram Moolenaar4231da42016-06-02 14:30:04 +02002688
2689 if (timer != (XtIntervalId)0 && !timed_out)
2690 XtRemoveTimeOut(timer);
Bram Moolenaar1dccf632017-08-27 17:38:27 +02002691#ifdef FEAT_JOB_CHANNEL
2692 if (channel_timer != (XtIntervalId)0)
2693 XtRemoveTimeOut(channel_timer);
2694#endif
Bram Moolenaar4231da42016-06-02 14:30:04 +02002695
2696 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697}
2698
2699/*
2700 * Output routines.
2701 */
2702
Bram Moolenaar734a8672019-12-02 22:49:38 +01002703/*
2704 * Flush any output to the screen
2705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002707gui_mch_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
2709 XFlush(gui.dpy);
2710}
2711
2712/*
2713 * Clear a rectangular region of the screen from text pos (row1, col1) to
2714 * (row2, col2) inclusive.
2715 */
2716 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002717gui_mch_clear_block(
2718 int row1,
2719 int col1,
2720 int row2,
2721 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 int x;
2724
2725 x = FILL_X(col1);
2726
Bram Moolenaar734a8672019-12-02 22:49:38 +01002727 // Clear one extra pixel at the far right, for when bold characters have
2728 // spilled over to the next column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 XFillRectangle(gui.dpy, gui.wid, gui.back_gc, x, FILL_Y(row1),
2730 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
2731 (row2 - row1 + 1) * gui.char_height);
2732}
2733
2734 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002735gui_mch_clear_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
2737 XClearArea(gui.dpy, gui.wid, 0, 0, 0, 0, False);
2738}
2739
2740/*
2741 * Delete the given number of lines from the given row, scrolling up any
2742 * text further down within the scroll region.
2743 */
2744 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002745gui_mch_delete_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746{
2747 if (gui.visibility == VisibilityFullyObscured)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002748 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
Bram Moolenaar734a8672019-12-02 22:49:38 +01002750 // copy one extra pixel at the far right, for when bold has spilled
2751 // over
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2753 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
2754 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2755 + (gui.scroll_region_right == Columns - 1),
2756 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2757 FILL_X(gui.scroll_region_left), FILL_Y(row));
2758
2759 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
2760 gui.scroll_region_left,
2761 gui.scroll_region_bot, gui.scroll_region_right);
2762 gui_x11_check_copy_area();
2763}
2764
2765/*
2766 * Insert the given number of lines before the given row, scrolling down any
2767 * following text within the scroll region.
2768 */
2769 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002770gui_mch_insert_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771{
2772 if (gui.visibility == VisibilityFullyObscured)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002773 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
Bram Moolenaar734a8672019-12-02 22:49:38 +01002775 // copy one extra pixel at the far right, for when bold has spilled
2776 // over
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2778 FILL_X(gui.scroll_region_left), FILL_Y(row),
2779 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2780 + (gui.scroll_region_right == Columns - 1),
2781 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2782 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines));
2783
2784 gui_clear_block(row, gui.scroll_region_left,
2785 row + num_lines - 1, gui.scroll_region_right);
2786 gui_x11_check_copy_area();
2787}
2788
2789/*
2790 * Update the region revealed by scrolling up/down.
2791 */
2792 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002793gui_x11_check_copy_area(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794{
2795 XEvent event;
2796 XGraphicsExposeEvent *gevent;
2797
2798 if (gui.visibility != VisibilityPartiallyObscured)
2799 return;
2800
2801 XFlush(gui.dpy);
2802
Bram Moolenaar734a8672019-12-02 22:49:38 +01002803 // Wait to check whether the scroll worked or not
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 for (;;)
2805 {
2806 if (XCheckTypedEvent(gui.dpy, NoExpose, &event))
Bram Moolenaar734a8672019-12-02 22:49:38 +01002807 return; // The scroll worked.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808
2809 if (XCheckTypedEvent(gui.dpy, GraphicsExpose, &event))
2810 {
2811 gevent = (XGraphicsExposeEvent *)&event;
2812 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
2813 if (gevent->count == 0)
Bram Moolenaar734a8672019-12-02 22:49:38 +01002814 return; // This was the last expose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 }
2816 XSync(gui.dpy, False);
2817 }
2818}
2819
2820/*
2821 * X Selection stuff, for cutting and pasting text to other windows.
2822 */
2823
2824 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002825clip_mch_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826{
2827 clip_x11_lose_selection(vimShell, cbd);
2828}
2829
2830 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002831clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832{
2833 return clip_x11_own_selection(vimShell, cbd);
2834}
2835
2836 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002837clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002839 clip_x11_request_selection(vimShell, gui.dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840}
2841
2842 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002843clip_mch_set_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002844 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
2846 clip_x11_set_selection(cbd);
2847}
2848
2849#if defined(FEAT_MENU) || defined(PROTO)
2850/*
2851 * Menu stuff.
2852 */
2853
2854/*
2855 * Make a menu either grey or not grey.
2856 */
2857 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002858gui_mch_menu_grey(vimmenu_T *menu, int grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859{
2860 if (menu->id != (Widget)0)
2861 {
2862 gui_mch_menu_hidden(menu, False);
2863 if (grey
2864#ifdef FEAT_GUI_MOTIF
2865 || !menu->sensitive
2866#endif
2867 )
2868 XtSetSensitive(menu->id, False);
2869 else
2870 XtSetSensitive(menu->id, True);
2871 }
2872}
2873
2874/*
2875 * Make menu item hidden or not hidden
2876 */
2877 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002878gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879{
2880 if (menu->id != (Widget)0)
2881 {
2882 if (hidden)
2883 XtUnmanageChild(menu->id);
2884 else
2885 XtManageChild(menu->id);
2886 }
2887}
2888
2889/*
2890 * This is called after setting all the menus to grey/hidden or not.
2891 */
2892 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002893gui_mch_draw_menubar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
Bram Moolenaar734a8672019-12-02 22:49:38 +01002895 // Nothing to do in X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896}
2897
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002899gui_x11_menu_cb(
2900 Widget w UNUSED,
2901 XtPointer client_data,
2902 XtPointer call_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
2904 gui_menu_cb((vimmenu_T *)client_data);
2905}
2906
Bram Moolenaar734a8672019-12-02 22:49:38 +01002907#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
2909
2910
2911/*
2912 * Function called when window closed. Works like ":qa".
2913 * Should put up a requester!
2914 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002916gui_x11_wm_protocol_handler(
2917 Widget w UNUSED,
2918 XtPointer client_data UNUSED,
2919 XEvent *event,
2920 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921{
2922 /*
2923 * Only deal with Client messages.
2924 */
2925 if (event->type != ClientMessage)
2926 return;
2927
2928 /*
2929 * The WM_SAVE_YOURSELF event arrives when the window manager wants to
2930 * exit. That can be cancelled though, thus Vim shouldn't exit here.
2931 * Just sync our swap files.
2932 */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002933 if ((Atom)((XClientMessageEvent *)event)->data.l[0] ==
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 wm_atoms[SAVE_YOURSELF_IDX])
2935 {
2936 out_flush();
Bram Moolenaar734a8672019-12-02 22:49:38 +01002937 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938
Bram Moolenaar734a8672019-12-02 22:49:38 +01002939 // Set the window's WM_COMMAND property, to let the window manager
2940 // know we are done saving ourselves. We don't want to be restarted,
2941 // thus set argv to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 XSetCommand(gui.dpy, XtWindow(vimShell), NULL, 0);
2943 return;
2944 }
2945
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002946 if ((Atom)((XClientMessageEvent *)event)->data.l[0] !=
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 wm_atoms[DELETE_WINDOW_IDX])
2948 return;
2949
2950 gui_shell_closed();
2951}
2952
2953#ifdef FEAT_CLIENTSERVER
2954/*
2955 * Function called when property changed. Check for incoming commands
2956 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002958gui_x11_send_event_handler(
2959 Widget w UNUSED,
2960 XtPointer client_data UNUSED,
2961 XEvent *event,
2962 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963{
2964 XPropertyEvent *e = (XPropertyEvent *) event;
2965
2966 if (e->type == PropertyNotify && e->window == commWindow
2967 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002968 serverEventProc(gui.dpy, event, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969}
2970#endif
2971
2972/*
2973 * Cursor blink functions.
2974 *
2975 * This is a simple state machine:
2976 * BLINK_NONE not blinking at all
2977 * BLINK_OFF blinking, cursor is not shown
2978 * BLINK_ON blinking, cursor is shown
2979 */
2980
2981#define BLINK_NONE 0
2982#define BLINK_OFF 1
2983#define BLINK_ON 2
2984
2985static int blink_state = BLINK_NONE;
2986static long_u blink_waittime = 700;
2987static long_u blink_ontime = 400;
2988static long_u blink_offtime = 250;
2989static XtIntervalId blink_timer = (XtIntervalId)0;
2990
Bram Moolenaar703a8042016-06-04 16:24:32 +02002991 int
2992gui_mch_is_blinking(void)
2993{
2994 return blink_state != BLINK_NONE;
2995}
2996
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +02002997 int
2998gui_mch_is_blink_off(void)
2999{
3000 return blink_state == BLINK_OFF;
3001}
3002
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01003004gui_mch_set_blinking(long waittime, long on, long off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
3006 blink_waittime = waittime;
3007 blink_ontime = on;
3008 blink_offtime = off;
3009}
3010
3011/*
3012 * Stop the cursor blinking. Show the cursor if it wasn't shown.
3013 */
3014 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01003015gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 if (blink_timer != (XtIntervalId)0)
3018 {
3019 XtRemoveTimeOut(blink_timer);
3020 blink_timer = (XtIntervalId)0;
3021 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01003022 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 gui_update_cursor(TRUE, FALSE);
3024 blink_state = BLINK_NONE;
3025}
3026
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003028gui_x11_blink_cb(
3029 XtPointer timed_out UNUSED,
3030 XtIntervalId *interval_id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031{
3032 if (blink_state == BLINK_ON)
3033 {
3034 gui_undraw_cursor();
3035 blink_state = BLINK_OFF;
3036 blink_timer = XtAppAddTimeOut(app_context, blink_offtime,
3037 gui_x11_blink_cb, NULL);
3038 }
3039 else
3040 {
3041 gui_update_cursor(TRUE, FALSE);
3042 blink_state = BLINK_ON;
3043 blink_timer = XtAppAddTimeOut(app_context, blink_ontime,
3044 gui_x11_blink_cb, NULL);
3045 }
3046}
3047
3048/*
Bram Moolenaar1dccf632017-08-27 17:38:27 +02003049 * Start the cursor blinking. If it was already blinking, this restarts the
3050 * waiting time and shows the cursor.
3051 */
3052 void
3053gui_mch_start_blink(void)
3054{
3055 if (blink_timer != (XtIntervalId)0)
3056 XtRemoveTimeOut(blink_timer);
Bram Moolenaar734a8672019-12-02 22:49:38 +01003057 // Only switch blinking on if none of the times is zero
Bram Moolenaar1dccf632017-08-27 17:38:27 +02003058 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
3059 {
3060 blink_timer = XtAppAddTimeOut(app_context, blink_waittime,
3061 gui_x11_blink_cb, NULL);
3062 blink_state = BLINK_ON;
3063 gui_update_cursor(TRUE, FALSE);
3064 }
3065}
3066
3067/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 * Return the RGB value of a pixel as a long.
3069 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003070 guicolor_T
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003071gui_mch_get_rgb(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072{
3073 XColor xc;
3074 Colormap colormap;
3075
3076 colormap = DefaultColormap(gui.dpy, XDefaultScreen(gui.dpy));
3077 xc.pixel = pixel;
3078 XQueryColor(gui.dpy, colormap, &xc);
3079
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02003080 return (guicolor_T)(((xc.red & 0xff00) << 8) + (xc.green & 0xff00)
3081 + ((unsigned)xc.blue >> 8));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082}
3083
3084/*
3085 * Add the callback functions.
3086 */
3087 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003088gui_x11_callbacks(Widget textArea, Widget vimForm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089{
3090 XtAddEventHandler(textArea, VisibilityChangeMask, FALSE,
3091 gui_x11_visibility_cb, (XtPointer)0);
3092
3093 XtAddEventHandler(textArea, ExposureMask, FALSE, gui_x11_expose_cb,
3094 (XtPointer)0);
3095
3096 XtAddEventHandler(vimShell, StructureNotifyMask, FALSE,
3097 gui_x11_resize_window_cb, (XtPointer)0);
3098
3099 XtAddEventHandler(vimShell, FocusChangeMask, FALSE, gui_x11_focus_change_cb,
3100 (XtPointer)0);
3101 /*
3102 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3103 * Only needed for some window managers.
3104 */
3105 if (vim_strchr(p_go, GO_POINTER) != NULL)
3106 {
3107 XtAddEventHandler(vimShell, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3108 (XtPointer)0);
3109 XtAddEventHandler(textArea, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3110 (XtPointer)0);
3111 XtAddEventHandler(textArea, EnterWindowMask, FALSE, gui_x11_enter_cb,
3112 (XtPointer)0);
3113 XtAddEventHandler(vimShell, EnterWindowMask, FALSE, gui_x11_enter_cb,
3114 (XtPointer)0);
3115 }
3116
3117 XtAddEventHandler(vimForm, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3118 (XtPointer)0);
3119 XtAddEventHandler(textArea, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3120 (XtPointer)0);
3121
Bram Moolenaar734a8672019-12-02 22:49:38 +01003122 // get pointer moved events from scrollbar, needed for 'mousefocus'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 XtAddEventHandler(vimForm, PointerMotionMask,
3124 FALSE, gui_x11_mouse_cb, (XtPointer)1);
3125 XtAddEventHandler(textArea, ButtonPressMask | ButtonReleaseMask |
3126 ButtonMotionMask | PointerMotionMask,
3127 FALSE, gui_x11_mouse_cb, (XtPointer)0);
3128}
3129
3130/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003131 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003133 void
3134gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135{
3136 int rootx, rooty, winx, winy;
3137 Window root, child;
3138 unsigned int mask;
3139
3140 if (gui.wid && XQueryPointer(gui.dpy, gui.wid, &root, &child,
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003141 &rootx, &rooty, &winx, &winy, &mask)) {
3142 *x = winx;
3143 *y = winy;
3144 } else {
3145 *x = -1;
3146 *y = -1;
3147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148}
3149
3150 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003151gui_mch_setmouse(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152{
3153 if (gui.wid)
3154 XWarpPointer(gui.dpy, (Window)0, gui.wid, 0, 0, 0, 0, x, y);
3155}
3156
3157#if (defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)) || defined(PROTO)
3158 XButtonPressedEvent *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003159gui_x11_get_last_mouse_event(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160{
3161 return &last_mouse_event;
3162}
3163#endif
3164
3165#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
3166
Bram Moolenaar734a8672019-12-02 22:49:38 +01003167// Signs are currently always 2 chars wide. Hopefully the font is big enough
3168// to provide room for the bitmap!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169# define SIGN_WIDTH (gui.char_width * 2)
3170
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003172gui_mch_drawsign(int row, int col, int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 XImage *sign;
3175
3176 if (gui.in_use && (sign = (XImage *)sign_get_image(typenr)) != NULL)
3177 {
3178 XClearArea(gui.dpy, gui.wid, TEXT_X(col), TEXT_Y(row) - sign->height,
3179 SIGN_WIDTH, gui.char_height, FALSE);
3180 XPutImage(gui.dpy, gui.wid, gui.text_gc, sign, 0, 0,
3181 TEXT_X(col) + (SIGN_WIDTH - sign->width) / 2,
3182 TEXT_Y(row) - sign->height,
3183 sign->width, sign->height);
3184 }
3185}
3186
3187 void *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003188gui_mch_register_sign(char_u *signfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189{
3190 XpmAttributes attrs;
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003191 XImage *sign = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 int status;
3193
3194 /*
3195 * Setup the color substitution table.
3196 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (signfile[0] != NUL && signfile[0] != '-')
3198 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003199 XpmColorSymbol color[5] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003201 {"none", NULL, 0},
3202 {"iconColor1", NULL, 0},
3203 {"bottomShadowColor", NULL, 0},
3204 {"topShadowColor", NULL, 0},
3205 {"selectColor", NULL, 0}
3206 };
3207 attrs.valuemask = XpmColorSymbols;
3208 attrs.numsymbols = 2;
3209 attrs.colorsymbols = color;
3210 attrs.colorsymbols[0].pixel = gui.back_pixel;
3211 attrs.colorsymbols[1].pixel = gui.norm_pixel;
3212 status = XpmReadFileToImage(gui.dpy, (char *)signfile,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 &sign, NULL, &attrs);
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003214 if (status == 0)
3215 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01003216 // Sign width is fixed at two columns now.
3217 // if (sign->width > gui.sign_width)
3218 // gui.sign_width = sign->width + 8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 }
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003220 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003221 emsg(_(e_signdata));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 }
3223
3224 return (void *)sign;
3225}
3226
3227 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003228gui_mch_destroy_sign(void *sign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229{
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003230 XDestroyImage((XImage*)sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231}
3232#endif
3233
3234
3235#ifdef FEAT_MOUSESHAPE
Bram Moolenaar734a8672019-12-02 22:49:38 +01003236// The last set mouse pointer shape is remembered, to be used when it goes
3237// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238static int last_shape = 0;
3239#endif
3240
3241/*
3242 * Use the blank mouse pointer or not.
3243 */
3244 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003245gui_mch_mousehide(
Bram Moolenaar734a8672019-12-02 22:49:38 +01003246 int hide) // TRUE = use blank ptr, FALSE = use parent ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247{
3248 if (gui.pointer_hidden != hide)
3249 {
3250 gui.pointer_hidden = hide;
3251 if (hide)
3252 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3253 else
3254#ifdef FEAT_MOUSESHAPE
3255 mch_set_mouse_shape(last_shape);
3256#else
3257 XUndefineCursor(gui.dpy, gui.wid);
3258#endif
3259 }
3260}
3261
3262#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3263
Bram Moolenaar734a8672019-12-02 22:49:38 +01003264// Table for shape IDs. Keep in sync with the mshape_names[] table in
3265// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266static int mshape_ids[] =
3267{
Bram Moolenaar734a8672019-12-02 22:49:38 +01003268 XC_left_ptr, // arrow
3269 0, // blank
3270 XC_xterm, // beam
3271 XC_sb_v_double_arrow, // updown
3272 XC_sizing, // udsizing
3273 XC_sb_h_double_arrow, // leftright
3274 XC_sizing, // lrsizing
3275 XC_watch, // busy
3276 XC_X_cursor, // no
3277 XC_crosshair, // crosshair
3278 XC_hand1, // hand1
3279 XC_hand2, // hand2
3280 XC_pencil, // pencil
3281 XC_question_arrow, // question
3282 XC_right_ptr, // right-arrow
3283 XC_center_ptr, // up-arrow
3284 XC_left_ptr // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285};
3286
3287 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003288mch_set_mouse_shape(int shape)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289{
3290 int id;
3291
3292 if (!gui.in_use)
3293 return;
3294
3295 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
3296 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3297 else
3298 {
3299 if (shape >= MSHAPE_NUMBERED)
3300 {
3301 id = shape - MSHAPE_NUMBERED;
3302 if (id >= XC_num_glyphs)
3303 id = XC_left_ptr;
3304 else
Bram Moolenaar734a8672019-12-02 22:49:38 +01003305 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 }
3307 else
3308 id = mshape_ids[shape];
3309
3310 XDefineCursor(gui.dpy, gui.wid, XCreateFontCursor(gui.dpy, id));
3311 }
3312 if (shape != MSHAPE_HIDE)
3313 last_shape = shape;
3314}
3315#endif
3316
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003317#if (defined(FEAT_TOOLBAR) && defined(FEAT_BEVAL_GUI)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318/*
3319 * Set the balloon-eval used for the tooltip of a toolbar menu item.
3320 * The check for a non-toolbar item was added, because there is a crash when
3321 * passing a normal menu item here. Can't explain that, but better avoid it.
3322 */
3323 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003324gui_mch_menu_set_tip(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325{
3326 if (menu->id != NULL && menu->parent != NULL
3327 && menu_is_toolbar(menu->parent->name))
3328 {
Bram Moolenaar734a8672019-12-02 22:49:38 +01003329 // Always destroy and create the balloon, in case the string was
3330 // changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (menu->tip != NULL)
3332 {
3333 gui_mch_destroy_beval_area(menu->tip);
3334 menu->tip = NULL;
3335 }
3336 if (menu->strings[MENU_INDEX_TIP] != NULL)
3337 menu->tip = gui_mch_create_beval_area(
3338 menu->id,
3339 menu->strings[MENU_INDEX_TIP],
3340 NULL,
3341 NULL);
3342 }
3343}
3344#endif