xref: /vim-8.2.3635/src/gui.c (revision fc39ecf8)
1 /* 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 #include "vim.h"
12 
13 /* Structure containing all the GUI information */
14 gui_T gui;
15 
16 #if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
17 static void set_guifontwide __ARGS((char_u *font_name));
18 #endif
19 static void gui_check_pos __ARGS((void));
20 static void gui_position_components __ARGS((int));
21 static void gui_outstr __ARGS((char_u *, int));
22 static int gui_screenchar __ARGS((int off, int flags, guicolor_T fg, guicolor_T bg, int back));
23 #ifdef FEAT_GUI_GTK
24 static int gui_screenstr __ARGS((int off, int len, int flags, guicolor_T fg, guicolor_T bg, int back));
25 #endif
26 static void gui_delete_lines __ARGS((int row, int count));
27 static void gui_insert_lines __ARGS((int row, int count));
28 static void fill_mouse_coord __ARGS((char_u *p, int col, int row));
29 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
30 static int gui_has_tabline __ARGS((void));
31 #endif
32 static void gui_do_scrollbar __ARGS((win_T *wp, int which, int enable));
33 static colnr_T scroll_line_len __ARGS((linenr_T lnum));
34 static linenr_T gui_find_longest_lnum __ARGS((void));
35 static void gui_update_horiz_scrollbar __ARGS((int));
36 static void gui_set_fg_color __ARGS((char_u *name));
37 static void gui_set_bg_color __ARGS((char_u *name));
38 static win_T *xy2win __ARGS((int x, int y));
39 
40 #if defined(UNIX) && !defined(MACOS_X) && !defined(__APPLE__)
41 # define MAY_FORK
42 static void gui_do_fork __ARGS((void));
43 
44 static int gui_read_child_pipe __ARGS((int fd));
45 
46 /* Return values for gui_read_child_pipe */
47 enum {
48     GUI_CHILD_IO_ERROR,
49     GUI_CHILD_OK,
50     GUI_CHILD_FAILED
51 };
52 
53 #endif /* MAY_FORK */
54 
55 static void gui_attempt_start __ARGS((void));
56 
57 static int can_update_cursor = TRUE; /* can display the cursor */
58 
59 /*
60  * The Athena scrollbars can move the thumb to after the end of the scrollbar,
61  * this makes the thumb indicate the part of the text that is shown.  Motif
62  * can't do this.
63  */
64 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MAC)
65 # define SCROLL_PAST_END
66 #endif
67 
68 /*
69  * gui_start -- Called when user wants to start the GUI.
70  *
71  * Careful: This function can be called recursively when there is a ":gui"
72  * command in the .gvimrc file.  Only the first call should fork, not the
73  * recursive call.
74  */
75     void
76 gui_start()
77 {
78     char_u	*old_term;
79     static int	recursive = 0;
80 
81     old_term = vim_strsave(T_NAME);
82 
83     settmode(TMODE_COOK);		/* stop RAW mode */
84     if (full_screen)
85 	cursor_on();			/* needed for ":gui" in .vimrc */
86     full_screen = FALSE;
87 
88     ++recursive;
89 
90 #ifdef MAY_FORK
91     /*
92      * Quit the current process and continue in the child.
93      * Makes "gvim file" disconnect from the shell it was started in.
94      * Don't do this when Vim was started with "-f" or the 'f' flag is present
95      * in 'guioptions'.
96      */
97     if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1)
98     {
99 	gui_do_fork();
100     }
101     else
102 #endif
103     {
104 #ifdef FEAT_GUI_GTK
105 	/* If there is 'f' in 'guioptions' and specify -g argument,
106 	 * gui_mch_init_check() was not called yet.  */
107 	if (gui_mch_init_check() != OK)
108 	    exit(1);
109 #endif
110 	gui_attempt_start();
111     }
112 
113     if (!gui.in_use)			/* failed to start GUI */
114     {
115 	/* Back to old term settings
116 	 *
117 	 * FIXME: If we got here because a child process failed and flagged to
118 	 * the parent to resume, and X11 is enabled with FEAT_TITLE, this will
119 	 * hit an X11 I/O error and do a longjmp(), leaving recursive
120 	 * permanently set to 1. This is probably not as big a problem as it
121 	 * sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c
122 	 * return "OK" unconditionally, so it would be very difficult to
123 	 * actually hit this case.
124 	 */
125 	termcapinit(old_term);
126 	settmode(TMODE_RAW);		/* restart RAW mode */
127 #ifdef FEAT_TITLE
128 	set_title_defaults();		/* set 'title' and 'icon' again */
129 #endif
130     }
131 
132     vim_free(old_term);
133 
134 #ifdef FEAT_AUTOCMD
135     /* If the GUI started successfully, trigger the GUIEnter event, otherwise
136      * the GUIFailed event. */
137     gui_mch_update();
138     apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
139 						   NULL, NULL, FALSE, curbuf);
140 #endif
141     --recursive;
142 }
143 
144 /*
145  * Set_termname() will call gui_init() to start the GUI.
146  * Set the "starting" flag, to indicate that the GUI will start.
147  *
148  * We don't want to open the GUI shell until after we've read .gvimrc,
149  * otherwise we don't know what font we will use, and hence we don't know
150  * what size the shell should be.  So if there are errors in the .gvimrc
151  * file, they will have to go to the terminal: Set full_screen to FALSE.
152  * full_screen will be set to TRUE again by a successful termcapinit().
153  */
154     static void
155 gui_attempt_start()
156 {
157     static int recursive = 0;
158 
159     ++recursive;
160     gui.starting = TRUE;
161 
162 #ifdef FEAT_GUI_GTK
163     gui.event_time = GDK_CURRENT_TIME;
164 #endif
165 
166     termcapinit((char_u *)"builtin_gui");
167     gui.starting = recursive - 1;
168 
169 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
170     if (gui.in_use)
171     {
172 # ifdef FEAT_EVAL
173 	Window	x11_window;
174 	Display	*x11_display;
175 
176 	if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
177 	    set_vim_var_nr(VV_WINDOWID, (long)x11_window);
178 # endif
179 
180 	/* Display error messages in a dialog now. */
181 	display_errors();
182     }
183 #endif
184     --recursive;
185 }
186 
187 #ifdef MAY_FORK
188 
189 /* for waitpid() */
190 # if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
191 #  include <sys/wait.h>
192 # endif
193 
194 /*
195  * Create a new process, by forking. In the child, start the GUI, and in
196  * the parent, exit.
197  *
198  * If something goes wrong, this will return with gui.in_use still set
199  * to FALSE, in which case the caller should continue execution without
200  * the GUI.
201  *
202  * If the child fails to start the GUI, then the child will exit and the
203  * parent will return. If the child succeeds, then the parent will exit
204  * and the child will return.
205  */
206     static void
207 gui_do_fork()
208 {
209     int		pipefd[2];	/* pipe between parent and child */
210     int		pipe_error;
211     int		status;
212     int		exit_status;
213     pid_t	pid = -1;
214 
215     /* Setup a pipe between the child and the parent, so that the parent
216      * knows when the child has done the setsid() call and is allowed to
217      * exit. */
218     pipe_error = (pipe(pipefd) < 0);
219     pid = fork();
220     if (pid < 0)	    /* Fork error */
221     {
222 	EMSG(_("E851: Failed to create a new process for the GUI"));
223 	return;
224     }
225     else if (pid > 0)	    /* Parent */
226     {
227 	/* Give the child some time to do the setsid(), otherwise the
228 	 * exit() may kill the child too (when starting gvim from inside a
229 	 * gvim). */
230 	if (!pipe_error)
231 	{
232 	    /* The read returns when the child closes the pipe (or when
233 	     * the child dies for some reason). */
234 	    close(pipefd[1]);
235 	    status = gui_read_child_pipe(pipefd[0]);
236 	    if (status == GUI_CHILD_FAILED)
237 	    {
238 		/* The child failed to start the GUI, so the caller must
239 		 * continue. There may be more error information written
240 		 * to stderr by the child. */
241 # ifdef __NeXT__
242 		wait4(pid, &exit_status, 0, (struct rusage *)0);
243 # else
244 		waitpid(pid, &exit_status, 0);
245 # endif
246 		EMSG(_("E852: The child process failed to start the GUI"));
247 		return;
248 	    }
249 	    else if (status == GUI_CHILD_IO_ERROR)
250 	    {
251 		pipe_error = TRUE;
252 	    }
253 	    /* else GUI_CHILD_OK: parent exit */
254 	}
255 
256 	if (pipe_error)
257 	    ui_delay(300L, TRUE);
258 
259 	/* When swapping screens we may need to go to the next line, e.g.,
260 	 * after a hit-enter prompt and using ":gui". */
261 	if (newline_on_exit)
262 	    mch_errmsg("\r\n");
263 
264 	/*
265 	 * The parent must skip the normal exit() processing, the child
266 	 * will do it.  For example, GTK messes up signals when exiting.
267 	 */
268 	_exit(0);
269     }
270     /* Child */
271 
272 #ifdef FEAT_GUI_GTK
273     /* Call gtk_init_check() here after fork(). See gui_init_check(). */
274     if (gui_mch_init_check() != OK)
275 	exit(1);
276 #endif
277 
278 # if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
279     /*
280      * Change our process group.  On some systems/shells a CTRL-C in the
281      * shell where Vim was started would otherwise kill gvim!
282      */
283 #  if defined(HAVE_SETSID)
284     (void)setsid();
285 #  else
286     (void)setpgid(0, 0);
287 #  endif
288 # endif
289     if (!pipe_error)
290 	close(pipefd[0]);
291 
292 # if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
293     /* Tell the session manager our new PID */
294     gui_mch_forked();
295 # endif
296 
297     /* Try to start the GUI */
298     gui_attempt_start();
299 
300     /* Notify the parent */
301     if (!pipe_error)
302     {
303 	if (gui.in_use)
304 	    write_eintr(pipefd[1], "ok", 3);
305 	else
306 	    write_eintr(pipefd[1], "fail", 5);
307 	close(pipefd[1]);
308     }
309 
310     /* If we failed to start the GUI, exit now. */
311     if (!gui.in_use)
312 	exit(1);
313 }
314 
315 /*
316  * Read from a pipe assumed to be connected to the child process (this
317  * function is called from the parent).
318  * Return GUI_CHILD_OK if the child successfully started the GUI,
319  * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was
320  * some other error.
321  *
322  * The file descriptor will be closed before the function returns.
323  */
324     static int
325 gui_read_child_pipe(int fd)
326 {
327     long	bytes_read;
328 #define READ_BUFFER_SIZE 10
329     char	buffer[READ_BUFFER_SIZE];
330 
331     bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
332 #undef READ_BUFFER_SIZE
333     close(fd);
334     if (bytes_read < 0)
335 	return GUI_CHILD_IO_ERROR;
336     buffer[bytes_read] = NUL;
337     if (strcmp(buffer, "ok") == 0)
338 	return GUI_CHILD_OK;
339     return GUI_CHILD_FAILED;
340 }
341 
342 #endif /* MAY_FORK */
343 
344 /*
345  * Call this when vim starts up, whether or not the GUI is started
346  */
347     void
348 gui_prepare(argc, argv)
349     int	    *argc;
350     char    **argv;
351 {
352     gui.in_use = FALSE;		    /* No GUI yet (maybe later) */
353     gui.starting = FALSE;	    /* No GUI yet (maybe later) */
354     gui_mch_prepare(argc, argv);
355 }
356 
357 /*
358  * Try initializing the GUI and check if it can be started.
359  * Used from main() to check early if "vim -g" can start the GUI.
360  * Used from gui_init() to prepare for starting the GUI.
361  * Returns FAIL or OK.
362  */
363     int
364 gui_init_check()
365 {
366     static int result = MAYBE;
367 
368     if (result != MAYBE)
369     {
370 	if (result == FAIL)
371 	    EMSG(_("E229: Cannot start the GUI"));
372 	return result;
373     }
374 
375     gui.shell_created = FALSE;
376     gui.dying = FALSE;
377     gui.in_focus = TRUE;		/* so the guicursor setting works */
378     gui.dragged_sb = SBAR_NONE;
379     gui.dragged_wp = NULL;
380     gui.pointer_hidden = FALSE;
381     gui.col = 0;
382     gui.row = 0;
383     gui.num_cols = Columns;
384     gui.num_rows = Rows;
385 
386     gui.cursor_is_valid = FALSE;
387     gui.scroll_region_top = 0;
388     gui.scroll_region_bot = Rows - 1;
389     gui.scroll_region_left = 0;
390     gui.scroll_region_right = Columns - 1;
391     gui.highlight_mask = HL_NORMAL;
392     gui.char_width = 1;
393     gui.char_height = 1;
394     gui.char_ascent = 0;
395     gui.border_width = 0;
396 
397     gui.norm_font = NOFONT;
398 #ifndef FEAT_GUI_GTK
399     gui.bold_font = NOFONT;
400     gui.ital_font = NOFONT;
401     gui.boldital_font = NOFONT;
402 # ifdef FEAT_XFONTSET
403     gui.fontset = NOFONTSET;
404 # endif
405 #endif
406 #ifdef FEAT_MBYTE
407     gui.wide_font = NOFONT;
408 # ifndef FEAT_GUI_GTK
409     gui.wide_bold_font = NOFONT;
410     gui.wide_ital_font = NOFONT;
411     gui.wide_boldital_font = NOFONT;
412 # endif
413 #endif
414 
415 #ifdef FEAT_MENU
416 # ifndef FEAT_GUI_GTK
417 #  ifdef FONTSET_ALWAYS
418     gui.menu_fontset = NOFONTSET;
419 #  else
420     gui.menu_font = NOFONT;
421 #  endif
422 # endif
423     gui.menu_is_active = TRUE;	    /* default: include menu */
424 # ifndef FEAT_GUI_GTK
425     gui.menu_height = MENU_DEFAULT_HEIGHT;
426     gui.menu_width = 0;
427 # endif
428 #endif
429 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
430     gui.toolbar_height = 0;
431 #endif
432 #if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
433     gui.footer_height = 0;
434 #endif
435 #ifdef FEAT_BEVAL_TIP
436     gui.tooltip_fontset = NOFONTSET;
437 #endif
438 
439     gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
440     gui.prev_wrap = -1;
441 
442 #ifdef ALWAYS_USE_GUI
443     result = OK;
444 #else
445 # ifdef FEAT_GUI_GTK
446     /*
447      * Note: Don't call gtk_init_check() before fork, it will be called after
448      * the fork. When calling it before fork, it make vim hang for a while.
449      * See gui_do_fork().
450      * Use a simpler check if the GUI window can probably be opened.
451      */
452     result = gui.dofork ? gui_mch_early_init_check() : gui_mch_init_check();
453 # else
454     result = gui_mch_init_check();
455 # endif
456 #endif
457     return result;
458 }
459 
460 /*
461  * This is the call which starts the GUI.
462  */
463     void
464 gui_init()
465 {
466     win_T	*wp;
467     static int	recursive = 0;
468 
469     /*
470      * It's possible to use ":gui" in a .gvimrc file.  The first halve of this
471      * function will then be executed at the first call, the rest by the
472      * recursive call.  This allow the shell to be opened halfway reading a
473      * gvimrc file.
474      */
475     if (!recursive)
476     {
477 	++recursive;
478 
479 	clip_init(TRUE);
480 
481 	/* If can't initialize, don't try doing the rest */
482 	if (gui_init_check() == FAIL)
483 	{
484 	    --recursive;
485 	    clip_init(FALSE);
486 	    return;
487 	}
488 
489 	/*
490 	 * Reset 'paste'.  It's useful in the terminal, but not in the GUI.  It
491 	 * breaks the Paste toolbar button.
492 	 */
493 	set_option_value((char_u *)"paste", 0L, NULL, 0);
494 
495 	/*
496 	 * Set up system-wide default menus.
497 	 */
498 #if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
499 	if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
500 	{
501 	    sys_menu = TRUE;
502 	    do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE);
503 	    sys_menu = FALSE;
504 	}
505 #endif
506 
507 	/*
508 	 * Switch on the mouse by default, unless the user changed it already.
509 	 * This can then be changed in the .gvimrc.
510 	 */
511 	if (!option_was_set((char_u *)"mouse"))
512 	    set_string_option_direct((char_u *)"mouse", -1,
513 					   (char_u *)"a", OPT_FREE, SID_NONE);
514 
515 	/*
516 	 * If -U option given, use only the initializations from that file and
517 	 * nothing else.  Skip all initializations for "-U NONE" or "-u NORC".
518 	 */
519 	if (use_gvimrc != NULL)
520 	{
521 	    if (STRCMP(use_gvimrc, "NONE") != 0
522 		    && STRCMP(use_gvimrc, "NORC") != 0
523 		    && do_source(use_gvimrc, FALSE, DOSO_NONE) != OK)
524 		EMSG2(_("E230: Cannot read from \"%s\""), use_gvimrc);
525 	}
526 	else
527 	{
528 	    /*
529 	     * Get system wide defaults for gvim, only when file name defined.
530 	     */
531 #ifdef SYS_GVIMRC_FILE
532 	    do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE);
533 #endif
534 
535 	    /*
536 	     * Try to read GUI initialization commands from the following
537 	     * places:
538 	     * - environment variable GVIMINIT
539 	     * - the user gvimrc file (~/.gvimrc)
540 	     * - the second user gvimrc file ($VIM/.gvimrc for Dos)
541 	     * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
542 	     * The first that exists is used, the rest is ignored.
543 	     */
544 	    if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
545 		 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
546 							  DOSO_GVIMRC) == FAIL
547 #ifdef USR_GVIMRC_FILE2
548 		 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
549 							  DOSO_GVIMRC) == FAIL
550 #endif
551 #ifdef USR_GVIMRC_FILE3
552 		 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
553 							  DOSO_GVIMRC) == FAIL
554 #endif
555 				)
556 	    {
557 #ifdef USR_GVIMRC_FILE4
558 		(void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE, DOSO_GVIMRC);
559 #endif
560 	    }
561 
562 	    /*
563 	     * Read initialization commands from ".gvimrc" in current
564 	     * directory.  This is only done if the 'exrc' option is set.
565 	     * Because of security reasons we disallow shell and write
566 	     * commands now, except for unix if the file is owned by the user
567 	     * or 'secure' option has been reset in environment of global
568 	     * ".gvimrc".
569 	     * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
570 	     * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
571 	     */
572 	    if (p_exrc)
573 	    {
574 #ifdef UNIX
575 		{
576 		    struct stat s;
577 
578 		    /* if ".gvimrc" file is not owned by user, set 'secure'
579 		     * mode */
580 		    if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
581 			secure = p_secure;
582 		}
583 #else
584 		secure = p_secure;
585 #endif
586 
587 		if (       fullpathcmp((char_u *)USR_GVIMRC_FILE,
588 				     (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
589 #ifdef SYS_GVIMRC_FILE
590 			&& fullpathcmp((char_u *)SYS_GVIMRC_FILE,
591 				     (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
592 #endif
593 #ifdef USR_GVIMRC_FILE2
594 			&& fullpathcmp((char_u *)USR_GVIMRC_FILE2,
595 				     (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
596 #endif
597 #ifdef USR_GVIMRC_FILE3
598 			&& fullpathcmp((char_u *)USR_GVIMRC_FILE3,
599 				     (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
600 #endif
601 #ifdef USR_GVIMRC_FILE4
602 			&& fullpathcmp((char_u *)USR_GVIMRC_FILE4,
603 				     (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
604 #endif
605 			)
606 		    do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC);
607 
608 		if (secure == 2)
609 		    need_wait_return = TRUE;
610 		secure = 0;
611 	    }
612 	}
613 
614 	if (need_wait_return || msg_didany)
615 	    wait_return(TRUE);
616 
617 	--recursive;
618     }
619 
620     /* If recursive call opened the shell, return here from the first call */
621     if (gui.in_use)
622 	return;
623 
624     /*
625      * Create the GUI shell.
626      */
627     gui.in_use = TRUE;		/* Must be set after menus have been set up */
628     if (gui_mch_init() == FAIL)
629 	goto error;
630 
631     /* Avoid a delay for an error message that was printed in the terminal
632      * where Vim was started. */
633     emsg_on_display = FALSE;
634     msg_scrolled = 0;
635     clear_sb_text();
636     need_wait_return = FALSE;
637     msg_didany = FALSE;
638 
639     /*
640      * Check validity of any generic resources that may have been loaded.
641      */
642     if (gui.border_width < 0)
643 	gui.border_width = 0;
644 
645     /*
646      * Set up the fonts.  First use a font specified with "-fn" or "-font".
647      */
648     if (font_argument != NULL)
649 	set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
650     if (
651 #ifdef FEAT_XFONTSET
652 	    (*p_guifontset == NUL
653 	     || gui_init_font(p_guifontset, TRUE) == FAIL) &&
654 #endif
655 	    gui_init_font(*p_guifont == NUL ? hl_get_font_name()
656 						  : p_guifont, FALSE) == FAIL)
657     {
658 	EMSG(_("E665: Cannot start GUI, no valid font found"));
659 	goto error2;
660     }
661 #ifdef FEAT_MBYTE
662     if (gui_get_wide_font() == FAIL)
663 	EMSG(_("E231: 'guifontwide' invalid"));
664 #endif
665 
666     gui.num_cols = Columns;
667     gui.num_rows = Rows;
668     gui_reset_scroll_region();
669 
670     /* Create initial scrollbars */
671     FOR_ALL_WINDOWS(wp)
672     {
673 	gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
674 	gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
675     }
676     gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
677 
678 #ifdef FEAT_MENU
679     gui_create_initial_menus(root_menu);
680 #endif
681 #ifdef FEAT_SUN_WORKSHOP
682     if (usingSunWorkShop)
683 	workshop_init();
684 #endif
685 #ifdef FEAT_SIGN_ICONS
686     sign_gui_started();
687 #endif
688 
689     /* Configure the desired menu and scrollbars */
690     gui_init_which_components(NULL);
691 
692     /* All components of the GUI have been created now */
693     gui.shell_created = TRUE;
694 
695 #ifndef FEAT_GUI_GTK
696     /* Set the shell size, adjusted for the screen size.  For GTK this only
697      * works after the shell has been opened, thus it is further down. */
698     gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
699 #endif
700 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
701     /* Need to set the size of the menubar after all the menus have been
702      * created. */
703     gui_mch_compute_menu_height((Widget)0);
704 #endif
705 
706     /*
707      * Actually open the GUI shell.
708      */
709     if (gui_mch_open() != FAIL)
710     {
711 #ifdef FEAT_TITLE
712 	maketitle();
713 	resettitle();
714 #endif
715 	init_gui_options();
716 #ifdef FEAT_ARABIC
717 	/* Our GUI can't do bidi. */
718 	p_tbidi = FALSE;
719 #endif
720 #if defined(FEAT_GUI_GTK)
721 	/* Give GTK+ a chance to put all widget's into place. */
722 	gui_mch_update();
723 
724 # ifdef FEAT_MENU
725 	/* If there is no 'm' in 'guioptions' we need to remove the menu now.
726 	 * It was still there to make F10 work. */
727 	if (vim_strchr(p_go, GO_MENUS) == NULL)
728 	{
729 	    --gui.starting;
730 	    gui_mch_enable_menu(FALSE);
731 	    ++gui.starting;
732 	    gui_mch_update();
733 	}
734 # endif
735 
736 	/* Now make sure the shell fits on the screen. */
737 	gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
738 #endif
739 	/* When 'lines' was set while starting up the topframe may have to be
740 	 * resized. */
741 	win_new_shellsize();
742 
743 #ifdef FEAT_BEVAL
744 	/* Always create the Balloon Evaluation area, but disable it when
745 	 * 'ballooneval' is off */
746 # ifdef FEAT_GUI_GTK
747 	balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
748 						     &general_beval_cb, NULL);
749 # else
750 #  if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
751 	{
752 	    extern Widget	textArea;
753 	    balloonEval = gui_mch_create_beval_area(textArea, NULL,
754 						     &general_beval_cb, NULL);
755 	}
756 #  else
757 #   ifdef FEAT_GUI_W32
758 	balloonEval = gui_mch_create_beval_area(NULL, NULL,
759 						     &general_beval_cb, NULL);
760 #   endif
761 #  endif
762 # endif
763 	if (!p_beval)
764 	    gui_mch_disable_beval_area(balloonEval);
765 #endif
766 
767 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
768 	if (!im_xim_isvalid_imactivate())
769 	    EMSG(_("E599: Value of 'imactivatekey' is invalid"));
770 #endif
771 	/* When 'cmdheight' was set during startup it may not have taken
772 	 * effect yet. */
773 	if (p_ch != 1L)
774 	    command_height();
775 
776 	return;
777     }
778 
779 error2:
780 #ifdef FEAT_GUI_X11
781     /* undo gui_mch_init() */
782     gui_mch_uninit();
783 #endif
784 
785 error:
786     gui.in_use = FALSE;
787     clip_init(FALSE);
788 }
789 
790 
791     void
792 gui_exit(rc)
793     int		rc;
794 {
795     /* don't free the fonts, it leads to a BUS error
796      * [email protected] Jul 99 */
797     free_highlight_fonts();
798     gui.in_use = FALSE;
799     gui_mch_exit(rc);
800 }
801 
802 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
803 	|| defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
804 # define NEED_GUI_UPDATE_SCREEN 1
805 /*
806  * Called when the GUI shell is closed by the user.  If there are no changed
807  * files Vim exits, otherwise there will be a dialog to ask the user what to
808  * do.
809  * When this function returns, Vim should NOT exit!
810  */
811     void
812 gui_shell_closed()
813 {
814     cmdmod_T	    save_cmdmod;
815 
816     save_cmdmod = cmdmod;
817 
818     /* Only exit when there are no changed files */
819     exiting = TRUE;
820 # ifdef FEAT_BROWSE
821     cmdmod.browse = TRUE;
822 # endif
823 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
824     cmdmod.confirm = TRUE;
825 # endif
826     /* If there are changed buffers, present the user with a dialog if
827      * possible, otherwise give an error message. */
828     if (!check_changed_any(FALSE))
829 	getout(0);
830 
831     exiting = FALSE;
832     cmdmod = save_cmdmod;
833     gui_update_screen();	/* redraw, window may show changed buffer */
834 }
835 #endif
836 
837 /*
838  * Set the font.  "font_list" is a comma separated list of font names.  The
839  * first font name that works is used.  If none is found, use the default
840  * font.
841  * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
842  * Return OK when able to set the font.  When it failed FAIL is returned and
843  * the fonts are unchanged.
844  */
845     int
846 gui_init_font(font_list, fontset)
847     char_u	*font_list;
848     int		fontset UNUSED;
849 {
850 #define FONTLEN 320
851     char_u	font_name[FONTLEN];
852     int		font_list_empty = FALSE;
853     int		ret = FAIL;
854 
855     if (!gui.in_use)
856 	return FAIL;
857 
858     font_name[0] = NUL;
859     if (*font_list == NUL)
860 	font_list_empty = TRUE;
861     else
862     {
863 #ifdef FEAT_XFONTSET
864 	/* When using a fontset, the whole list of fonts is one name. */
865 	if (fontset)
866 	    ret = gui_mch_init_font(font_list, TRUE);
867 	else
868 #endif
869 	    while (*font_list != NUL)
870 	    {
871 		/* Isolate one comma separated font name. */
872 		(void)copy_option_part(&font_list, font_name, FONTLEN, ",");
873 
874 		/* Careful!!!  The Win32 version of gui_mch_init_font(), when
875 		 * called with "*" will change p_guifont to the selected font
876 		 * name, which frees the old value.  This makes font_list
877 		 * invalid.  Thus when OK is returned here, font_list must no
878 		 * longer be used! */
879 		if (gui_mch_init_font(font_name, FALSE) == OK)
880 		{
881 #if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
882 		    /* If it's a Unicode font, try setting 'guifontwide' to a
883 		     * similar double-width font. */
884 		    if ((p_guifontwide == NULL || *p_guifontwide == NUL)
885 				&& strstr((char *)font_name, "10646") != NULL)
886 			set_guifontwide(font_name);
887 #endif
888 		    ret = OK;
889 		    break;
890 		}
891 	    }
892     }
893 
894     if (ret != OK
895 	    && STRCMP(font_list, "*") != 0
896 	    && (font_list_empty || gui.norm_font == NOFONT))
897     {
898 	/*
899 	 * Couldn't load any font in 'font_list', keep the current font if
900 	 * there is one.  If 'font_list' is empty, or if there is no current
901 	 * font, tell gui_mch_init_font() to try to find a font we can load.
902 	 */
903 	ret = gui_mch_init_font(NULL, FALSE);
904     }
905 
906     if (ret == OK)
907     {
908 #ifndef FEAT_GUI_GTK
909 	/* Set normal font as current font */
910 # ifdef FEAT_XFONTSET
911 	if (gui.fontset != NOFONTSET)
912 	    gui_mch_set_fontset(gui.fontset);
913 	else
914 # endif
915 	    gui_mch_set_font(gui.norm_font);
916 #endif
917 	gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
918     }
919 
920     return ret;
921 }
922 
923 #if defined(FEAT_MBYTE) || defined(PROTO)
924 # ifndef FEAT_GUI_GTK
925 /*
926  * Try setting 'guifontwide' to a font twice as wide as "name".
927  */
928     static void
929 set_guifontwide(name)
930     char_u	*name;
931 {
932     int		i = 0;
933     char_u	wide_name[FONTLEN + 10]; /* room for 2 * width and '*' */
934     char_u	*wp = NULL;
935     char_u	*p;
936     GuiFont	font;
937 
938     wp = wide_name;
939     for (p = name; *p != NUL; ++p)
940     {
941 	*wp++ = *p;
942 	if (*p == '-')
943 	{
944 	    ++i;
945 	    if (i == 6)		/* font type: change "--" to "-*-" */
946 	    {
947 		if (p[1] == '-')
948 		    *wp++ = '*';
949 	    }
950 	    else if (i == 12)	/* found the width */
951 	    {
952 		++p;
953 		i = getdigits(&p);
954 		if (i != 0)
955 		{
956 		    /* Double the width specification. */
957 		    sprintf((char *)wp, "%d%s", i * 2, p);
958 		    font = gui_mch_get_font(wide_name, FALSE);
959 		    if (font != NOFONT)
960 		    {
961 			gui_mch_free_font(gui.wide_font);
962 			gui.wide_font = font;
963 			set_string_option_direct((char_u *)"gfw", -1,
964 						      wide_name, OPT_FREE, 0);
965 		    }
966 		}
967 		break;
968 	    }
969 	}
970     }
971 }
972 # endif /* !FEAT_GUI_GTK */
973 
974 /*
975  * Get the font for 'guifontwide'.
976  * Return FAIL for an invalid font name.
977  */
978     int
979 gui_get_wide_font()
980 {
981     GuiFont	font = NOFONT;
982     char_u	font_name[FONTLEN];
983     char_u	*p;
984 
985     if (!gui.in_use)	    /* Can't allocate font yet, assume it's OK. */
986 	return OK;	    /* Will give an error message later. */
987 
988     if (p_guifontwide != NULL && *p_guifontwide != NUL)
989     {
990 	for (p = p_guifontwide; *p != NUL; )
991 	{
992 	    /* Isolate one comma separated font name. */
993 	    (void)copy_option_part(&p, font_name, FONTLEN, ",");
994 	    font = gui_mch_get_font(font_name, FALSE);
995 	    if (font != NOFONT)
996 		break;
997 	}
998 	if (font == NOFONT)
999 	    return FAIL;
1000     }
1001 
1002     gui_mch_free_font(gui.wide_font);
1003 # ifdef FEAT_GUI_GTK
1004     /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
1005     if (font != NOFONT && gui.norm_font != NOFONT
1006 			 && pango_font_description_equal(font, gui.norm_font))
1007     {
1008 	gui.wide_font = NOFONT;
1009 	gui_mch_free_font(font);
1010     }
1011     else
1012 # endif
1013 	gui.wide_font = font;
1014 # ifdef FEAT_GUI_MSWIN
1015     gui_mch_wide_font_changed();
1016 # else
1017     /*
1018      * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1019      * support those fonts for 'guifontwide'.
1020      */
1021 # endif
1022     return OK;
1023 }
1024 #endif
1025 
1026     void
1027 gui_set_cursor(row, col)
1028     int	    row;
1029     int	    col;
1030 {
1031     gui.row = row;
1032     gui.col = col;
1033 }
1034 
1035 /*
1036  * gui_check_pos - check if the cursor is on the screen.
1037  */
1038     static void
1039 gui_check_pos()
1040 {
1041     if (gui.row >= screen_Rows)
1042 	gui.row = screen_Rows - 1;
1043     if (gui.col >= screen_Columns)
1044 	gui.col = screen_Columns - 1;
1045     if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1046 	gui.cursor_is_valid = FALSE;
1047 }
1048 
1049 /*
1050  * Redraw the cursor if necessary or when forced.
1051  * Careful: The contents of ScreenLines[] must match what is on the screen,
1052  * otherwise this goes wrong.  May need to call out_flush() first.
1053  */
1054     void
1055 gui_update_cursor(force, clear_selection)
1056     int		force;		/* when TRUE, update even when not moved */
1057     int		clear_selection;/* clear selection under cursor */
1058 {
1059     int		cur_width = 0;
1060     int		cur_height = 0;
1061     int		old_hl_mask;
1062     int		idx;
1063     int		id;
1064     guicolor_T	cfg, cbg, cc;	/* cursor fore-/background color */
1065     int		cattr;		/* cursor attributes */
1066     int		attr;
1067     attrentry_T *aep = NULL;
1068 
1069     /* Don't update the cursor when halfway busy scrolling or the screen size
1070      * doesn't match 'columns' and 'lines.  ScreenLines[] isn't valid then. */
1071     if (!can_update_cursor || screen_Columns != gui.num_cols
1072 					       || screen_Rows != gui.num_rows)
1073 	return;
1074 
1075     gui_check_pos();
1076     if (!gui.cursor_is_valid || force
1077 		    || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1078     {
1079 	gui_undraw_cursor();
1080 	if (gui.row < 0)
1081 	    return;
1082 #ifdef USE_IM_CONTROL
1083 	if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1084 	    im_set_position(gui.row, gui.col);
1085 #endif
1086 	gui.cursor_row = gui.row;
1087 	gui.cursor_col = gui.col;
1088 
1089 	/* Only write to the screen after ScreenLines[] has been initialized */
1090 	if (!screen_cleared || ScreenLines == NULL)
1091 	    return;
1092 
1093 	/* Clear the selection if we are about to write over it */
1094 	if (clear_selection)
1095 	    clip_may_clear_selection(gui.row, gui.row);
1096 	/* Check that the cursor is inside the shell (resizing may have made
1097 	 * it invalid) */
1098 	if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1099 	    return;
1100 
1101 	gui.cursor_is_valid = TRUE;
1102 
1103 	/*
1104 	 * How the cursor is drawn depends on the current mode.
1105 	 */
1106 	idx = get_shape_idx(FALSE);
1107 	if (State & LANGMAP)
1108 	    id = shape_table[idx].id_lm;
1109 	else
1110 	    id = shape_table[idx].id;
1111 
1112 	/* get the colors and attributes for the cursor.  Default is inverted */
1113 	cfg = INVALCOLOR;
1114 	cbg = INVALCOLOR;
1115 	cattr = HL_INVERSE;
1116 	gui_mch_set_blinking(shape_table[idx].blinkwait,
1117 			     shape_table[idx].blinkon,
1118 			     shape_table[idx].blinkoff);
1119 	if (id > 0)
1120 	{
1121 	    cattr = syn_id2colors(id, &cfg, &cbg);
1122 #if defined(USE_IM_CONTROL) || defined(FEAT_HANGULIN)
1123 	    {
1124 		static int iid;
1125 		guicolor_T fg, bg;
1126 
1127 		if (
1128 # if defined(FEAT_GUI_GTK) && !defined(FEAT_HANGULIN)
1129 			preedit_get_status()
1130 # else
1131 			im_get_status()
1132 # endif
1133 			)
1134 		{
1135 		    iid = syn_name2id((char_u *)"CursorIM");
1136 		    if (iid > 0)
1137 		    {
1138 			syn_id2colors(iid, &fg, &bg);
1139 			if (bg != INVALCOLOR)
1140 			    cbg = bg;
1141 			if (fg != INVALCOLOR)
1142 			    cfg = fg;
1143 		    }
1144 		}
1145 	    }
1146 #endif
1147 	}
1148 
1149 	/*
1150 	 * Get the attributes for the character under the cursor.
1151 	 * When no cursor color was given, use the character color.
1152 	 */
1153 	attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1154 	if (attr > HL_ALL)
1155 	    aep = syn_gui_attr2entry(attr);
1156 	if (aep != NULL)
1157 	{
1158 	    attr = aep->ae_attr;
1159 	    if (cfg == INVALCOLOR)
1160 		cfg = ((attr & HL_INVERSE)  ? aep->ae_u.gui.bg_color
1161 					    : aep->ae_u.gui.fg_color);
1162 	    if (cbg == INVALCOLOR)
1163 		cbg = ((attr & HL_INVERSE)  ? aep->ae_u.gui.fg_color
1164 					    : aep->ae_u.gui.bg_color);
1165 	}
1166 	if (cfg == INVALCOLOR)
1167 	    cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1168 	if (cbg == INVALCOLOR)
1169 	    cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1170 
1171 #ifdef FEAT_XIM
1172 	if (aep != NULL)
1173 	{
1174 	    xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1175 						: aep->ae_u.gui.bg_color);
1176 	    xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1177 						: aep->ae_u.gui.fg_color);
1178 	    if (xim_bg_color == INVALCOLOR)
1179 		xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1180 						   : gui.back_pixel;
1181 	    if (xim_fg_color == INVALCOLOR)
1182 		xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1183 						   : gui.norm_pixel;
1184 	}
1185 	else
1186 	{
1187 	    xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1188 					       : gui.back_pixel;
1189 	    xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1190 					       : gui.norm_pixel;
1191 	}
1192 #endif
1193 
1194 	attr &= ~HL_INVERSE;
1195 	if (cattr & HL_INVERSE)
1196 	{
1197 	    cc = cbg;
1198 	    cbg = cfg;
1199 	    cfg = cc;
1200 	}
1201 	cattr &= ~HL_INVERSE;
1202 
1203 	/*
1204 	 * When we don't have window focus, draw a hollow cursor.
1205 	 */
1206 	if (!gui.in_focus)
1207 	{
1208 	    gui_mch_draw_hollow_cursor(cbg);
1209 	    return;
1210 	}
1211 
1212 	old_hl_mask = gui.highlight_mask;
1213 	if (shape_table[idx].shape == SHAPE_BLOCK
1214 #ifdef FEAT_HANGULIN
1215 		|| composing_hangul
1216 #endif
1217 	   )
1218 	{
1219 	    /*
1220 	     * Draw the text character with the cursor colors.	Use the
1221 	     * character attributes plus the cursor attributes.
1222 	     */
1223 	    gui.highlight_mask = (cattr | attr);
1224 #ifdef FEAT_HANGULIN
1225 	    if (composing_hangul)
1226 		(void)gui_outstr_nowrap(composing_hangul_buffer, 2,
1227 			GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1228 	    else
1229 #endif
1230 		(void)gui_screenchar(LineOffset[gui.row] + gui.col,
1231 			GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1232 	}
1233 	else
1234 	{
1235 #if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1236 	    int	    col_off = FALSE;
1237 #endif
1238 	    /*
1239 	     * First draw the partial cursor, then overwrite with the text
1240 	     * character, using a transparent background.
1241 	     */
1242 	    if (shape_table[idx].shape == SHAPE_VER)
1243 	    {
1244 		cur_height = gui.char_height;
1245 		cur_width = (gui.char_width * shape_table[idx].percentage
1246 								  + 99) / 100;
1247 	    }
1248 	    else
1249 	    {
1250 		cur_height = (gui.char_height * shape_table[idx].percentage
1251 								  + 99) / 100;
1252 		cur_width = gui.char_width;
1253 	    }
1254 #ifdef FEAT_MBYTE
1255 	    if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1256 				    LineOffset[gui.row] + screen_Columns) > 1)
1257 	    {
1258 		/* Double wide character. */
1259 		if (shape_table[idx].shape != SHAPE_VER)
1260 		    cur_width += gui.char_width;
1261 # ifdef FEAT_RIGHTLEFT
1262 		if (CURSOR_BAR_RIGHT)
1263 		{
1264 		    /* gui.col points to the left halve of the character but
1265 		     * the vertical line needs to be on the right halve.
1266 		     * A double-wide horizontal line is also drawn from the
1267 		     * right halve in gui_mch_draw_part_cursor(). */
1268 		    col_off = TRUE;
1269 		    ++gui.col;
1270 		}
1271 # endif
1272 	    }
1273 #endif
1274 	    gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
1275 #if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1276 	    if (col_off)
1277 		--gui.col;
1278 #endif
1279 
1280 #ifndef FEAT_GUI_MSWIN	    /* doesn't seem to work for MSWindows */
1281 	    gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1282 	    (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1283 		    GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1284 		    (guicolor_T)0, (guicolor_T)0, 0);
1285 #endif
1286 	}
1287 	gui.highlight_mask = old_hl_mask;
1288     }
1289 }
1290 
1291 #if defined(FEAT_MENU) || defined(PROTO)
1292     void
1293 gui_position_menu()
1294 {
1295 # if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
1296     if (gui.menu_is_active && gui.in_use)
1297 	gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1298 # endif
1299 }
1300 #endif
1301 
1302 /*
1303  * Position the various GUI components (text area, menu).  The vertical
1304  * scrollbars are NOT handled here.  See gui_update_scrollbars().
1305  */
1306     static void
1307 gui_position_components(total_width)
1308     int	    total_width UNUSED;
1309 {
1310     int	    text_area_x;
1311     int	    text_area_y;
1312     int	    text_area_width;
1313     int	    text_area_height;
1314 
1315     /* avoid that moving components around generates events */
1316     ++hold_gui_events;
1317 
1318     text_area_x = 0;
1319     if (gui.which_scrollbars[SBAR_LEFT])
1320 	text_area_x += gui.scrollbar_width;
1321 
1322     text_area_y = 0;
1323 #if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1324     gui.menu_width = total_width;
1325     if (gui.menu_is_active)
1326 	text_area_y += gui.menu_height;
1327 #endif
1328 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1329     if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1330 	text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1331 #endif
1332 
1333 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1334 	|| defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
1335     if (gui_has_tabline())
1336 	text_area_y += gui.tabline_height;
1337 #endif
1338 
1339 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1340     if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1341     {
1342 # ifdef FEAT_GUI_ATHENA
1343 	gui_mch_set_toolbar_pos(0, text_area_y,
1344 				gui.menu_width, gui.toolbar_height);
1345 # endif
1346 	text_area_y += gui.toolbar_height;
1347     }
1348 #endif
1349 
1350     text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1351     text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1352 
1353     gui_mch_set_text_area_pos(text_area_x,
1354 			      text_area_y,
1355 			      text_area_width,
1356 			      text_area_height
1357 #if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
1358 				  + xim_get_status_area_height()
1359 #endif
1360 			      );
1361 #ifdef FEAT_MENU
1362     gui_position_menu();
1363 #endif
1364     if (gui.which_scrollbars[SBAR_BOTTOM])
1365 	gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1366 				  text_area_x,
1367 				  text_area_y + text_area_height,
1368 				  text_area_width,
1369 				  gui.scrollbar_height);
1370     gui.left_sbar_x = 0;
1371     gui.right_sbar_x = text_area_x + text_area_width;
1372 
1373     --hold_gui_events;
1374 }
1375 
1376 /*
1377  * Get the width of the widgets and decorations to the side of the text area.
1378  */
1379     int
1380 gui_get_base_width()
1381 {
1382     int	    base_width;
1383 
1384     base_width = 2 * gui.border_offset;
1385     if (gui.which_scrollbars[SBAR_LEFT])
1386 	base_width += gui.scrollbar_width;
1387     if (gui.which_scrollbars[SBAR_RIGHT])
1388 	base_width += gui.scrollbar_width;
1389     return base_width;
1390 }
1391 
1392 /*
1393  * Get the height of the widgets and decorations above and below the text area.
1394  */
1395     int
1396 gui_get_base_height()
1397 {
1398     int	    base_height;
1399 
1400     base_height = 2 * gui.border_offset;
1401     if (gui.which_scrollbars[SBAR_BOTTOM])
1402 	base_height += gui.scrollbar_height;
1403 #ifdef FEAT_GUI_GTK
1404     /* We can't take the sizes properly into account until anything is
1405      * realized.  Therefore we recalculate all the values here just before
1406      * setting the size. (--mdcki) */
1407 #else
1408 # ifdef FEAT_MENU
1409     if (gui.menu_is_active)
1410 	base_height += gui.menu_height;
1411 # endif
1412 # ifdef FEAT_TOOLBAR
1413     if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1414 #  if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1415 	base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1416 #  else
1417 	base_height += gui.toolbar_height;
1418 #  endif
1419 # endif
1420 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1421 	|| defined(FEAT_GUI_MOTIF))
1422     if (gui_has_tabline())
1423 	base_height += gui.tabline_height;
1424 # endif
1425 # ifdef FEAT_FOOTER
1426     if (vim_strchr(p_go, GO_FOOTER) != NULL)
1427 	base_height += gui.footer_height;
1428 # endif
1429 # if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1430     base_height += gui_mch_text_area_extra_height();
1431 # endif
1432 #endif
1433     return base_height;
1434 }
1435 
1436 /*
1437  * Should be called after the GUI shell has been resized.  Its arguments are
1438  * the new width and height of the shell in pixels.
1439  */
1440     void
1441 gui_resize_shell(pixel_width, pixel_height)
1442     int		pixel_width;
1443     int		pixel_height;
1444 {
1445     static int	busy = FALSE;
1446 
1447     if (!gui.shell_created)	    /* ignore when still initializing */
1448 	return;
1449 
1450     /*
1451      * Can't resize the screen while it is being redrawn.  Remember the new
1452      * size and handle it later.
1453      */
1454     if (updating_screen || busy)
1455     {
1456 	new_pixel_width = pixel_width;
1457 	new_pixel_height = pixel_height;
1458 	return;
1459     }
1460 
1461 again:
1462     busy = TRUE;
1463 
1464     /* Flush pending output before redrawing */
1465     out_flush();
1466 
1467     gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
1468     gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
1469 
1470     gui_position_components(pixel_width);
1471 
1472     gui_reset_scroll_region();
1473     /*
1474      * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1475      * at the last line here (why does it have to be one row too low?).
1476      */
1477     if (State == ASKMORE || State == CONFIRM)
1478 	gui.row = gui.num_rows;
1479 
1480     /* Only comparing Rows and Columns may be sufficient, but let's stay on
1481      * the safe side. */
1482     if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1483 	    || gui.num_rows != Rows || gui.num_cols != Columns)
1484 	shell_resized();
1485 
1486     gui_update_scrollbars(TRUE);
1487     gui_update_cursor(FALSE, TRUE);
1488 #if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
1489     xim_set_status_area();
1490 #endif
1491 
1492     busy = FALSE;
1493 
1494     /*
1495      * We could have been called again while redrawing the screen.
1496      * Need to do it all again with the latest size then.
1497      */
1498     if (new_pixel_height)
1499     {
1500 	pixel_width = new_pixel_width;
1501 	pixel_height = new_pixel_height;
1502 	new_pixel_width = 0;
1503 	new_pixel_height = 0;
1504 	goto again;
1505     }
1506 }
1507 
1508 /*
1509  * Check if gui_resize_shell() must be called.
1510  */
1511     void
1512 gui_may_resize_shell()
1513 {
1514     int		h, w;
1515 
1516     if (new_pixel_height)
1517     {
1518 	/* careful: gui_resize_shell() may postpone the resize again if we
1519 	 * were called indirectly by it */
1520 	w = new_pixel_width;
1521 	h = new_pixel_height;
1522 	new_pixel_width = 0;
1523 	new_pixel_height = 0;
1524 	gui_resize_shell(w, h);
1525     }
1526 }
1527 
1528     int
1529 gui_get_shellsize()
1530 {
1531     Rows = gui.num_rows;
1532     Columns = gui.num_cols;
1533     return OK;
1534 }
1535 
1536 /*
1537  * Set the size of the Vim shell according to Rows and Columns.
1538  * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1539  * on the screen.
1540  */
1541     void
1542 gui_set_shellsize(mustset, fit_to_display, direction)
1543     int		mustset UNUSED;		/* set by the user */
1544     int		fit_to_display;
1545     int		direction;		/* RESIZE_HOR, RESIZE_VER */
1546 {
1547     int		base_width;
1548     int		base_height;
1549     int		width;
1550     int		height;
1551     int		min_width;
1552     int		min_height;
1553     int		screen_w;
1554     int		screen_h;
1555 #ifdef FEAT_GUI_GTK
1556     int		un_maximize = mustset;
1557     int		did_adjust = 0;
1558 #endif
1559     int		x = -1, y = -1;
1560 
1561     if (!gui.shell_created)
1562 	return;
1563 
1564 #if defined(MSWIN) || defined(FEAT_GUI_GTK)
1565     /* If not setting to a user specified size and maximized, calculate the
1566      * number of characters that fit in the maximized window. */
1567     if (!mustset && gui_mch_maximized())
1568     {
1569 	gui_mch_newfont();
1570 	return;
1571     }
1572 #endif
1573 
1574     base_width = gui_get_base_width();
1575     base_height = gui_get_base_height();
1576     if (fit_to_display)
1577 	/* Remember the original window position. */
1578 	(void)gui_mch_get_winpos(&x, &y);
1579 
1580 #ifdef USE_SUN_WORKSHOP
1581     if (!mustset && usingSunWorkShop
1582 				&& workshop_get_width_height(&width, &height))
1583     {
1584 	Columns = (width - base_width + gui.char_width - 1) / gui.char_width;
1585 	Rows = (height - base_height + gui.char_height - 1) / gui.char_height;
1586     }
1587     else
1588 #endif
1589     {
1590 	width = Columns * gui.char_width + base_width;
1591 	height = Rows * gui.char_height + base_height;
1592     }
1593 
1594     if (fit_to_display)
1595     {
1596 	gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1597 	if ((direction & RESIZE_HOR) && width > screen_w)
1598 	{
1599 	    Columns = (screen_w - base_width) / gui.char_width;
1600 	    if (Columns < MIN_COLUMNS)
1601 		Columns = MIN_COLUMNS;
1602 	    width = Columns * gui.char_width + base_width;
1603 #ifdef FEAT_GUI_GTK
1604 	    ++did_adjust;
1605 #endif
1606 	}
1607 	if ((direction & RESIZE_VERT) && height > screen_h)
1608 	{
1609 	    Rows = (screen_h - base_height) / gui.char_height;
1610 	    check_shellsize();
1611 	    height = Rows * gui.char_height + base_height;
1612 #ifdef FEAT_GUI_GTK
1613 	    ++did_adjust;
1614 #endif
1615 	}
1616 #ifdef FEAT_GUI_GTK
1617 	if (did_adjust == 2 || (width + gui.char_width >= screen_w
1618 				     && height + gui.char_height >= screen_h))
1619 	    /* don't unmaximize if at maximum size */
1620 	    un_maximize = FALSE;
1621 #endif
1622     }
1623     limit_screen_size();
1624     gui.num_cols = Columns;
1625     gui.num_rows = Rows;
1626 
1627     min_width = base_width + MIN_COLUMNS * gui.char_width;
1628     min_height = base_height + MIN_LINES * gui.char_height;
1629 #ifdef FEAT_WINDOWS
1630     min_height += tabline_height() * gui.char_height;
1631 #endif
1632 
1633 #ifdef FEAT_GUI_GTK
1634     if (un_maximize)
1635     {
1636 	/* If the window size is smaller than the screen unmaximize the
1637 	 * window, otherwise resizing won't work. */
1638 	gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1639 	if ((width + gui.char_width < screen_w
1640 				   || height + gui.char_height * 2 < screen_h)
1641 		&& gui_mch_maximized())
1642 	    gui_mch_unmaximize();
1643     }
1644 #endif
1645 
1646     gui_mch_set_shellsize(width, height, min_width, min_height,
1647 					  base_width, base_height, direction);
1648 
1649     if (fit_to_display && x >= 0 && y >= 0)
1650     {
1651 	/* Some window managers put the Vim window left of/above the screen.
1652 	 * Only change the position if it wasn't already negative before
1653 	 * (happens on MS-Windows with a secondary monitor). */
1654 	gui_mch_update();
1655 	if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1656 	    gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1657     }
1658 
1659     gui_position_components(width);
1660     gui_update_scrollbars(TRUE);
1661     gui_reset_scroll_region();
1662 }
1663 
1664 /*
1665  * Called when Rows and/or Columns has changed.
1666  */
1667     void
1668 gui_new_shellsize()
1669 {
1670     gui_reset_scroll_region();
1671 }
1672 
1673 /*
1674  * Make scroll region cover whole screen.
1675  */
1676     void
1677 gui_reset_scroll_region()
1678 {
1679     gui.scroll_region_top = 0;
1680     gui.scroll_region_bot = gui.num_rows - 1;
1681     gui.scroll_region_left = 0;
1682     gui.scroll_region_right = gui.num_cols - 1;
1683 }
1684 
1685     void
1686 gui_start_highlight(mask)
1687     int	    mask;
1688 {
1689     if (mask > HL_ALL)		    /* highlight code */
1690 	gui.highlight_mask = mask;
1691     else			    /* mask */
1692 	gui.highlight_mask |= mask;
1693 }
1694 
1695     void
1696 gui_stop_highlight(mask)
1697     int	    mask;
1698 {
1699     if (mask > HL_ALL)		    /* highlight code */
1700 	gui.highlight_mask = HL_NORMAL;
1701     else			    /* mask */
1702 	gui.highlight_mask &= ~mask;
1703 }
1704 
1705 /*
1706  * Clear a rectangular region of the screen from text pos (row1, col1) to
1707  * (row2, col2) inclusive.
1708  */
1709     void
1710 gui_clear_block(row1, col1, row2, col2)
1711     int	    row1;
1712     int	    col1;
1713     int	    row2;
1714     int	    col2;
1715 {
1716     /* Clear the selection if we are about to write over it */
1717     clip_may_clear_selection(row1, row2);
1718 
1719     gui_mch_clear_block(row1, col1, row2, col2);
1720 
1721     /* Invalidate cursor if it was in this block */
1722     if (       gui.cursor_row >= row1 && gui.cursor_row <= row2
1723 	    && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1724 	gui.cursor_is_valid = FALSE;
1725 }
1726 
1727 /*
1728  * Write code to update the cursor later.  This avoids the need to flush the
1729  * output buffer before calling gui_update_cursor().
1730  */
1731     void
1732 gui_update_cursor_later()
1733 {
1734     OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
1735 }
1736 
1737     void
1738 gui_write(s, len)
1739     char_u	*s;
1740     int		len;
1741 {
1742     char_u	*p;
1743     int		arg1 = 0, arg2 = 0;
1744     int		force_cursor = FALSE;	/* force cursor update */
1745     int		force_scrollbar = FALSE;
1746     static win_T	*old_curwin = NULL;
1747 
1748 /* #define DEBUG_GUI_WRITE */
1749 #ifdef DEBUG_GUI_WRITE
1750     {
1751 	int i;
1752 	char_u *str;
1753 
1754 	printf("gui_write(%d):\n    ", len);
1755 	for (i = 0; i < len; i++)
1756 	    if (s[i] == ESC)
1757 	    {
1758 		if (i != 0)
1759 		    printf("\n    ");
1760 		printf("<ESC>");
1761 	    }
1762 	    else
1763 	    {
1764 		str = transchar_byte(s[i]);
1765 		if (str[0] && str[1])
1766 		    printf("<%s>", (char *)str);
1767 		else
1768 		    printf("%s", (char *)str);
1769 	    }
1770 	printf("\n");
1771     }
1772 #endif
1773     while (len)
1774     {
1775 	if (s[0] == ESC && s[1] == '|')
1776 	{
1777 	    p = s + 2;
1778 	    if (VIM_ISDIGIT(*p))
1779 	    {
1780 		arg1 = getdigits(&p);
1781 		if (p > s + len)
1782 		    break;
1783 		if (*p == ';')
1784 		{
1785 		    ++p;
1786 		    arg2 = getdigits(&p);
1787 		    if (p > s + len)
1788 			break;
1789 		}
1790 	    }
1791 	    switch (*p)
1792 	    {
1793 		case 'C':	/* Clear screen */
1794 		    clip_scroll_selection(9999);
1795 		    gui_mch_clear_all();
1796 		    gui.cursor_is_valid = FALSE;
1797 		    force_scrollbar = TRUE;
1798 		    break;
1799 		case 'M':	/* Move cursor */
1800 		    gui_set_cursor(arg1, arg2);
1801 		    break;
1802 		case 's':	/* force cursor (shape) update */
1803 		    force_cursor = TRUE;
1804 		    break;
1805 		case 'R':	/* Set scroll region */
1806 		    if (arg1 < arg2)
1807 		    {
1808 			gui.scroll_region_top = arg1;
1809 			gui.scroll_region_bot = arg2;
1810 		    }
1811 		    else
1812 		    {
1813 			gui.scroll_region_top = arg2;
1814 			gui.scroll_region_bot = arg1;
1815 		    }
1816 		    break;
1817 #ifdef FEAT_VERTSPLIT
1818 		case 'V':	/* Set vertical scroll region */
1819 		    if (arg1 < arg2)
1820 		    {
1821 			gui.scroll_region_left = arg1;
1822 			gui.scroll_region_right = arg2;
1823 		    }
1824 		    else
1825 		    {
1826 			gui.scroll_region_left = arg2;
1827 			gui.scroll_region_right = arg1;
1828 		    }
1829 		    break;
1830 #endif
1831 		case 'd':	/* Delete line */
1832 		    gui_delete_lines(gui.row, 1);
1833 		    break;
1834 		case 'D':	/* Delete lines */
1835 		    gui_delete_lines(gui.row, arg1);
1836 		    break;
1837 		case 'i':	/* Insert line */
1838 		    gui_insert_lines(gui.row, 1);
1839 		    break;
1840 		case 'I':	/* Insert lines */
1841 		    gui_insert_lines(gui.row, arg1);
1842 		    break;
1843 		case '$':	/* Clear to end-of-line */
1844 		    gui_clear_block(gui.row, gui.col, gui.row,
1845 							    (int)Columns - 1);
1846 		    break;
1847 		case 'h':	/* Turn on highlighting */
1848 		    gui_start_highlight(arg1);
1849 		    break;
1850 		case 'H':	/* Turn off highlighting */
1851 		    gui_stop_highlight(arg1);
1852 		    break;
1853 		case 'f':	/* flash the window (visual bell) */
1854 		    gui_mch_flash(arg1 == 0 ? 20 : arg1);
1855 		    break;
1856 		default:
1857 		    p = s + 1;	/* Skip the ESC */
1858 		    break;
1859 	    }
1860 	    len -= (int)(++p - s);
1861 	    s = p;
1862 	}
1863 	else if (
1864 #ifdef EBCDIC
1865 		CtrlChar(s[0]) != 0	/* Ctrl character */
1866 #else
1867 		s[0] < 0x20		/* Ctrl character */
1868 #endif
1869 #ifdef FEAT_SIGN_ICONS
1870 		&& s[0] != SIGN_BYTE
1871 # ifdef FEAT_NETBEANS_INTG
1872 		&& s[0] != MULTISIGN_BYTE
1873 # endif
1874 #endif
1875 		)
1876 	{
1877 	    if (s[0] == '\n')		/* NL */
1878 	    {
1879 		gui.col = 0;
1880 		if (gui.row < gui.scroll_region_bot)
1881 		    gui.row++;
1882 		else
1883 		    gui_delete_lines(gui.scroll_region_top, 1);
1884 	    }
1885 	    else if (s[0] == '\r')	/* CR */
1886 	    {
1887 		gui.col = 0;
1888 	    }
1889 	    else if (s[0] == '\b')	/* Backspace */
1890 	    {
1891 		if (gui.col)
1892 		    --gui.col;
1893 	    }
1894 	    else if (s[0] == Ctrl_L)	/* cursor-right */
1895 	    {
1896 		++gui.col;
1897 	    }
1898 	    else if (s[0] == Ctrl_G)	/* Beep */
1899 	    {
1900 		gui_mch_beep();
1901 	    }
1902 	    /* Other Ctrl character: shouldn't happen! */
1903 
1904 	    --len;	/* Skip this char */
1905 	    ++s;
1906 	}
1907 	else
1908 	{
1909 	    p = s;
1910 	    while (len > 0 && (
1911 #ifdef EBCDIC
1912 			CtrlChar(*p) == 0
1913 #else
1914 			*p >= 0x20
1915 #endif
1916 #ifdef FEAT_SIGN_ICONS
1917 			|| *p == SIGN_BYTE
1918 # ifdef FEAT_NETBEANS_INTG
1919 			|| *p == MULTISIGN_BYTE
1920 # endif
1921 #endif
1922 			))
1923 	    {
1924 		len--;
1925 		p++;
1926 	    }
1927 	    gui_outstr(s, (int)(p - s));
1928 	    s = p;
1929 	}
1930     }
1931 
1932     /* Postponed update of the cursor (won't work if "can_update_cursor" isn't
1933      * set). */
1934     if (force_cursor)
1935 	gui_update_cursor(TRUE, TRUE);
1936 
1937     /* When switching to another window the dragging must have stopped.
1938      * Required for GTK, dragged_sb isn't reset. */
1939     if (old_curwin != curwin)
1940 	gui.dragged_sb = SBAR_NONE;
1941 
1942     /* Update the scrollbars after clearing the screen or when switched
1943      * to another window.
1944      * Update the horizontal scrollbar always, it's difficult to check all
1945      * situations where it might change. */
1946     if (force_scrollbar || old_curwin != curwin)
1947 	gui_update_scrollbars(force_scrollbar);
1948     else
1949 	gui_update_horiz_scrollbar(FALSE);
1950     old_curwin = curwin;
1951 
1952     /*
1953      * We need to make sure this is cleared since Athena doesn't tell us when
1954      * he is done dragging.  Do the same for GTK.
1955      */
1956 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
1957     gui.dragged_sb = SBAR_NONE;
1958 #endif
1959 
1960     gui_mch_flush();		    /* In case vim decides to take a nap */
1961 }
1962 
1963 /*
1964  * When ScreenLines[] is invalid, updating the cursor should not be done, it
1965  * produces wrong results.  Call gui_dont_update_cursor() before that code and
1966  * gui_can_update_cursor() afterwards.
1967  */
1968     void
1969 gui_dont_update_cursor()
1970 {
1971     if (gui.in_use)
1972     {
1973 	/* Undraw the cursor now, we probably can't do it after the change. */
1974 	gui_undraw_cursor();
1975 	can_update_cursor = FALSE;
1976     }
1977 }
1978 
1979     void
1980 gui_can_update_cursor()
1981 {
1982     can_update_cursor = TRUE;
1983     /* No need to update the cursor right now, there is always more output
1984      * after scrolling. */
1985 }
1986 
1987     static void
1988 gui_outstr(s, len)
1989     char_u  *s;
1990     int	    len;
1991 {
1992     int	    this_len;
1993 #ifdef FEAT_MBYTE
1994     int	    cells;
1995 #endif
1996 
1997     if (len == 0)
1998 	return;
1999 
2000     if (len < 0)
2001 	len = (int)STRLEN(s);
2002 
2003     while (len > 0)
2004     {
2005 #ifdef FEAT_MBYTE
2006 	if (has_mbyte)
2007 	{
2008 	    /* Find out how many chars fit in the current line. */
2009 	    cells = 0;
2010 	    for (this_len = 0; this_len < len; )
2011 	    {
2012 		cells += (*mb_ptr2cells)(s + this_len);
2013 		if (gui.col + cells > Columns)
2014 		    break;
2015 		this_len += (*mb_ptr2len)(s + this_len);
2016 	    }
2017 	    if (this_len > len)
2018 		this_len = len;	    /* don't include following composing char */
2019 	}
2020 	else
2021 #endif
2022 	    if (gui.col + len > Columns)
2023 	    this_len = Columns - gui.col;
2024 	else
2025 	    this_len = len;
2026 
2027 	(void)gui_outstr_nowrap(s, this_len,
2028 					  0, (guicolor_T)0, (guicolor_T)0, 0);
2029 	s += this_len;
2030 	len -= this_len;
2031 #ifdef FEAT_MBYTE
2032 	/* fill up for a double-width char that doesn't fit. */
2033 	if (len > 0 && gui.col < Columns)
2034 	    (void)gui_outstr_nowrap((char_u *)" ", 1,
2035 					  0, (guicolor_T)0, (guicolor_T)0, 0);
2036 #endif
2037 	/* The cursor may wrap to the next line. */
2038 	if (gui.col >= Columns)
2039 	{
2040 	    gui.col = 0;
2041 	    gui.row++;
2042 	}
2043     }
2044 }
2045 
2046 /*
2047  * Output one character (may be one or two display cells).
2048  * Caller must check for valid "off".
2049  * Returns FAIL or OK, just like gui_outstr_nowrap().
2050  */
2051     static int
2052 gui_screenchar(off, flags, fg, bg, back)
2053     int		off;	    /* Offset from start of screen */
2054     int		flags;
2055     guicolor_T	fg, bg;	    /* colors for cursor */
2056     int		back;	    /* backup this many chars when using bold trick */
2057 {
2058 #ifdef FEAT_MBYTE
2059     char_u	buf[MB_MAXBYTES + 1];
2060 
2061     /* Don't draw right halve of a double-width UTF-8 char. "cannot happen" */
2062     if (enc_utf8 && ScreenLines[off] == 0)
2063 	return OK;
2064 
2065     if (enc_utf8 && ScreenLinesUC[off] != 0)
2066 	/* Draw UTF-8 multi-byte character. */
2067 	return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2068 							 flags, fg, bg, back);
2069 
2070     if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2071     {
2072 	buf[0] = ScreenLines[off];
2073 	buf[1] = ScreenLines2[off];
2074 	return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2075     }
2076 
2077     /* Draw non-multi-byte character or DBCS character. */
2078     return gui_outstr_nowrap(ScreenLines + off,
2079 	    enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
2080 							 flags, fg, bg, back);
2081 #else
2082     return gui_outstr_nowrap(ScreenLines + off, 1, flags, fg, bg, back);
2083 #endif
2084 }
2085 
2086 #ifdef FEAT_GUI_GTK
2087 /*
2088  * Output the string at the given screen position.  This is used in place
2089  * of gui_screenchar() where possible because Pango needs as much context
2090  * as possible to work nicely.  It's a lot faster as well.
2091  */
2092     static int
2093 gui_screenstr(off, len, flags, fg, bg, back)
2094     int		off;	    /* Offset from start of screen */
2095     int		len;	    /* string length in screen cells */
2096     int		flags;
2097     guicolor_T	fg, bg;	    /* colors for cursor */
2098     int		back;	    /* backup this many chars when using bold trick */
2099 {
2100     char_u  *buf;
2101     int	    outlen = 0;
2102     int	    i;
2103     int	    retval;
2104 
2105     if (len <= 0) /* "cannot happen"? */
2106 	return OK;
2107 
2108     if (enc_utf8)
2109     {
2110 	buf = alloc((unsigned)(len * MB_MAXBYTES + 1));
2111 	if (buf == NULL)
2112 	    return OK; /* not much we could do here... */
2113 
2114 	for (i = off; i < off + len; ++i)
2115 	{
2116 	    if (ScreenLines[i] == 0)
2117 		continue; /* skip second half of double-width char */
2118 
2119 	    if (ScreenLinesUC[i] == 0)
2120 		buf[outlen++] = ScreenLines[i];
2121 	    else
2122 		outlen += utfc_char2bytes(i, buf + outlen);
2123 	}
2124 
2125 	buf[outlen] = NUL; /* only to aid debugging */
2126 	retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2127 	vim_free(buf);
2128 
2129 	return retval;
2130     }
2131     else if (enc_dbcs == DBCS_JPNU)
2132     {
2133 	buf = alloc((unsigned)(len * 2 + 1));
2134 	if (buf == NULL)
2135 	    return OK; /* not much we could do here... */
2136 
2137 	for (i = off; i < off + len; ++i)
2138 	{
2139 	    buf[outlen++] = ScreenLines[i];
2140 
2141 	    /* handle double-byte single-width char */
2142 	    if (ScreenLines[i] == 0x8e)
2143 		buf[outlen++] = ScreenLines2[i];
2144 	    else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2145 		buf[outlen++] = ScreenLines[++i];
2146 	}
2147 
2148 	buf[outlen] = NUL; /* only to aid debugging */
2149 	retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2150 	vim_free(buf);
2151 
2152 	return retval;
2153     }
2154     else
2155     {
2156 	return gui_outstr_nowrap(&ScreenLines[off], len,
2157 				 flags, fg, bg, back);
2158     }
2159 }
2160 #endif /* FEAT_GUI_GTK */
2161 
2162 /*
2163  * Output the given string at the current cursor position.  If the string is
2164  * too long to fit on the line, then it is truncated.
2165  * "flags":
2166  * GUI_MON_IS_CURSOR should only be used when this function is being called to
2167  * actually draw (an inverted) cursor.
2168  * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
2169  * background.
2170  * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2171  * it.
2172  * Returns OK, unless "back" is non-zero and using the bold trick, then return
2173  * FAIL (the caller should start drawing "back" chars back).
2174  */
2175     int
2176 gui_outstr_nowrap(s, len, flags, fg, bg, back)
2177     char_u	*s;
2178     int		len;
2179     int		flags;
2180     guicolor_T	fg, bg;	    /* colors for cursor */
2181     int		back;	    /* backup this many chars when using bold trick */
2182 {
2183     long_u	highlight_mask;
2184     long_u	hl_mask_todo;
2185     guicolor_T	fg_color;
2186     guicolor_T	bg_color;
2187     guicolor_T	sp_color;
2188 #if !defined(MSWIN16_FASTTEXT) && !defined(FEAT_GUI_GTK)
2189     GuiFont	font = NOFONT;
2190 # ifdef FEAT_MBYTE
2191     GuiFont	wide_font = NOFONT;
2192 # endif
2193 # ifdef FEAT_XFONTSET
2194     GuiFontset	fontset = NOFONTSET;
2195 # endif
2196 #endif
2197     attrentry_T	*aep = NULL;
2198     int		draw_flags;
2199     int		col = gui.col;
2200 #ifdef FEAT_SIGN_ICONS
2201     int		draw_sign = FALSE;
2202 # ifdef FEAT_NETBEANS_INTG
2203     int		multi_sign = FALSE;
2204 # endif
2205 #endif
2206 
2207     if (len < 0)
2208 	len = (int)STRLEN(s);
2209     if (len == 0)
2210 	return OK;
2211 
2212 #ifdef FEAT_SIGN_ICONS
2213     if (*s == SIGN_BYTE
2214 # ifdef FEAT_NETBEANS_INTG
2215 	  || *s == MULTISIGN_BYTE
2216 # endif
2217     )
2218     {
2219 # ifdef FEAT_NETBEANS_INTG
2220 	if (*s == MULTISIGN_BYTE)
2221 	    multi_sign = TRUE;
2222 # endif
2223 	/* draw spaces instead */
2224 	s = (char_u *)"  ";
2225 	if (len == 1 && col > 0)
2226 	    --col;
2227 	len = 2;
2228 	draw_sign = TRUE;
2229 	highlight_mask = 0;
2230     }
2231     else
2232 #endif
2233     if (gui.highlight_mask > HL_ALL)
2234     {
2235 	aep = syn_gui_attr2entry(gui.highlight_mask);
2236 	if (aep == NULL)	    /* highlighting not set */
2237 	    highlight_mask = 0;
2238 	else
2239 	    highlight_mask = aep->ae_attr;
2240     }
2241     else
2242 	highlight_mask = gui.highlight_mask;
2243     hl_mask_todo = highlight_mask;
2244 
2245 #if !defined(MSWIN16_FASTTEXT) && !defined(FEAT_GUI_GTK)
2246     /* Set the font */
2247     if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2248 	font = aep->ae_u.gui.font;
2249 # ifdef FEAT_XFONTSET
2250     else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2251 	fontset = aep->ae_u.gui.fontset;
2252 # endif
2253     else
2254     {
2255 # ifdef FEAT_XFONTSET
2256 	if (gui.fontset != NOFONTSET)
2257 	    fontset = gui.fontset;
2258 	else
2259 # endif
2260 	    if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2261 	{
2262 	    if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2263 	    {
2264 		font = gui.boldital_font;
2265 		hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2266 	    }
2267 	    else if (gui.bold_font != NOFONT)
2268 	    {
2269 		font = gui.bold_font;
2270 		hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2271 	    }
2272 	    else
2273 		font = gui.norm_font;
2274 	}
2275 	else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2276 	{
2277 	    font = gui.ital_font;
2278 	    hl_mask_todo &= ~HL_ITALIC;
2279 	}
2280 	else
2281 	    font = gui.norm_font;
2282 
2283 # ifdef FEAT_MBYTE
2284 	/*
2285 	 * Choose correct wide_font by font.  wide_font should be set with font
2286 	 * at same time in above block.  But it will make many "ifdef" nasty
2287 	 * blocks.  So we do it here.
2288 	 */
2289 	if (font == gui.boldital_font && gui.wide_boldital_font)
2290 	    wide_font = gui.wide_boldital_font;
2291 	else if (font == gui.bold_font && gui.wide_bold_font)
2292 	    wide_font = gui.wide_bold_font;
2293 	else if (font == gui.ital_font && gui.wide_ital_font)
2294 	    wide_font = gui.wide_ital_font;
2295 	else if (font == gui.norm_font && gui.wide_font)
2296 	    wide_font = gui.wide_font;
2297 # endif
2298 
2299     }
2300 # ifdef FEAT_XFONTSET
2301     if (fontset != NOFONTSET)
2302 	gui_mch_set_fontset(fontset);
2303     else
2304 # endif
2305 	gui_mch_set_font(font);
2306 #endif
2307 
2308     draw_flags = 0;
2309 
2310     /* Set the color */
2311     bg_color = gui.back_pixel;
2312     if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2313     {
2314 	draw_flags |= DRAW_CURSOR;
2315 	fg_color = fg;
2316 	bg_color = bg;
2317 	sp_color = fg;
2318     }
2319     else if (aep != NULL)
2320     {
2321 	fg_color = aep->ae_u.gui.fg_color;
2322 	if (fg_color == INVALCOLOR)
2323 	    fg_color = gui.norm_pixel;
2324 	bg_color = aep->ae_u.gui.bg_color;
2325 	if (bg_color == INVALCOLOR)
2326 	    bg_color = gui.back_pixel;
2327 	sp_color = aep->ae_u.gui.sp_color;
2328 	if (sp_color == INVALCOLOR)
2329 	    sp_color = fg_color;
2330     }
2331     else
2332     {
2333 	fg_color = gui.norm_pixel;
2334 	sp_color = fg_color;
2335     }
2336 
2337     if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2338     {
2339 #if defined(AMIGA)
2340 	gui_mch_set_colors(bg_color, fg_color);
2341 #else
2342 	gui_mch_set_fg_color(bg_color);
2343 	gui_mch_set_bg_color(fg_color);
2344 #endif
2345     }
2346     else
2347     {
2348 #if defined(AMIGA)
2349 	gui_mch_set_colors(fg_color, bg_color);
2350 #else
2351 	gui_mch_set_fg_color(fg_color);
2352 	gui_mch_set_bg_color(bg_color);
2353 #endif
2354     }
2355     gui_mch_set_sp_color(sp_color);
2356 
2357     /* Clear the selection if we are about to write over it */
2358     if (!(flags & GUI_MON_NOCLEAR))
2359 	clip_may_clear_selection(gui.row, gui.row);
2360 
2361 
2362 #ifndef MSWIN16_FASTTEXT
2363     /* If there's no bold font, then fake it */
2364     if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2365 	draw_flags |= DRAW_BOLD;
2366 #endif
2367 
2368     /*
2369      * When drawing bold or italic characters the spill-over from the left
2370      * neighbor may be destroyed.  Let the caller backup to start redrawing
2371      * just after a blank.
2372      */
2373     if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2374 	return FAIL;
2375 
2376 #if defined(FEAT_GUI_GTK)
2377     /* If there's no italic font, then fake it.
2378      * For GTK2, we don't need a different font for italic style. */
2379     if (hl_mask_todo & HL_ITALIC)
2380 	draw_flags |= DRAW_ITALIC;
2381 
2382     /* Do we underline the text? */
2383     if (hl_mask_todo & HL_UNDERLINE)
2384 	draw_flags |= DRAW_UNDERL;
2385 #else
2386     /* Do we underline the text? */
2387     if ((hl_mask_todo & HL_UNDERLINE)
2388 # ifndef MSWIN16_FASTTEXT
2389 	    || (hl_mask_todo & HL_ITALIC)
2390 # endif
2391        )
2392 	draw_flags |= DRAW_UNDERL;
2393 #endif
2394     /* Do we undercurl the text? */
2395     if (hl_mask_todo & HL_UNDERCURL)
2396 	draw_flags |= DRAW_UNDERC;
2397 
2398     /* Do we draw transparently? */
2399     if (flags & GUI_MON_TRS_CURSOR)
2400 	draw_flags |= DRAW_TRANSP;
2401 
2402     /*
2403      * Draw the text.
2404      */
2405 #ifdef FEAT_GUI_GTK
2406     /* The value returned is the length in display cells */
2407     len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2408 #else
2409 # ifdef FEAT_MBYTE
2410     if (enc_utf8)
2411     {
2412 	int	start;		/* index of bytes to be drawn */
2413 	int	cells;		/* cellwidth of bytes to be drawn */
2414 	int	thislen;	/* length of bytes to be drawn */
2415 	int	cn;		/* cellwidth of current char */
2416 	int	i;		/* index of current char */
2417 	int	c;		/* current char value */
2418 	int	cl;		/* byte length of current char */
2419 	int	comping;	/* current char is composing */
2420 	int	scol = col;	/* screen column */
2421 	int	curr_wide;	/* use 'guifontwide' */
2422 	int	prev_wide = FALSE;
2423 	int	wide_changed;
2424 
2425 	/* Break the string at a composing character, it has to be drawn on
2426 	 * top of the previous character. */
2427 	start = 0;
2428 	cells = 0;
2429 	for (i = 0; i < len; i += cl)
2430 	{
2431 	    c = utf_ptr2char(s + i);
2432 	    cn = utf_char2cells(c);
2433 	    if (cn > 1
2434 #  ifdef FEAT_XFONTSET
2435 		    && fontset == NOFONTSET
2436 #  endif
2437 		    && wide_font != NOFONT)
2438 		curr_wide = TRUE;
2439 	    else
2440 		curr_wide = FALSE;
2441 	    comping = utf_iscomposing(c);
2442 	    if (!comping)	/* count cells from non-composing chars */
2443 		cells += cn;
2444 	    cl = utf_ptr2len(s + i);
2445 	    if (cl == 0)	/* hit end of string */
2446 		len = i + cl;	/* len must be wrong "cannot happen" */
2447 
2448 	    wide_changed = curr_wide != prev_wide;
2449 
2450 	    /* Print the string so far if it's the last character or there is
2451 	     * a composing character. */
2452 	    if (i + cl >= len || (comping && i > start) || wide_changed
2453 #  if defined(FEAT_GUI_X11)
2454 		    || (cn > 1
2455 #   ifdef FEAT_XFONTSET
2456 			/* No fontset: At least draw char after wide char at
2457 			 * right position. */
2458 			&& fontset == NOFONTSET
2459 #   endif
2460 		       )
2461 #  endif
2462 	       )
2463 	    {
2464 		if (comping || wide_changed)
2465 		    thislen = i - start;
2466 		else
2467 		    thislen = i - start + cl;
2468 		if (thislen > 0)
2469 		{
2470 		    if (prev_wide)
2471 			gui_mch_set_font(wide_font);
2472 		    gui_mch_draw_string(gui.row, scol, s + start, thislen,
2473 								  draw_flags);
2474 		    if (prev_wide)
2475 			gui_mch_set_font(font);
2476 		    start += thislen;
2477 		}
2478 		scol += cells;
2479 		cells = 0;
2480 		/* Adjust to not draw a character which width is changed
2481 		 * against with last one. */
2482 		if (wide_changed && !comping)
2483 		{
2484 		    scol -= cn;
2485 		    cl = 0;
2486 		}
2487 
2488 #  if defined(FEAT_GUI_X11)
2489 		/* No fontset: draw a space to fill the gap after a wide char
2490 		 * */
2491 		if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
2492 #   ifdef FEAT_XFONTSET
2493 			&& fontset == NOFONTSET
2494 #   endif
2495 			&& !wide_changed)
2496 		    gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2497 							       1, draw_flags);
2498 #  endif
2499 	    }
2500 	    /* Draw a composing char on top of the previous char. */
2501 	    if (comping)
2502 	    {
2503 #  if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
2504 		/* Carbon ATSUI autodraws composing char over previous char */
2505 		gui_mch_draw_string(gui.row, scol, s + i, cl,
2506 						    draw_flags | DRAW_TRANSP);
2507 #  else
2508 		gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2509 						    draw_flags | DRAW_TRANSP);
2510 #  endif
2511 		start = i + cl;
2512 	    }
2513 	    prev_wide = curr_wide;
2514 	}
2515 	/* The stuff below assumes "len" is the length in screen columns. */
2516 	len = scol - col;
2517     }
2518     else
2519 # endif
2520     {
2521 	gui_mch_draw_string(gui.row, col, s, len, draw_flags);
2522 # ifdef FEAT_MBYTE
2523 	if (enc_dbcs == DBCS_JPNU)
2524 	{
2525 	    /* Get the length in display cells, this can be different from the
2526 	     * number of bytes for "euc-jp". */
2527 	    len = mb_string2cells(s, len);
2528 	}
2529 # endif
2530     }
2531 #endif /* !FEAT_GUI_GTK */
2532 
2533     if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2534 	gui.col = col + len;
2535 
2536     /* May need to invert it when it's part of the selection. */
2537     if (flags & GUI_MON_NOCLEAR)
2538 	clip_may_redraw_selection(gui.row, col, len);
2539 
2540     if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2541     {
2542 	/* Invalidate the old physical cursor position if we wrote over it */
2543 	if (gui.cursor_row == gui.row
2544 		&& gui.cursor_col >= col
2545 		&& gui.cursor_col < col + len)
2546 	    gui.cursor_is_valid = FALSE;
2547     }
2548 
2549 #ifdef FEAT_SIGN_ICONS
2550     if (draw_sign)
2551 	/* Draw the sign on top of the spaces. */
2552 	gui_mch_drawsign(gui.row, col, gui.highlight_mask);
2553 # if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
2554 	|| defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32))
2555     if (multi_sign)
2556 	netbeans_draw_multisign_indicator(gui.row);
2557 # endif
2558 #endif
2559 
2560     return OK;
2561 }
2562 
2563 /*
2564  * Un-draw the cursor.	Actually this just redraws the character at the given
2565  * position.  The character just before it too, for when it was in bold.
2566  */
2567     void
2568 gui_undraw_cursor()
2569 {
2570     if (gui.cursor_is_valid)
2571     {
2572 #ifdef FEAT_HANGULIN
2573 	if (composing_hangul
2574 		    && gui.col == gui.cursor_col && gui.row == gui.cursor_row)
2575 	    (void)gui_outstr_nowrap(composing_hangul_buffer, 2,
2576 		    GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR,
2577 		    gui.norm_pixel, gui.back_pixel, 0);
2578 	else
2579 	{
2580 #endif
2581 	if (gui_redraw_block(gui.cursor_row, gui.cursor_col,
2582 			      gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR)
2583 		&& gui.cursor_col > 0)
2584 	    (void)gui_redraw_block(gui.cursor_row, gui.cursor_col - 1,
2585 			 gui.cursor_row, gui.cursor_col - 1, GUI_MON_NOCLEAR);
2586 #ifdef FEAT_HANGULIN
2587 	    if (composing_hangul)
2588 		(void)gui_redraw_block(gui.cursor_row, gui.cursor_col + 1,
2589 			gui.cursor_row, gui.cursor_col + 1, GUI_MON_NOCLEAR);
2590 	}
2591 #endif
2592 	/* Cursor_is_valid is reset when the cursor is undrawn, also reset it
2593 	 * here in case it wasn't needed to undraw it. */
2594 	gui.cursor_is_valid = FALSE;
2595     }
2596 }
2597 
2598     void
2599 gui_redraw(x, y, w, h)
2600     int		x;
2601     int		y;
2602     int		w;
2603     int		h;
2604 {
2605     int		row1, col1, row2, col2;
2606 
2607     row1 = Y_2_ROW(y);
2608     col1 = X_2_COL(x);
2609     row2 = Y_2_ROW(y + h - 1);
2610     col2 = X_2_COL(x + w - 1);
2611 
2612     (void)gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
2613 
2614     /*
2615      * We may need to redraw the cursor, but don't take it upon us to change
2616      * its location after a scroll.
2617      * (maybe be more strict even and test col too?)
2618      * These things may be outside the update/clipping region and reality may
2619      * not reflect Vims internal ideas if these operations are clipped away.
2620      */
2621     if (gui.row == gui.cursor_row)
2622 	gui_update_cursor(TRUE, TRUE);
2623 }
2624 
2625 /*
2626  * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2627  * from col1 to col2 (inclusive).
2628  * Return TRUE when the character before the first drawn character has
2629  * different attributes (may have to be redrawn too).
2630  */
2631     int
2632 gui_redraw_block(row1, col1, row2, col2, flags)
2633     int		row1;
2634     int		col1;
2635     int		row2;
2636     int		col2;
2637     int		flags;	/* flags for gui_outstr_nowrap() */
2638 {
2639     int		old_row, old_col;
2640     long_u	old_hl_mask;
2641     int		off;
2642     sattr_T	first_attr;
2643     int		idx, len;
2644     int		back, nback;
2645     int		retval = FALSE;
2646 #ifdef FEAT_MBYTE
2647     int		orig_col1, orig_col2;
2648 #endif
2649 
2650     /* Don't try to update when ScreenLines is not valid */
2651     if (!screen_cleared || ScreenLines == NULL)
2652 	return retval;
2653 
2654     /* Don't try to draw outside the shell! */
2655     /* Check everything, strange values may be caused by a big border width */
2656     col1 = check_col(col1);
2657     col2 = check_col(col2);
2658     row1 = check_row(row1);
2659     row2 = check_row(row2);
2660 
2661     /* Remember where our cursor was */
2662     old_row = gui.row;
2663     old_col = gui.col;
2664     old_hl_mask = gui.highlight_mask;
2665 #ifdef FEAT_MBYTE
2666     orig_col1 = col1;
2667     orig_col2 = col2;
2668 #endif
2669 
2670     for (gui.row = row1; gui.row <= row2; gui.row++)
2671     {
2672 #ifdef FEAT_MBYTE
2673 	/* When only half of a double-wide character is in the block, include
2674 	 * the other half. */
2675 	col1 = orig_col1;
2676 	col2 = orig_col2;
2677 	off = LineOffset[gui.row];
2678 	if (enc_dbcs != 0)
2679 	{
2680 	    if (col1 > 0)
2681 		col1 -= dbcs_screen_head_off(ScreenLines + off,
2682 						    ScreenLines + off + col1);
2683 	    col2 += dbcs_screen_tail_off(ScreenLines + off,
2684 						    ScreenLines + off + col2);
2685 	}
2686 	else if (enc_utf8)
2687 	{
2688 	    if (ScreenLines[off + col1] == 0)
2689 		--col1;
2690 # ifdef FEAT_GUI_GTK
2691 	    if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2692 		++col2;
2693 # endif
2694 	}
2695 #endif
2696 	gui.col = col1;
2697 	off = LineOffset[gui.row] + gui.col;
2698 	len = col2 - col1 + 1;
2699 
2700 	/* Find how many chars back this highlighting starts, or where a space
2701 	 * is.  Needed for when the bold trick is used */
2702 	for (back = 0; back < col1; ++back)
2703 	    if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2704 		    || ScreenLines[off - 1 - back] == ' ')
2705 		break;
2706 	retval = (col1 > 0 && ScreenAttrs[off - 1] != 0 && back == 0
2707 					      && ScreenLines[off - 1] != ' ');
2708 
2709 	/* Break it up in strings of characters with the same attributes. */
2710 	/* Print UTF-8 characters individually. */
2711 	while (len > 0)
2712 	{
2713 	    first_attr = ScreenAttrs[off];
2714 	    gui.highlight_mask = first_attr;
2715 #if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
2716 	    if (enc_utf8 && ScreenLinesUC[off] != 0)
2717 	    {
2718 		/* output multi-byte character separately */
2719 		nback = gui_screenchar(off, flags,
2720 					  (guicolor_T)0, (guicolor_T)0, back);
2721 		if (gui.col < Columns && ScreenLines[off + 1] == 0)
2722 		    idx = 2;
2723 		else
2724 		    idx = 1;
2725 	    }
2726 	    else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2727 	    {
2728 		/* output double-byte, single-width character separately */
2729 		nback = gui_screenchar(off, flags,
2730 					  (guicolor_T)0, (guicolor_T)0, back);
2731 		idx = 1;
2732 	    }
2733 	    else
2734 #endif
2735 	    {
2736 #ifdef FEAT_GUI_GTK
2737 		for (idx = 0; idx < len; ++idx)
2738 		{
2739 		    if (enc_utf8 && ScreenLines[off + idx] == 0)
2740 			continue; /* skip second half of double-width char */
2741 		    if (ScreenAttrs[off + idx] != first_attr)
2742 			break;
2743 		}
2744 		/* gui_screenstr() takes care of multibyte chars */
2745 		nback = gui_screenstr(off, idx, flags,
2746 				      (guicolor_T)0, (guicolor_T)0, back);
2747 #else
2748 		for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2749 									idx++)
2750 		{
2751 # ifdef FEAT_MBYTE
2752 		    /* Stop at a multi-byte Unicode character. */
2753 		    if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2754 			break;
2755 		    if (enc_dbcs == DBCS_JPNU)
2756 		    {
2757 			/* Stop at a double-byte single-width char. */
2758 			if (ScreenLines[off + idx] == 0x8e)
2759 			    break;
2760 			if (len > 1 && (*mb_ptr2len)(ScreenLines
2761 							    + off + idx) == 2)
2762 			    ++idx;  /* skip second byte of double-byte char */
2763 		    }
2764 # endif
2765 		}
2766 		nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2767 					  (guicolor_T)0, (guicolor_T)0, back);
2768 #endif
2769 	    }
2770 	    if (nback == FAIL)
2771 	    {
2772 		/* Must back up to start drawing where a bold or italic word
2773 		 * starts. */
2774 		off -= back;
2775 		len += back;
2776 		gui.col -= back;
2777 	    }
2778 	    else
2779 	    {
2780 		off += idx;
2781 		len -= idx;
2782 	    }
2783 	    back = 0;
2784 	}
2785     }
2786 
2787     /* Put the cursor back where it was */
2788     gui.row = old_row;
2789     gui.col = old_col;
2790     gui.highlight_mask = (int)old_hl_mask;
2791 
2792     return retval;
2793 }
2794 
2795     static void
2796 gui_delete_lines(row, count)
2797     int	    row;
2798     int	    count;
2799 {
2800     if (count <= 0)
2801 	return;
2802 
2803     if (row + count > gui.scroll_region_bot)
2804 	/* Scrolled out of region, just blank the lines out */
2805 	gui_clear_block(row, gui.scroll_region_left,
2806 			      gui.scroll_region_bot, gui.scroll_region_right);
2807     else
2808     {
2809 	gui_mch_delete_lines(row, count);
2810 
2811 	/* If the cursor was in the deleted lines it's now gone.  If the
2812 	 * cursor was in the scrolled lines adjust its position. */
2813 	if (gui.cursor_row >= row
2814 		&& gui.cursor_col >= gui.scroll_region_left
2815 		&& gui.cursor_col <= gui.scroll_region_right)
2816 	{
2817 	    if (gui.cursor_row < row + count)
2818 		gui.cursor_is_valid = FALSE;
2819 	    else if (gui.cursor_row <= gui.scroll_region_bot)
2820 		gui.cursor_row -= count;
2821 	}
2822     }
2823 }
2824 
2825     static void
2826 gui_insert_lines(row, count)
2827     int	    row;
2828     int	    count;
2829 {
2830     if (count <= 0)
2831 	return;
2832 
2833     if (row + count > gui.scroll_region_bot)
2834 	/* Scrolled out of region, just blank the lines out */
2835 	gui_clear_block(row, gui.scroll_region_left,
2836 			      gui.scroll_region_bot, gui.scroll_region_right);
2837     else
2838     {
2839 	gui_mch_insert_lines(row, count);
2840 
2841 	if (gui.cursor_row >= gui.row
2842 		&& gui.cursor_col >= gui.scroll_region_left
2843 		&& gui.cursor_col <= gui.scroll_region_right)
2844 	{
2845 	    if (gui.cursor_row <= gui.scroll_region_bot - count)
2846 		gui.cursor_row += count;
2847 	    else if (gui.cursor_row <= gui.scroll_region_bot)
2848 		gui.cursor_is_valid = FALSE;
2849 	}
2850     }
2851 }
2852 
2853 /*
2854  * The main GUI input routine.	Waits for a character from the keyboard.
2855  * wtime == -1	    Wait forever.
2856  * wtime == 0	    Don't wait.
2857  * wtime > 0	    Wait wtime milliseconds for a character.
2858  * Returns OK if a character was found to be available within the given time,
2859  * or FAIL otherwise.
2860  */
2861     int
2862 gui_wait_for_chars(wtime)
2863     long    wtime;
2864 {
2865     int	    retval;
2866 
2867 #ifdef FEAT_MENU
2868     /*
2869      * If we're going to wait a bit, update the menus and mouse shape for the
2870      * current State.
2871      */
2872     if (wtime != 0)
2873 	gui_update_menus(0);
2874 #endif
2875 
2876     gui_mch_update();
2877     if (input_available())	/* Got char, return immediately */
2878 	return OK;
2879     if (wtime == 0)	/* Don't wait for char */
2880 	return FAIL;
2881 
2882     /* Before waiting, flush any output to the screen. */
2883     gui_mch_flush();
2884 
2885     if (wtime > 0)
2886     {
2887 	/* Blink when waiting for a character.	Probably only does something
2888 	 * for showmatch() */
2889 	gui_mch_start_blink();
2890 	retval = gui_mch_wait_for_chars(wtime);
2891 	gui_mch_stop_blink();
2892 	return retval;
2893     }
2894 
2895     /*
2896      * While we are waiting indefinitely for a character, blink the cursor.
2897      */
2898     gui_mch_start_blink();
2899 
2900     retval = FAIL;
2901     /*
2902      * We may want to trigger the CursorHold event.  First wait for
2903      * 'updatetime' and if nothing is typed within that time put the
2904      * K_CURSORHOLD key in the input buffer.
2905      */
2906     if (gui_mch_wait_for_chars(p_ut) == OK)
2907 	retval = OK;
2908 #ifdef FEAT_AUTOCMD
2909     else if (trigger_cursorhold())
2910     {
2911 	char_u	buf[3];
2912 
2913 	/* Put K_CURSORHOLD in the input buffer. */
2914 	buf[0] = CSI;
2915 	buf[1] = KS_EXTRA;
2916 	buf[2] = (int)KE_CURSORHOLD;
2917 	add_to_input_buf(buf, 3);
2918 
2919 	retval = OK;
2920     }
2921 #endif
2922 
2923     if (retval == FAIL)
2924     {
2925 	/* Blocking wait. */
2926 	before_blocking();
2927 	retval = gui_mch_wait_for_chars(-1L);
2928     }
2929 
2930     gui_mch_stop_blink();
2931     return retval;
2932 }
2933 
2934 /*
2935  * Fill p[4] with mouse coordinates encoded for check_termcode().
2936  */
2937     static void
2938 fill_mouse_coord(p, col, row)
2939     char_u	*p;
2940     int		col;
2941     int		row;
2942 {
2943     p[0] = (char_u)(col / 128 + ' ' + 1);
2944     p[1] = (char_u)(col % 128 + ' ' + 1);
2945     p[2] = (char_u)(row / 128 + ' ' + 1);
2946     p[3] = (char_u)(row % 128 + ' ' + 1);
2947 }
2948 
2949 /*
2950  * Generic mouse support function.  Add a mouse event to the input buffer with
2951  * the given properties.
2952  *  button	    --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
2953  *			MOUSE_X1, MOUSE_X2
2954  *			MOUSE_DRAG, or MOUSE_RELEASE.
2955  *			MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
2956  *			MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
2957  *  x, y	    --- Coordinates of mouse in pixels.
2958  *  repeated_click  --- TRUE if this click comes only a short time after a
2959  *			previous click.
2960  *  modifiers	    --- Bit field which may be any of the following modifiers
2961  *			or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
2962  * This function will ignore drag events where the mouse has not moved to a new
2963  * character.
2964  */
2965     void
2966 gui_send_mouse_event(button, x, y, repeated_click, modifiers)
2967     int	    button;
2968     int	    x;
2969     int	    y;
2970     int	    repeated_click;
2971     int_u   modifiers;
2972 {
2973     static int	    prev_row = 0, prev_col = 0;
2974     static int	    prev_button = -1;
2975     static int	    num_clicks = 1;
2976     char_u	    string[10];
2977     enum key_extra  button_char;
2978     int		    row, col;
2979 #ifdef FEAT_CLIPBOARD
2980     int		    checkfor;
2981     int		    did_clip = FALSE;
2982 #endif
2983 
2984     /*
2985      * Scrolling may happen at any time, also while a selection is present.
2986      */
2987     switch (button)
2988     {
2989 	case MOUSE_X1:
2990 	    button_char = KE_X1MOUSE;
2991 	    goto button_set;
2992 	case MOUSE_X2:
2993 	    button_char = KE_X2MOUSE;
2994 	    goto button_set;
2995 	case MOUSE_4:
2996 	    button_char = KE_MOUSEDOWN;
2997 	    goto button_set;
2998 	case MOUSE_5:
2999 	    button_char = KE_MOUSEUP;
3000 	    goto button_set;
3001 	case MOUSE_6:
3002 	    button_char = KE_MOUSELEFT;
3003 	    goto button_set;
3004 	case MOUSE_7:
3005 	    button_char = KE_MOUSERIGHT;
3006 button_set:
3007 	    {
3008 		/* Don't put events in the input queue now. */
3009 		if (hold_gui_events)
3010 		    return;
3011 
3012 		string[3] = CSI;
3013 		string[4] = KS_EXTRA;
3014 		string[5] = (int)button_char;
3015 
3016 		/* Pass the pointer coordinates of the scroll event so that we
3017 		 * know which window to scroll. */
3018 		row = gui_xy2colrow(x, y, &col);
3019 		string[6] = (char_u)(col / 128 + ' ' + 1);
3020 		string[7] = (char_u)(col % 128 + ' ' + 1);
3021 		string[8] = (char_u)(row / 128 + ' ' + 1);
3022 		string[9] = (char_u)(row % 128 + ' ' + 1);
3023 
3024 		if (modifiers == 0)
3025 		    add_to_input_buf(string + 3, 7);
3026 		else
3027 		{
3028 		    string[0] = CSI;
3029 		    string[1] = KS_MODIFIER;
3030 		    string[2] = 0;
3031 		    if (modifiers & MOUSE_SHIFT)
3032 			string[2] |= MOD_MASK_SHIFT;
3033 		    if (modifiers & MOUSE_CTRL)
3034 			string[2] |= MOD_MASK_CTRL;
3035 		    if (modifiers & MOUSE_ALT)
3036 			string[2] |= MOD_MASK_ALT;
3037 		    add_to_input_buf(string, 10);
3038 		}
3039 		return;
3040 	    }
3041     }
3042 
3043 #ifdef FEAT_CLIPBOARD
3044     /* If a clipboard selection is in progress, handle it */
3045     if (clip_star.state == SELECT_IN_PROGRESS)
3046     {
3047 	clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
3048 	return;
3049     }
3050 
3051     /* Determine which mouse settings to look for based on the current mode */
3052     switch (get_real_state())
3053     {
3054 	case NORMAL_BUSY:
3055 	case OP_PENDING:
3056 	case NORMAL:		checkfor = MOUSE_NORMAL;	break;
3057 	case VISUAL:		checkfor = MOUSE_VISUAL;	break;
3058 	case SELECTMODE:	checkfor = MOUSE_VISUAL;	break;
3059 	case REPLACE:
3060 	case REPLACE+LANGMAP:
3061 #ifdef FEAT_VREPLACE
3062 	case VREPLACE:
3063 	case VREPLACE+LANGMAP:
3064 #endif
3065 	case INSERT:
3066 	case INSERT+LANGMAP:	checkfor = MOUSE_INSERT;	break;
3067 	case ASKMORE:
3068 	case HITRETURN:		/* At the more- and hit-enter prompt pass the
3069 				   mouse event for a click on or below the
3070 				   message line. */
3071 				if (Y_2_ROW(y) >= msg_row)
3072 				    checkfor = MOUSE_NORMAL;
3073 				else
3074 				    checkfor = MOUSE_RETURN;
3075 				break;
3076 
3077 	    /*
3078 	     * On the command line, use the clipboard selection on all lines
3079 	     * but the command line.  But not when pasting.
3080 	     */
3081 	case CMDLINE:
3082 	case CMDLINE+LANGMAP:
3083 	    if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3084 		checkfor = MOUSE_NONE;
3085 	    else
3086 		checkfor = MOUSE_COMMAND;
3087 	    break;
3088 
3089 	default:
3090 	    checkfor = MOUSE_NONE;
3091 	    break;
3092     };
3093 
3094     /*
3095      * Allow clipboard selection of text on the command line in "normal"
3096      * modes.  Don't do this when dragging the status line, or extending a
3097      * Visual selection.
3098      */
3099     if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
3100 	    && Y_2_ROW(y) >= topframe->fr_height
3101 # ifdef FEAT_WINDOWS
3102 						+ firstwin->w_winrow
3103 # endif
3104 	    && button != MOUSE_DRAG
3105 # ifdef FEAT_MOUSESHAPE
3106 	    && !drag_status_line
3107 #  ifdef FEAT_VERTSPLIT
3108 	    && !drag_sep_line
3109 #  endif
3110 # endif
3111 	    )
3112 	checkfor = MOUSE_NONE;
3113 
3114     /*
3115      * Use modeless selection when holding CTRL and SHIFT pressed.
3116      */
3117     if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3118 	checkfor = MOUSE_NONEF;
3119 
3120     /*
3121      * In Ex mode, always use modeless selection.
3122      */
3123     if (exmode_active)
3124 	checkfor = MOUSE_NONE;
3125 
3126     /*
3127      * If the mouse settings say to not use the mouse, use the modeless
3128      * selection.  But if Visual is active, assume that only the Visual area
3129      * will be selected.
3130      * Exception: On the command line, both the selection is used and a mouse
3131      * key is send.
3132      */
3133     if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3134     {
3135 	/* Don't do modeless selection in Visual mode. */
3136 	if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3137 	    return;
3138 
3139 	/*
3140 	 * When 'mousemodel' is "popup", shift-left is translated to right.
3141 	 * But not when also using Ctrl.
3142 	 */
3143 	if (mouse_model_popup() && button == MOUSE_LEFT
3144 		&& (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3145 	{
3146 	    button = MOUSE_RIGHT;
3147 	    modifiers &= ~ MOUSE_SHIFT;
3148 	}
3149 
3150 	/* If the selection is done, allow the right button to extend it.
3151 	 * If the selection is cleared, allow the right button to start it
3152 	 * from the cursor position. */
3153 	if (button == MOUSE_RIGHT)
3154 	{
3155 	    if (clip_star.state == SELECT_CLEARED)
3156 	    {
3157 		if (State & CMDLINE)
3158 		{
3159 		    col = msg_col;
3160 		    row = msg_row;
3161 		}
3162 		else
3163 		{
3164 		    col = curwin->w_wcol;
3165 		    row = curwin->w_wrow + W_WINROW(curwin);
3166 		}
3167 		clip_start_selection(col, row, FALSE);
3168 	    }
3169 	    clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3170 							      repeated_click);
3171 	    did_clip = TRUE;
3172 	}
3173 	/* Allow the left button to start the selection */
3174 	else if (button == MOUSE_LEFT)
3175 	{
3176 	    clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3177 	    did_clip = TRUE;
3178 	}
3179 
3180 	/* Always allow pasting */
3181 	if (button != MOUSE_MIDDLE)
3182 	{
3183 	    if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3184 		return;
3185 	    if (checkfor != MOUSE_COMMAND)
3186 		button = MOUSE_LEFT;
3187 	}
3188 	repeated_click = FALSE;
3189     }
3190 
3191     if (clip_star.state != SELECT_CLEARED && !did_clip)
3192 	clip_clear_selection(&clip_star);
3193 #endif
3194 
3195     /* Don't put events in the input queue now. */
3196     if (hold_gui_events)
3197 	return;
3198 
3199     row = gui_xy2colrow(x, y, &col);
3200 
3201     /*
3202      * If we are dragging and the mouse hasn't moved far enough to be on a
3203      * different character, then don't send an event to vim.
3204      */
3205     if (button == MOUSE_DRAG)
3206     {
3207 	if (row == prev_row && col == prev_col)
3208 	    return;
3209 	/* Dragging above the window, set "row" to -1 to cause a scroll. */
3210 	if (y < 0)
3211 	    row = -1;
3212     }
3213 
3214     /*
3215      * If topline has changed (window scrolled) since the last click, reset
3216      * repeated_click, because we don't want starting Visual mode when
3217      * clicking on a different character in the text.
3218      */
3219     if (curwin->w_topline != gui_prev_topline
3220 #ifdef FEAT_DIFF
3221 	    || curwin->w_topfill != gui_prev_topfill
3222 #endif
3223 	    )
3224 	repeated_click = FALSE;
3225 
3226     string[0] = CSI;	/* this sequence is recognized by check_termcode() */
3227     string[1] = KS_MOUSE;
3228     string[2] = KE_FILLER;
3229     if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3230     {
3231 	if (repeated_click)
3232 	{
3233 	    /*
3234 	     * Handle multiple clicks.	They only count if the mouse is still
3235 	     * pointing at the same character.
3236 	     */
3237 	    if (button != prev_button || row != prev_row || col != prev_col)
3238 		num_clicks = 1;
3239 	    else if (++num_clicks > 4)
3240 		num_clicks = 1;
3241 	}
3242 	else
3243 	    num_clicks = 1;
3244 	prev_button = button;
3245 	gui_prev_topline = curwin->w_topline;
3246 #ifdef FEAT_DIFF
3247 	gui_prev_topfill = curwin->w_topfill;
3248 #endif
3249 
3250 	string[3] = (char_u)(button | 0x20);
3251 	SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3252     }
3253     else
3254 	string[3] = (char_u)button;
3255 
3256     string[3] |= modifiers;
3257     fill_mouse_coord(string + 4, col, row);
3258     add_to_input_buf(string, 8);
3259 
3260     if (row < 0)
3261 	prev_row = 0;
3262     else
3263 	prev_row = row;
3264     prev_col = col;
3265 
3266     /*
3267      * We need to make sure this is cleared since Athena doesn't tell us when
3268      * he is done dragging.  Neither does GTK+ 2 -- at least for now.
3269      */
3270 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
3271     gui.dragged_sb = SBAR_NONE;
3272 #endif
3273 }
3274 
3275 /*
3276  * Convert x and y coordinate to column and row in text window.
3277  * Corrects for multi-byte character.
3278  * returns column in "*colp" and row as return value;
3279  */
3280     int
3281 gui_xy2colrow(x, y, colp)
3282     int		x;
3283     int		y;
3284     int		*colp;
3285 {
3286     int		col = check_col(X_2_COL(x));
3287     int		row = check_row(Y_2_ROW(y));
3288 
3289 #ifdef FEAT_MBYTE
3290     *colp = mb_fix_col(col, row);
3291 #else
3292     *colp = col;
3293 #endif
3294     return row;
3295 }
3296 
3297 #if defined(FEAT_MENU) || defined(PROTO)
3298 /*
3299  * Callback function for when a menu entry has been selected.
3300  */
3301     void
3302 gui_menu_cb(menu)
3303     vimmenu_T *menu;
3304 {
3305     char_u  bytes[sizeof(long_u)];
3306 
3307     /* Don't put events in the input queue now. */
3308     if (hold_gui_events)
3309 	return;
3310 
3311     bytes[0] = CSI;
3312     bytes[1] = KS_MENU;
3313     bytes[2] = KE_FILLER;
3314     add_to_input_buf(bytes, 3);
3315     add_long_to_buf((long_u)menu, bytes);
3316     add_to_input_buf_csi(bytes, sizeof(long_u));
3317 }
3318 #endif
3319 
3320 static int	prev_which_scrollbars[3];
3321 
3322 /*
3323  * Set which components are present.
3324  * If "oldval" is not NULL, "oldval" is the previous value, the new value is
3325  * in p_go.
3326  */
3327     void
3328 gui_init_which_components(oldval)
3329     char_u	*oldval UNUSED;
3330 {
3331 #ifdef FEAT_MENU
3332     static int	prev_menu_is_active = -1;
3333 #endif
3334 #ifdef FEAT_TOOLBAR
3335     static int	prev_toolbar = -1;
3336     int		using_toolbar = FALSE;
3337 #endif
3338 #ifdef FEAT_GUI_TABLINE
3339     int		using_tabline;
3340 #endif
3341 #ifdef FEAT_FOOTER
3342     static int	prev_footer = -1;
3343     int		using_footer = FALSE;
3344 #endif
3345 #if defined(FEAT_MENU) && !defined(WIN16)
3346     static int	prev_tearoff = -1;
3347     int		using_tearoff = FALSE;
3348 #endif
3349 
3350     char_u	*p;
3351     int		i;
3352 #ifdef FEAT_MENU
3353     int		grey_old, grey_new;
3354     char_u	*temp;
3355 #endif
3356     win_T	*wp;
3357     int		need_set_size;
3358     int		fix_size;
3359 
3360 #ifdef FEAT_MENU
3361     if (oldval != NULL && gui.in_use)
3362     {
3363 	/*
3364 	 * Check if the menu's go from grey to non-grey or vise versa.
3365 	 */
3366 	grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3367 	grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3368 	if (grey_old != grey_new)
3369 	{
3370 	    temp = p_go;
3371 	    p_go = oldval;
3372 	    gui_update_menus(MENU_ALL_MODES);
3373 	    p_go = temp;
3374 	}
3375     }
3376     gui.menu_is_active = FALSE;
3377 #endif
3378 
3379     for (i = 0; i < 3; i++)
3380 	gui.which_scrollbars[i] = FALSE;
3381     for (p = p_go; *p; p++)
3382 	switch (*p)
3383 	{
3384 	    case GO_LEFT:
3385 		gui.which_scrollbars[SBAR_LEFT] = TRUE;
3386 		break;
3387 	    case GO_RIGHT:
3388 		gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3389 		break;
3390 #ifdef FEAT_VERTSPLIT
3391 	    case GO_VLEFT:
3392 		if (win_hasvertsplit())
3393 		    gui.which_scrollbars[SBAR_LEFT] = TRUE;
3394 		break;
3395 	    case GO_VRIGHT:
3396 		if (win_hasvertsplit())
3397 		    gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3398 		break;
3399 #endif
3400 	    case GO_BOT:
3401 		gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3402 		break;
3403 #ifdef FEAT_MENU
3404 	    case GO_MENUS:
3405 		gui.menu_is_active = TRUE;
3406 		break;
3407 #endif
3408 	    case GO_GREY:
3409 		/* make menu's have grey items, ignored here */
3410 		break;
3411 #ifdef FEAT_TOOLBAR
3412 	    case GO_TOOLBAR:
3413 		using_toolbar = TRUE;
3414 		break;
3415 #endif
3416 #ifdef FEAT_FOOTER
3417 	    case GO_FOOTER:
3418 		using_footer = TRUE;
3419 		break;
3420 #endif
3421 	    case GO_TEAROFF:
3422 #if defined(FEAT_MENU) && !defined(WIN16)
3423 		using_tearoff = TRUE;
3424 #endif
3425 		break;
3426 	    default:
3427 		/* Ignore options that are not supported */
3428 		break;
3429 	}
3430 
3431     if (gui.in_use)
3432     {
3433 	need_set_size = 0;
3434 	fix_size = FALSE;
3435 
3436 #ifdef FEAT_GUI_TABLINE
3437 	/* Update the GUI tab line, it may appear or disappear.  This may
3438 	 * cause the non-GUI tab line to disappear or appear. */
3439 	using_tabline = gui_has_tabline();
3440 	if (!gui_mch_showing_tabline() != !using_tabline)
3441 	{
3442 	    /* We don't want a resize event change "Rows" here, save and
3443 	     * restore it.  Resizing is handled below. */
3444 	    i = Rows;
3445 	    gui_update_tabline();
3446 	    Rows = i;
3447 	    need_set_size |= RESIZE_VERT;
3448 	    if (using_tabline)
3449 		fix_size = TRUE;
3450 	    if (!gui_use_tabline())
3451 		redraw_tabline = TRUE;    /* may draw non-GUI tab line */
3452 	}
3453 #endif
3454 
3455 	for (i = 0; i < 3; i++)
3456 	{
3457 	    /* The scrollbar needs to be updated when it is shown/unshown and
3458 	     * when switching tab pages.  But the size only changes when it's
3459 	     * shown/unshown.  Thus we need two places to remember whether a
3460 	     * scrollbar is there or not. */
3461 	    if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
3462 #ifdef FEAT_WINDOWS
3463 		    || gui.which_scrollbars[i]
3464 					!= curtab->tp_prev_which_scrollbars[i]
3465 #endif
3466 		    )
3467 	    {
3468 		if (i == SBAR_BOTTOM)
3469 		    gui_mch_enable_scrollbar(&gui.bottom_sbar,
3470 						     gui.which_scrollbars[i]);
3471 		else
3472 		{
3473 		    FOR_ALL_WINDOWS(wp)
3474 		    {
3475 			gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
3476 		    }
3477 		}
3478 		if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3479 		{
3480 		    if (i == SBAR_BOTTOM)
3481 			need_set_size |= RESIZE_VERT;
3482 		    else
3483 			need_set_size |= RESIZE_HOR;
3484 		    if (gui.which_scrollbars[i])
3485 			fix_size = TRUE;
3486 		}
3487 	    }
3488 #ifdef FEAT_WINDOWS
3489 	    curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
3490 #endif
3491 	    prev_which_scrollbars[i] = gui.which_scrollbars[i];
3492 	}
3493 
3494 #ifdef FEAT_MENU
3495 	if (gui.menu_is_active != prev_menu_is_active)
3496 	{
3497 	    /* We don't want a resize event change "Rows" here, save and
3498 	     * restore it.  Resizing is handled below. */
3499 	    i = Rows;
3500 	    gui_mch_enable_menu(gui.menu_is_active);
3501 	    Rows = i;
3502 	    prev_menu_is_active = gui.menu_is_active;
3503 	    need_set_size |= RESIZE_VERT;
3504 	    if (gui.menu_is_active)
3505 		fix_size = TRUE;
3506 	}
3507 #endif
3508 
3509 #ifdef FEAT_TOOLBAR
3510 	if (using_toolbar != prev_toolbar)
3511 	{
3512 	    gui_mch_show_toolbar(using_toolbar);
3513 	    prev_toolbar = using_toolbar;
3514 	    need_set_size |= RESIZE_VERT;
3515 	    if (using_toolbar)
3516 		fix_size = TRUE;
3517 	}
3518 #endif
3519 #ifdef FEAT_FOOTER
3520 	if (using_footer != prev_footer)
3521 	{
3522 	    gui_mch_enable_footer(using_footer);
3523 	    prev_footer = using_footer;
3524 	    need_set_size |= RESIZE_VERT;
3525 	    if (using_footer)
3526 		fix_size = TRUE;
3527 	}
3528 #endif
3529 #if defined(FEAT_MENU) && !defined(WIN16) && !(defined(WIN3264) && !defined(FEAT_TEAROFF))
3530 	if (using_tearoff != prev_tearoff)
3531 	{
3532 	    gui_mch_toggle_tearoffs(using_tearoff);
3533 	    prev_tearoff = using_tearoff;
3534 	}
3535 #endif
3536 	if (need_set_size != 0)
3537 	{
3538 #ifdef FEAT_GUI_GTK
3539 	    long    prev_Columns = Columns;
3540 	    long    prev_Rows = Rows;
3541 #endif
3542 	    /* Adjust the size of the window to make the text area keep the
3543 	     * same size and to avoid that part of our window is off-screen
3544 	     * and a scrollbar can't be used, for example. */
3545 	    gui_set_shellsize(FALSE, fix_size, need_set_size);
3546 
3547 #ifdef FEAT_GUI_GTK
3548 	    /* GTK has the annoying habit of sending us resize events when
3549 	     * changing the window size ourselves.  This mostly happens when
3550 	     * waiting for a character to arrive, quite unpredictably, and may
3551 	     * change Columns and Rows when we don't want it.  Wait for a
3552 	     * character here to avoid this effect.
3553 	     * If you remove this, please test this command for resizing
3554 	     * effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3555 	     * Don't do this while starting up though.
3556 	     * Don't change Rows when adding menu/toolbar/tabline.
3557 	     * Don't change Columns when adding vertical toolbar. */
3558 	    if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
3559 		(void)char_avail();
3560 	    if ((need_set_size & RESIZE_VERT) == 0)
3561 		Rows = prev_Rows;
3562 	    if ((need_set_size & RESIZE_HOR) == 0)
3563 		Columns = prev_Columns;
3564 #endif
3565 	}
3566 #ifdef FEAT_WINDOWS
3567 	/* When the console tabline appears or disappears the window positions
3568 	 * change. */
3569 	if (firstwin->w_winrow != tabline_height())
3570 	    shell_new_rows();	/* recompute window positions and heights */
3571 #endif
3572     }
3573 }
3574 
3575 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3576 /*
3577  * Return TRUE if the GUI is taking care of the tabline.
3578  * It may still be hidden if 'showtabline' is zero.
3579  */
3580     int
3581 gui_use_tabline()
3582 {
3583     return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3584 }
3585 
3586 /*
3587  * Return TRUE if the GUI is showing the tabline.
3588  * This uses 'showtabline'.
3589  */
3590     static int
3591 gui_has_tabline()
3592 {
3593     if (!gui_use_tabline()
3594 	    || p_stal == 0
3595 	    || (p_stal == 1 && first_tabpage->tp_next == NULL))
3596 	return FALSE;
3597     return TRUE;
3598 }
3599 
3600 /*
3601  * Update the tabline.
3602  * This may display/undisplay the tabline and update the labels.
3603  */
3604     void
3605 gui_update_tabline()
3606 {
3607     int	    showit = gui_has_tabline();
3608     int	    shown = gui_mch_showing_tabline();
3609 
3610     if (!gui.starting && starting == 0)
3611     {
3612 	/* Updating the tabline uses direct GUI commands, flush
3613 	 * outstanding instructions first. (esp. clear screen) */
3614 	out_flush();
3615 	gui_mch_flush();
3616 
3617 	if (!showit != !shown)
3618 	    gui_mch_show_tabline(showit);
3619 	if (showit != 0)
3620 	    gui_mch_update_tabline();
3621 
3622 	/* When the tabs change from hidden to shown or from shown to
3623 	 * hidden the size of the text area should remain the same. */
3624 	if (!showit != !shown)
3625 	    gui_set_shellsize(FALSE, showit, RESIZE_VERT);
3626     }
3627 }
3628 
3629 /*
3630  * Get the label or tooltip for tab page "tp" into NameBuff[].
3631  */
3632     void
3633 get_tabline_label(tp, tooltip)
3634     tabpage_T	*tp;
3635     int		tooltip;	/* TRUE: get tooltip */
3636 {
3637     int		modified = FALSE;
3638     char_u	buf[40];
3639     int		wincount;
3640     win_T	*wp;
3641     char_u	**opt;
3642 
3643     /* Use 'guitablabel' or 'guitabtooltip' if it's set. */
3644     opt = (tooltip ? &p_gtt : &p_gtl);
3645     if (**opt != NUL)
3646     {
3647 	int	use_sandbox = FALSE;
3648 	int	save_called_emsg = called_emsg;
3649 	char_u	res[MAXPATHL];
3650 	tabpage_T *save_curtab;
3651 	char_u	*opt_name = (char_u *)(tooltip ? "guitabtooltip"
3652 							     : "guitablabel");
3653 
3654 	called_emsg = FALSE;
3655 
3656 	printer_page_num = tabpage_index(tp);
3657 # ifdef FEAT_EVAL
3658 	set_vim_var_nr(VV_LNUM, printer_page_num);
3659 	use_sandbox = was_set_insecurely(opt_name, 0);
3660 # endif
3661 	/* It's almost as going to the tabpage, but without autocommands. */
3662 	curtab->tp_firstwin = firstwin;
3663 	curtab->tp_lastwin = lastwin;
3664 	curtab->tp_curwin = curwin;
3665 	save_curtab = curtab;
3666 	curtab = tp;
3667 	topframe = curtab->tp_topframe;
3668 	firstwin = curtab->tp_firstwin;
3669 	lastwin = curtab->tp_lastwin;
3670 	curwin = curtab->tp_curwin;
3671 	curbuf = curwin->w_buffer;
3672 
3673 	/* Can't use NameBuff directly, build_stl_str_hl() uses it. */
3674 	build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
3675 						 0, (int)Columns, NULL, NULL);
3676 	STRCPY(NameBuff, res);
3677 
3678 	/* Back to the original curtab. */
3679 	curtab = save_curtab;
3680 	topframe = curtab->tp_topframe;
3681 	firstwin = curtab->tp_firstwin;
3682 	lastwin = curtab->tp_lastwin;
3683 	curwin = curtab->tp_curwin;
3684 	curbuf = curwin->w_buffer;
3685 
3686 	if (called_emsg)
3687 	    set_string_option_direct(opt_name, -1,
3688 					   (char_u *)"", OPT_FREE, SID_ERROR);
3689 	called_emsg |= save_called_emsg;
3690     }
3691 
3692     /* If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3693      * use a default label. */
3694     if (**opt == NUL || *NameBuff == NUL)
3695     {
3696 	/* Get the buffer name into NameBuff[] and shorten it. */
3697 	get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
3698 	if (!tooltip)
3699 	    shorten_dir(NameBuff);
3700 
3701 	wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3702 	for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3703 	    if (bufIsChanged(wp->w_buffer))
3704 		modified = TRUE;
3705 	if (modified || wincount > 1)
3706 	{
3707 	    if (wincount > 1)
3708 		vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3709 	    else
3710 		buf[0] = NUL;
3711 	    if (modified)
3712 		STRCAT(buf, "+");
3713 	    STRCAT(buf, " ");
3714 	    STRMOVE(NameBuff + STRLEN(buf), NameBuff);
3715 	    mch_memmove(NameBuff, buf, STRLEN(buf));
3716 	}
3717     }
3718 }
3719 
3720 /*
3721  * Send the event for clicking to select tab page "nr".
3722  * Returns TRUE if it was done, FALSE when skipped because we are already at
3723  * that tab page or the cmdline window is open.
3724  */
3725     int
3726 send_tabline_event(nr)
3727     int	    nr;
3728 {
3729     char_u string[3];
3730 
3731     if (nr == tabpage_index(curtab))
3732 	return FALSE;
3733 
3734     /* Don't put events in the input queue now. */
3735     if (hold_gui_events
3736 # ifdef FEAT_CMDWIN
3737 	    || cmdwin_type != 0
3738 # endif
3739 	    )
3740     {
3741 	/* Set it back to the current tab page. */
3742 	gui_mch_set_curtab(tabpage_index(curtab));
3743 	return FALSE;
3744     }
3745 
3746     string[0] = CSI;
3747     string[1] = KS_TABLINE;
3748     string[2] = KE_FILLER;
3749     add_to_input_buf(string, 3);
3750     string[0] = nr;
3751     add_to_input_buf_csi(string, 1);
3752     return TRUE;
3753 }
3754 
3755 /*
3756  * Send a tabline menu event
3757  */
3758     void
3759 send_tabline_menu_event(tabidx, event)
3760     int	    tabidx;
3761     int	    event;
3762 {
3763     char_u	    string[3];
3764 
3765     /* Don't put events in the input queue now. */
3766     if (hold_gui_events)
3767 	return;
3768 
3769     string[0] = CSI;
3770     string[1] = KS_TABMENU;
3771     string[2] = KE_FILLER;
3772     add_to_input_buf(string, 3);
3773     string[0] = tabidx;
3774     string[1] = (char_u)(long)event;
3775     add_to_input_buf_csi(string, 2);
3776 }
3777 
3778 #endif
3779 
3780 /*
3781  * Scrollbar stuff:
3782  */
3783 
3784 #if defined(FEAT_WINDOWS) || defined(PROTO)
3785 /*
3786  * Remove all scrollbars.  Used before switching to another tab page.
3787  */
3788     void
3789 gui_remove_scrollbars()
3790 {
3791     int	    i;
3792     win_T   *wp;
3793 
3794     for (i = 0; i < 3; i++)
3795     {
3796 	if (i == SBAR_BOTTOM)
3797 	    gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3798 	else
3799 	{
3800 	    FOR_ALL_WINDOWS(wp)
3801 	    {
3802 		gui_do_scrollbar(wp, i, FALSE);
3803 	    }
3804 	}
3805 	curtab->tp_prev_which_scrollbars[i] = -1;
3806     }
3807 }
3808 #endif
3809 
3810     void
3811 gui_create_scrollbar(sb, type, wp)
3812     scrollbar_T	*sb;
3813     int		type;
3814     win_T	*wp;
3815 {
3816     static int	sbar_ident = 0;
3817 
3818     sb->ident = sbar_ident++;	/* No check for too big, but would it happen? */
3819     sb->wp = wp;
3820     sb->type = type;
3821     sb->value = 0;
3822 #ifdef FEAT_GUI_ATHENA
3823     sb->pixval = 0;
3824 #endif
3825     sb->size = 1;
3826     sb->max = 1;
3827     sb->top = 0;
3828     sb->height = 0;
3829 #ifdef FEAT_VERTSPLIT
3830     sb->width = 0;
3831 #endif
3832     sb->status_height = 0;
3833     gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3834 }
3835 
3836 /*
3837  * Find the scrollbar with the given index.
3838  */
3839     scrollbar_T *
3840 gui_find_scrollbar(ident)
3841     long	ident;
3842 {
3843     win_T	*wp;
3844 
3845     if (gui.bottom_sbar.ident == ident)
3846 	return &gui.bottom_sbar;
3847     FOR_ALL_WINDOWS(wp)
3848     {
3849 	if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3850 	    return &wp->w_scrollbars[SBAR_LEFT];
3851 	if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3852 	    return &wp->w_scrollbars[SBAR_RIGHT];
3853     }
3854     return NULL;
3855 }
3856 
3857 /*
3858  * For most systems: Put a code in the input buffer for a dragged scrollbar.
3859  *
3860  * For Win32, Macintosh and GTK+ 2:
3861  * Scrollbars seem to grab focus and vim doesn't read the input queue until
3862  * you stop dragging the scrollbar.  We get here each time the scrollbar is
3863  * dragged another pixel, but as far as the rest of vim goes, it thinks
3864  * we're just hanging in the call to DispatchMessage() in
3865  * process_message().  The DispatchMessage() call that hangs was passed a
3866  * mouse button click event in the scrollbar window. -- webb.
3867  *
3868  * Solution: Do the scrolling right here.  But only when allowed.
3869  * Ignore the scrollbars while executing an external command or when there
3870  * are still characters to be processed.
3871  */
3872     void
3873 gui_drag_scrollbar(sb, value, still_dragging)
3874     scrollbar_T	*sb;
3875     long	value;
3876     int		still_dragging;
3877 {
3878 #ifdef FEAT_WINDOWS
3879     win_T	*wp;
3880 #endif
3881     int		sb_num;
3882 #ifdef USE_ON_FLY_SCROLL
3883     colnr_T	old_leftcol = curwin->w_leftcol;
3884 # ifdef FEAT_SCROLLBIND
3885     linenr_T	old_topline = curwin->w_topline;
3886 # endif
3887 # ifdef FEAT_DIFF
3888     int		old_topfill = curwin->w_topfill;
3889 # endif
3890 #else
3891     char_u	bytes[sizeof(long_u)];
3892     int		byte_count;
3893 #endif
3894 
3895     if (sb == NULL)
3896 	return;
3897 
3898     /* Don't put events in the input queue now. */
3899     if (hold_gui_events)
3900 	return;
3901 
3902 #ifdef FEAT_CMDWIN
3903     if (cmdwin_type != 0 && sb->wp != curwin)
3904 	return;
3905 #endif
3906 
3907     if (still_dragging)
3908     {
3909 	if (sb->wp == NULL)
3910 	    gui.dragged_sb = SBAR_BOTTOM;
3911 	else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3912 	    gui.dragged_sb = SBAR_LEFT;
3913 	else
3914 	    gui.dragged_sb = SBAR_RIGHT;
3915 	gui.dragged_wp = sb->wp;
3916     }
3917     else
3918     {
3919 	gui.dragged_sb = SBAR_NONE;
3920 #ifdef FEAT_GUI_GTK
3921 	/* Keep the "dragged_wp" value until after the scrolling, for when the
3922 	 * mouse button is released.  GTK2 doesn't send the button-up event. */
3923 	gui.dragged_wp = NULL;
3924 #endif
3925     }
3926 
3927     /* Vertical sbar info is kept in the first sbar (the left one) */
3928     if (sb->wp != NULL)
3929 	sb = &sb->wp->w_scrollbars[0];
3930 
3931     /*
3932      * Check validity of value
3933      */
3934     if (value < 0)
3935 	value = 0;
3936 #ifdef SCROLL_PAST_END
3937     else if (value > sb->max)
3938 	value = sb->max;
3939 #else
3940     if (value > sb->max - sb->size + 1)
3941 	value = sb->max - sb->size + 1;
3942 #endif
3943 
3944     sb->value = value;
3945 
3946 #ifdef USE_ON_FLY_SCROLL
3947     /* When not allowed to do the scrolling right now, return.
3948      * This also checked input_available(), but that causes the first click in
3949      * a scrollbar to be ignored when Vim doesn't have focus. */
3950     if (dont_scroll)
3951 	return;
3952 #endif
3953 #ifdef FEAT_INS_EXPAND
3954     /* Disallow scrolling the current window when the completion popup menu is
3955      * visible. */
3956     if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
3957 	return;
3958 #endif
3959 
3960 #ifdef FEAT_RIGHTLEFT
3961     if (sb->wp == NULL && curwin->w_p_rl)
3962     {
3963 	value = sb->max + 1 - sb->size - value;
3964 	if (value < 0)
3965 	    value = 0;
3966     }
3967 #endif
3968 
3969     if (sb->wp != NULL)		/* vertical scrollbar */
3970     {
3971 	sb_num = 0;
3972 #ifdef FEAT_WINDOWS
3973 	for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
3974 	    sb_num++;
3975 	if (wp == NULL)
3976 	    return;
3977 #else
3978 	if (sb->wp != curwin)
3979 	    return;
3980 #endif
3981 
3982 #ifdef USE_ON_FLY_SCROLL
3983 	current_scrollbar = sb_num;
3984 	scrollbar_value = value;
3985 	if (State & NORMAL)
3986 	{
3987 	    gui_do_scroll();
3988 	    setcursor();
3989 	}
3990 	else if (State & INSERT)
3991 	{
3992 	    ins_scroll();
3993 	    setcursor();
3994 	}
3995 	else if (State & CMDLINE)
3996 	{
3997 	    if (msg_scrolled == 0)
3998 	    {
3999 		gui_do_scroll();
4000 		redrawcmdline();
4001 	    }
4002 	}
4003 # ifdef FEAT_FOLDING
4004 	/* Value may have been changed for closed fold. */
4005 	sb->value = sb->wp->w_topline - 1;
4006 # endif
4007 
4008 	/* When dragging one scrollbar and there is another one at the other
4009 	 * side move the thumb of that one too. */
4010 	if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4011 	    gui_mch_set_scrollbar_thumb(
4012 		    &sb->wp->w_scrollbars[
4013 			    sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4014 						    ? SBAR_LEFT : SBAR_RIGHT],
4015 		    sb->value, sb->size, sb->max);
4016 
4017 #else
4018 	bytes[0] = CSI;
4019 	bytes[1] = KS_VER_SCROLLBAR;
4020 	bytes[2] = KE_FILLER;
4021 	bytes[3] = (char_u)sb_num;
4022 	byte_count = 4;
4023 #endif
4024     }
4025     else
4026     {
4027 #ifdef USE_ON_FLY_SCROLL
4028 	scrollbar_value = value;
4029 
4030 	if (State & NORMAL)
4031 	    gui_do_horiz_scroll(scrollbar_value, FALSE);
4032 	else if (State & INSERT)
4033 	    ins_horscroll();
4034 	else if (State & CMDLINE)
4035 	{
4036 	    if (msg_scrolled == 0)
4037 	    {
4038 		gui_do_horiz_scroll(scrollbar_value, FALSE);
4039 		redrawcmdline();
4040 	    }
4041 	}
4042 	if (old_leftcol != curwin->w_leftcol)
4043 	{
4044 	    updateWindow(curwin);   /* update window, status and cmdline */
4045 	    setcursor();
4046 	}
4047 #else
4048 	bytes[0] = CSI;
4049 	bytes[1] = KS_HOR_SCROLLBAR;
4050 	bytes[2] = KE_FILLER;
4051 	byte_count = 3;
4052 #endif
4053     }
4054 
4055 #ifdef USE_ON_FLY_SCROLL
4056 # ifdef FEAT_SCROLLBIND
4057     /*
4058      * synchronize other windows, as necessary according to 'scrollbind'
4059      */
4060     if (curwin->w_p_scb
4061 	    && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4062 		|| (sb->wp == curwin && (curwin->w_topline != old_topline
4063 #  ifdef FEAT_DIFF
4064 					   || curwin->w_topfill != old_topfill
4065 #  endif
4066 			))))
4067     {
4068 	do_check_scrollbind(TRUE);
4069 	/* need to update the window right here */
4070 	for (wp = firstwin; wp != NULL; wp = wp->w_next)
4071 	    if (wp->w_redr_type > 0)
4072 		updateWindow(wp);
4073 	setcursor();
4074     }
4075 # endif
4076     out_flush();
4077     gui_update_cursor(FALSE, TRUE);
4078 #else
4079     add_to_input_buf(bytes, byte_count);
4080     add_long_to_buf((long_u)value, bytes);
4081     add_to_input_buf_csi(bytes, sizeof(long_u));
4082 #endif
4083 }
4084 
4085 /*
4086  * Scrollbar stuff:
4087  */
4088 
4089 #if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) || defined(PROTO)
4090 /*
4091  * Called when something in the window layout has changed.
4092  */
4093     void
4094 gui_may_update_scrollbars()
4095 {
4096     if (gui.in_use && starting == 0)
4097     {
4098 	out_flush();
4099 	gui_init_which_components(NULL);
4100 	gui_update_scrollbars(TRUE);
4101     }
4102     need_mouse_correct = TRUE;
4103 }
4104 #endif
4105 
4106     void
4107 gui_update_scrollbars(force)
4108     int		force;	    /* Force all scrollbars to get updated */
4109 {
4110     win_T	*wp;
4111     scrollbar_T	*sb;
4112     long	val, size, max;		/* need 32 bits here */
4113     int		which_sb;
4114     int		h, y;
4115 #ifdef FEAT_VERTSPLIT
4116     static win_T *prev_curwin = NULL;
4117 #endif
4118 
4119     /* Update the horizontal scrollbar */
4120     gui_update_horiz_scrollbar(force);
4121 
4122 #ifndef WIN3264
4123     /* Return straight away if there is neither a left nor right scrollbar.
4124      * On MS-Windows this is required anyway for scrollwheel messages. */
4125     if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4126 	return;
4127 #endif
4128 
4129     /*
4130      * Don't want to update a scrollbar while we're dragging it.  But if we
4131      * have both a left and right scrollbar, and we drag one of them, we still
4132      * need to update the other one.
4133      */
4134     if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4135 	    && gui.which_scrollbars[SBAR_LEFT]
4136 	    && gui.which_scrollbars[SBAR_RIGHT])
4137     {
4138 	/*
4139 	 * If we have two scrollbars and one of them is being dragged, just
4140 	 * copy the scrollbar position from the dragged one to the other one.
4141 	 */
4142 	which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4143 	if (gui.dragged_wp != NULL)
4144 	    gui_mch_set_scrollbar_thumb(
4145 		    &gui.dragged_wp->w_scrollbars[which_sb],
4146 		    gui.dragged_wp->w_scrollbars[0].value,
4147 		    gui.dragged_wp->w_scrollbars[0].size,
4148 		    gui.dragged_wp->w_scrollbars[0].max);
4149     }
4150 
4151     /* avoid that moving components around generates events */
4152     ++hold_gui_events;
4153 
4154     for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
4155     {
4156 	if (wp->w_buffer == NULL)	/* just in case */
4157 	    continue;
4158 	/* Skip a scrollbar that is being dragged. */
4159 	if (!force && (gui.dragged_sb == SBAR_LEFT
4160 					     || gui.dragged_sb == SBAR_RIGHT)
4161 		&& gui.dragged_wp == wp)
4162 	    continue;
4163 
4164 #ifdef SCROLL_PAST_END
4165 	max = wp->w_buffer->b_ml.ml_line_count - 1;
4166 #else
4167 	max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4168 #endif
4169 	if (max < 0)			/* empty buffer */
4170 	    max = 0;
4171 	val = wp->w_topline - 1;
4172 	size = wp->w_height;
4173 #ifdef SCROLL_PAST_END
4174 	if (val > max)			/* just in case */
4175 	    val = max;
4176 #else
4177 	if (size > max + 1)		/* just in case */
4178 	    size = max + 1;
4179 	if (val > max - size + 1)
4180 	    val = max - size + 1;
4181 #endif
4182 	if (val < 0)			/* minimal value is 0 */
4183 	    val = 0;
4184 
4185 	/*
4186 	 * Scrollbar at index 0 (the left one) contains all the information.
4187 	 * It would be the same info for left and right so we just store it for
4188 	 * one of them.
4189 	 */
4190 	sb = &wp->w_scrollbars[0];
4191 
4192 	/*
4193 	 * Note: no check for valid w_botline.	If it's not valid the
4194 	 * scrollbars will be updated later anyway.
4195 	 */
4196 	if (size < 1 || wp->w_botline - 2 > max)
4197 	{
4198 	    /*
4199 	     * This can happen during changing files.  Just don't update the
4200 	     * scrollbar for now.
4201 	     */
4202 	    sb->height = 0;	    /* Force update next time */
4203 	    if (gui.which_scrollbars[SBAR_LEFT])
4204 		gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4205 	    if (gui.which_scrollbars[SBAR_RIGHT])
4206 		gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4207 	    continue;
4208 	}
4209 	if (force || sb->height != wp->w_height
4210 #ifdef FEAT_WINDOWS
4211 	    || sb->top != wp->w_winrow
4212 	    || sb->status_height != wp->w_status_height
4213 # ifdef FEAT_VERTSPLIT
4214 	    || sb->width != wp->w_width
4215 	    || prev_curwin != curwin
4216 # endif
4217 #endif
4218 	    )
4219 	{
4220 	    /* Height, width or position of scrollbar has changed.  For
4221 	     * vertical split: curwin changed. */
4222 	    sb->height = wp->w_height;
4223 #ifdef FEAT_WINDOWS
4224 	    sb->top = wp->w_winrow;
4225 	    sb->status_height = wp->w_status_height;
4226 # ifdef FEAT_VERTSPLIT
4227 	    sb->width = wp->w_width;
4228 # endif
4229 #endif
4230 
4231 	    /* Calculate height and position in pixels */
4232 	    h = (sb->height + sb->status_height) * gui.char_height;
4233 	    y = sb->top * gui.char_height + gui.border_offset;
4234 #if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4235 	    if (gui.menu_is_active)
4236 		y += gui.menu_height;
4237 #endif
4238 
4239 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA))
4240 	    if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
4241 # ifdef FEAT_GUI_ATHENA
4242 		y += gui.toolbar_height;
4243 # else
4244 #  ifdef FEAT_GUI_MSWIN
4245 		y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4246 #  endif
4247 # endif
4248 #endif
4249 
4250 #if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN)
4251 	    if (gui_has_tabline())
4252 		y += gui.tabline_height;
4253 #endif
4254 
4255 #ifdef FEAT_WINDOWS
4256 	    if (wp->w_winrow == 0)
4257 #endif
4258 	    {
4259 		/* Height of top scrollbar includes width of top border */
4260 		h += gui.border_offset;
4261 		y -= gui.border_offset;
4262 	    }
4263 	    if (gui.which_scrollbars[SBAR_LEFT])
4264 	    {
4265 		gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4266 					  gui.left_sbar_x, y,
4267 					  gui.scrollbar_width, h);
4268 		gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4269 	    }
4270 	    if (gui.which_scrollbars[SBAR_RIGHT])
4271 	    {
4272 		gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4273 					  gui.right_sbar_x, y,
4274 					  gui.scrollbar_width, h);
4275 		gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4276 	    }
4277 	}
4278 
4279 	/* Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4280 	 * checking if the thumb moved at least a pixel.  Only do this for
4281 	 * Athena, most other GUIs require the update anyway to make the
4282 	 * arrows work. */
4283 #ifdef FEAT_GUI_ATHENA
4284 	if (max == 0)
4285 	    y = 0;
4286 	else
4287 	    y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4288 	if (force || sb->pixval != y || sb->size != size || sb->max != max)
4289 #else
4290 	if (force || sb->value != val || sb->size != size || sb->max != max)
4291 #endif
4292 	{
4293 	    /* Thumb of scrollbar has moved */
4294 	    sb->value = val;
4295 #ifdef FEAT_GUI_ATHENA
4296 	    sb->pixval = y;
4297 #endif
4298 	    sb->size = size;
4299 	    sb->max = max;
4300 	    if (gui.which_scrollbars[SBAR_LEFT]
4301 		    && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
4302 		gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4303 					    val, size, max);
4304 	    if (gui.which_scrollbars[SBAR_RIGHT]
4305 		    && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
4306 		gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4307 					    val, size, max);
4308 	}
4309     }
4310 #ifdef FEAT_VERTSPLIT
4311     prev_curwin = curwin;
4312 #endif
4313     --hold_gui_events;
4314 }
4315 
4316 /*
4317  * Enable or disable a scrollbar.
4318  * Check for scrollbars for vertically split windows which are not enabled
4319  * sometimes.
4320  */
4321     static void
4322 gui_do_scrollbar(wp, which, enable)
4323     win_T	*wp;
4324     int		which;	    /* SBAR_LEFT or SBAR_RIGHT */
4325     int		enable;	    /* TRUE to enable scrollbar */
4326 {
4327 #ifdef FEAT_VERTSPLIT
4328     int		midcol = curwin->w_wincol + curwin->w_width / 2;
4329     int		has_midcol = (wp->w_wincol <= midcol
4330 				     && wp->w_wincol + wp->w_width >= midcol);
4331 
4332     /* Only enable scrollbars that contain the middle column of the current
4333      * window. */
4334     if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4335     {
4336 	/* Scrollbars only on one side.  Don't enable scrollbars that don't
4337 	 * contain the middle column of the current window. */
4338 	if (!has_midcol)
4339 	    enable = FALSE;
4340     }
4341     else
4342     {
4343 	/* Scrollbars on both sides.  Don't enable scrollbars that neither
4344 	 * contain the middle column of the current window nor are on the far
4345 	 * side. */
4346 	if (midcol > Columns / 2)
4347 	{
4348 	    if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4349 		enable = FALSE;
4350 	}
4351 	else
4352 	{
4353 	    if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4354 								: !has_midcol)
4355 		enable = FALSE;
4356 	}
4357     }
4358 #endif
4359     gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4360 }
4361 
4362 /*
4363  * Scroll a window according to the values set in the globals current_scrollbar
4364  * and scrollbar_value.  Return TRUE if the cursor in the current window moved
4365  * or FALSE otherwise.
4366  */
4367     int
4368 gui_do_scroll()
4369 {
4370     win_T	*wp, *save_wp;
4371     int		i;
4372     long	nlines;
4373     pos_T	old_cursor;
4374     linenr_T	old_topline;
4375 #ifdef FEAT_DIFF
4376     int		old_topfill;
4377 #endif
4378 
4379     for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4380 	if (wp == NULL)
4381 	    break;
4382     if (wp == NULL)
4383 	/* Couldn't find window */
4384 	return FALSE;
4385 
4386     /*
4387      * Compute number of lines to scroll.  If zero, nothing to do.
4388      */
4389     nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4390     if (nlines == 0)
4391 	return FALSE;
4392 
4393     save_wp = curwin;
4394     old_topline = wp->w_topline;
4395 #ifdef FEAT_DIFF
4396     old_topfill = wp->w_topfill;
4397 #endif
4398     old_cursor = wp->w_cursor;
4399     curwin = wp;
4400     curbuf = wp->w_buffer;
4401     if (nlines < 0)
4402 	scrolldown(-nlines, gui.dragged_wp == NULL);
4403     else
4404 	scrollup(nlines, gui.dragged_wp == NULL);
4405     /* Reset dragged_wp after using it.  "dragged_sb" will have been reset for
4406      * the mouse-up event already, but we still want it to behave like when
4407      * dragging.  But not the next click in an arrow. */
4408     if (gui.dragged_sb == SBAR_NONE)
4409 	gui.dragged_wp = NULL;
4410 
4411     if (old_topline != wp->w_topline
4412 #ifdef FEAT_DIFF
4413 	    || old_topfill != wp->w_topfill
4414 #endif
4415 	    )
4416     {
4417 	if (p_so != 0)
4418 	{
4419 	    cursor_correct();		/* fix window for 'so' */
4420 	    update_topline();		/* avoid up/down jump */
4421 	}
4422 	if (old_cursor.lnum != wp->w_cursor.lnum)
4423 	    coladvance(wp->w_curswant);
4424 #ifdef FEAT_SCROLLBIND
4425 	wp->w_scbind_pos = wp->w_topline;
4426 #endif
4427     }
4428 
4429     /* Make sure wp->w_leftcol and wp->w_skipcol are correct. */
4430     validate_cursor();
4431 
4432     curwin = save_wp;
4433     curbuf = save_wp->w_buffer;
4434 
4435     /*
4436      * Don't call updateWindow() when nothing has changed (it will overwrite
4437      * the status line!).
4438      */
4439     if (old_topline != wp->w_topline
4440 	    || wp->w_redr_type != 0
4441 #ifdef FEAT_DIFF
4442 	    || old_topfill != wp->w_topfill
4443 #endif
4444 	    )
4445     {
4446 	int type = VALID;
4447 
4448 #ifdef FEAT_INS_EXPAND
4449 	if (pum_visible())
4450 	{
4451 	    type = NOT_VALID;
4452 	    wp->w_lines_valid = 0;
4453 	}
4454 #endif
4455 	/* Don't set must_redraw here, it may cause the popup menu to
4456 	 * disappear when losing focus after a scrollbar drag. */
4457 	if (wp->w_redr_type < type)
4458 	    wp->w_redr_type = type;
4459 	updateWindow(wp);   /* update window, status line, and cmdline */
4460     }
4461 
4462 #ifdef FEAT_INS_EXPAND
4463     /* May need to redraw the popup menu. */
4464     if (pum_visible())
4465 	pum_redraw();
4466 #endif
4467 
4468     return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor));
4469 }
4470 
4471 
4472 /*
4473  * Horizontal scrollbar stuff:
4474  */
4475 
4476 /*
4477  * Return length of line "lnum" for horizontal scrolling.
4478  */
4479     static colnr_T
4480 scroll_line_len(lnum)
4481     linenr_T	lnum;
4482 {
4483     char_u	*p;
4484     colnr_T	col;
4485     int		w;
4486 
4487     p = ml_get(lnum);
4488     col = 0;
4489     if (*p != NUL)
4490 	for (;;)
4491 	{
4492 	    w = chartabsize(p, col);
4493 	    mb_ptr_adv(p);
4494 	    if (*p == NUL)		/* don't count the last character */
4495 		break;
4496 	    col += w;
4497 	}
4498     return col;
4499 }
4500 
4501 /* Remember which line is currently the longest, so that we don't have to
4502  * search for it when scrolling horizontally. */
4503 static linenr_T longest_lnum = 0;
4504 
4505 /*
4506  * Find longest visible line number.  If this is not possible (or not desired,
4507  * by setting 'h' in "guioptions") then the current line number is returned.
4508  */
4509     static linenr_T
4510 gui_find_longest_lnum()
4511 {
4512     linenr_T ret = 0;
4513 
4514     /* Calculate maximum for horizontal scrollbar.  Check for reasonable
4515      * line numbers, topline and botline can be invalid when displaying is
4516      * postponed. */
4517     if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4518 	    && curwin->w_topline <= curwin->w_cursor.lnum
4519 	    && curwin->w_botline > curwin->w_cursor.lnum
4520 	    && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4521     {
4522 	linenr_T    lnum;
4523 	colnr_T	    n;
4524 	long	    max = 0;
4525 
4526 	/* Use maximum of all visible lines.  Remember the lnum of the
4527 	 * longest line, closest to the cursor line.  Used when scrolling
4528 	 * below. */
4529 	for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4530 	{
4531 	    n = scroll_line_len(lnum);
4532 	    if (n > (colnr_T)max)
4533 	    {
4534 		max = n;
4535 		ret = lnum;
4536 	    }
4537 	    else if (n == (colnr_T)max
4538 		    && abs((int)(lnum - curwin->w_cursor.lnum))
4539 		       < abs((int)(ret - curwin->w_cursor.lnum)))
4540 		ret = lnum;
4541 	}
4542     }
4543     else
4544 	/* Use cursor line only. */
4545 	ret = curwin->w_cursor.lnum;
4546 
4547     return ret;
4548 }
4549 
4550     static void
4551 gui_update_horiz_scrollbar(force)
4552     int		force;
4553 {
4554     long	value, size, max;	/* need 32 bit ints here */
4555 
4556     if (!gui.which_scrollbars[SBAR_BOTTOM])
4557 	return;
4558 
4559     if (!force && gui.dragged_sb == SBAR_BOTTOM)
4560 	return;
4561 
4562     if (!force && curwin->w_p_wrap && gui.prev_wrap)
4563 	return;
4564 
4565     /*
4566      * It is possible for the cursor to be invalid if we're in the middle of
4567      * something (like changing files).  If so, don't do anything for now.
4568      */
4569     if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4570     {
4571 	gui.bottom_sbar.value = -1;
4572 	return;
4573     }
4574 
4575     size = W_WIDTH(curwin);
4576     if (curwin->w_p_wrap)
4577     {
4578 	value = 0;
4579 #ifdef SCROLL_PAST_END
4580 	max = 0;
4581 #else
4582 	max = W_WIDTH(curwin) - 1;
4583 #endif
4584     }
4585     else
4586     {
4587 	value = curwin->w_leftcol;
4588 
4589 	longest_lnum = gui_find_longest_lnum();
4590 	max = scroll_line_len(longest_lnum);
4591 
4592 #ifdef FEAT_VIRTUALEDIT
4593 	if (virtual_active())
4594 	{
4595 	    /* May move the cursor even further to the right. */
4596 	    if (curwin->w_virtcol >= (colnr_T)max)
4597 		max = curwin->w_virtcol;
4598 	}
4599 #endif
4600 
4601 #ifndef SCROLL_PAST_END
4602 	max += W_WIDTH(curwin) - 1;
4603 #endif
4604 	/* The line number isn't scrolled, thus there is less space when
4605 	 * 'number' or 'relativenumber' is set (also for 'foldcolumn'). */
4606 	size -= curwin_col_off();
4607 #ifndef SCROLL_PAST_END
4608 	max -= curwin_col_off();
4609 #endif
4610     }
4611 
4612 #ifndef SCROLL_PAST_END
4613     if (value > max - size + 1)
4614 	value = max - size + 1;	    /* limit the value to allowable range */
4615 #endif
4616 
4617 #ifdef FEAT_RIGHTLEFT
4618     if (curwin->w_p_rl)
4619     {
4620 	value = max + 1 - size - value;
4621 	if (value < 0)
4622 	{
4623 	    size += value;
4624 	    value = 0;
4625 	}
4626     }
4627 #endif
4628     if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4629 						&& max == gui.bottom_sbar.max)
4630 	return;
4631 
4632     gui.bottom_sbar.value = value;
4633     gui.bottom_sbar.size = size;
4634     gui.bottom_sbar.max = max;
4635     gui.prev_wrap = curwin->w_p_wrap;
4636 
4637     gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4638 }
4639 
4640 /*
4641  * Do a horizontal scroll.  Return TRUE if the cursor moved, FALSE otherwise.
4642  */
4643     int
4644 gui_do_horiz_scroll(leftcol, compute_longest_lnum)
4645     long_u	leftcol;
4646     int		compute_longest_lnum;
4647 {
4648     /* no wrapping, no scrolling */
4649     if (curwin->w_p_wrap)
4650 	return FALSE;
4651 
4652     if (curwin->w_leftcol == (colnr_T)leftcol)
4653 	return FALSE;
4654 
4655     curwin->w_leftcol = (colnr_T)leftcol;
4656 
4657     /* When the line of the cursor is too short, move the cursor to the
4658      * longest visible line. */
4659     if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4660 	    && !virtual_active()
4661 	    && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
4662     {
4663 	if (compute_longest_lnum)
4664 	{
4665 	    curwin->w_cursor.lnum = gui_find_longest_lnum();
4666 	    curwin->w_cursor.col = 0;
4667 	}
4668 	/* Do a sanity check on "longest_lnum", just in case. */
4669 	else if (longest_lnum >= curwin->w_topline
4670 		&& longest_lnum < curwin->w_botline)
4671 	{
4672 	    curwin->w_cursor.lnum = longest_lnum;
4673 	    curwin->w_cursor.col = 0;
4674 	}
4675     }
4676 
4677     return leftcol_changed();
4678 }
4679 
4680 /*
4681  * Check that none of the colors are the same as the background color
4682  */
4683     void
4684 gui_check_colors()
4685 {
4686     if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4687     {
4688 	gui_set_bg_color((char_u *)"White");
4689 	if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4690 	    gui_set_fg_color((char_u *)"Black");
4691     }
4692 }
4693 
4694     static void
4695 gui_set_fg_color(name)
4696     char_u	*name;
4697 {
4698     gui.norm_pixel = gui_get_color(name);
4699     hl_set_fg_color_name(vim_strsave(name));
4700 }
4701 
4702     static void
4703 gui_set_bg_color(name)
4704     char_u	*name;
4705 {
4706     gui.back_pixel = gui_get_color(name);
4707     hl_set_bg_color_name(vim_strsave(name));
4708 }
4709 
4710 /*
4711  * Allocate a color by name.
4712  * Returns INVALCOLOR and gives an error message when failed.
4713  */
4714     guicolor_T
4715 gui_get_color(name)
4716     char_u	*name;
4717 {
4718     guicolor_T	t;
4719 
4720     if (*name == NUL)
4721 	return INVALCOLOR;
4722     t = gui_mch_get_color(name);
4723 
4724     if (t == INVALCOLOR
4725 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
4726 	    && gui.in_use
4727 #endif
4728 	    )
4729 	EMSG2(_("E254: Cannot allocate color %s"), name);
4730     return t;
4731 }
4732 
4733 /*
4734  * Return the grey value of a color (range 0-255).
4735  */
4736     int
4737 gui_get_lightness(pixel)
4738     guicolor_T	pixel;
4739 {
4740     long_u	rgb = gui_mch_get_rgb(pixel);
4741 
4742     return  (int)(  (((rgb >> 16) & 0xff) * 299)
4743 		   + (((rgb >> 8) & 0xff) * 587)
4744 		   +  ((rgb	  & 0xff) * 114)) / 1000;
4745 }
4746 
4747 #if defined(FEAT_GUI_X11) || defined(PROTO)
4748     void
4749 gui_new_scrollbar_colors()
4750 {
4751     win_T	*wp;
4752 
4753     /* Nothing to do if GUI hasn't started yet. */
4754     if (!gui.in_use)
4755 	return;
4756 
4757     FOR_ALL_WINDOWS(wp)
4758     {
4759 	gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4760 	gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4761     }
4762     gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4763 }
4764 #endif
4765 
4766 /*
4767  * Call this when focus has changed.
4768  */
4769     void
4770 gui_focus_change(in_focus)
4771     int		in_focus;
4772 {
4773 /*
4774  * Skip this code to avoid drawing the cursor when debugging and switching
4775  * between the debugger window and gvim.
4776  */
4777 #if 1
4778     gui.in_focus = in_focus;
4779     out_flush();		/* make sure output has been written */
4780     gui_update_cursor(TRUE, FALSE);
4781 
4782 # ifdef FEAT_XIM
4783     xim_set_focus(in_focus);
4784 # endif
4785 
4786     /* Put events in the input queue only when allowed.
4787      * ui_focus_change() isn't called directly, because it invokes
4788      * autocommands and that must not happen asynchronously. */
4789     if (!hold_gui_events)
4790     {
4791 	char_u  bytes[3];
4792 
4793 	bytes[0] = CSI;
4794 	bytes[1] = KS_EXTRA;
4795 	bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4796 	add_to_input_buf(bytes, 3);
4797     }
4798 #endif
4799 }
4800 
4801 /*
4802  * Called when the mouse moved (but not when dragging).
4803  */
4804     void
4805 gui_mouse_moved(x, y)
4806     int		x;
4807     int		y;
4808 {
4809     win_T	*wp;
4810     char_u	st[8];
4811 
4812     /* Ignore this while still starting up. */
4813     if (!gui.in_use || gui.starting)
4814 	return;
4815 
4816 #ifdef FEAT_MOUSESHAPE
4817     /* Get window pointer, and update mouse shape as well. */
4818     wp = xy2win(x, y);
4819 #endif
4820 
4821     /* Only handle this when 'mousefocus' set and ... */
4822     if (p_mousef
4823 	    && !hold_gui_events		/* not holding events */
4824 	    && (State & (NORMAL|INSERT))/* Normal/Visual/Insert mode */
4825 	    && State != HITRETURN	/* but not hit-return prompt */
4826 	    && msg_scrolled == 0	/* no scrolled message */
4827 	    && !need_mouse_correct	/* not moving the pointer */
4828 	    && gui.in_focus)		/* gvim in focus */
4829     {
4830 	/* Don't move the mouse when it's left or right of the Vim window */
4831 	if (x < 0 || x > Columns * gui.char_width)
4832 	    return;
4833 #ifndef FEAT_MOUSESHAPE
4834 	wp = xy2win(x, y);
4835 #endif
4836 	if (wp == curwin || wp == NULL)
4837 	    return;	/* still in the same old window, or none at all */
4838 
4839 #ifdef FEAT_WINDOWS
4840 	/* Ignore position in the tab pages line. */
4841 	if (Y_2_ROW(y) < tabline_height())
4842 	    return;
4843 #endif
4844 
4845 	/*
4846 	 * format a mouse click on status line input
4847 	 * ala gui_send_mouse_event(0, x, y, 0, 0);
4848 	 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4849 	 * generate a K_LEFTMOUSE_NM key code.
4850 	 */
4851 	if (finish_op)
4852 	{
4853 	    /* abort the current operator first */
4854 	    st[0] = ESC;
4855 	    add_to_input_buf(st, 1);
4856 	}
4857 	st[0] = CSI;
4858 	st[1] = KS_MOUSE;
4859 	st[2] = KE_FILLER;
4860 	st[3] = (char_u)MOUSE_LEFT;
4861 	fill_mouse_coord(st + 4,
4862 #ifdef FEAT_VERTSPLIT
4863 		wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
4864 #else
4865 		-1,
4866 #endif
4867 		wp->w_height + W_WINROW(wp));
4868 
4869 	add_to_input_buf(st, 8);
4870 	st[3] = (char_u)MOUSE_RELEASE;
4871 	add_to_input_buf(st, 8);
4872 #ifdef FEAT_GUI_GTK
4873 	/* Need to wake up the main loop */
4874 	if (gtk_main_level() > 0)
4875 	    gtk_main_quit();
4876 #endif
4877     }
4878 }
4879 
4880 /*
4881  * Called when mouse should be moved to window with focus.
4882  */
4883     void
4884 gui_mouse_correct()
4885 {
4886     int		x, y;
4887     win_T	*wp = NULL;
4888 
4889     need_mouse_correct = FALSE;
4890 
4891     if (!(gui.in_use && p_mousef))
4892 	return;
4893 
4894     gui_mch_getmouse(&x, &y);
4895     /* Don't move the mouse when it's left or right of the Vim window */
4896     if (x < 0 || x > Columns * gui.char_width)
4897 	return;
4898     if (y >= 0
4899 # ifdef FEAT_WINDOWS
4900 	    && Y_2_ROW(y) >= tabline_height()
4901 # endif
4902        )
4903 	wp = xy2win(x, y);
4904     if (wp != curwin && wp != NULL)	/* If in other than current window */
4905     {
4906 	validate_cline_row();
4907 	gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4908 		(W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
4909 						     + (gui.char_height) / 2);
4910     }
4911 }
4912 
4913 /*
4914  * Find window where the mouse pointer "y" coordinate is in.
4915  */
4916     static win_T *
4917 xy2win(x, y)
4918     int		x UNUSED;
4919     int		y UNUSED;
4920 {
4921 #ifdef FEAT_WINDOWS
4922     int		row;
4923     int		col;
4924     win_T	*wp;
4925 
4926     row = Y_2_ROW(y);
4927     col = X_2_COL(x);
4928     if (row < 0 || col < 0)		/* before first window */
4929 	return NULL;
4930     wp = mouse_find_win(&row, &col);
4931 # ifdef FEAT_MOUSESHAPE
4932     if (State == HITRETURN || State == ASKMORE)
4933     {
4934 	if (Y_2_ROW(y) >= msg_row)
4935 	    update_mouseshape(SHAPE_IDX_MOREL);
4936 	else
4937 	    update_mouseshape(SHAPE_IDX_MORE);
4938     }
4939     else if (row > wp->w_height)	/* below status line */
4940 	update_mouseshape(SHAPE_IDX_CLINE);
4941 #  ifdef FEAT_VERTSPLIT
4942     else if (!(State & CMDLINE) && W_VSEP_WIDTH(wp) > 0 && col == wp->w_width
4943 	    && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
4944 	update_mouseshape(SHAPE_IDX_VSEP);
4945 #  endif
4946     else if (!(State & CMDLINE) && W_STATUS_HEIGHT(wp) > 0
4947 				  && row == wp->w_height && msg_scrolled == 0)
4948 	update_mouseshape(SHAPE_IDX_STATUS);
4949     else
4950 	update_mouseshape(-2);
4951 # endif
4952     return wp;
4953 #else
4954     return firstwin;
4955 #endif
4956 }
4957 
4958 /*
4959  * ":gui" and ":gvim": Change from the terminal version to the GUI version.
4960  * File names may be given to redefine the args list.
4961  */
4962     void
4963 ex_gui(eap)
4964     exarg_T	*eap;
4965 {
4966     char_u	*arg = eap->arg;
4967 
4968     /*
4969      * Check for "-f" argument: foreground, don't fork.
4970      * Also don't fork when started with "gvim -f".
4971      * Do fork when using "gui -b".
4972      */
4973     if (arg[0] == '-'
4974 	    && (arg[1] == 'f' || arg[1] == 'b')
4975 	    && (arg[2] == NUL || vim_iswhite(arg[2])))
4976     {
4977 	gui.dofork = (arg[1] == 'b');
4978 	eap->arg = skipwhite(eap->arg + 2);
4979     }
4980     if (!gui.in_use)
4981     {
4982 	/* Clear the command.  Needed for when forking+exiting, to avoid part
4983 	 * of the argument ending up after the shell prompt. */
4984 	msg_clr_eos_force();
4985 	gui_start();
4986 #ifdef FEAT_NETBEANS_INTG
4987 	netbeans_gui_register();
4988 #endif
4989     }
4990     if (!ends_excmd(*eap->arg))
4991 	ex_next(eap);
4992 }
4993 
4994 #if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) \
4995 	|| defined(FEAT_GUI_PHOTON)) && defined(FEAT_TOOLBAR)) || defined(PROTO)
4996 /*
4997  * This is shared between Athena, Motif and GTK.
4998  */
4999 static void gfp_setname __ARGS((char_u *fname, void *cookie));
5000 
5001 /*
5002  * Callback function for do_in_runtimepath().
5003  */
5004     static void
5005 gfp_setname(fname, cookie)
5006     char_u	*fname;
5007     void	*cookie;
5008 {
5009     char_u	*gfp_buffer = cookie;
5010 
5011     if (STRLEN(fname) >= MAXPATHL)
5012 	*gfp_buffer = NUL;
5013     else
5014 	STRCPY(gfp_buffer, fname);
5015 }
5016 
5017 /*
5018  * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5019  * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5020  */
5021     int
5022 gui_find_bitmap(name, buffer, ext)
5023     char_u	*name;
5024     char_u	*buffer;
5025     char	*ext;
5026 {
5027     if (STRLEN(name) > MAXPATHL - 14)
5028 	return FAIL;
5029     vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
5030     if (do_in_runtimepath(buffer, FALSE, gfp_setname, buffer) == FAIL
5031 							    || *buffer == NUL)
5032 	return FAIL;
5033     return OK;
5034 }
5035 
5036 # if !defined(FEAT_GUI_GTK) || defined(PROTO)
5037 /*
5038  * Given the name of the "icon=" argument, try finding the bitmap file for the
5039  * icon.  If it is an absolute path name, use it as it is.  Otherwise append
5040  * "ext" and search for it in 'runtimepath'.
5041  * The result is put in "buffer[MAXPATHL]".  If something fails "buffer"
5042  * contains "name".
5043  */
5044     void
5045 gui_find_iconfile(name, buffer, ext)
5046     char_u	*name;
5047     char_u	*buffer;
5048     char	*ext;
5049 {
5050     char_u	buf[MAXPATHL + 1];
5051 
5052     expand_env(name, buffer, MAXPATHL);
5053     if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5054 	STRCPY(buffer, buf);
5055 }
5056 # endif
5057 #endif
5058 
5059 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
5060     void
5061 display_errors()
5062 {
5063     char_u	*p;
5064 
5065     if (isatty(2))
5066 	fflush(stderr);
5067     else if (error_ga.ga_data != NULL)
5068     {
5069 	/* avoid putting up a message box with blanks only */
5070 	for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5071 	    if (!isspace(*p))
5072 	    {
5073 		/* Truncate a very long message, it will go off-screen. */
5074 		if (STRLEN(p) > 2000)
5075 		    STRCPY(p + 2000 - 14, "...(truncated)");
5076 		(void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
5077 				       p, (char_u *)_("&Ok"), 1, NULL, FALSE);
5078 		break;
5079 	    }
5080 	ga_clear(&error_ga);
5081     }
5082 }
5083 #endif
5084 
5085 #if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5086 /*
5087  * Return TRUE if still starting up and there is no place to enter text.
5088  * For GTK and X11 we check if stderr is not a tty, which means we were
5089  * (probably) started from the desktop.  Also check stdin, "vim >& file" does
5090  * allow typing on stdin.
5091  */
5092     int
5093 no_console_input()
5094 {
5095     return ((!gui.in_use || gui.starting)
5096 # ifndef NO_CONSOLE
5097 	    && !isatty(0) && !isatty(2)
5098 # endif
5099 	    );
5100 }
5101 #endif
5102 
5103 #if defined(FIND_REPLACE_DIALOG) || defined(FEAT_SUN_WORKSHOP) \
5104 	|| defined(NEED_GUI_UPDATE_SCREEN) \
5105 	|| defined(PROTO)
5106 /*
5107  * Update the current window and the screen.
5108  */
5109     void
5110 gui_update_screen()
5111 {
5112 #ifdef FEAT_CONCEAL
5113     linenr_T	conceal_old_cursor_line = 0;
5114     linenr_T	conceal_new_cursor_line = 0;
5115     int		conceal_update_lines = FALSE;
5116 #endif
5117 
5118     update_topline();
5119     validate_cursor();
5120 
5121 #if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
5122     /* Trigger CursorMoved if the cursor moved. */
5123     if (!finish_op && (
5124 # ifdef FEAT_AUTOCMD
5125 		has_cursormoved()
5126 # endif
5127 # if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
5128 		||
5129 # endif
5130 # ifdef FEAT_CONCEAL
5131 		curwin->w_p_cole > 0
5132 # endif
5133 		)
5134 		     && !equalpos(last_cursormoved, curwin->w_cursor))
5135     {
5136 # ifdef FEAT_AUTOCMD
5137 	if (has_cursormoved())
5138 	    apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
5139 # endif
5140 # ifdef FEAT_CONCEAL
5141 	if (curwin->w_p_cole > 0)
5142 	{
5143 	    conceal_old_cursor_line = last_cursormoved.lnum;
5144 	    conceal_new_cursor_line = curwin->w_cursor.lnum;
5145 	    conceal_update_lines = TRUE;
5146 	}
5147 # endif
5148 	last_cursormoved = curwin->w_cursor;
5149     }
5150 #endif
5151 
5152     update_screen(0);	/* may need to update the screen */
5153     setcursor();
5154 # if defined(FEAT_CONCEAL)
5155     if (conceal_update_lines
5156 	    && (conceal_old_cursor_line != conceal_new_cursor_line
5157 		|| conceal_cursor_line(curwin)
5158 		|| need_cursor_line_redraw))
5159     {
5160 	if (conceal_old_cursor_line != conceal_new_cursor_line)
5161 	    update_single_line(curwin, conceal_old_cursor_line);
5162 	update_single_line(curwin, conceal_new_cursor_line);
5163 	curwin->w_valid &= ~VALID_CROW;
5164     }
5165 # endif
5166     out_flush();		/* make sure output has been written */
5167     gui_update_cursor(TRUE, FALSE);
5168     gui_mch_flush();
5169 }
5170 #endif
5171 
5172 #if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
5173 static void concat_esc __ARGS((garray_T *gap, char_u *text, int what));
5174 
5175 /*
5176  * Get the text to use in a find/replace dialog.  Uses the last search pattern
5177  * if the argument is empty.
5178  * Returns an allocated string.
5179  */
5180     char_u *
5181 get_find_dialog_text(arg, wwordp, mcasep)
5182     char_u	*arg;
5183     int		*wwordp;	/* return: TRUE if \< \> found */
5184     int		*mcasep;	/* return: TRUE if \C found */
5185 {
5186     char_u	*text;
5187 
5188     if (*arg == NUL)
5189 	text = last_search_pat();
5190     else
5191 	text = arg;
5192     if (text != NULL)
5193     {
5194 	text = vim_strsave(text);
5195 	if (text != NULL)
5196 	{
5197 	    int len = (int)STRLEN(text);
5198 	    int i;
5199 
5200 	    /* Remove "\V" */
5201 	    if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5202 	    {
5203 		mch_memmove(text, text + 2, (size_t)(len - 1));
5204 		len -= 2;
5205 	    }
5206 
5207 	    /* Recognize "\c" and "\C" and remove. */
5208 	    if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5209 	    {
5210 		*mcasep = (text[1] == 'C');
5211 		mch_memmove(text, text + 2, (size_t)(len - 1));
5212 		len -= 2;
5213 	    }
5214 
5215 	    /* Recognize "\<text\>" and remove. */
5216 	    if (len >= 4
5217 		    && STRNCMP(text, "\\<", 2) == 0
5218 		    && STRNCMP(text + len - 2, "\\>", 2) == 0)
5219 	    {
5220 		*wwordp = TRUE;
5221 		mch_memmove(text, text + 2, (size_t)(len - 4));
5222 		text[len - 4] = NUL;
5223 	    }
5224 
5225 	    /* Recognize "\/" or "\?" and remove. */
5226 	    for (i = 0; i + 1 < len; ++i)
5227 		if (text[i] == '\\' && (text[i + 1] == '/'
5228 						       || text[i + 1] == '?'))
5229 		{
5230 		    mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5231 		    --len;
5232 		}
5233 	}
5234     }
5235     return text;
5236 }
5237 
5238 /*
5239  * Concatenate "text" to grow array "gap", escaping "what" with a backslash.
5240  */
5241     static void
5242 concat_esc(gap, text, what)
5243     garray_T	*gap;
5244     char_u	*text;
5245     int		what;
5246 {
5247     while (*text != NUL)
5248     {
5249 #ifdef FEAT_MBYTE
5250 	int l = (*mb_ptr2len)(text);
5251 
5252 	if (l > 1)
5253 	{
5254 	    while (--l >= 0)
5255 		ga_append(gap, *text++);
5256 	    continue;
5257 	}
5258 #endif
5259 	if (*text == what)
5260 	    ga_append(gap, '\\');
5261 	ga_append(gap, *text);
5262 	++text;
5263     }
5264 }
5265 
5266 /*
5267  * Handle the press of a button in the find-replace dialog.
5268  * Return TRUE when something was added to the input buffer.
5269  */
5270     int
5271 gui_do_findrepl(flags, find_text, repl_text, down)
5272     int		flags;		/* one of FRD_REPLACE, FRD_FINDNEXT, etc. */
5273     char_u	*find_text;
5274     char_u	*repl_text;
5275     int		down;		/* Search downwards. */
5276 {
5277     garray_T	ga;
5278     int		i;
5279     int		type = (flags & FRD_TYPE_MASK);
5280     char_u	*p;
5281     regmatch_T	regmatch;
5282     int		save_did_emsg = did_emsg;
5283     static int  busy = FALSE;
5284 
5285     /* When the screen is being updated we should not change buffers and
5286      * windows structures, it may cause freed memory to be used.  Also don't
5287      * do this recursively (pressing "Find" quickly several times. */
5288     if (updating_screen || busy)
5289 	return FALSE;
5290 
5291     /* refuse replace when text cannot be changed */
5292     if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5293 	return FALSE;
5294 
5295     busy = TRUE;
5296 
5297     ga_init2(&ga, 1, 100);
5298     if (type == FRD_REPLACEALL)
5299 	ga_concat(&ga, (char_u *)"%s/");
5300 
5301     ga_concat(&ga, (char_u *)"\\V");
5302     if (flags & FRD_MATCH_CASE)
5303 	ga_concat(&ga, (char_u *)"\\C");
5304     else
5305 	ga_concat(&ga, (char_u *)"\\c");
5306     if (flags & FRD_WHOLE_WORD)
5307 	ga_concat(&ga, (char_u *)"\\<");
5308     if (type == FRD_REPLACEALL || down)
5309 	concat_esc(&ga, find_text, '/');	/* escape slashes */
5310     else
5311 	concat_esc(&ga, find_text, '?');	/* escape '?' */
5312     if (flags & FRD_WHOLE_WORD)
5313 	ga_concat(&ga, (char_u *)"\\>");
5314 
5315     if (type == FRD_REPLACEALL)
5316     {
5317 	ga_concat(&ga, (char_u *)"/");
5318 						/* escape / and \ */
5319 	p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5320 	if (p != NULL)
5321 	    ga_concat(&ga, p);
5322 	vim_free(p);
5323 	ga_concat(&ga, (char_u *)"/g");
5324     }
5325     ga_append(&ga, NUL);
5326 
5327     if (type == FRD_REPLACE)
5328     {
5329 	/* Do the replacement when the text at the cursor matches.  Thus no
5330 	 * replacement is done if the cursor was moved! */
5331 	regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5332 	regmatch.rm_ic = 0;
5333 	if (regmatch.regprog != NULL)
5334 	{
5335 	    p = ml_get_cursor();
5336 	    if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5337 						   && regmatch.startp[0] == p)
5338 	    {
5339 		/* Clear the command line to remove any old "No match"
5340 		 * error. */
5341 		msg_end_prompt();
5342 
5343 		if (u_save_cursor() == OK)
5344 		{
5345 		    /* A button was pressed thus undo should be synced. */
5346 		    u_sync(FALSE);
5347 
5348 		    del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
5349 								FALSE, FALSE);
5350 		    ins_str(repl_text);
5351 		}
5352 	    }
5353 	    else
5354 		MSG(_("No match at cursor, finding next"));
5355 	    vim_regfree(regmatch.regprog);
5356 	}
5357     }
5358 
5359     if (type == FRD_REPLACEALL)
5360     {
5361 	/* A button was pressed, thus undo should be synced. */
5362 	u_sync(FALSE);
5363 	do_cmdline_cmd(ga.ga_data);
5364     }
5365     else
5366     {
5367 	/* Search for the next match. */
5368 	i = msg_scroll;
5369 	(void)do_search(NULL, down ? '/' : '?', ga.ga_data, 1L,
5370 					      SEARCH_MSG + SEARCH_MARK, NULL);
5371 	msg_scroll = i;	    /* don't let an error message set msg_scroll */
5372     }
5373 
5374     /* Don't want to pass did_emsg to other code, it may cause disabling
5375      * syntax HL if we were busy redrawing. */
5376     did_emsg = save_did_emsg;
5377 
5378     if (State & (NORMAL | INSERT))
5379     {
5380 	gui_update_screen();		/* update the screen */
5381 	msg_didout = 0;			/* overwrite any message */
5382 	need_wait_return = FALSE;	/* don't wait for return */
5383     }
5384 
5385     vim_free(ga.ga_data);
5386     busy = FALSE;
5387     return (ga.ga_len > 0);
5388 }
5389 
5390 #endif
5391 
5392 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5393 	|| defined(FEAT_GUI_MSWIN) \
5394 	|| defined(FEAT_GUI_MAC) \
5395 	|| defined(PROTO)
5396 
5397 #ifdef FEAT_WINDOWS
5398 static void gui_wingoto_xy __ARGS((int x, int y));
5399 
5400 /*
5401  * Jump to the window at specified point (x, y).
5402  */
5403     static void
5404 gui_wingoto_xy(x, y)
5405     int x;
5406     int y;
5407 {
5408     int		row = Y_2_ROW(y);
5409     int		col = X_2_COL(x);
5410     win_T	*wp;
5411 
5412     if (row >= 0 && col >= 0)
5413     {
5414 	wp = mouse_find_win(&row, &col);
5415 	if (wp != NULL && wp != curwin)
5416 	    win_goto(wp);
5417     }
5418 }
5419 #endif
5420 
5421 /*
5422  * Process file drop.  Mouse cursor position, key modifiers, name of files
5423  * and count of files are given.  Argument "fnames[count]" has full pathnames
5424  * of dropped files, they will be freed in this function, and caller can't use
5425  * fnames after call this function.
5426  */
5427     void
5428 gui_handle_drop(x, y, modifiers, fnames, count)
5429     int		x UNUSED;
5430     int		y UNUSED;
5431     int_u	modifiers;
5432     char_u	**fnames;
5433     int		count;
5434 {
5435     int		i;
5436     char_u	*p;
5437     static int	entered = FALSE;
5438 
5439     /*
5440      * This function is called by event handlers.  Just in case we get a
5441      * second event before the first one is handled, ignore the second one.
5442      * Not sure if this can ever happen, just in case.
5443      */
5444     if (entered)
5445 	return;
5446     entered = TRUE;
5447 
5448     /*
5449      * When the cursor is at the command line, add the file names to the
5450      * command line, don't edit the files.
5451      */
5452     if (State & CMDLINE)
5453     {
5454 	shorten_filenames(fnames, count);
5455 	for (i = 0; i < count; ++i)
5456 	{
5457 	    if (fnames[i] != NULL)
5458 	    {
5459 		if (i > 0)
5460 		    add_to_input_buf((char_u*)" ", 1);
5461 
5462 		/* We don't know what command is used thus we can't be sure
5463 		 * about which characters need to be escaped.  Only escape the
5464 		 * most common ones. */
5465 # ifdef BACKSLASH_IN_FILENAME
5466 		p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5467 # else
5468 		p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5469 # endif
5470 		if (p != NULL)
5471 		    add_to_input_buf_csi(p, (int)STRLEN(p));
5472 		vim_free(p);
5473 		vim_free(fnames[i]);
5474 	    }
5475 	}
5476 	vim_free(fnames);
5477     }
5478     else
5479     {
5480 	/* Go to the window under mouse cursor, then shorten given "fnames" by
5481 	 * current window, because a window can have local current dir. */
5482 # ifdef FEAT_WINDOWS
5483 	gui_wingoto_xy(x, y);
5484 # endif
5485 	shorten_filenames(fnames, count);
5486 
5487 	/* If Shift held down, remember the first item. */
5488 	if ((modifiers & MOUSE_SHIFT) != 0)
5489 	    p = vim_strsave(fnames[0]);
5490 	else
5491 	    p = NULL;
5492 
5493 	/* Handle the drop, :edit or :split to get to the file.  This also
5494 	 * frees fnames[].  Skip this if there is only one item it's a
5495 	 * directory and Shift is held down. */
5496 	if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5497 						     && mch_isdir(fnames[0]))
5498 	{
5499 	    vim_free(fnames[0]);
5500 	    vim_free(fnames);
5501 	}
5502 	else
5503 	    handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0);
5504 
5505 	/* If Shift held down, change to first file's directory.  If the first
5506 	 * item is a directory, change to that directory (and let the explorer
5507 	 * plugin show the contents). */
5508 	if (p != NULL)
5509 	{
5510 	    if (mch_isdir(p))
5511 	    {
5512 		if (mch_chdir((char *)p) == 0)
5513 		    shorten_fnames(TRUE);
5514 	    }
5515 	    else if (vim_chdirfile(p) == OK)
5516 		shorten_fnames(TRUE);
5517 	    vim_free(p);
5518 	}
5519 
5520 	/* Update the screen display */
5521 	update_screen(NOT_VALID);
5522 # ifdef FEAT_MENU
5523 	gui_update_menus(0);
5524 # endif
5525 #ifdef FEAT_TITLE
5526 	maketitle();
5527 #endif
5528 	setcursor();
5529 	out_flush();
5530 	gui_update_cursor(FALSE, FALSE);
5531 	gui_mch_flush();
5532     }
5533 
5534     entered = FALSE;
5535 }
5536 #endif
5537