blob: 5a0fe8d5273cb331666a2f232bfc121606d136a0 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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
15#include <X11/keysym.h>
16#include <X11/Xatom.h>
17#include <X11/StringDefs.h>
18#include <X11/Intrinsic.h>
19#include <X11/Shell.h>
20#include <X11/cursorfont.h>
21
22#include "vim.h"
23
24/*
25 * For Workshop XpmP.h is preferred, because it makes the signs drawn with a
26 * transparent background instead of black.
27 */
28#if defined(HAVE_XM_XPMP_H) && defined(FEAT_GUI_MOTIF) \
29 && (!defined(HAVE_X11_XPM_H) || defined(FEAT_SUN_WORKSHOP))
30# include <Xm/XpmP.h>
31#else
32# ifdef HAVE_X11_XPM_H
33# include <X11/xpm.h>
34# endif
35#endif
36
37#ifdef FEAT_XFONTSET
38# ifdef X_LOCALE
39# include <X11/Xlocale.h>
40# else
41# include <locale.h>
42# endif
43#endif
44
45#ifdef HAVE_X11_SUNKEYSYM_H
46# include <X11/Sunkeysym.h>
47#endif
48
49#ifdef HAVE_X11_XMU_EDITRES_H
50# include <X11/Xmu/Editres.h>
51#endif
52
53#ifdef FEAT_BEVAL_TIP
54# include "gui_beval.h"
55#endif
56
57#define VIM_NAME "vim"
58#define VIM_CLASS "Vim"
59
60/* Default resource values */
61#define DFLT_FONT "7x13"
62#ifdef FONTSET_ALWAYS
63# define DFLT_MENU_FONT XtDefaultFontSet
64#else
65# define DFLT_MENU_FONT XtDefaultFont
66#endif
67#define DFLT_TOOLTIP_FONT XtDefaultFontSet
68
69#ifdef FEAT_GUI_ATHENA
70# define DFLT_MENU_BG_COLOR "gray77"
71# define DFLT_MENU_FG_COLOR "black"
72# define DFLT_SCROLL_BG_COLOR "gray60"
73# define DFLT_SCROLL_FG_COLOR "gray77"
74# define DFLT_TOOLTIP_BG_COLOR "#ffffffff9191"
75# define DFLT_TOOLTIP_FG_COLOR "#000000000000"
76#else
77/* use the default (CDE) colors */
78# define DFLT_MENU_BG_COLOR ""
79# define DFLT_MENU_FG_COLOR ""
80# define DFLT_SCROLL_BG_COLOR ""
81# define DFLT_SCROLL_FG_COLOR ""
82# define DFLT_TOOLTIP_BG_COLOR "#ffffffff9191"
83# define DFLT_TOOLTIP_FG_COLOR "#000000000000"
84#endif
85
86Widget vimShell = (Widget)0;
87
88static Atom wm_atoms[2]; /* Window Manager Atoms */
89#define DELETE_WINDOW_IDX 0 /* index in wm_atoms[] for WM_DELETE_WINDOW */
90#define SAVE_YOURSELF_IDX 1 /* index in wm_atoms[] for WM_SAVE_YOURSELF */
91
92#ifdef FEAT_XFONTSET
93/*
94 * We either draw with a fontset (when current_fontset != NULL) or with a
95 * normal font (current_fontset == NULL, use gui.text_gc and gui.back_gc).
96 */
97static XFontSet current_fontset = NULL;
98
99#define XDrawString(dpy, win, gc, x, y, str, n) \
100 do \
101 { \
102 if (current_fontset != NULL) \
103 XmbDrawString(dpy, win, current_fontset, gc, x, y, str, n); \
104 else \
105 XDrawString(dpy, win, gc, x, y, str, n); \
106 } while (0)
107
108#define XDrawString16(dpy, win, gc, x, y, str, n) \
109 do \
110 { \
111 if (current_fontset != NULL) \
112 XwcDrawString(dpy, win, current_fontset, gc, x, y, (wchar_t *)str, n); \
113 else \
Bram Moolenaara3227e22006-03-08 21:32:40 +0000114 XDrawString16(dpy, win, gc, x, y, (XChar2b *)str, n); \
115 } while (0)
116
117#define XDrawImageString16(dpy, win, gc, x, y, str, n) \
118 do \
119 { \
120 if (current_fontset != NULL) \
121 XwcDrawImageString(dpy, win, current_fontset, gc, x, y, (wchar_t *)str, n); \
122 else \
123 XDrawImageString16(dpy, win, gc, x, y, (XChar2b *)str, n); \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124 } while (0)
125
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100126static int check_fontset_sanity(XFontSet fs);
127static int fontset_width(XFontSet fs);
128static int fontset_ascent(XFontSet fs);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
130
131static guicolor_T prev_fg_color = INVALCOLOR;
132static guicolor_T prev_bg_color = INVALCOLOR;
Bram Moolenaarfb269802005-03-15 22:46:30 +0000133static guicolor_T prev_sp_color = INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
135#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
136static XButtonPressedEvent last_mouse_event;
137#endif
138
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100139static int find_closest_color(Colormap colormap, XColor *colorPtr);
140static void gui_x11_timer_cb(XtPointer timed_out, XtIntervalId *interval_id);
141static void gui_x11_visibility_cb(Widget w, XtPointer dud, XEvent *event, Boolean *dum);
142static void gui_x11_expose_cb(Widget w, XtPointer dud, XEvent *event, Boolean *dum);
143static void gui_x11_resize_window_cb(Widget w, XtPointer dud, XEvent *event, Boolean *dum);
144static void gui_x11_focus_change_cb(Widget w, XtPointer data, XEvent *event, Boolean *dum);
145static void gui_x11_enter_cb(Widget w, XtPointer data, XEvent *event, Boolean *dum);
146static void gui_x11_leave_cb(Widget w, XtPointer data, XEvent *event, Boolean *dum);
147static void gui_x11_mouse_cb(Widget w, XtPointer data, XEvent *event, Boolean *dum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#ifdef FEAT_SNIFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100149static void gui_x11_sniff_request_cb(XtPointer closure, int *source, XtInputId *id);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100151static void gui_x11_check_copy_area(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152#ifdef FEAT_CLIENTSERVER
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100153static void gui_x11_send_event_handler(Widget, XtPointer, XEvent *, Boolean *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100155static void gui_x11_wm_protocol_handler(Widget, XtPointer, XEvent *, Boolean *);
156static void gui_x11_blink_cb(XtPointer timed_out, XtIntervalId *interval_id);
157static Cursor gui_x11_create_blank_mouse(void);
158static void draw_curl(int row, int col, int cells);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159
160
161/*
162 * Keycodes recognized by vim.
163 * NOTE: when changing this, the table in gui_gtk_x11.c probably needs the
164 * same change!
165 */
166static struct specialkey
167{
168 KeySym key_sym;
169 char_u vim_code0;
170 char_u vim_code1;
171} special_keys[] =
172{
173 {XK_Up, 'k', 'u'},
174 {XK_Down, 'k', 'd'},
175 {XK_Left, 'k', 'l'},
176 {XK_Right, 'k', 'r'},
177
178 {XK_F1, 'k', '1'},
179 {XK_F2, 'k', '2'},
180 {XK_F3, 'k', '3'},
181 {XK_F4, 'k', '4'},
182 {XK_F5, 'k', '5'},
183 {XK_F6, 'k', '6'},
184 {XK_F7, 'k', '7'},
185 {XK_F8, 'k', '8'},
186 {XK_F9, 'k', '9'},
187 {XK_F10, 'k', ';'},
188
189 {XK_F11, 'F', '1'},
190 {XK_F12, 'F', '2'},
191 {XK_F13, 'F', '3'},
192 {XK_F14, 'F', '4'},
193 {XK_F15, 'F', '5'},
194 {XK_F16, 'F', '6'},
195 {XK_F17, 'F', '7'},
196 {XK_F18, 'F', '8'},
197 {XK_F19, 'F', '9'},
198 {XK_F20, 'F', 'A'},
199
200 {XK_F21, 'F', 'B'},
201 {XK_F22, 'F', 'C'},
202 {XK_F23, 'F', 'D'},
203 {XK_F24, 'F', 'E'},
204 {XK_F25, 'F', 'F'},
205 {XK_F26, 'F', 'G'},
206 {XK_F27, 'F', 'H'},
207 {XK_F28, 'F', 'I'},
208 {XK_F29, 'F', 'J'},
209 {XK_F30, 'F', 'K'},
210
211 {XK_F31, 'F', 'L'},
212 {XK_F32, 'F', 'M'},
213 {XK_F33, 'F', 'N'},
214 {XK_F34, 'F', 'O'},
215 {XK_F35, 'F', 'P'}, /* keysymdef.h defines up to F35 */
216#ifdef SunXK_F36
217 {SunXK_F36, 'F', 'Q'},
218 {SunXK_F37, 'F', 'R'},
219#endif
220
221 {XK_Help, '%', '1'},
222 {XK_Undo, '&', '8'},
223 {XK_BackSpace, 'k', 'b'},
224 {XK_Insert, 'k', 'I'},
225 {XK_Delete, 'k', 'D'},
226 {XK_Home, 'k', 'h'},
227 {XK_End, '@', '7'},
228 {XK_Prior, 'k', 'P'},
229 {XK_Next, 'k', 'N'},
230 {XK_Print, '%', '9'},
231
232 /* Keypad keys: */
233#ifdef XK_KP_Left
234 {XK_KP_Left, 'k', 'l'},
235 {XK_KP_Right, 'k', 'r'},
236 {XK_KP_Up, 'k', 'u'},
237 {XK_KP_Down, 'k', 'd'},
238 {XK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
239 {XK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
240 {XK_KP_Home, 'K', '1'},
241 {XK_KP_End, 'K', '4'},
242 {XK_KP_Prior, 'K', '3'},
243 {XK_KP_Next, 'K', '5'},
244
245 {XK_KP_Add, 'K', '6'},
246 {XK_KP_Subtract, 'K', '7'},
247 {XK_KP_Divide, 'K', '8'},
248 {XK_KP_Multiply, 'K', '9'},
249 {XK_KP_Enter, 'K', 'A'},
250 {XK_KP_Decimal, 'K', 'B'},
251
252 {XK_KP_0, 'K', 'C'},
253 {XK_KP_1, 'K', 'D'},
254 {XK_KP_2, 'K', 'E'},
255 {XK_KP_3, 'K', 'F'},
256 {XK_KP_4, 'K', 'G'},
257 {XK_KP_5, 'K', 'H'},
258 {XK_KP_6, 'K', 'I'},
259 {XK_KP_7, 'K', 'J'},
260 {XK_KP_8, 'K', 'K'},
261 {XK_KP_9, 'K', 'L'},
262#endif
263
264 /* End of list marker: */
265 {(KeySym)0, 0, 0}
266};
267
268#define XtNboldFont "boldFont"
269#define XtCBoldFont "BoldFont"
270#define XtNitalicFont "italicFont"
271#define XtCItalicFont "ItalicFont"
272#define XtNboldItalicFont "boldItalicFont"
273#define XtCBoldItalicFont "BoldItalicFont"
274#define XtNscrollbarWidth "scrollbarWidth"
275#define XtCScrollbarWidth "ScrollbarWidth"
276#define XtNmenuHeight "menuHeight"
277#define XtCMenuHeight "MenuHeight"
278#define XtNmenuFont "menuFont"
279#define XtCMenuFont "MenuFont"
280#define XtNmenuFontSet "menuFontSet"
281#define XtCMenuFontSet "MenuFontSet"
282
283
284/* Resources for setting the foreground and background colors of menus */
285#define XtNmenuBackground "menuBackground"
286#define XtCMenuBackground "MenuBackground"
287#define XtNmenuForeground "menuForeground"
288#define XtCMenuForeground "MenuForeground"
289
290/* Resources for setting the foreground and background colors of scrollbars */
291#define XtNscrollBackground "scrollBackground"
292#define XtCScrollBackground "ScrollBackground"
293#define XtNscrollForeground "scrollForeground"
294#define XtCScrollForeground "ScrollForeground"
295
296/* Resources for setting the foreground and background colors of tooltip */
297#define XtNtooltipBackground "tooltipBackground"
298#define XtCTooltipBackground "TooltipBackground"
299#define XtNtooltipForeground "tooltipForeground"
300#define XtCTooltipForeground "TooltipForeground"
301#define XtNtooltipFont "tooltipFont"
302#define XtCTooltipFont "TooltipFont"
303
304/*
305 * X Resources:
306 */
307static XtResource vim_resources[] =
308{
309 {
310 XtNforeground,
311 XtCForeground,
312 XtRPixel,
313 sizeof(Pixel),
314 XtOffsetOf(gui_T, def_norm_pixel),
315 XtRString,
316 XtDefaultForeground
317 },
318 {
319 XtNbackground,
320 XtCBackground,
321 XtRPixel,
322 sizeof(Pixel),
323 XtOffsetOf(gui_T, def_back_pixel),
324 XtRString,
325 XtDefaultBackground
326 },
327 {
328 XtNfont,
329 XtCFont,
330 XtRString,
331 sizeof(String *),
332 XtOffsetOf(gui_T, rsrc_font_name),
333 XtRImmediate,
334 XtDefaultFont
335 },
336 {
337 XtNboldFont,
338 XtCBoldFont,
339 XtRString,
340 sizeof(String *),
341 XtOffsetOf(gui_T, rsrc_bold_font_name),
342 XtRImmediate,
343 ""
344 },
345 {
346 XtNitalicFont,
347 XtCItalicFont,
348 XtRString,
349 sizeof(String *),
350 XtOffsetOf(gui_T, rsrc_ital_font_name),
351 XtRImmediate,
352 ""
353 },
354 {
355 XtNboldItalicFont,
356 XtCBoldItalicFont,
357 XtRString,
358 sizeof(String *),
359 XtOffsetOf(gui_T, rsrc_boldital_font_name),
360 XtRImmediate,
361 ""
362 },
363 {
364 XtNgeometry,
365 XtCGeometry,
366 XtRString,
367 sizeof(String *),
368 XtOffsetOf(gui_T, geom),
369 XtRImmediate,
370 ""
371 },
372 {
373 XtNreverseVideo,
374 XtCReverseVideo,
375 XtRBool,
376 sizeof(Bool),
377 XtOffsetOf(gui_T, rsrc_rev_video),
378 XtRImmediate,
379 (XtPointer)False
380 },
381 {
382 XtNborderWidth,
383 XtCBorderWidth,
384 XtRInt,
385 sizeof(int),
386 XtOffsetOf(gui_T, border_width),
387 XtRImmediate,
388 (XtPointer)2
389 },
390 {
391 XtNscrollbarWidth,
392 XtCScrollbarWidth,
393 XtRInt,
394 sizeof(int),
395 XtOffsetOf(gui_T, scrollbar_width),
396 XtRImmediate,
397 (XtPointer)SB_DEFAULT_WIDTH
398 },
399#ifdef FEAT_MENU
400# ifdef FEAT_GUI_ATHENA /* with Motif the height is always computed */
401 {
402 XtNmenuHeight,
403 XtCMenuHeight,
404 XtRInt,
405 sizeof(int),
406 XtOffsetOf(gui_T, menu_height),
407 XtRImmediate,
408 (XtPointer)MENU_DEFAULT_HEIGHT /* Should figure out at run time */
409 },
410# endif
411 {
412# ifdef FONTSET_ALWAYS
413 XtNmenuFontSet,
414 XtCMenuFontSet,
415#else
416 XtNmenuFont,
417 XtCMenuFont,
418#endif
419 XtRString,
420 sizeof(char *),
421 XtOffsetOf(gui_T, rsrc_menu_font_name),
422 XtRString,
423 DFLT_MENU_FONT
424 },
425#endif
426 {
427 XtNmenuForeground,
428 XtCMenuForeground,
429 XtRString,
430 sizeof(char *),
431 XtOffsetOf(gui_T, rsrc_menu_fg_name),
432 XtRString,
433 DFLT_MENU_FG_COLOR
434 },
435 {
436 XtNmenuBackground,
437 XtCMenuBackground,
438 XtRString,
439 sizeof(char *),
440 XtOffsetOf(gui_T, rsrc_menu_bg_name),
441 XtRString,
442 DFLT_MENU_BG_COLOR
443 },
444 {
445 XtNscrollForeground,
446 XtCScrollForeground,
447 XtRString,
448 sizeof(char *),
449 XtOffsetOf(gui_T, rsrc_scroll_fg_name),
450 XtRString,
451 DFLT_SCROLL_FG_COLOR
452 },
453 {
454 XtNscrollBackground,
455 XtCScrollBackground,
456 XtRString,
457 sizeof(char *),
458 XtOffsetOf(gui_T, rsrc_scroll_bg_name),
459 XtRString,
460 DFLT_SCROLL_BG_COLOR
461 },
462#ifdef FEAT_BEVAL
463 {
464 XtNtooltipForeground,
465 XtCTooltipForeground,
466 XtRString,
467 sizeof(char *),
468 XtOffsetOf(gui_T, rsrc_tooltip_fg_name),
469 XtRString,
470 DFLT_TOOLTIP_FG_COLOR
471 },
472 {
473 XtNtooltipBackground,
474 XtCTooltipBackground,
475 XtRString,
476 sizeof(char *),
477 XtOffsetOf(gui_T, rsrc_tooltip_bg_name),
478 XtRString,
479 DFLT_TOOLTIP_BG_COLOR
480 },
481 {
482 XtNtooltipFont,
483 XtCTooltipFont,
484 XtRString,
485 sizeof(char *),
486 XtOffsetOf(gui_T, rsrc_tooltip_font_name),
487 XtRString,
488 DFLT_TOOLTIP_FONT
489 },
490 /* This one isn't really needed, keep for Sun Workshop? */
491 {
492 "balloonEvalFontSet",
493 XtCFontSet,
494 XtRFontSet,
495 sizeof(XFontSet),
496 XtOffsetOf(gui_T, tooltip_fontset),
497 XtRImmediate,
498 (XtPointer)NOFONTSET
499 },
500#endif /* FEAT_BEVAL */
501#ifdef FEAT_XIM
502 {
503 "preeditType",
504 "PreeditType",
505 XtRString,
506 sizeof(char*),
507 XtOffsetOf(gui_T, rsrc_preedit_type_name),
508 XtRString,
509 (XtPointer)"OverTheSpot,OffTheSpot,Root"
510 },
511 {
512 "inputMethod",
513 "InputMethod",
514 XtRString,
515 sizeof(char*),
516 XtOffsetOf(gui_T, rsrc_input_method),
517 XtRString,
518 NULL
519 },
520#endif /* FEAT_XIM */
521};
522
523/*
524 * This table holds all the X GUI command line options allowed. This includes
525 * the standard ones so that we can skip them when vim is started without the
526 * GUI (but the GUI might start up later).
527 * When changing this, also update doc/vim_gui.txt and the usage message!!!
528 */
529static XrmOptionDescRec cmdline_options[] =
530{
531 /* We handle these options ourselves */
532 {"-bg", ".background", XrmoptionSepArg, NULL},
533 {"-background", ".background", XrmoptionSepArg, NULL},
534 {"-fg", ".foreground", XrmoptionSepArg, NULL},
535 {"-foreground", ".foreground", XrmoptionSepArg, NULL},
536 {"-fn", ".font", XrmoptionSepArg, NULL},
537 {"-font", ".font", XrmoptionSepArg, NULL},
538 {"-boldfont", ".boldFont", XrmoptionSepArg, NULL},
539 {"-italicfont", ".italicFont", XrmoptionSepArg, NULL},
540 {"-geom", ".geometry", XrmoptionSepArg, NULL},
541 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
542 {"-reverse", "*reverseVideo", XrmoptionNoArg, "True"},
543 {"-rv", "*reverseVideo", XrmoptionNoArg, "True"},
544 {"+reverse", "*reverseVideo", XrmoptionNoArg, "False"},
545 {"+rv", "*reverseVideo", XrmoptionNoArg, "False"},
546 {"-display", ".display", XrmoptionSepArg, NULL},
Bram Moolenaara5792f52005-11-23 21:25:05 +0000547 {"-iconic", ".iconic", XrmoptionNoArg, "True"},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 {"-name", ".name", XrmoptionSepArg, NULL},
549 {"-bw", ".borderWidth", XrmoptionSepArg, NULL},
550 {"-borderwidth", ".borderWidth", XrmoptionSepArg, NULL},
551 {"-sw", ".scrollbarWidth", XrmoptionSepArg, NULL},
552 {"-scrollbarwidth", ".scrollbarWidth", XrmoptionSepArg, NULL},
553 {"-mh", ".menuHeight", XrmoptionSepArg, NULL},
554 {"-menuheight", ".menuHeight", XrmoptionSepArg, NULL},
555#ifdef FONTSET_ALWAYS
556 {"-mf", ".menuFontSet", XrmoptionSepArg, NULL},
557 {"-menufont", ".menuFontSet", XrmoptionSepArg, NULL},
558 {"-menufontset", ".menuFontSet", XrmoptionSepArg, NULL},
559#else
560 {"-mf", ".menuFont", XrmoptionSepArg, NULL},
561 {"-menufont", ".menuFont", XrmoptionSepArg, NULL},
562#endif
563 {"-xrm", NULL, XrmoptionResArg, NULL}
564};
565
566static int gui_argc = 0;
567static char **gui_argv = NULL;
568
569/*
570 * Call-back routines.
571 */
572
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100574gui_x11_timer_cb(
575 XtPointer timed_out,
576 XtIntervalId *interval_id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577{
578 *((int *)timed_out) = TRUE;
579}
580
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100582gui_x11_visibility_cb(
583 Widget w UNUSED,
584 XtPointer dud UNUSED,
585 XEvent *event,
586 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587{
588 if (event->type != VisibilityNotify)
589 return;
590
591 gui.visibility = event->xvisibility.state;
592
593 /*
594 * When we do an XCopyArea(), and the window is partially obscured, we want
595 * to receive an event to tell us whether it worked or not.
596 */
597 XSetGraphicsExposures(gui.dpy, gui.text_gc,
598 gui.visibility != VisibilityUnobscured);
599
600 /* This is needed for when redrawing is slow. */
601 gui_mch_update();
602}
603
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100605gui_x11_expose_cb(
606 Widget w UNUSED,
607 XtPointer dud UNUSED,
608 XEvent *event,
609 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610{
611 XExposeEvent *gevent;
612 int new_x;
613
614 if (event->type != Expose)
615 return;
616
617 out_flush(); /* make sure all output has been processed */
618
619 gevent = (XExposeEvent *)event;
620 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
621
622 new_x = FILL_X(0);
623
624 /* Clear the border areas if needed */
625 if (gevent->x < new_x)
626 XClearArea(gui.dpy, gui.wid, 0, 0, new_x, 0, False);
627 if (gevent->y < FILL_Y(0))
628 XClearArea(gui.dpy, gui.wid, 0, 0, 0, FILL_Y(0), False);
629 if (gevent->x > FILL_X(Columns))
630 XClearArea(gui.dpy, gui.wid, FILL_X((int)Columns), 0, 0, 0, False);
631 if (gevent->y > FILL_Y(Rows))
632 XClearArea(gui.dpy, gui.wid, 0, FILL_Y((int)Rows), 0, 0, False);
633
634 /* This is needed for when redrawing is slow. */
635 gui_mch_update();
636}
637
Bram Moolenaar67c53842010-05-22 18:28:27 +0200638#if ((defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)) \
639 && defined(FEAT_GUI_MOTIF)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640/*
Bram Moolenaar231334e2005-07-25 20:46:57 +0000641 * This function fills in the XRectangle object with the current x,y
642 * coordinates and height, width so that an XtVaSetValues to the same shell of
Bram Moolenaar49325942007-05-10 19:19:59 +0000643 * those resources will restore the window to its former position and
Bram Moolenaar231334e2005-07-25 20:46:57 +0000644 * dimensions.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 *
Bram Moolenaar231334e2005-07-25 20:46:57 +0000646 * Note: This function may fail, in which case the XRectangle will be
647 * unchanged. Be sure to have the XRectangle set with the proper values for a
648 * failed condition prior to calling this function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 */
650 static void
651shellRectangle(Widget shell, XRectangle *r)
652{
653 Window rootw, shellw, child, parentw;
654 int absx, absy;
655 XWindowAttributes a;
656 Window *children;
657 unsigned int childrenCount;
658
659 shellw = XtWindow(shell);
660 if (shellw == 0)
661 return;
662 for (;;)
663 {
664 XQueryTree(XtDisplay(shell), shellw, &rootw, &parentw,
665 &children, &childrenCount);
666 XFree(children);
667 if (parentw == rootw)
668 break;
669 shellw = parentw;
670 }
671 XGetWindowAttributes(XtDisplay(shell), shellw, &a);
672 XTranslateCoordinates(XtDisplay(shell), shellw, a.root, 0, 0,
673 &absx, &absy, &child);
674 r->x = absx;
675 r->y = absy;
676 XtVaGetValues(shell, XmNheight, &r->height, XmNwidth, &r->width, NULL);
677}
678#endif
679
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100681gui_x11_resize_window_cb(
682 Widget w UNUSED,
683 XtPointer dud UNUSED,
684 XEvent *event,
685 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686{
687 static int lastWidth, lastHeight;
688
689 if (event->type != ConfigureNotify)
690 return;
691
692 if (event->xconfigure.width != lastWidth
693 || event->xconfigure.height != lastHeight)
694 {
695 lastWidth = event->xconfigure.width;
696 lastHeight = event->xconfigure.height;
697 gui_resize_shell(event->xconfigure.width, event->xconfigure.height
698#ifdef FEAT_XIM
699 - xim_get_status_area_height()
700#endif
701 );
702 }
703#ifdef FEAT_SUN_WORKSHOP
704 if (usingSunWorkShop)
705 {
706 XRectangle rec;
707
708 shellRectangle(w, &rec);
709 workshop_frame_moved(rec.x, rec.y, rec.width, rec.height);
710 }
711#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +0200712#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI_MOTIF)
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200713 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 {
715 XRectangle rec;
716
717 shellRectangle(w, &rec);
718 netbeans_frame_moved(rec.x, rec.y);
719 }
720#endif
721#ifdef FEAT_XIM
722 xim_set_preedit();
723#endif
724}
725
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100727gui_x11_focus_change_cb(
728 Widget w UNUSED,
729 XtPointer data UNUSED,
730 XEvent *event,
731 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732{
733 gui_focus_change(event->type == FocusIn);
734}
735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100737gui_x11_enter_cb(
738 Widget w UNUSED,
739 XtPointer data UNUSED,
740 XEvent *event UNUSED,
741 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742{
743 gui_focus_change(TRUE);
744}
745
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100747gui_x11_leave_cb(
748 Widget w UNUSED,
749 XtPointer data UNUSED,
750 XEvent *event UNUSED,
751 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752{
753 gui_focus_change(FALSE);
754}
755
756#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
757# if X_HAVE_UTF8_STRING
758# define USE_UTF8LOOKUP
759# endif
760#endif
761
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100763gui_x11_key_hit_cb(
764 Widget w UNUSED,
765 XtPointer dud UNUSED,
766 XEvent *event,
767 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768{
769 XKeyPressedEvent *ev_press;
770#ifdef FEAT_XIM
771 char_u string2[256];
772 char_u string_shortbuf[256];
773 char_u *string = string_shortbuf;
774 Boolean string_alloced = False;
775 Status status;
776#else
777 char_u string[4], string2[3];
778#endif
779 KeySym key_sym, key_sym2;
780 int len, len2;
781 int i;
782 int modifiers;
783 int key;
784
785 ev_press = (XKeyPressedEvent *)event;
786
787#ifdef FEAT_XIM
788 if (xic)
789 {
790# ifdef USE_UTF8LOOKUP
791 /* XFree86 4.0.2 or newer: Be able to get UTF-8 characters even when
792 * the locale isn't utf-8. */
793 if (enc_utf8)
794 len = Xutf8LookupString(xic, ev_press, (char *)string,
795 sizeof(string_shortbuf), &key_sym, &status);
796 else
797# endif
798 len = XmbLookupString(xic, ev_press, (char *)string,
799 sizeof(string_shortbuf), &key_sym, &status);
800 if (status == XBufferOverflow)
801 {
802 string = (char_u *)XtMalloc(len + 1);
803 string_alloced = True;
804# ifdef USE_UTF8LOOKUP
805 /* XFree86 4.0.2 or newer: Be able to get UTF-8 characters even
806 * when the locale isn't utf-8. */
807 if (enc_utf8)
808 len = Xutf8LookupString(xic, ev_press, (char *)string,
809 len, &key_sym, &status);
810 else
811# endif
812 len = XmbLookupString(xic, ev_press, (char *)string,
813 len, &key_sym, &status);
814 }
815 if (status == XLookupNone || status == XLookupChars)
816 key_sym = XK_VoidSymbol;
817
818# ifdef FEAT_MBYTE
819 /* Do conversion from 'termencoding' to 'encoding'. When using
820 * Xutf8LookupString() it has already been done. */
821 if (len > 0 && input_conv.vc_type != CONV_NONE
822# ifdef USE_UTF8LOOKUP
823 && !enc_utf8
824# endif
825 )
826 {
827 int maxlen = len * 4 + 40; /* guessed */
828 char_u *p = (char_u *)XtMalloc(maxlen);
829
830 mch_memmove(p, string, len);
831 if (string_alloced)
832 XtFree((char *)string);
833 string = p;
834 string_alloced = True;
835 len = convert_input(p, len, maxlen);
836 }
837# endif
838
839 /* Translate CSI to K_CSI, otherwise it could be recognized as the
840 * start of a special key. */
841 for (i = 0; i < len; ++i)
842 if (string[i] == CSI)
843 {
844 char_u *p = (char_u *)XtMalloc(len + 3);
845
846 mch_memmove(p, string, i + 1);
847 p[i + 1] = KS_EXTRA;
848 p[i + 2] = (int)KE_CSI;
849 mch_memmove(p + i + 3, string + i + 1, len - i);
850 if (string_alloced)
851 XtFree((char *)string);
852 string = p;
853 string_alloced = True;
854 i += 2;
855 len += 2;
856 }
857 }
858 else
859#endif
860 len = XLookupString(ev_press, (char *)string, sizeof(string),
861 &key_sym, NULL);
862
863#ifdef SunXK_F36
864 /*
865 * These keys have bogus lookup strings, and trapping them here is
866 * easier than trying to XRebindKeysym() on them with every possible
867 * combination of modifiers.
868 */
869 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
870 len = 0;
871#endif
872
873#ifdef FEAT_HANGULIN
874 if ((key_sym == XK_space) && (ev_press->state & ShiftMask))
875 {
876 hangul_input_state_toggle();
877 goto theend;
878 }
879#endif
880
881 if (key_sym == XK_space)
882 string[0] = ' '; /* Otherwise Ctrl-Space doesn't work */
883
884 /*
885 * Only on some machines ^_ requires Ctrl+Shift+minus. For consistency,
886 * allow just Ctrl+minus too.
887 */
888 if (key_sym == XK_minus && (ev_press->state & ControlMask))
889 string[0] = Ctrl__;
890
891#ifdef XK_ISO_Left_Tab
892 /* why do we get XK_ISO_Left_Tab instead of XK_Tab for shift-tab? */
893 if (key_sym == XK_ISO_Left_Tab)
894 {
895 key_sym = XK_Tab;
896 string[0] = TAB;
897 len = 1;
898 }
899#endif
900
901 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
902 * that already has the 8th bit set. And not when using a double-byte
903 * encoding, setting the 8th bit may make it the lead byte of a
904 * double-byte character. */
905 if (len == 1
906 && (ev_press->state & Mod1Mask)
907 && !(key_sym == XK_BackSpace || key_sym == XK_Delete)
908 && (string[0] & 0x80) == 0
909#ifdef FEAT_MBYTE
910 && !enc_dbcs
911#endif
912 )
913 {
914#if defined(FEAT_MENU) && defined(FEAT_GUI_MOTIF)
915 /* Ignore ALT keys when they are used for the menu only */
916 if (gui.menu_is_active
917 && (p_wak[0] == 'y'
918 || (p_wak[0] == 'm' && gui_is_menu_shortcut(string[0]))))
919 goto theend;
920#endif
921 /*
922 * Before we set the 8th bit, check to make sure the user doesn't
923 * already have a mapping defined for this sequence. We determine this
924 * by checking to see if the input would be the same without the
925 * Alt/Meta key.
926 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
927 */
928 ev_press->state &= ~Mod1Mask;
929 len2 = XLookupString(ev_press, (char *)string2, sizeof(string2),
930 &key_sym2, NULL);
931 if (key_sym2 == XK_space)
932 string2[0] = ' '; /* Otherwise Meta-Ctrl-Space doesn't work */
933 if ( len2 == 1
934 && string[0] == string2[0]
935 && !(key_sym == XK_Tab && (ev_press->state & ShiftMask)))
936 {
937 string[0] |= 0x80;
938#ifdef FEAT_MBYTE
939 if (enc_utf8) /* convert to utf-8 */
940 {
941 string[1] = string[0] & 0xbf;
942 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
943 if (string[1] == CSI)
944 {
945 string[2] = KS_EXTRA;
946 string[3] = (int)KE_CSI;
947 len = 4;
948 }
949 else
950 len = 2;
951 }
952#endif
953 }
954 else
955 ev_press->state |= Mod1Mask;
956 }
957
958 if (len == 1 && string[0] == CSI)
959 {
960 string[1] = KS_EXTRA;
961 string[2] = (int)KE_CSI;
962 len = -3;
963 }
964
965 /* Check for special keys. Also do this when len == 1 (key has an ASCII
966 * value) to detect backspace, delete and keypad keys. */
967 if (len == 0 || len == 1)
968 {
969 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
970 {
971 if (special_keys[i].key_sym == key_sym)
972 {
973 string[0] = CSI;
974 string[1] = special_keys[i].vim_code0;
975 string[2] = special_keys[i].vim_code1;
976 len = -3;
977 break;
978 }
979 }
980 }
981
982 /* Unrecognised key is ignored. */
983 if (len == 0)
984 goto theend;
985
986 /* Special keys (and a few others) may have modifiers. Also when using a
987 * double-byte encoding (can't set the 8th bit). */
988 if (len == -3 || key_sym == XK_space || key_sym == XK_Tab
989 || key_sym == XK_Return || key_sym == XK_Linefeed
990 || key_sym == XK_Escape
991#ifdef FEAT_MBYTE
992 || (enc_dbcs && len == 1 && (ev_press->state & Mod1Mask))
993#endif
994 )
995 {
996 modifiers = 0;
997 if (ev_press->state & ShiftMask)
998 modifiers |= MOD_MASK_SHIFT;
999 if (ev_press->state & ControlMask)
1000 modifiers |= MOD_MASK_CTRL;
1001 if (ev_press->state & Mod1Mask)
1002 modifiers |= MOD_MASK_ALT;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001003 if (ev_press->state & Mod4Mask)
1004 modifiers |= MOD_MASK_META;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006 /*
1007 * For some keys a shift modifier is translated into another key
1008 * code.
1009 */
1010 if (len == -3)
1011 key = TO_SPECIAL(string[1], string[2]);
1012 else
1013 key = string[0];
1014 key = simplify_key(key, &modifiers);
1015 if (key == CSI)
1016 key = K_CSI;
1017 if (IS_SPECIAL(key))
1018 {
1019 string[0] = CSI;
1020 string[1] = K_SECOND(key);
1021 string[2] = K_THIRD(key);
1022 len = 3;
1023 }
1024 else
1025 {
1026 string[0] = key;
1027 len = 1;
1028 }
1029
1030 if (modifiers != 0)
1031 {
1032 string2[0] = CSI;
1033 string2[1] = KS_MODIFIER;
1034 string2[2] = modifiers;
1035 add_to_input_buf(string2, 3);
1036 }
1037 }
1038
1039 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1040#ifdef UNIX
1041 || (intr_char != 0 && string[0] == intr_char)
1042#endif
1043 ))
1044 {
1045 trash_input_buf();
1046 got_int = TRUE;
1047 }
1048
1049 add_to_input_buf(string, len);
1050
1051 /*
1052 * blank out the pointer if necessary
1053 */
1054 if (p_mh)
1055 gui_mch_mousehide(TRUE);
1056
1057#if defined(FEAT_BEVAL_TIP)
1058 {
1059 BalloonEval *be;
1060
1061 if ((be = gui_mch_currently_showing_beval()) != NULL)
1062 gui_mch_unpost_balloon(be);
1063 }
1064#endif
1065theend:
1066 {} /* some compilers need a statement here */
1067#ifdef FEAT_XIM
1068 if (string_alloced)
1069 XtFree((char *)string);
1070#endif
1071}
1072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001074gui_x11_mouse_cb(
1075 Widget w UNUSED,
1076 XtPointer dud UNUSED,
1077 XEvent *event,
1078 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079{
1080 static XtIntervalId timer = (XtIntervalId)0;
1081 static int timed_out = TRUE;
1082
1083 int button;
1084 int repeated_click = FALSE;
1085 int x, y;
1086 int_u x_modifiers;
1087 int_u vim_modifiers;
1088
1089 if (event->type == MotionNotify)
1090 {
1091 /* Get the latest position, avoids lagging behind on a drag. */
1092 x = event->xmotion.x;
1093 y = event->xmotion.y;
1094 x_modifiers = event->xmotion.state;
1095 button = (x_modifiers & (Button1Mask | Button2Mask | Button3Mask))
1096 ? MOUSE_DRAG : ' ';
1097
1098 /*
1099 * if our pointer is currently hidden, then we should show it.
1100 */
1101 gui_mch_mousehide(FALSE);
1102
1103 if (button != MOUSE_DRAG) /* just moving the rodent */
1104 {
1105#ifdef FEAT_MENU
1106 if (dud) /* moved in vimForm */
1107 y -= gui.menu_height;
1108#endif
1109 gui_mouse_moved(x, y);
1110 return;
1111 }
1112 }
1113 else
1114 {
1115 x = event->xbutton.x;
1116 y = event->xbutton.y;
1117 if (event->type == ButtonPress)
1118 {
1119 /* Handle multiple clicks */
1120 if (!timed_out)
1121 {
1122 XtRemoveTimeOut(timer);
1123 repeated_click = TRUE;
1124 }
1125 timed_out = FALSE;
1126 timer = XtAppAddTimeOut(app_context, (long_u)p_mouset,
1127 gui_x11_timer_cb, &timed_out);
1128 switch (event->xbutton.button)
1129 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001130 /* keep in sync with gui_gtk_x11.c */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 case Button1: button = MOUSE_LEFT; break;
1132 case Button2: button = MOUSE_MIDDLE; break;
1133 case Button3: button = MOUSE_RIGHT; break;
1134 case Button4: button = MOUSE_4; break;
1135 case Button5: button = MOUSE_5; break;
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001136 case 6: button = MOUSE_7; break;
1137 case 7: button = MOUSE_6; break;
1138 case 8: button = MOUSE_X1; break;
1139 case 9: button = MOUSE_X2; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 default:
1141 return; /* Unknown button */
1142 }
1143 }
1144 else if (event->type == ButtonRelease)
1145 button = MOUSE_RELEASE;
1146 else
1147 return; /* Unknown mouse event type */
1148
1149 x_modifiers = event->xbutton.state;
1150#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1151 last_mouse_event = event->xbutton;
1152#endif
1153 }
1154
1155 vim_modifiers = 0x0;
1156 if (x_modifiers & ShiftMask)
1157 vim_modifiers |= MOUSE_SHIFT;
1158 if (x_modifiers & ControlMask)
1159 vim_modifiers |= MOUSE_CTRL;
1160 if (x_modifiers & Mod1Mask) /* Alt or Meta key */
1161 vim_modifiers |= MOUSE_ALT;
1162
1163 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
1164}
1165
1166#ifdef FEAT_SNIFF
1167/* ARGSUSED */
1168 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001169gui_x11_sniff_request_cb(
1170 XtPointer closure UNUSED,
1171 int *source UNUSED,
1172 XtInputId *id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173{
1174 static char_u bytes[3] = {CSI, (int)KS_EXTRA, (int)KE_SNIFF};
1175
1176 add_to_input_buf(bytes, 3);
1177}
1178#endif
1179
1180/*
1181 * End of call-back routines
1182 */
1183
1184/*
1185 * Parse the GUI related command-line arguments. Any arguments used are
1186 * deleted from argv, and *argc is decremented accordingly. This is called
1187 * when vim is started, whether or not the GUI has been started.
1188 */
1189 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001190gui_mch_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191{
1192 int arg;
1193 int i;
1194
1195 /*
1196 * Move all the entries in argv which are relevant to X into gui_argv.
1197 */
1198 gui_argc = 0;
1199 gui_argv = (char **)lalloc((long_u)(*argc * sizeof(char *)), FALSE);
1200 if (gui_argv == NULL)
1201 return;
1202 gui_argv[gui_argc++] = argv[0];
1203 arg = 1;
1204 while (arg < *argc)
1205 {
1206 /* Look for argv[arg] in cmdline_options[] table */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001207 for (i = 0; i < (int)XtNumber(cmdline_options); i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 if (strcmp(argv[arg], cmdline_options[i].option) == 0)
1209 break;
1210
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001211 if (i < (int)XtNumber(cmdline_options))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 {
1213 /* Remember finding "-rv" or "-reverse" */
1214 if (strcmp("-rv", argv[arg]) == 0
1215 || strcmp("-reverse", argv[arg]) == 0)
1216 found_reverse_arg = TRUE;
1217 else if ((strcmp("-fn", argv[arg]) == 0
1218 || strcmp("-font", argv[arg]) == 0)
1219 && arg + 1 < *argc)
1220 font_argument = argv[arg + 1];
1221
1222 /* Found match in table, so move it into gui_argv */
1223 gui_argv[gui_argc++] = argv[arg];
1224 if (--*argc > arg)
1225 {
1226 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1227 * sizeof(char *));
1228 if (cmdline_options[i].argKind != XrmoptionNoArg)
1229 {
1230 /* Move the options argument as well */
1231 gui_argv[gui_argc++] = argv[arg];
1232 if (--*argc > arg)
1233 mch_memmove(&argv[arg], &argv[arg + 1], (*argc - arg)
1234 * sizeof(char *));
1235 }
1236 }
1237 argv[*argc] = NULL;
1238 }
1239 else
1240#ifdef FEAT_SUN_WORKSHOP
1241 if (strcmp("-ws", argv[arg]) == 0)
1242 {
1243 usingSunWorkShop++;
1244 p_acd = TRUE;
1245 gui.dofork = FALSE; /* don't fork() when starting GUI */
1246 mch_memmove(&argv[arg], &argv[arg + 1],
1247 (--*argc - arg) * sizeof(char *));
1248 argv[*argc] = NULL;
1249# ifdef WSDEBUG
1250 wsdebug_wait(WT_ENV | WT_WAIT | WT_STOP, "SPRO_GVIM_WAIT", 20);
1251 wsdebug_log_init("SPRO_GVIM_DEBUG", "SPRO_GVIM_DLEVEL");
1252# endif
1253 }
1254 else
1255#endif
1256#ifdef FEAT_NETBEANS_INTG
1257 if (strncmp("-nb", argv[arg], 3) == 0)
1258 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 gui.dofork = FALSE; /* don't fork() when starting GUI */
1260 netbeansArg = argv[arg];
1261 mch_memmove(&argv[arg], &argv[arg + 1],
1262 (--*argc - arg) * sizeof(char *));
1263 argv[*argc] = NULL;
1264 }
1265 else
1266#endif
1267 arg++;
1268 }
1269}
1270
1271#ifndef XtSpecificationRelease
1272# define CARDINAL (Cardinal *)
1273#else
1274# if XtSpecificationRelease == 4
1275# define CARDINAL (Cardinal *)
1276# else
1277# define CARDINAL (int *)
1278# endif
1279#endif
1280
1281/*
1282 * Check if the GUI can be started. Called before gvimrc is sourced.
1283 * Return OK or FAIL.
1284 */
1285 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001286gui_mch_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287{
1288#ifdef FEAT_XIM
1289 XtSetLanguageProc(NULL, NULL, NULL);
1290#endif
1291 open_app_context();
1292 if (app_context != NULL)
1293 gui.dpy = XtOpenDisplay(app_context, 0, VIM_NAME, VIM_CLASS,
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001294 cmdline_options, XtNumber(cmdline_options),
1295 CARDINAL &gui_argc, gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296
1297 if (app_context == NULL || gui.dpy == NULL)
1298 {
1299 gui.dying = TRUE;
1300 EMSG(_(e_opendisp));
1301 return FAIL;
1302 }
1303 return OK;
1304}
1305
1306
1307#ifdef USE_XSMP
1308/*
1309 * Handle XSMP processing, de-registering the attachment upon error
1310 */
1311static XtInputId _xsmp_xtinputid;
1312
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001313static void local_xsmp_handle_requests(XtPointer c, int *s, XtInputId *i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001316local_xsmp_handle_requests(
1317 XtPointer c UNUSED,
1318 int *s UNUSED,
1319 XtInputId *i UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320{
1321 if (xsmp_handle_requests() == FAIL)
1322 XtRemoveInput(_xsmp_xtinputid);
1323}
1324#endif
1325
1326
1327/*
1328 * Initialise the X GUI. Create all the windows, set up all the call-backs etc.
1329 * Returns OK for success, FAIL when the GUI can't be started.
1330 */
1331 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001332gui_mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333{
1334 XtGCMask gc_mask;
1335 XGCValues gc_vals;
1336 int x, y, mask;
1337 unsigned w, h;
1338
1339#if 0
1340 /* Uncomment this to enable synchronous mode for debugging */
1341 XSynchronize(gui.dpy, True);
1342#endif
1343
1344 vimShell = XtVaAppCreateShell(VIM_NAME, VIM_CLASS,
1345 applicationShellWidgetClass, gui.dpy, NULL);
1346
1347 /*
1348 * Get the application resources
1349 */
1350 XtVaGetApplicationResources(vimShell, (XtPointer)&gui,
1351 vim_resources, XtNumber(vim_resources), NULL);
1352
1353 gui.scrollbar_height = gui.scrollbar_width;
1354
1355 /*
1356 * Get the colors ourselves. Using the automatic conversion doesn't
1357 * handle looking for approximate colors.
1358 */
1359 /* NOTE: These next few lines are an exact duplicate of gui_athena.c's
1360 * gui_mch_def_colors(). Why?
1361 */
1362 gui.menu_fg_pixel = gui_get_color((char_u *)gui.rsrc_menu_fg_name);
1363 gui.menu_bg_pixel = gui_get_color((char_u *)gui.rsrc_menu_bg_name);
1364 gui.scroll_fg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_fg_name);
1365 gui.scroll_bg_pixel = gui_get_color((char_u *)gui.rsrc_scroll_bg_name);
1366#ifdef FEAT_BEVAL
1367 gui.tooltip_fg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_fg_name);
1368 gui.tooltip_bg_pixel = gui_get_color((char_u *)gui.rsrc_tooltip_bg_name);
1369#endif
1370
1371#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
1372 /* If the menu height was set, don't change it at runtime */
1373 if (gui.menu_height != MENU_DEFAULT_HEIGHT)
1374 gui.menu_height_fixed = TRUE;
1375#endif
1376
1377 /* Set default foreground and background colours */
1378 gui.norm_pixel = gui.def_norm_pixel;
1379 gui.back_pixel = gui.def_back_pixel;
1380
1381 /* Check if reverse video needs to be applied (on Sun it's done by X) */
1382 if (gui.rsrc_rev_video && gui_get_lightness(gui.back_pixel)
1383 > gui_get_lightness(gui.norm_pixel))
1384 {
1385 gui.norm_pixel = gui.def_back_pixel;
1386 gui.back_pixel = gui.def_norm_pixel;
1387 gui.def_norm_pixel = gui.norm_pixel;
1388 gui.def_back_pixel = gui.back_pixel;
1389 }
1390
1391 /* Get the colors from the "Normal", "Tooltip", "Scrollbar" and "Menu"
1392 * group (set in syntax.c or in a vimrc file) */
1393 set_normal_colors();
1394
1395 /*
1396 * Check that none of the colors are the same as the background color
1397 */
1398 gui_check_colors();
1399
1400 /*
1401 * Set up the GCs. The font attributes will be set in gui_init_font().
1402 */
1403 gc_mask = GCForeground | GCBackground;
1404 gc_vals.foreground = gui.norm_pixel;
1405 gc_vals.background = gui.back_pixel;
1406 gui.text_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1407
1408 gc_vals.foreground = gui.back_pixel;
1409 gc_vals.background = gui.norm_pixel;
1410 gui.back_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1411
1412 gc_mask |= GCFunction;
1413 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1414 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1415 gc_vals.function = GXxor;
1416 gui.invert_gc = XtGetGC(vimShell, gc_mask, &gc_vals);
1417
1418 gui.visibility = VisibilityUnobscured;
1419 x11_setup_atoms(gui.dpy);
1420
1421 if (gui_win_x != -1 && gui_win_y != -1)
1422 gui_mch_set_winpos(gui_win_x, gui_win_y);
1423
1424 /* Now adapt the supplied(?) geometry-settings */
1425 /* Added by Kjetil Jacobsen <kjetilja@stud.cs.uit.no> */
1426 if (gui.geom != NULL && *gui.geom != NUL)
1427 {
1428 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
1429 if (mask & WidthValue)
1430 Columns = w;
1431 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00001432 {
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001433 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00001434 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00001436 }
Bram Moolenaarc33916a2013-07-01 21:43:08 +02001437 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 /*
1439 * Set the (x,y) position of the main window only if specified in the
1440 * users geometry, so we get good defaults when they don't. This needs
1441 * to be done before the shell is popped up.
1442 */
1443 if (mask & (XValue|YValue))
1444 XtVaSetValues(vimShell, XtNgeometry, gui.geom, NULL);
1445 }
1446
1447 gui_x11_create_widgets();
1448
1449 /*
1450 * Add an icon to Vim (Marcel Douben: 11 May 1998).
1451 */
1452 if (vim_strchr(p_go, GO_ICON) != NULL)
1453 {
1454#ifndef HAVE_XPM
1455# include "vim_icon.xbm"
1456# include "vim_mask.xbm"
1457
1458 Arg arg[2];
1459
1460 XtSetArg(arg[0], XtNiconPixmap,
1461 XCreateBitmapFromData(gui.dpy,
1462 DefaultRootWindow(gui.dpy),
1463 (char *)vim_icon_bits,
1464 vim_icon_width,
1465 vim_icon_height));
1466 XtSetArg(arg[1], XtNiconMask,
1467 XCreateBitmapFromData(gui.dpy,
1468 DefaultRootWindow(gui.dpy),
1469 (char *)vim_mask_icon_bits,
1470 vim_mask_icon_width,
1471 vim_mask_icon_height));
1472 XtSetValues(vimShell, arg, (Cardinal)2);
1473#else
1474/* Use Pixmaps, looking much nicer. */
1475
1476/* If you get an error message here, you still need to unpack the runtime
1477 * archive! */
1478# ifdef magick
1479# undef magick
1480# endif
1481# define magick vim32x32
1482# include "../runtime/vim32x32.xpm"
1483# undef magick
1484# define magick vim16x16
1485# include "../runtime/vim16x16.xpm"
1486# undef magick
1487# define magick vim48x48
1488# include "../runtime/vim48x48.xpm"
1489# undef magick
1490
1491 static Pixmap icon = 0;
1492 static Pixmap icon_mask = 0;
1493 static char **magick = vim32x32;
1494 Window root_window;
1495 XIconSize *size;
1496 int number_sizes;
1497 Display *dsp;
1498 Screen *scr;
1499 XpmAttributes attr;
1500 Colormap cmap;
1501
1502 /*
1503 * Adjust the icon to the preferences of the actual window manager.
1504 */
1505 root_window = XRootWindowOfScreen(XtScreen(vimShell));
1506 if (XGetIconSizes(XtDisplay(vimShell), root_window,
1507 &size, &number_sizes) != 0)
1508 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 if (number_sizes > 0)
1510 {
Bram Moolenaar6f292662013-07-14 15:06:50 +02001511 if (size->max_height >= 48 && size->max_width >= 48)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 magick = vim48x48;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001513 else if (size->max_height >= 32 && size->max_width >= 32)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 magick = vim32x32;
Bram Moolenaar6f292662013-07-14 15:06:50 +02001515 else if (size->max_height >= 16 && size->max_width >= 16)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 magick = vim16x16;
1517 }
1518 }
1519
1520 dsp = XtDisplay(vimShell);
1521 scr = XtScreen(vimShell);
1522
1523 cmap = DefaultColormap(dsp, DefaultScreen(dsp));
1524 XtVaSetValues(vimShell, XtNcolormap, cmap, NULL);
1525
1526 attr.valuemask = 0L;
1527 attr.valuemask = XpmCloseness | XpmReturnPixels | XpmColormap | XpmDepth;
1528 attr.closeness = 65535; /* accuracy isn't crucial */
1529 attr.colormap = cmap;
1530 attr.depth = DefaultDepthOfScreen(scr);
1531
1532 if (!icon)
Bram Moolenaare8208012008-06-20 09:59:25 +00001533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 XpmCreatePixmapFromData(dsp, root_window, magick, &icon,
1535 &icon_mask, &attr);
Bram Moolenaare8208012008-06-20 09:59:25 +00001536 XpmFreeAttributes(&attr);
1537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538
1539# ifdef FEAT_GUI_ATHENA
1540 XtVaSetValues(vimShell, XtNiconPixmap, icon, XtNiconMask, icon_mask, NULL);
1541# else
1542 XtVaSetValues(vimShell, XmNiconPixmap, icon, XmNiconMask, icon_mask, NULL);
1543# endif
1544#endif
1545 }
1546
1547 if (gui.color_approx)
1548 EMSG(_("Vim E458: Cannot allocate colormap entry, some colors may be incorrect"));
1549
1550#ifdef FEAT_SUN_WORKSHOP
1551 if (usingSunWorkShop)
1552 workshop_connect(app_context);
1553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554
1555#ifdef FEAT_BEVAL
1556 gui_init_tooltip_font();
1557#endif
1558#ifdef FEAT_MENU
1559 gui_init_menu_font();
1560#endif
1561
1562#ifdef USE_XSMP
1563 /* Attach listener on ICE connection */
1564 if (-1 != xsmp_icefd)
1565 _xsmp_xtinputid = XtAppAddInput(app_context, xsmp_icefd,
1566 (XtPointer)XtInputReadMask, local_xsmp_handle_requests, NULL);
1567#endif
1568
1569 return OK;
1570}
1571
1572/*
1573 * Called when starting the GUI fails after calling gui_mch_init().
1574 */
1575 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001576gui_mch_uninit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577{
1578 gui_x11_destroy_widgets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 XtCloseDisplay(gui.dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 gui.dpy = NULL;
1581 vimShell = (Widget)0;
Bram Moolenaare4bfca82009-02-24 03:12:40 +00001582 vim_free(gui_argv);
1583 gui_argv = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584}
1585
1586/*
1587 * Called when the foreground or background color has been changed.
1588 */
1589 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001590gui_mch_new_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591{
1592 long_u gc_mask;
1593 XGCValues gc_vals;
1594
1595 gc_mask = GCForeground | GCBackground;
1596 gc_vals.foreground = gui.norm_pixel;
1597 gc_vals.background = gui.back_pixel;
1598 if (gui.text_gc != NULL)
1599 XChangeGC(gui.dpy, gui.text_gc, gc_mask, &gc_vals);
1600
1601 gc_vals.foreground = gui.back_pixel;
1602 gc_vals.background = gui.norm_pixel;
1603 if (gui.back_gc != NULL)
1604 XChangeGC(gui.dpy, gui.back_gc, gc_mask, &gc_vals);
1605
1606 gc_mask |= GCFunction;
1607 gc_vals.foreground = gui.norm_pixel ^ gui.back_pixel;
1608 gc_vals.background = gui.norm_pixel ^ gui.back_pixel;
1609 gc_vals.function = GXxor;
1610 if (gui.invert_gc != NULL)
1611 XChangeGC(gui.dpy, gui.invert_gc, gc_mask, &gc_vals);
1612
1613 gui_x11_set_back_color();
1614}
1615
1616/*
1617 * Open the GUI window which was created by a call to gui_mch_init().
1618 */
1619 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001620gui_mch_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622 /* Actually open the window */
Bram Moolenaara5792f52005-11-23 21:25:05 +00001623 XtRealizeWidget(vimShell);
1624 XtManageChild(XtNameToWidget(vimShell, "*vimForm"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
1626 gui.wid = gui_x11_get_wid();
1627 gui.blank_pointer = gui_x11_create_blank_mouse();
1628
1629 /*
1630 * Add a callback for the Close item on the window managers menu, and the
1631 * save-yourself event.
1632 */
1633 wm_atoms[SAVE_YOURSELF_IDX] =
1634 XInternAtom(gui.dpy, "WM_SAVE_YOURSELF", False);
1635 wm_atoms[DELETE_WINDOW_IDX] =
1636 XInternAtom(gui.dpy, "WM_DELETE_WINDOW", False);
1637 XSetWMProtocols(gui.dpy, XtWindow(vimShell), wm_atoms, 2);
1638 XtAddEventHandler(vimShell, NoEventMask, True, gui_x11_wm_protocol_handler,
1639 NULL);
1640#ifdef HAVE_X11_XMU_EDITRES_H
1641 /*
1642 * Enable editres protocol (see "man editres").
1643 * Usually will need to add -lXmu to the linker line as well.
1644 */
1645 XtAddEventHandler(vimShell, (EventMask)0, True, _XEditResCheckMessages,
1646 (XtPointer)NULL);
1647#endif
1648
1649#ifdef FEAT_CLIENTSERVER
1650 if (serverName == NULL && serverDelayedStartName != NULL)
1651 {
1652 /* This is a :gui command in a plain vim with no previous server */
1653 commWindow = XtWindow(vimShell);
1654 (void)serverRegisterName(gui.dpy, serverDelayedStartName);
1655 }
1656 else
1657 {
1658 /*
1659 * Cannot handle "widget-less" windows with XtProcessEvent() we'll
1660 * have to change the "server" registration to that of the main window
1661 * If we have not registered a name yet, remember the window
1662 */
1663 serverChangeRegisteredWindow(gui.dpy, XtWindow(vimShell));
1664 }
1665 XtAddEventHandler(vimShell, PropertyChangeMask, False,
1666 gui_x11_send_event_handler, NULL);
1667#endif
1668
1669
1670#if defined(FEAT_MENU) && defined(FEAT_GUI_ATHENA)
1671 /* The Athena GUI needs this again after opening the window */
1672 gui_position_menu();
1673# ifdef FEAT_TOOLBAR
1674 gui_mch_set_toolbar_pos(0, gui.menu_height, gui.menu_width,
1675 gui.toolbar_height);
1676# endif
1677#endif
1678
1679 /* Get the colors for the highlight groups (gui_check_colors() might have
1680 * changed them) */
1681 highlight_gui_started(); /* re-init colors and fonts */
1682
1683#ifdef FEAT_HANGULIN
1684 hangul_keyboard_set();
1685#endif
1686#ifdef FEAT_XIM
1687 xim_init();
1688#endif
1689#ifdef FEAT_SUN_WORKSHOP
1690 workshop_postinit();
1691#endif
1692
1693 return OK;
1694}
1695
1696#if defined(FEAT_BEVAL) || defined(PROTO)
1697/*
1698 * Convert the tooltip fontset name to an XFontSet.
1699 */
1700 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001701gui_init_tooltip_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702{
1703 XrmValue from, to;
1704
1705 from.addr = (char *)gui.rsrc_tooltip_font_name;
1706 from.size = strlen(from.addr);
1707 to.addr = (XtPointer)&gui.tooltip_fontset;
1708 to.size = sizeof(XFontSet);
1709
1710 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1711 {
1712 /* Failed. What to do? */
1713 }
1714}
1715#endif
1716
1717#if defined(FEAT_MENU) || defined(PROTO)
1718/* Convert the menu font/fontset name to an XFontStruct/XFontset */
1719 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001720gui_init_menu_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 XrmValue from, to;
1723
1724#ifdef FONTSET_ALWAYS
1725 from.addr = (char *)gui.rsrc_menu_font_name;
1726 from.size = strlen(from.addr);
1727 to.addr = (XtPointer)&gui.menu_fontset;
1728 to.size = sizeof(GuiFontset);
1729
1730 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontSet, &to) == False)
1731 {
1732 /* Failed. What to do? */
1733 }
1734#else
1735 from.addr = (char *)gui.rsrc_menu_font_name;
1736 from.size = strlen(from.addr);
1737 to.addr = (XtPointer)&gui.menu_font;
1738 to.size = sizeof(GuiFont);
1739
1740 if (XtConvertAndStore(vimShell, XtRString, &from, XtRFontStruct, &to) == False)
1741 {
1742 /* Failed. What to do? */
1743 }
1744#endif
1745}
1746#endif
1747
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001749gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750{
1751#if 0
1752 /* Lesstif gives an error message here, and so does Solaris. The man page
1753 * says that this isn't needed when exiting, so just skip it. */
1754 XtCloseDisplay(gui.dpy);
1755#endif
Bram Moolenaare4bfca82009-02-24 03:12:40 +00001756 vim_free(gui_argv);
1757 gui_argv = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758}
1759
1760/*
1761 * Get the position of the top left corner of the window.
1762 */
1763 int
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001764gui_mch_get_winpos(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 Dimension xpos, ypos;
1767
1768 XtVaGetValues(vimShell,
1769 XtNx, &xpos,
1770 XtNy, &ypos,
1771 NULL);
1772 *x = xpos;
1773 *y = ypos;
1774 return OK;
1775}
1776
1777/*
1778 * Set the position of the top left corner of the window to the given
1779 * coordinates.
1780 */
1781 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01001782gui_mch_set_winpos(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
1784 XtVaSetValues(vimShell,
1785 XtNx, x,
1786 XtNy, y,
1787 NULL);
1788}
1789
1790 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001791gui_mch_set_shellsize(
1792 int width,
1793 int height,
1794 int min_width,
1795 int min_height,
1796 int base_width,
1797 int base_height,
1798 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799{
Bram Moolenaar1c2fda22005-01-02 11:43:19 +00001800#ifdef FEAT_XIM
1801 height += xim_get_status_area_height(),
1802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 XtVaSetValues(vimShell,
1804 XtNwidthInc, gui.char_width,
1805 XtNheightInc, gui.char_height,
1806#if defined(XtSpecificationRelease) && XtSpecificationRelease >= 4
1807 XtNbaseWidth, base_width,
1808 XtNbaseHeight, base_height,
1809#endif
1810 XtNminWidth, min_width,
1811 XtNminHeight, min_height,
1812 XtNwidth, width,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 XtNheight, height,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 NULL);
1815}
1816
1817/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00001818 * Allow 10 pixels for horizontal borders, 'guiheadroom' for vertical borders.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 * Is there no way in X to find out how wide the borders really are?
1820 */
1821 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001822gui_mch_get_screen_dimensions(
1823 int *screen_w,
1824 int *screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825{
1826 *screen_w = DisplayWidth(gui.dpy, DefaultScreen(gui.dpy)) - 10;
1827 *screen_h = DisplayHeight(gui.dpy, DefaultScreen(gui.dpy)) - p_ghr;
1828}
1829
1830/*
1831 * Initialise vim to use the font "font_name". If it's NULL, pick a default
1832 * font.
1833 * If "fontset" is TRUE, load the "font_name" as a fontset.
1834 * Return FAIL if the font could not be loaded, OK otherwise.
1835 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001837gui_mch_init_font(
1838 char_u *font_name,
1839 int do_fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840{
1841 XFontStruct *font = NULL;
1842
1843#ifdef FEAT_XFONTSET
1844 XFontSet fontset = NULL;
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001847#ifdef FEAT_GUI_MOTIF
1848 /* A font name equal "*" is indicating, that we should activate the font
1849 * selection dialogue to get a new font name. So let us do it here. */
1850 if (font_name != NULL && STRCMP(font_name, "*") == 0)
1851 font_name = gui_xm_select_font(hl_get_font_name());
1852#endif
1853
1854#ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 if (do_fontset)
1856 {
1857 /* If 'guifontset' is set, VIM treats all font specifications as if
1858 * they were fontsets, and 'guifontset' becomes the default. */
1859 if (font_name != NULL)
1860 {
1861 fontset = (XFontSet)gui_mch_get_fontset(font_name, FALSE, TRUE);
1862 if (fontset == NULL)
1863 return FAIL;
1864 }
1865 }
1866 else
1867#endif
1868 {
1869 if (font_name == NULL)
1870 {
1871 /*
1872 * If none of the fonts in 'font' could be loaded, try the one set
1873 * in the X resource, and finally just try using DFLT_FONT, which
1874 * will hopefully always be there.
1875 */
1876 font_name = gui.rsrc_font_name;
1877 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1878 if (font == NULL)
1879 font_name = (char_u *)DFLT_FONT;
1880 }
1881 if (font == NULL)
1882 font = (XFontStruct *)gui_mch_get_font(font_name, FALSE);
1883 if (font == NULL)
1884 return FAIL;
1885 }
1886
1887 gui_mch_free_font(gui.norm_font);
1888#ifdef FEAT_XFONTSET
1889 gui_mch_free_fontset(gui.fontset);
1890
1891 if (fontset != NULL)
1892 {
1893 gui.norm_font = NOFONT;
1894 gui.fontset = (GuiFontset)fontset;
1895 gui.char_width = fontset_width(fontset);
1896 gui.char_height = fontset_height(fontset) + p_linespace;
1897 gui.char_ascent = fontset_ascent(fontset) + p_linespace / 2;
1898 }
1899 else
1900#endif
1901 {
1902 gui.norm_font = (GuiFont)font;
1903#ifdef FEAT_XFONTSET
1904 gui.fontset = NOFONTSET;
1905#endif
1906 gui.char_width = font->max_bounds.width;
1907 gui.char_height = font->ascent + font->descent + p_linespace;
1908 gui.char_ascent = font->ascent + p_linespace / 2;
1909 }
1910
1911 hl_set_font_name(font_name);
1912
1913 /*
1914 * Try to load other fonts for bold, italic, and bold-italic.
1915 * We should also try to work out what font to use for these when they are
1916 * not specified by X resources, but we don't yet.
1917 */
1918 if (font_name == gui.rsrc_font_name)
1919 {
1920 if (gui.bold_font == NOFONT
1921 && gui.rsrc_bold_font_name != NULL
1922 && *gui.rsrc_bold_font_name != NUL)
1923 gui.bold_font = gui_mch_get_font(gui.rsrc_bold_font_name, FALSE);
1924 if (gui.ital_font == NOFONT
1925 && gui.rsrc_ital_font_name != NULL
1926 && *gui.rsrc_ital_font_name != NUL)
1927 gui.ital_font = gui_mch_get_font(gui.rsrc_ital_font_name, FALSE);
1928 if (gui.boldital_font == NOFONT
1929 && gui.rsrc_boldital_font_name != NULL
1930 && *gui.rsrc_boldital_font_name != NUL)
1931 gui.boldital_font = gui_mch_get_font(gui.rsrc_boldital_font_name,
1932 FALSE);
1933 }
1934 else
1935 {
1936 /* When not using the font specified by the resources, also don't use
1937 * the bold/italic fonts, otherwise setting 'guifont' will look very
1938 * strange. */
1939 if (gui.bold_font != NOFONT)
1940 {
1941 XFreeFont(gui.dpy, (XFontStruct *)gui.bold_font);
1942 gui.bold_font = NOFONT;
1943 }
1944 if (gui.ital_font != NOFONT)
1945 {
1946 XFreeFont(gui.dpy, (XFontStruct *)gui.ital_font);
1947 gui.ital_font = NOFONT;
1948 }
1949 if (gui.boldital_font != NOFONT)
1950 {
1951 XFreeFont(gui.dpy, (XFontStruct *)gui.boldital_font);
1952 gui.boldital_font = NOFONT;
1953 }
1954 }
1955
Bram Moolenaar567e4de2004-12-31 21:01:02 +00001956#ifdef FEAT_GUI_MOTIF
1957 gui_motif_synch_fonts();
1958#endif
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 return OK;
1961}
1962
1963/*
1964 * Get a font structure for highlighting.
1965 */
1966 GuiFont
Bram Moolenaar68c2f632016-01-30 17:24:07 +01001967gui_mch_get_font(char_u *name, int giveErrorIfMissing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968{
1969 XFontStruct *font;
1970
1971 if (!gui.in_use || name == NULL) /* can't do this when GUI not running */
1972 return NOFONT;
1973
1974 font = XLoadQueryFont(gui.dpy, (char *)name);
1975
1976 if (font == NULL)
1977 {
1978 if (giveErrorIfMissing)
1979 EMSG2(_(e_font), name);
1980 return NOFONT;
1981 }
1982
1983#ifdef DEBUG
1984 printf("Font Information for '%s':\n", name);
1985 printf(" w = %d, h = %d, ascent = %d, descent = %d\n",
1986 font->max_bounds.width, font->ascent + font->descent,
1987 font->ascent, font->descent);
1988 printf(" max ascent = %d, max descent = %d, max h = %d\n",
1989 font->max_bounds.ascent, font->max_bounds.descent,
1990 font->max_bounds.ascent + font->max_bounds.descent);
1991 printf(" min lbearing = %d, min rbearing = %d\n",
1992 font->min_bounds.lbearing, font->min_bounds.rbearing);
1993 printf(" max lbearing = %d, max rbearing = %d\n",
1994 font->max_bounds.lbearing, font->max_bounds.rbearing);
1995 printf(" leftink = %d, rightink = %d\n",
1996 (font->min_bounds.lbearing < 0),
1997 (font->max_bounds.rbearing > font->max_bounds.width));
1998 printf("\n");
1999#endif
2000
2001 if (font->max_bounds.width != font->min_bounds.width)
2002 {
2003 EMSG2(_(e_fontwidth), name);
2004 XFreeFont(gui.dpy, font);
2005 return NOFONT;
2006 }
2007 return (GuiFont)font;
2008}
2009
Bram Moolenaar567e4de2004-12-31 21:01:02 +00002010#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002011/*
2012 * Return the name of font "font" in allocated memory.
2013 * Don't know how to get the actual name, thus use the provided name.
2014 */
2015 char_u *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002016gui_mch_get_fontname(GuiFont font UNUSED, char_u *name)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002017{
2018 if (name == NULL)
2019 return NULL;
2020 return vim_strsave(name);
2021}
Bram Moolenaar567e4de2004-12-31 21:01:02 +00002022#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002023
Bram Moolenaar231334e2005-07-25 20:46:57 +00002024/*
2025 * Adjust gui.char_height (after 'linespace' was changed).
2026 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002028gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029{
2030#ifdef FEAT_XFONTSET
2031 if (gui.fontset != NOFONTSET)
2032 {
2033 gui.char_height = fontset_height((XFontSet)gui.fontset) + p_linespace;
2034 gui.char_ascent = fontset_ascent((XFontSet)gui.fontset)
2035 + p_linespace / 2;
2036 }
2037 else
2038#endif
2039 {
2040 XFontStruct *font = (XFontStruct *)gui.norm_font;
2041
2042 gui.char_height = font->ascent + font->descent + p_linespace;
2043 gui.char_ascent = font->ascent + p_linespace / 2;
2044 }
2045 return OK;
2046}
2047
2048/*
2049 * Set the current text font.
2050 */
2051 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002052gui_mch_set_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053{
2054 static Font prev_font = (Font)-1;
2055 Font fid = ((XFontStruct *)font)->fid;
2056
2057 if (fid != prev_font)
2058 {
2059 XSetFont(gui.dpy, gui.text_gc, fid);
2060 XSetFont(gui.dpy, gui.back_gc, fid);
2061 prev_font = fid;
2062 gui.char_ascent = ((XFontStruct *)font)->ascent + p_linespace / 2;
2063 }
2064#ifdef FEAT_XFONTSET
2065 current_fontset = (XFontSet)NULL;
2066#endif
2067}
2068
2069#if defined(FEAT_XFONTSET) || defined(PROTO)
2070/*
2071 * Set the current text fontset.
2072 * Adjust the ascent, in case it's different.
2073 */
2074 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002075gui_mch_set_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076{
2077 current_fontset = (XFontSet)fontset;
2078 gui.char_ascent = fontset_ascent(current_fontset) + p_linespace / 2;
2079}
2080#endif
2081
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082/*
2083 * If a font is not going to be used, free its structure.
2084 */
2085 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002086gui_mch_free_font(GuiFont font)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087{
2088 if (font != NOFONT)
2089 XFreeFont(gui.dpy, (XFontStruct *)font);
2090}
2091
2092#if defined(FEAT_XFONTSET) || defined(PROTO)
2093/*
2094 * If a fontset is not going to be used, free its structure.
2095 */
2096 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002097gui_mch_free_fontset(GuiFontset fontset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098{
2099 if (fontset != NOFONTSET)
2100 XFreeFontSet(gui.dpy, (XFontSet)fontset);
2101}
2102
2103/*
2104 * Load the fontset "name".
2105 * Return a reference to the fontset, or NOFONTSET when failing.
2106 */
2107 GuiFontset
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002108gui_mch_get_fontset(
2109 char_u *name,
2110 int giveErrorIfMissing,
2111 int fixed_width)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112{
2113 XFontSet fontset;
2114 char **missing, *def_str;
2115 int num_missing;
2116
2117 if (!gui.in_use || name == NULL)
2118 return NOFONTSET;
2119
2120 fontset = XCreateFontSet(gui.dpy, (char *)name, &missing, &num_missing,
2121 &def_str);
2122 if (num_missing > 0)
2123 {
2124 int i;
2125
2126 if (giveErrorIfMissing)
2127 {
2128 EMSG2(_("E250: Fonts for the following charsets are missing in fontset %s:"), name);
2129 for (i = 0; i < num_missing; i++)
2130 EMSG2("%s", missing[i]);
2131 }
2132 XFreeStringList(missing);
2133 }
2134
2135 if (fontset == NULL)
2136 {
2137 if (giveErrorIfMissing)
2138 EMSG2(_(e_fontset), name);
2139 return NOFONTSET;
2140 }
2141
2142 if (fixed_width && check_fontset_sanity(fontset) == FAIL)
2143 {
2144 XFreeFontSet(gui.dpy, fontset);
2145 return NOFONTSET;
2146 }
2147 return (GuiFontset)fontset;
2148}
2149
2150/*
2151 * Check if fontset "fs" is fixed width.
2152 */
2153 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002154check_fontset_sanity(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155{
2156 XFontStruct **xfs;
2157 char **font_name;
2158 int fn;
2159 char *base_name;
2160 int i;
2161 int min_width;
2162 int min_font_idx = 0;
2163
2164 base_name = XBaseFontNameListOfFontSet(fs);
2165 fn = XFontsOfFontSet(fs, &xfs, &font_name);
2166 for (i = 0; i < fn; i++)
2167 {
2168 if (xfs[i]->max_bounds.width != xfs[i]->min_bounds.width)
2169 {
2170 EMSG2(_("E252: Fontset name: %s"), base_name);
2171 EMSG2(_("Font '%s' is not fixed-width"), font_name[i]);
2172 return FAIL;
2173 }
2174 }
2175 /* scan base font width */
2176 min_width = 32767;
2177 for (i = 0; i < fn; i++)
2178 {
2179 if (xfs[i]->max_bounds.width<min_width)
2180 {
2181 min_width = xfs[i]->max_bounds.width;
2182 min_font_idx = i;
2183 }
2184 }
2185 for (i = 0; i < fn; i++)
2186 {
2187 if ( xfs[i]->max_bounds.width != 2 * min_width
2188 && xfs[i]->max_bounds.width != min_width)
2189 {
Bram Moolenaar9d438d32013-06-13 21:57:20 +02002190 EMSG2(_("E253: Fontset name: %s"), base_name);
2191 EMSG2(_("Font0: %s"), font_name[min_font_idx]);
2192 EMSG2(_("Font1: %s"), font_name[i]);
2193 EMSGN(_("Font%ld width is not twice that of font0"), i);
2194 EMSGN(_("Font0 width: %ld"), xfs[min_font_idx]->max_bounds.width);
2195 EMSGN(_("Font1 width: %ld"), xfs[i]->max_bounds.width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 return FAIL;
2197 }
2198 }
2199 /* it seems ok. Good Luck!! */
2200 return OK;
2201}
2202
2203 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002204fontset_width(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002206 return XmbTextEscapement(fs, "Vim", 3) / 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207}
2208
2209 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002210fontset_height(
2211 XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212{
2213 XFontSetExtents *extents;
2214
2215 extents = XExtentsOfFontSet(fs);
2216 return extents->max_logical_extent.height;
2217}
2218
2219#if (defined(FONTSET_ALWAYS) && defined(FEAT_GUI_ATHENA) \
2220 && defined(FEAT_MENU)) || defined(PROTO)
2221/*
2222 * Returns the bounding box height around the actual glyph image of all
2223 * characters in all fonts of the fontset.
2224 */
2225 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002226fontset_height2(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227{
2228 XFontSetExtents *extents;
2229
2230 extents = XExtentsOfFontSet(fs);
2231 return extents->max_ink_extent.height;
2232}
2233#endif
2234
2235/* NOT USED YET
2236 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002237fontset_descent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238{
2239 XFontSetExtents *extents;
2240
2241 extents = XExtentsOfFontSet (fs);
2242 return extents->max_logical_extent.height + extents->max_logical_extent.y;
2243}
2244*/
2245
2246 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002247fontset_ascent(XFontSet fs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248{
2249 XFontSetExtents *extents;
2250
2251 extents = XExtentsOfFontSet(fs);
2252 return -extents->max_logical_extent.y;
2253}
2254
2255#endif /* FEAT_XFONTSET */
2256
2257/*
2258 * Return the Pixel value (color) for the given color name.
2259 * Return INVALCOLOR for error.
2260 */
2261 guicolor_T
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002262gui_mch_get_color(char_u *reqname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 int i;
2265 char_u *name = reqname;
2266 Colormap colormap;
2267 XColor color;
2268 static char *(vimnames[][2]) =
2269 {
2270 /* A number of colors that some X11 systems don't have */
2271 {"LightRed", "#FFBBBB"},
2272 {"LightGreen", "#88FF88"},
2273 {"LightMagenta","#FFBBFF"},
2274 {"DarkCyan", "#008888"},
2275 {"DarkBlue", "#0000BB"},
2276 {"DarkRed", "#BB0000"},
2277 {"DarkMagenta", "#BB00BB"},
2278 {"DarkGrey", "#BBBBBB"},
2279 {"DarkYellow", "#BBBB00"},
Bram Moolenaarb21e5842006-04-16 18:30:08 +00002280 {"Gray10", "#1A1A1A"},
2281 {"Grey10", "#1A1A1A"},
2282 {"Gray20", "#333333"},
2283 {"Grey20", "#333333"},
2284 {"Gray30", "#4D4D4D"},
2285 {"Grey30", "#4D4D4D"},
2286 {"Gray40", "#666666"},
2287 {"Grey40", "#666666"},
2288 {"Gray50", "#7F7F7F"},
2289 {"Grey50", "#7F7F7F"},
2290 {"Gray60", "#999999"},
2291 {"Grey60", "#999999"},
2292 {"Gray70", "#B3B3B3"},
2293 {"Grey70", "#B3B3B3"},
2294 {"Gray80", "#CCCCCC"},
2295 {"Grey80", "#CCCCCC"},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00002296 {"Gray90", "#E5E5E5"},
2297 {"Grey90", "#E5E5E5"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 {NULL, NULL}
2299 };
2300
2301 /* can't do this when GUI not running */
2302 if (!gui.in_use || *reqname == NUL)
2303 return INVALCOLOR;
2304
2305 colormap = DefaultColormap(gui.dpy, XDefaultScreen(gui.dpy));
2306
2307 /* Do this twice if the name isn't recognized. */
2308 while (name != NULL)
2309 {
2310 i = XParseColor(gui.dpy, colormap, (char *)name, &color);
2311
2312#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
2313 if (i == 0)
2314 {
2315 char *old;
2316
2317 /* The X11 system is trying to resolve named colors only by names
2318 * corresponding to the current locale language. But Vim scripts
2319 * usually contain the English color names. Therefore we have to
2320 * try a second time here with the native "C" locale set.
2321 * Hopefully, restoring the old locale this way works on all
2322 * systems...
2323 */
2324 old = setlocale(LC_ALL, NULL);
2325 if (old != NULL && STRCMP(old, "C") != 0)
2326 {
2327 old = (char *)vim_strsave((char_u *)old);
2328 setlocale(LC_ALL, "C");
2329 i = XParseColor(gui.dpy, colormap, (char *)name, &color);
2330 setlocale(LC_ALL, old);
2331 vim_free(old);
2332 }
2333 }
2334#endif
2335 if (i != 0 && (XAllocColor(gui.dpy, colormap, &color) != 0
2336 || find_closest_color(colormap, &color) == OK))
2337 return (guicolor_T)color.pixel;
2338
2339 /* check for a few builtin names */
2340 for (i = 0; ; ++i)
2341 {
2342 if (vimnames[i][0] == NULL)
2343 {
2344 name = NULL;
2345 break;
2346 }
2347 if (STRICMP(name, vimnames[i][0]) == 0)
2348 {
2349 name = (char_u *)vimnames[i][1];
2350 break;
2351 }
2352 }
2353 }
2354
2355 return INVALCOLOR;
2356}
2357
2358/*
2359 * Find closest color for "colorPtr" in "colormap". set "colorPtr" to the
2360 * resulting color.
2361 * Based on a similar function in TCL.
2362 * Return FAIL if not able to find or allocate a color.
2363 */
2364 static int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002365find_closest_color(Colormap colormap, XColor *colorPtr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366{
2367 double tmp, distance, closestDistance;
2368 int i, closest, numFound, cmap_size;
2369 XColor *colortable;
2370 XVisualInfo template, *visInfoPtr;
2371
2372 template.visualid = XVisualIDFromVisual(DefaultVisual(gui.dpy,
2373 XDefaultScreen(gui.dpy)));
2374 visInfoPtr = XGetVisualInfo(gui.dpy, (long)VisualIDMask,
2375 &template, &numFound);
2376 if (numFound < 1)
2377 /* FindClosestColor couldn't lookup visual */
2378 return FAIL;
2379
2380 cmap_size = visInfoPtr->colormap_size;
2381 XFree((char *)visInfoPtr);
2382 colortable = (XColor *)alloc((unsigned)(cmap_size * sizeof(XColor)));
2383 if (!colortable)
2384 return FAIL; /* out of memory */
2385
2386 for (i = 0; i < cmap_size; i++)
2387 colortable[i].pixel = (unsigned long)i;
2388 XQueryColors (gui.dpy, colormap, colortable, cmap_size);
2389
2390 /*
2391 * Find the color that best approximates the desired one, then
2392 * try to allocate that color. If that fails, it must mean that
2393 * the color was read-write (so we can't use it, since it's owner
2394 * might change it) or else it was already freed. Try again,
2395 * over and over again, until something succeeds.
2396 */
2397 closestDistance = 1e30;
2398 closest = 0;
2399 for (i = 0; i < cmap_size; i++)
2400 {
2401 /*
2402 * Use Euclidean distance in RGB space, weighted by Y (of YIQ)
2403 * as the objective function; this accounts for differences
2404 * in the color sensitivity of the eye.
2405 */
2406 tmp = .30 * (((int)colorPtr->red) - (int)colortable[i].red);
2407 distance = tmp * tmp;
2408 tmp = .61 * (((int)colorPtr->green) - (int)colortable[i].green);
2409 distance += tmp * tmp;
2410 tmp = .11 * (((int)colorPtr->blue) - (int)colortable[i].blue);
2411 distance += tmp * tmp;
2412 if (distance < closestDistance)
2413 {
2414 closest = i;
2415 closestDistance = distance;
2416 }
2417 }
2418
2419 if (XAllocColor(gui.dpy, colormap, &colortable[closest]) != 0)
2420 {
2421 gui.color_approx = TRUE;
2422 *colorPtr = colortable[closest];
2423 }
2424
Bram Moolenaar5a221812008-11-12 12:08:45 +00002425 vim_free(colortable);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 return OK;
2427}
2428
Bram Moolenaarfb269802005-03-15 22:46:30 +00002429/*
2430 * Set the current text foreground color.
2431 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002433gui_mch_set_fg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434{
2435 if (color != prev_fg_color)
2436 {
2437 XSetForeground(gui.dpy, gui.text_gc, (Pixel)color);
2438 prev_fg_color = color;
2439 }
2440}
2441
2442/*
2443 * Set the current text background color.
2444 */
2445 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002446gui_mch_set_bg_color(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447{
2448 if (color != prev_bg_color)
2449 {
2450 XSetBackground(gui.dpy, gui.text_gc, (Pixel)color);
2451 prev_bg_color = color;
2452 }
2453}
2454
2455/*
Bram Moolenaarfb269802005-03-15 22:46:30 +00002456 * Set the current text special color.
2457 */
2458 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002459gui_mch_set_sp_color(guicolor_T color)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002460{
2461 prev_sp_color = color;
2462}
2463
2464/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 * create a mouse pointer that is blank
2466 */
2467 static Cursor
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002468gui_x11_create_blank_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469{
2470 Pixmap blank_pixmap = XCreatePixmap(gui.dpy, gui.wid, 1, 1, 1);
2471 GC gc = XCreateGC(gui.dpy, blank_pixmap, (unsigned long)0, (XGCValues*)0);
2472 XDrawPoint(gui.dpy, blank_pixmap, gc, 0, 0);
2473 XFreeGC(gui.dpy, gc);
2474 return XCreatePixmapCursor(gui.dpy, blank_pixmap, blank_pixmap,
2475 (XColor*)&gui.norm_pixel, (XColor*)&gui.norm_pixel, 0, 0);
2476}
2477
Bram Moolenaarfb269802005-03-15 22:46:30 +00002478/*
2479 * Draw a curled line at the bottom of the character cell.
2480 */
2481 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002482draw_curl(int row, int col, int cells)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002483{
2484 int i;
2485 int offset;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002486 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarfb269802005-03-15 22:46:30 +00002487
2488 XSetForeground(gui.dpy, gui.text_gc, prev_sp_color);
2489 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
2490 {
2491 offset = val[i % 8];
2492 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, i,
2493 FILL_Y(row + 1) - 1 - offset);
2494 }
2495 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
2496}
2497
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002499gui_mch_draw_string(
2500 int row,
2501 int col,
2502 char_u *s,
2503 int len,
2504 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505{
2506 int cells = len;
2507#ifdef FEAT_MBYTE
Bram Moolenaara3227e22006-03-08 21:32:40 +00002508 static void *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 static int buflen = 0;
2510 char_u *p;
2511 int wlen = 0;
2512 int c;
2513
2514 if (enc_utf8)
2515 {
2516 /* Convert UTF-8 byte sequence to 16 bit characters for the X
2517 * functions. Need a buffer for the 16 bit characters. Keep it
2518 * between calls, because allocating it each time is slow. */
2519 if (buflen < len)
2520 {
2521 XtFree((char *)buf);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002522 buf = (void *)XtMalloc(len * (sizeof(XChar2b) < sizeof(wchar_t)
2523 ? sizeof(wchar_t) : sizeof(XChar2b)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 buflen = len;
2525 }
2526 p = s;
2527 cells = 0;
2528 while (p < s + len)
2529 {
2530 c = utf_ptr2char(p);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002531# ifdef FEAT_XFONTSET
2532 if (current_fontset != NULL)
2533 {
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002534# ifdef SMALL_WCHAR_T
2535 if (c >= 0x10000)
Bram Moolenaara3227e22006-03-08 21:32:40 +00002536 c = 0xbf; /* show chars > 0xffff as ? */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002537# endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00002538 ((wchar_t *)buf)[wlen] = c;
2539 }
2540 else
2541# endif
2542 {
2543 if (c >= 0x10000)
2544 c = 0xbf; /* show chars > 0xffff as ? */
2545 ((XChar2b *)buf)[wlen].byte1 = (unsigned)c >> 8;
2546 ((XChar2b *)buf)[wlen].byte2 = c;
2547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 ++wlen;
2549 cells += utf_char2cells(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002550 p += utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 }
2552 }
2553 else if (has_mbyte)
2554 {
2555 cells = 0;
2556 for (p = s; p < s + len; )
2557 {
2558 cells += ptr2cells(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002559 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 }
2561 }
2562
2563#endif
2564
2565#ifdef FEAT_XFONTSET
2566 if (current_fontset != NULL)
2567 {
2568 /* Setup a clip rectangle to avoid spilling over in the next or
2569 * previous line. This is apparently needed for some fonts which are
2570 * used in a fontset. */
2571 XRectangle clip;
2572
2573 clip.x = 0;
2574 clip.y = 0;
2575 clip.height = gui.char_height;
2576 clip.width = gui.char_width * cells + 1;
2577 XSetClipRectangles(gui.dpy, gui.text_gc, FILL_X(col), FILL_Y(row),
2578 &clip, 1, Unsorted);
2579 }
2580#endif
2581
2582 if (flags & DRAW_TRANSP)
2583 {
2584#ifdef FEAT_MBYTE
2585 if (enc_utf8)
2586 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2587 TEXT_Y(row), buf, wlen);
2588 else
2589#endif
2590 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2591 TEXT_Y(row), (char *)s, len);
2592 }
2593 else if (p_linespace != 0
2594#ifdef FEAT_XFONTSET
2595 || current_fontset != NULL
2596#endif
2597 )
2598 {
2599 XSetForeground(gui.dpy, gui.text_gc, prev_bg_color);
2600 XFillRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
2601 FILL_Y(row), gui.char_width * cells, gui.char_height);
2602 XSetForeground(gui.dpy, gui.text_gc, prev_fg_color);
Bram Moolenaarfb269802005-03-15 22:46:30 +00002603
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604#ifdef FEAT_MBYTE
2605 if (enc_utf8)
2606 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2607 TEXT_Y(row), buf, wlen);
2608 else
2609#endif
2610 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2611 TEXT_Y(row), (char *)s, len);
2612 }
2613 else
2614 {
2615 /* XmbDrawImageString has bug, don't use it for fontset. */
2616#ifdef FEAT_MBYTE
2617 if (enc_utf8)
2618 XDrawImageString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2619 TEXT_Y(row), buf, wlen);
2620 else
2621#endif
2622 XDrawImageString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col),
2623 TEXT_Y(row), (char *)s, len);
2624 }
2625
2626 /* Bold trick: draw the text again with a one-pixel offset. */
2627 if (flags & DRAW_BOLD)
2628 {
2629#ifdef FEAT_MBYTE
2630 if (enc_utf8)
2631 XDrawString16(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2632 TEXT_Y(row), buf, wlen);
2633 else
2634#endif
2635 XDrawString(gui.dpy, gui.wid, gui.text_gc, TEXT_X(col) + 1,
2636 TEXT_Y(row), (char *)s, len);
2637 }
2638
Bram Moolenaarfb269802005-03-15 22:46:30 +00002639 /* Undercurl: draw curl at the bottom of the character cell. */
2640 if (flags & DRAW_UNDERC)
2641 draw_curl(row, col, cells);
2642
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 /* Underline: draw a line at the bottom of the character cell. */
2644 if (flags & DRAW_UNDERL)
Bram Moolenaarfb269802005-03-15 22:46:30 +00002645 {
2646 int y = FILL_Y(row + 1) - 1;
2647
2648 /* When p_linespace is 0, overwrite the bottom row of pixels.
2649 * Otherwise put the line just below the character. */
2650 if (p_linespace > 1)
2651 y -= p_linespace - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 XDrawLine(gui.dpy, gui.wid, gui.text_gc, FILL_X(col),
Bram Moolenaarfb269802005-03-15 22:46:30 +00002653 y, FILL_X(col + cells) - 1, y);
2654 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655
2656#ifdef FEAT_XFONTSET
2657 if (current_fontset != NULL)
2658 XSetClipMask(gui.dpy, gui.text_gc, None);
2659#endif
2660}
2661
2662/*
2663 * Return OK if the key with the termcap name "name" is supported.
2664 */
2665 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002666gui_mch_haskey(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
2668 int i;
2669
2670 for (i = 0; special_keys[i].key_sym != (KeySym)0; i++)
2671 if (name[0] == special_keys[i].vim_code0 &&
2672 name[1] == special_keys[i].vim_code1)
2673 return OK;
2674 return FAIL;
2675}
2676
2677/*
2678 * Return the text window-id and display. Only required for X-based GUI's
2679 */
2680 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002681gui_get_x11_windis(Window *win, Display **dis)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682{
2683 *win = XtWindow(vimShell);
2684 *dis = gui.dpy;
2685 return OK;
2686}
2687
2688 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002689gui_mch_beep(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690{
2691 XBell(gui.dpy, 0);
2692}
2693
2694 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002695gui_mch_flash(int msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696{
2697 /* Do a visual beep by reversing the foreground and background colors */
2698 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2699 FILL_X((int)Columns) + gui.border_offset,
2700 FILL_Y((int)Rows) + gui.border_offset);
2701 XSync(gui.dpy, False);
2702 ui_delay((long)msec, TRUE); /* wait for a few msec */
2703 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc, 0, 0,
2704 FILL_X((int)Columns) + gui.border_offset,
2705 FILL_Y((int)Rows) + gui.border_offset);
2706}
2707
2708/*
2709 * Invert a rectangle from row r, column c, for nr rows and nc columns.
2710 */
2711 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002712gui_mch_invert_rectangle(
2713 int r,
2714 int c,
2715 int nr,
2716 int nc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
2718 XFillRectangle(gui.dpy, gui.wid, gui.invert_gc,
2719 FILL_X(c), FILL_Y(r), (nc) * gui.char_width, (nr) * gui.char_height);
2720}
2721
2722/*
2723 * Iconify the GUI window.
2724 */
2725 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002726gui_mch_iconify(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727{
2728 XIconifyWindow(gui.dpy, XtWindow(vimShell), DefaultScreen(gui.dpy));
2729}
2730
2731#if defined(FEAT_EVAL) || defined(PROTO)
2732/*
2733 * Bring the Vim window to the foreground.
2734 */
2735 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002736gui_mch_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737{
2738 XMapRaised(gui.dpy, XtWindow(vimShell));
2739}
2740#endif
2741
2742/*
2743 * Draw a cursor without focus.
2744 */
2745 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002746gui_mch_draw_hollow_cursor(guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747{
2748 int w = 1;
2749
2750#ifdef FEAT_MBYTE
2751 if (mb_lefthalve(gui.row, gui.col))
2752 w = 2;
2753#endif
2754 gui_mch_set_fg_color(color);
2755 XDrawRectangle(gui.dpy, gui.wid, gui.text_gc, FILL_X(gui.col),
2756 FILL_Y(gui.row), w * gui.char_width - 1, gui.char_height - 1);
2757}
2758
2759/*
2760 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
2761 * color "color".
2762 */
2763 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002764gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765{
2766 gui_mch_set_fg_color(color);
2767
2768 XFillRectangle(gui.dpy, gui.wid, gui.text_gc,
2769#ifdef FEAT_RIGHTLEFT
2770 /* vertical line should be on the right of current point */
2771 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
2772#endif
2773 FILL_X(gui.col),
2774 FILL_Y(gui.row) + gui.char_height - h,
2775 w, h);
2776}
2777
2778/*
2779 * Catch up with any queued X events. This may put keyboard input into the
2780 * input buffer, call resize call-backs, trigger timers etc. If there is
2781 * nothing in the X event queue (& no timers pending), then we return
2782 * immediately.
2783 */
2784 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002785gui_mch_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
2787 XtInputMask mask, desired;
2788
2789#ifdef ALT_X_INPUT
2790 if (suppress_alternate_input)
2791 desired = (XtIMXEvent | XtIMTimer);
2792 else
2793#endif
2794 desired = (XtIMAll);
2795 while ((mask = XtAppPending(app_context)) && (mask & desired)
2796 && !vim_is_input_buf_full())
2797 XtAppProcessEvent(app_context, desired);
2798}
2799
2800/*
2801 * GUI input routine called by gui_wait_for_chars(). Waits for a character
2802 * from the keyboard.
2803 * wtime == -1 Wait forever.
2804 * wtime == 0 This should never happen.
2805 * wtime > 0 Wait wtime milliseconds for a character.
2806 * Returns OK if a character was found to be available within the given time,
2807 * or FAIL otherwise.
2808 */
2809 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002810gui_mch_wait_for_chars(long wtime)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811{
2812 int focus;
2813
2814 /*
2815 * Make this static, in case gui_x11_timer_cb is called after leaving
2816 * this function (otherwise a random value on the stack may be changed).
2817 */
2818 static int timed_out;
2819 XtIntervalId timer = (XtIntervalId)0;
2820 XtInputMask desired;
2821#ifdef FEAT_SNIFF
2822 static int sniff_on = 0;
2823 static XtInputId sniff_input_id = 0;
2824#endif
2825
2826 timed_out = FALSE;
2827
2828#ifdef FEAT_SNIFF
2829 if (sniff_on && !want_sniff_request)
2830 {
2831 if (sniff_input_id)
2832 XtRemoveInput(sniff_input_id);
2833 sniff_on = 0;
2834 }
2835 else if (!sniff_on && want_sniff_request)
2836 {
2837 sniff_input_id = XtAppAddInput(app_context, fd_from_sniff,
2838 (XtPointer)XtInputReadMask, gui_x11_sniff_request_cb, 0);
2839 sniff_on = 1;
2840 }
2841#endif
2842
2843 if (wtime > 0)
2844 timer = XtAppAddTimeOut(app_context, (long_u)wtime, gui_x11_timer_cb,
2845 &timed_out);
2846
2847 focus = gui.in_focus;
2848#ifdef ALT_X_INPUT
2849 if (suppress_alternate_input)
2850 desired = (XtIMXEvent | XtIMTimer);
2851 else
2852#endif
2853 desired = (XtIMAll);
2854 while (!timed_out)
2855 {
2856 /* Stop or start blinking when focus changes */
2857 if (gui.in_focus != focus)
2858 {
2859 if (gui.in_focus)
2860 gui_mch_start_blink();
2861 else
2862 gui_mch_stop_blink();
2863 focus = gui.in_focus;
2864 }
2865
Bram Moolenaar93c88e02015-09-15 14:12:05 +02002866#ifdef MESSAGE_QUEUE
2867 parse_queued_messages();
Bram Moolenaar03531f72010-11-16 15:04:57 +01002868#endif
2869
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 /*
2871 * Don't use gui_mch_update() because then we will spin-lock until a
2872 * char arrives, instead we use XtAppProcessEvent() to hang until an
2873 * event arrives. No need to check for input_buf_full because we are
2874 * returning as soon as it contains a single char. Note that
2875 * XtAppNextEvent() may not be used because it will not return after a
2876 * timer event has arrived -- webb
2877 */
2878 XtAppProcessEvent(app_context, desired);
2879
2880 if (input_available())
2881 {
2882 if (timer != (XtIntervalId)0 && !timed_out)
2883 XtRemoveTimeOut(timer);
2884 return OK;
2885 }
2886 }
2887 return FAIL;
2888}
2889
2890/*
2891 * Output routines.
2892 */
2893
2894/* Flush any output to the screen */
2895 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002896gui_mch_flush(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897{
2898 XFlush(gui.dpy);
2899}
2900
2901/*
2902 * Clear a rectangular region of the screen from text pos (row1, col1) to
2903 * (row2, col2) inclusive.
2904 */
2905 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002906gui_mch_clear_block(
2907 int row1,
2908 int col1,
2909 int row2,
2910 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911{
2912 int x;
2913
2914 x = FILL_X(col1);
2915
2916 /* Clear one extra pixel at the far right, for when bold characters have
2917 * spilled over to the next column. */
2918 XFillRectangle(gui.dpy, gui.wid, gui.back_gc, x, FILL_Y(row1),
2919 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
2920 (row2 - row1 + 1) * gui.char_height);
2921}
2922
2923 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002924gui_mch_clear_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925{
2926 XClearArea(gui.dpy, gui.wid, 0, 0, 0, 0, False);
2927}
2928
2929/*
2930 * Delete the given number of lines from the given row, scrolling up any
2931 * text further down within the scroll region.
2932 */
2933 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002934gui_mch_delete_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935{
2936 if (gui.visibility == VisibilityFullyObscured)
2937 return; /* Can't see the window */
2938
2939 /* copy one extra pixel at the far right, for when bold has spilled
2940 * over */
2941 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2942 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
2943 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2944 + (gui.scroll_region_right == Columns - 1),
2945 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2946 FILL_X(gui.scroll_region_left), FILL_Y(row));
2947
2948 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
2949 gui.scroll_region_left,
2950 gui.scroll_region_bot, gui.scroll_region_right);
2951 gui_x11_check_copy_area();
2952}
2953
2954/*
2955 * Insert the given number of lines before the given row, scrolling down any
2956 * following text within the scroll region.
2957 */
2958 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002959gui_mch_insert_lines(int row, int num_lines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960{
2961 if (gui.visibility == VisibilityFullyObscured)
2962 return; /* Can't see the window */
2963
2964 /* copy one extra pixel at the far right, for when bold has spilled
2965 * over */
2966 XCopyArea(gui.dpy, gui.wid, gui.wid, gui.text_gc,
2967 FILL_X(gui.scroll_region_left), FILL_Y(row),
2968 gui.char_width * (gui.scroll_region_right - gui.scroll_region_left + 1)
2969 + (gui.scroll_region_right == Columns - 1),
2970 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1),
2971 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines));
2972
2973 gui_clear_block(row, gui.scroll_region_left,
2974 row + num_lines - 1, gui.scroll_region_right);
2975 gui_x11_check_copy_area();
2976}
2977
2978/*
2979 * Update the region revealed by scrolling up/down.
2980 */
2981 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01002982gui_x11_check_copy_area(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 XEvent event;
2985 XGraphicsExposeEvent *gevent;
2986
2987 if (gui.visibility != VisibilityPartiallyObscured)
2988 return;
2989
2990 XFlush(gui.dpy);
2991
2992 /* Wait to check whether the scroll worked or not */
2993 for (;;)
2994 {
2995 if (XCheckTypedEvent(gui.dpy, NoExpose, &event))
2996 return; /* The scroll worked. */
2997
2998 if (XCheckTypedEvent(gui.dpy, GraphicsExpose, &event))
2999 {
3000 gevent = (XGraphicsExposeEvent *)&event;
3001 gui_redraw(gevent->x, gevent->y, gevent->width, gevent->height);
3002 if (gevent->count == 0)
3003 return; /* This was the last expose event */
3004 }
3005 XSync(gui.dpy, False);
3006 }
3007}
3008
3009/*
3010 * X Selection stuff, for cutting and pasting text to other windows.
3011 */
3012
3013 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003014clip_mch_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015{
3016 clip_x11_lose_selection(vimShell, cbd);
3017}
3018
3019 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003020clip_mch_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021{
3022 return clip_x11_own_selection(vimShell, cbd);
3023}
3024
3025 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003026clip_mch_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003028 clip_x11_request_selection(vimShell, gui.dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029}
3030
3031 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003032clip_mch_set_selection(
3033 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034{
3035 clip_x11_set_selection(cbd);
3036}
3037
3038#if defined(FEAT_MENU) || defined(PROTO)
3039/*
3040 * Menu stuff.
3041 */
3042
3043/*
3044 * Make a menu either grey or not grey.
3045 */
3046 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003047gui_mch_menu_grey(vimmenu_T *menu, int grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
3049 if (menu->id != (Widget)0)
3050 {
3051 gui_mch_menu_hidden(menu, False);
3052 if (grey
3053#ifdef FEAT_GUI_MOTIF
3054 || !menu->sensitive
3055#endif
3056 )
3057 XtSetSensitive(menu->id, False);
3058 else
3059 XtSetSensitive(menu->id, True);
3060 }
3061}
3062
3063/*
3064 * Make menu item hidden or not hidden
3065 */
3066 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003067gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 if (menu->id != (Widget)0)
3070 {
3071 if (hidden)
3072 XtUnmanageChild(menu->id);
3073 else
3074 XtManageChild(menu->id);
3075 }
3076}
3077
3078/*
3079 * This is called after setting all the menus to grey/hidden or not.
3080 */
3081 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003082gui_mch_draw_menubar(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083{
3084 /* Nothing to do in X */
3085}
3086
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003088gui_x11_menu_cb(
3089 Widget w UNUSED,
3090 XtPointer client_data,
3091 XtPointer call_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 gui_menu_cb((vimmenu_T *)client_data);
3094}
3095
3096#endif /* FEAT_MENU */
3097
3098
3099
3100/*
3101 * Function called when window closed. Works like ":qa".
3102 * Should put up a requester!
3103 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003105gui_x11_wm_protocol_handler(
3106 Widget w UNUSED,
3107 XtPointer client_data UNUSED,
3108 XEvent *event,
3109 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
3111 /*
3112 * Only deal with Client messages.
3113 */
3114 if (event->type != ClientMessage)
3115 return;
3116
3117 /*
3118 * The WM_SAVE_YOURSELF event arrives when the window manager wants to
3119 * exit. That can be cancelled though, thus Vim shouldn't exit here.
3120 * Just sync our swap files.
3121 */
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003122 if ((Atom)((XClientMessageEvent *)event)->data.l[0] ==
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 wm_atoms[SAVE_YOURSELF_IDX])
3124 {
3125 out_flush();
3126 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
3127
3128 /* Set the window's WM_COMMAND property, to let the window manager
3129 * know we are done saving ourselves. We don't want to be restarted,
3130 * thus set argv to NULL. */
3131 XSetCommand(gui.dpy, XtWindow(vimShell), NULL, 0);
3132 return;
3133 }
3134
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003135 if ((Atom)((XClientMessageEvent *)event)->data.l[0] !=
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 wm_atoms[DELETE_WINDOW_IDX])
3137 return;
3138
3139 gui_shell_closed();
3140}
3141
3142#ifdef FEAT_CLIENTSERVER
3143/*
3144 * Function called when property changed. Check for incoming commands
3145 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003147gui_x11_send_event_handler(
3148 Widget w UNUSED,
3149 XtPointer client_data UNUSED,
3150 XEvent *event,
3151 Boolean *dum UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152{
3153 XPropertyEvent *e = (XPropertyEvent *) event;
3154
3155 if (e->type == PropertyNotify && e->window == commWindow
3156 && e->atom == commProperty && e->state == PropertyNewValue)
3157 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02003158 serverEventProc(gui.dpy, event, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 }
3160}
3161#endif
3162
3163/*
3164 * Cursor blink functions.
3165 *
3166 * This is a simple state machine:
3167 * BLINK_NONE not blinking at all
3168 * BLINK_OFF blinking, cursor is not shown
3169 * BLINK_ON blinking, cursor is shown
3170 */
3171
3172#define BLINK_NONE 0
3173#define BLINK_OFF 1
3174#define BLINK_ON 2
3175
3176static int blink_state = BLINK_NONE;
3177static long_u blink_waittime = 700;
3178static long_u blink_ontime = 400;
3179static long_u blink_offtime = 250;
3180static XtIntervalId blink_timer = (XtIntervalId)0;
3181
3182 void
Bram Moolenaar02fdaea2016-01-30 18:13:55 +01003183gui_mch_set_blinking(long waittime, long on, long off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184{
3185 blink_waittime = waittime;
3186 blink_ontime = on;
3187 blink_offtime = off;
3188}
3189
3190/*
3191 * Stop the cursor blinking. Show the cursor if it wasn't shown.
3192 */
3193 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003194gui_mch_stop_blink(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195{
3196 if (blink_timer != (XtIntervalId)0)
3197 {
3198 XtRemoveTimeOut(blink_timer);
3199 blink_timer = (XtIntervalId)0;
3200 }
3201 if (blink_state == BLINK_OFF)
3202 gui_update_cursor(TRUE, FALSE);
3203 blink_state = BLINK_NONE;
3204}
3205
3206/*
3207 * Start the cursor blinking. If it was already blinking, this restarts the
3208 * waiting time and shows the cursor.
3209 */
3210 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003211gui_mch_start_blink(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212{
3213 if (blink_timer != (XtIntervalId)0)
3214 XtRemoveTimeOut(blink_timer);
3215 /* Only switch blinking on if none of the times is zero */
3216 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
3217 {
3218 blink_timer = XtAppAddTimeOut(app_context, blink_waittime,
3219 gui_x11_blink_cb, NULL);
3220 blink_state = BLINK_ON;
3221 gui_update_cursor(TRUE, FALSE);
3222 }
3223}
3224
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 static void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003226gui_x11_blink_cb(
3227 XtPointer timed_out UNUSED,
3228 XtIntervalId *interval_id UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229{
3230 if (blink_state == BLINK_ON)
3231 {
3232 gui_undraw_cursor();
3233 blink_state = BLINK_OFF;
3234 blink_timer = XtAppAddTimeOut(app_context, blink_offtime,
3235 gui_x11_blink_cb, NULL);
3236 }
3237 else
3238 {
3239 gui_update_cursor(TRUE, FALSE);
3240 blink_state = BLINK_ON;
3241 blink_timer = XtAppAddTimeOut(app_context, blink_ontime,
3242 gui_x11_blink_cb, NULL);
3243 }
3244}
3245
3246/*
3247 * Return the RGB value of a pixel as a long.
3248 */
3249 long_u
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003250gui_mch_get_rgb(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251{
3252 XColor xc;
3253 Colormap colormap;
3254
3255 colormap = DefaultColormap(gui.dpy, XDefaultScreen(gui.dpy));
3256 xc.pixel = pixel;
3257 XQueryColor(gui.dpy, colormap, &xc);
3258
3259 return ((xc.red & 0xff00) << 8) + (xc.green & 0xff00)
3260 + ((unsigned)xc.blue >> 8);
3261}
3262
3263/*
3264 * Add the callback functions.
3265 */
3266 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003267gui_x11_callbacks(Widget textArea, Widget vimForm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
3269 XtAddEventHandler(textArea, VisibilityChangeMask, FALSE,
3270 gui_x11_visibility_cb, (XtPointer)0);
3271
3272 XtAddEventHandler(textArea, ExposureMask, FALSE, gui_x11_expose_cb,
3273 (XtPointer)0);
3274
3275 XtAddEventHandler(vimShell, StructureNotifyMask, FALSE,
3276 gui_x11_resize_window_cb, (XtPointer)0);
3277
3278 XtAddEventHandler(vimShell, FocusChangeMask, FALSE, gui_x11_focus_change_cb,
3279 (XtPointer)0);
3280 /*
3281 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3282 * Only needed for some window managers.
3283 */
3284 if (vim_strchr(p_go, GO_POINTER) != NULL)
3285 {
3286 XtAddEventHandler(vimShell, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3287 (XtPointer)0);
3288 XtAddEventHandler(textArea, LeaveWindowMask, FALSE, gui_x11_leave_cb,
3289 (XtPointer)0);
3290 XtAddEventHandler(textArea, EnterWindowMask, FALSE, gui_x11_enter_cb,
3291 (XtPointer)0);
3292 XtAddEventHandler(vimShell, EnterWindowMask, FALSE, gui_x11_enter_cb,
3293 (XtPointer)0);
3294 }
3295
3296 XtAddEventHandler(vimForm, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3297 (XtPointer)0);
3298 XtAddEventHandler(textArea, KeyPressMask, FALSE, gui_x11_key_hit_cb,
3299 (XtPointer)0);
3300
3301 /* get pointer moved events from scrollbar, needed for 'mousefocus' */
3302 XtAddEventHandler(vimForm, PointerMotionMask,
3303 FALSE, gui_x11_mouse_cb, (XtPointer)1);
3304 XtAddEventHandler(textArea, ButtonPressMask | ButtonReleaseMask |
3305 ButtonMotionMask | PointerMotionMask,
3306 FALSE, gui_x11_mouse_cb, (XtPointer)0);
3307}
3308
3309/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003310 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003312 void
3313gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314{
3315 int rootx, rooty, winx, winy;
3316 Window root, child;
3317 unsigned int mask;
3318
3319 if (gui.wid && XQueryPointer(gui.dpy, gui.wid, &root, &child,
Bram Moolenaar6cc16192005-01-08 21:49:45 +00003320 &rootx, &rooty, &winx, &winy, &mask)) {
3321 *x = winx;
3322 *y = winy;
3323 } else {
3324 *x = -1;
3325 *y = -1;
3326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327}
3328
3329 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003330gui_mch_setmouse(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
3332 if (gui.wid)
3333 XWarpPointer(gui.dpy, (Window)0, gui.wid, 0, 0, 0, 0, x, y);
3334}
3335
3336#if (defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)) || defined(PROTO)
3337 XButtonPressedEvent *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003338gui_x11_get_last_mouse_event(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339{
3340 return &last_mouse_event;
3341}
3342#endif
3343
3344#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
3345
3346/* Signs are currently always 2 chars wide. Hopefully the font is big enough
3347 * to provide room for the bitmap! */
3348# define SIGN_WIDTH (gui.char_width * 2)
3349
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003351gui_mch_drawsign(int row, int col, int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352{
3353 XImage *sign;
3354
3355 if (gui.in_use && (sign = (XImage *)sign_get_image(typenr)) != NULL)
3356 {
3357 XClearArea(gui.dpy, gui.wid, TEXT_X(col), TEXT_Y(row) - sign->height,
3358 SIGN_WIDTH, gui.char_height, FALSE);
3359 XPutImage(gui.dpy, gui.wid, gui.text_gc, sign, 0, 0,
3360 TEXT_X(col) + (SIGN_WIDTH - sign->width) / 2,
3361 TEXT_Y(row) - sign->height,
3362 sign->width, sign->height);
3363 }
3364}
3365
3366 void *
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003367gui_mch_register_sign(char_u *signfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368{
3369 XpmAttributes attrs;
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003370 XImage *sign = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 int status;
3372
3373 /*
3374 * Setup the color substitution table.
3375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 if (signfile[0] != NUL && signfile[0] != '-')
3377 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003378 XpmColorSymbol color[5] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 {
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003380 {"none", NULL, 0},
3381 {"iconColor1", NULL, 0},
3382 {"bottomShadowColor", NULL, 0},
3383 {"topShadowColor", NULL, 0},
3384 {"selectColor", NULL, 0}
3385 };
3386 attrs.valuemask = XpmColorSymbols;
3387 attrs.numsymbols = 2;
3388 attrs.colorsymbols = color;
3389 attrs.colorsymbols[0].pixel = gui.back_pixel;
3390 attrs.colorsymbols[1].pixel = gui.norm_pixel;
3391 status = XpmReadFileToImage(gui.dpy, (char *)signfile,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 &sign, NULL, &attrs);
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003393 if (status == 0)
3394 {
3395 /* Sign width is fixed at two columns now.
3396 if (sign->width > gui.sign_width)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003397 gui.sign_width = sign->width + 8; */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 }
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003399 else
3400 EMSG(_(e_signdata));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 }
3402
3403 return (void *)sign;
3404}
3405
3406 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003407gui_mch_destroy_sign(void *sign)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408{
Bram Moolenaare4bfca82009-02-24 03:12:40 +00003409 XDestroyImage((XImage*)sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410}
3411#endif
3412
3413
3414#ifdef FEAT_MOUSESHAPE
3415/* The last set mouse pointer shape is remembered, to be used when it goes
3416 * from hidden to not hidden. */
3417static int last_shape = 0;
3418#endif
3419
3420/*
3421 * Use the blank mouse pointer or not.
3422 */
3423 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003424gui_mch_mousehide(
3425 int hide) /* TRUE = use blank ptr, FALSE = use parent ptr */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426{
3427 if (gui.pointer_hidden != hide)
3428 {
3429 gui.pointer_hidden = hide;
3430 if (hide)
3431 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3432 else
3433#ifdef FEAT_MOUSESHAPE
3434 mch_set_mouse_shape(last_shape);
3435#else
3436 XUndefineCursor(gui.dpy, gui.wid);
3437#endif
3438 }
3439}
3440
3441#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3442
3443/* Table for shape IDs. Keep in sync with the mshape_names[] table in
3444 * misc2.c! */
3445static int mshape_ids[] =
3446{
3447 XC_left_ptr, /* arrow */
3448 0, /* blank */
3449 XC_xterm, /* beam */
3450 XC_sb_v_double_arrow, /* updown */
3451 XC_sizing, /* udsizing */
3452 XC_sb_h_double_arrow, /* leftright */
3453 XC_sizing, /* lrsizing */
3454 XC_watch, /* busy */
3455 XC_X_cursor, /* no */
3456 XC_crosshair, /* crosshair */
3457 XC_hand1, /* hand1 */
3458 XC_hand2, /* hand2 */
3459 XC_pencil, /* pencil */
3460 XC_question_arrow, /* question */
3461 XC_right_ptr, /* right-arrow */
3462 XC_center_ptr, /* up-arrow */
3463 XC_left_ptr /* last one */
3464};
3465
3466 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003467mch_set_mouse_shape(int shape)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468{
3469 int id;
3470
3471 if (!gui.in_use)
3472 return;
3473
3474 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
3475 XDefineCursor(gui.dpy, gui.wid, gui.blank_pointer);
3476 else
3477 {
3478 if (shape >= MSHAPE_NUMBERED)
3479 {
3480 id = shape - MSHAPE_NUMBERED;
3481 if (id >= XC_num_glyphs)
3482 id = XC_left_ptr;
3483 else
3484 id &= ~1; /* they are always even (why?) */
3485 }
3486 else
3487 id = mshape_ids[shape];
3488
3489 XDefineCursor(gui.dpy, gui.wid, XCreateFontCursor(gui.dpy, id));
3490 }
3491 if (shape != MSHAPE_HIDE)
3492 last_shape = shape;
3493}
3494#endif
3495
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496#if (defined(FEAT_TOOLBAR) && defined(FEAT_BEVAL)) || defined(PROTO)
3497/*
3498 * Set the balloon-eval used for the tooltip of a toolbar menu item.
3499 * The check for a non-toolbar item was added, because there is a crash when
3500 * passing a normal menu item here. Can't explain that, but better avoid it.
3501 */
3502 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +01003503gui_mch_menu_set_tip(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504{
3505 if (menu->id != NULL && menu->parent != NULL
3506 && menu_is_toolbar(menu->parent->name))
3507 {
3508 /* Always destroy and create the balloon, in case the string was
3509 * changed. */
3510 if (menu->tip != NULL)
3511 {
3512 gui_mch_destroy_beval_area(menu->tip);
3513 menu->tip = NULL;
3514 }
3515 if (menu->strings[MENU_INDEX_TIP] != NULL)
3516 menu->tip = gui_mch_create_beval_area(
3517 menu->id,
3518 menu->strings[MENU_INDEX_TIP],
3519 NULL,
3520 NULL);
3521 }
3522}
3523#endif