blob: 6e8a9049e7124977b6bb3061dd1da9919c7dfb81 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI/Motif support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10
11#include "vim.h"
12
13/* Structure containing all the GUI information */
14gui_T gui;
15
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +020016#if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010017static void set_guifontwide(char_u *font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010019static void gui_check_pos(void);
20static void gui_position_components(int);
21static void gui_outstr(char_u *, int);
22static int gui_screenchar(int off, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +020023#ifdef FEAT_GUI_GTK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010024static int gui_screenstr(int off, int len, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010026static void gui_delete_lines(int row, int count);
27static void gui_insert_lines(int row, int count);
28static void fill_mouse_coord(char_u *p, int col, int row);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000029#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010030static int gui_has_tabline(void);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000031#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010032static void gui_do_scrollbar(win_T *wp, int which, int enable);
33static colnr_T scroll_line_len(linenr_T lnum);
34static linenr_T gui_find_longest_lnum(void);
35static void gui_update_horiz_scrollbar(int);
36static void gui_set_fg_color(char_u *name);
37static void gui_set_bg_color(char_u *name);
38static win_T *xy2win(int x, int y);
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
Bram Moolenaar05514102012-08-29 16:34:27 +020040#if defined(UNIX) && !defined(MACOS_X) && !defined(__APPLE__)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020041# define MAY_FORK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010042static void gui_do_fork(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020043
Bram Moolenaard25c16e2016-01-29 22:13:30 +010044static int gui_read_child_pipe(int fd);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020045
46/* Return values for gui_read_child_pipe */
47enum {
48 GUI_CHILD_IO_ERROR,
49 GUI_CHILD_OK,
50 GUI_CHILD_FAILED
51};
52
53#endif /* MAY_FORK */
54
Bram Moolenaard25c16e2016-01-29 22:13:30 +010055static void gui_attempt_start(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020056
Bram Moolenaar071d4272004-06-13 20:20:40 +000057static 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
Bram Moolenaar66f948e2016-01-30 16:39:25 +010076gui_start(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 char_u *old_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 static int recursive = 0;
80
81 old_term = vim_strsave(T_NAME);
82
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 settmode(TMODE_COOK); /* stop RAW mode */
84 if (full_screen)
85 cursor_on(); /* needed for ":gui" in .vimrc */
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 full_screen = FALSE;
87
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 ++recursive;
89
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020090#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 {
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200104#ifdef FEAT_GUI_GTK
Bram Moolenaar6a3c1b42012-05-25 14:06:36 +0200105 /* 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)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100108 getout_preserve_modified(1);
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200109#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200110 gui_attempt_start();
111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
113 if (!gui.in_use) /* failed to start GUI */
114 {
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200115 /* 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);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 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
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200134#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
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100155gui_attempt_start(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200156{
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
Bram Moolenaar9372a112005-12-06 19:59:18 +0000169#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170 if (gui.in_use)
Bram Moolenaar727c8762010-10-20 19:17:48 +0200171 {
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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 /* Display error messages in a dialog now. */
181 display_errors();
Bram Moolenaar727c8762010-10-20 19:17:48 +0200182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 --recursive;
185}
186
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200187#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
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100207gui_do_fork(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200208{
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200209 int pipefd[2]; /* pipe between parent and child */
210 int pipe_error;
211 int status;
212 int exit_status;
213 pid_t pid = -1;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200214
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
Bram Moolenaar29695702012-05-18 17:03:18 +0200272#ifdef FEAT_GUI_GTK
273 /* Call gtk_init_check() here after fork(). See gui_init_check(). */
274 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100275 getout_preserve_modified(1);
Bram Moolenaar29695702012-05-18 17:03:18 +0200276#endif
277
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200278# 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
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200297 /* Try to start the GUI */
298 gui_attempt_start();
299
300 /* Notify the parent */
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200301 if (!pipe_error)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200302 {
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200303 if (gui.in_use)
304 write_eintr(pipefd[1], "ok", 3);
305 else
306 write_eintr(pipefd[1], "fail", 5);
307 close(pipefd[1]);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200308 }
309
310 /* If we failed to start the GUI, exit now. */
311 if (!gui.in_use)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100312 getout_preserve_modified(1);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200313}
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
325gui_read_child_pipe(int fd)
326{
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200327 long bytes_read;
328#define READ_BUFFER_SIZE 10
329 char buffer[READ_BUFFER_SIZE];
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200330
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200331 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
332#undef READ_BUFFER_SIZE
333 close(fd);
334 if (bytes_read < 0)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200335 return GUI_CHILD_IO_ERROR;
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200336 buffer[bytes_read] = NUL;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200337 if (strcmp(buffer, "ok") == 0)
338 return GUI_CHILD_OK;
339 return GUI_CHILD_FAILED;
340}
341
342#endif /* MAY_FORK */
343
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344/*
345 * Call this when vim starts up, whether or not the GUI is started
346 */
347 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100348gui_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349{
350 gui.in_use = FALSE; /* No GUI yet (maybe later) */
351 gui.starting = FALSE; /* No GUI yet (maybe later) */
352 gui_mch_prepare(argc, argv);
353}
354
355/*
356 * Try initializing the GUI and check if it can be started.
357 * Used from main() to check early if "vim -g" can start the GUI.
358 * Used from gui_init() to prepare for starting the GUI.
359 * Returns FAIL or OK.
360 */
361 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100362gui_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363{
364 static int result = MAYBE;
365
366 if (result != MAYBE)
367 {
368 if (result == FAIL)
369 EMSG(_("E229: Cannot start the GUI"));
370 return result;
371 }
372
373 gui.shell_created = FALSE;
374 gui.dying = FALSE;
375 gui.in_focus = TRUE; /* so the guicursor setting works */
376 gui.dragged_sb = SBAR_NONE;
377 gui.dragged_wp = NULL;
378 gui.pointer_hidden = FALSE;
379 gui.col = 0;
380 gui.row = 0;
381 gui.num_cols = Columns;
382 gui.num_rows = Rows;
383
384 gui.cursor_is_valid = FALSE;
385 gui.scroll_region_top = 0;
386 gui.scroll_region_bot = Rows - 1;
387 gui.scroll_region_left = 0;
388 gui.scroll_region_right = Columns - 1;
389 gui.highlight_mask = HL_NORMAL;
390 gui.char_width = 1;
391 gui.char_height = 1;
392 gui.char_ascent = 0;
393 gui.border_width = 0;
394
395 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200396#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 gui.bold_font = NOFONT;
398 gui.ital_font = NOFONT;
399 gui.boldital_font = NOFONT;
400# ifdef FEAT_XFONTSET
401 gui.fontset = NOFONTSET;
402# endif
403#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200404#ifdef FEAT_MBYTE
405 gui.wide_font = NOFONT;
406# ifndef FEAT_GUI_GTK
407 gui.wide_bold_font = NOFONT;
408 gui.wide_ital_font = NOFONT;
409 gui.wide_boldital_font = NOFONT;
410# endif
411#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
413#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200414# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415# ifdef FONTSET_ALWAYS
416 gui.menu_fontset = NOFONTSET;
417# else
418 gui.menu_font = NOFONT;
419# endif
420# endif
421 gui.menu_is_active = TRUE; /* default: include menu */
422# ifndef FEAT_GUI_GTK
423 gui.menu_height = MENU_DEFAULT_HEIGHT;
424 gui.menu_width = 0;
425# endif
426#endif
427#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
428 gui.toolbar_height = 0;
429#endif
430#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
431 gui.footer_height = 0;
432#endif
433#ifdef FEAT_BEVAL_TIP
434 gui.tooltip_fontset = NOFONTSET;
435#endif
436
437 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
438 gui.prev_wrap = -1;
439
440#ifdef ALWAYS_USE_GUI
441 result = OK;
442#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200443# ifdef FEAT_GUI_GTK
444 /*
445 * Note: Don't call gtk_init_check() before fork, it will be called after
446 * the fork. When calling it before fork, it make vim hang for a while.
447 * See gui_do_fork().
448 * Use a simpler check if the GUI window can probably be opened.
449 */
450 result = gui.dofork ? gui_mch_early_init_check() : gui_mch_init_check();
451# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200453# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454#endif
455 return result;
456}
457
458/*
459 * This is the call which starts the GUI.
460 */
461 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100462gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463{
464 win_T *wp;
465 static int recursive = 0;
466
467 /*
468 * It's possible to use ":gui" in a .gvimrc file. The first halve of this
469 * function will then be executed at the first call, the rest by the
470 * recursive call. This allow the shell to be opened halfway reading a
471 * gvimrc file.
472 */
473 if (!recursive)
474 {
475 ++recursive;
476
477 clip_init(TRUE);
478
479 /* If can't initialize, don't try doing the rest */
480 if (gui_init_check() == FAIL)
481 {
482 --recursive;
483 clip_init(FALSE);
484 return;
485 }
486
487 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000488 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
489 * breaks the Paste toolbar button.
490 */
491 set_option_value((char_u *)"paste", 0L, NULL, 0);
492
493 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 * Set up system-wide default menus.
495 */
496#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
497 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
498 {
499 sys_menu = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000500 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 sys_menu = FALSE;
502 }
503#endif
504
505 /*
506 * Switch on the mouse by default, unless the user changed it already.
507 * This can then be changed in the .gvimrc.
508 */
509 if (!option_was_set((char_u *)"mouse"))
510 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000511 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512
513 /*
514 * If -U option given, use only the initializations from that file and
515 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
516 */
517 if (use_gvimrc != NULL)
518 {
519 if (STRCMP(use_gvimrc, "NONE") != 0
520 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000521 && do_source(use_gvimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 EMSG2(_("E230: Cannot read from \"%s\""), use_gvimrc);
523 }
524 else
525 {
526 /*
527 * Get system wide defaults for gvim, only when file name defined.
528 */
529#ifdef SYS_GVIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000530 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531#endif
532
533 /*
534 * Try to read GUI initialization commands from the following
535 * places:
536 * - environment variable GVIMINIT
537 * - the user gvimrc file (~/.gvimrc)
538 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
539 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
540 * The first that exists is used, the rest is ignored.
541 */
542 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000543 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
544 DOSO_GVIMRC) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000546 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
547 DOSO_GVIMRC) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200549#ifdef USR_GVIMRC_FILE3
550 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
551 DOSO_GVIMRC) == FAIL
552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 )
554 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200555#ifdef USR_GVIMRC_FILE4
556 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE, DOSO_GVIMRC);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557#endif
558 }
559
560 /*
561 * Read initialization commands from ".gvimrc" in current
562 * directory. This is only done if the 'exrc' option is set.
563 * Because of security reasons we disallow shell and write
564 * commands now, except for unix if the file is owned by the user
565 * or 'secure' option has been reset in environment of global
566 * ".gvimrc".
567 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
568 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
569 */
570 if (p_exrc)
571 {
572#ifdef UNIX
573 {
574 struct stat s;
575
576 /* if ".gvimrc" file is not owned by user, set 'secure'
577 * mode */
578 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
579 secure = p_secure;
580 }
581#else
582 secure = p_secure;
583#endif
584
585 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
586 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
587#ifdef SYS_GVIMRC_FILE
588 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
589 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
590#endif
591#ifdef USR_GVIMRC_FILE2
592 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
593 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
594#endif
595#ifdef USR_GVIMRC_FILE3
596 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
597 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
598#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200599#ifdef USR_GVIMRC_FILE4
600 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
601 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
602#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000604 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605
606 if (secure == 2)
607 need_wait_return = TRUE;
608 secure = 0;
609 }
610 }
611
612 if (need_wait_return || msg_didany)
613 wait_return(TRUE);
614
615 --recursive;
616 }
617
618 /* If recursive call opened the shell, return here from the first call */
619 if (gui.in_use)
620 return;
621
622 /*
623 * Create the GUI shell.
624 */
625 gui.in_use = TRUE; /* Must be set after menus have been set up */
626 if (gui_mch_init() == FAIL)
627 goto error;
628
629 /* Avoid a delay for an error message that was printed in the terminal
630 * where Vim was started. */
631 emsg_on_display = FALSE;
632 msg_scrolled = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000633 clear_sb_text();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 need_wait_return = FALSE;
635 msg_didany = FALSE;
636
637 /*
638 * Check validity of any generic resources that may have been loaded.
639 */
640 if (gui.border_width < 0)
641 gui.border_width = 0;
642
643 /*
644 * Set up the fonts. First use a font specified with "-fn" or "-font".
645 */
646 if (font_argument != NULL)
647 set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
648 if (
649#ifdef FEAT_XFONTSET
650 (*p_guifontset == NUL
651 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
652#endif
653 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
654 : p_guifont, FALSE) == FAIL)
655 {
656 EMSG(_("E665: Cannot start GUI, no valid font found"));
657 goto error2;
658 }
659#ifdef FEAT_MBYTE
660 if (gui_get_wide_font() == FAIL)
661 EMSG(_("E231: 'guifontwide' invalid"));
662#endif
663
664 gui.num_cols = Columns;
665 gui.num_rows = Rows;
666 gui_reset_scroll_region();
667
668 /* Create initial scrollbars */
669 FOR_ALL_WINDOWS(wp)
670 {
671 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
672 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
673 }
674 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
675
676#ifdef FEAT_MENU
677 gui_create_initial_menus(root_menu);
678#endif
679#ifdef FEAT_SUN_WORKSHOP
680 if (usingSunWorkShop)
681 workshop_init();
682#endif
683#ifdef FEAT_SIGN_ICONS
684 sign_gui_started();
685#endif
686
687 /* Configure the desired menu and scrollbars */
688 gui_init_which_components(NULL);
689
690 /* All components of the GUI have been created now */
691 gui.shell_created = TRUE;
692
693#ifndef FEAT_GUI_GTK
694 /* Set the shell size, adjusted for the screen size. For GTK this only
695 * works after the shell has been opened, thus it is further down. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000696 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697#endif
698#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
699 /* Need to set the size of the menubar after all the menus have been
700 * created. */
701 gui_mch_compute_menu_height((Widget)0);
702#endif
703
704 /*
705 * Actually open the GUI shell.
706 */
707 if (gui_mch_open() != FAIL)
708 {
709#ifdef FEAT_TITLE
710 maketitle();
711 resettitle();
712#endif
713 init_gui_options();
714#ifdef FEAT_ARABIC
715 /* Our GUI can't do bidi. */
716 p_tbidi = FALSE;
717#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000718#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 /* Give GTK+ a chance to put all widget's into place. */
720 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000721
722# ifdef FEAT_MENU
723 /* If there is no 'm' in 'guioptions' we need to remove the menu now.
724 * It was still there to make F10 work. */
725 if (vim_strchr(p_go, GO_MENUS) == NULL)
726 {
727 --gui.starting;
728 gui_mch_enable_menu(FALSE);
729 ++gui.starting;
730 gui_mch_update();
731 }
732# endif
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 /* Now make sure the shell fits on the screen. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000735 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736#endif
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000737 /* When 'lines' was set while starting up the topframe may have to be
738 * resized. */
739 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000740
741#ifdef FEAT_BEVAL
742 /* Always create the Balloon Evaluation area, but disable it when
743 * 'ballooneval' is off */
744# ifdef FEAT_GUI_GTK
745 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
746 &general_beval_cb, NULL);
747# else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000748# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000749 {
750 extern Widget textArea;
751 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000752 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000753 }
754# else
755# ifdef FEAT_GUI_W32
756 balloonEval = gui_mch_create_beval_area(NULL, NULL,
757 &general_beval_cb, NULL);
758# endif
759# endif
760# endif
761 if (!p_beval)
762 gui_mch_disable_beval_area(balloonEval);
763#endif
764
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
766 if (!im_xim_isvalid_imactivate())
767 EMSG(_("E599: Value of 'imactivatekey' is invalid"));
768#endif
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000769 /* When 'cmdheight' was set during startup it may not have taken
770 * effect yet. */
771 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000772 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
774 return;
775 }
776
777error2:
778#ifdef FEAT_GUI_X11
779 /* undo gui_mch_init() */
780 gui_mch_uninit();
781#endif
782
783error:
784 gui.in_use = FALSE;
785 clip_init(FALSE);
786}
787
788
789 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100790gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 /* don't free the fonts, it leads to a BUS error
793 * richard@whitequeen.com Jul 99 */
794 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 gui.in_use = FALSE;
796 gui_mch_exit(rc);
797}
798
Bram Moolenaar9372a112005-12-06 19:59:18 +0000799#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000801# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802/*
803 * Called when the GUI shell is closed by the user. If there are no changed
804 * files Vim exits, otherwise there will be a dialog to ask the user what to
805 * do.
806 * When this function returns, Vim should NOT exit!
807 */
808 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100809gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810{
811 cmdmod_T save_cmdmod;
812
813 save_cmdmod = cmdmod;
814
815 /* Only exit when there are no changed files */
816 exiting = TRUE;
817# ifdef FEAT_BROWSE
818 cmdmod.browse = TRUE;
819# endif
820# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
821 cmdmod.confirm = TRUE;
822# endif
823 /* If there are changed buffers, present the user with a dialog if
824 * possible, otherwise give an error message. */
Bram Moolenaar027387f2016-01-02 22:25:52 +0100825 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 getout(0);
827
828 exiting = FALSE;
829 cmdmod = save_cmdmod;
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000830 gui_update_screen(); /* redraw, window may show changed buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831}
832#endif
833
834/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200835 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 * first font name that works is used. If none is found, use the default
837 * font.
838 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
839 * Return OK when able to set the font. When it failed FAIL is returned and
840 * the fonts are unchanged.
841 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100843gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844{
845#define FONTLEN 320
846 char_u font_name[FONTLEN];
847 int font_list_empty = FALSE;
848 int ret = FAIL;
849
850 if (!gui.in_use)
851 return FAIL;
852
853 font_name[0] = NUL;
854 if (*font_list == NUL)
855 font_list_empty = TRUE;
856 else
857 {
858#ifdef FEAT_XFONTSET
859 /* When using a fontset, the whole list of fonts is one name. */
860 if (fontset)
861 ret = gui_mch_init_font(font_list, TRUE);
862 else
863#endif
864 while (*font_list != NUL)
865 {
866 /* Isolate one comma separated font name. */
867 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
868
869 /* Careful!!! The Win32 version of gui_mch_init_font(), when
870 * called with "*" will change p_guifont to the selected font
871 * name, which frees the old value. This makes font_list
872 * invalid. Thus when OK is returned here, font_list must no
873 * longer be used! */
874 if (gui_mch_init_font(font_name, FALSE) == OK)
875 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200876#if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 /* If it's a Unicode font, try setting 'guifontwide' to a
878 * similar double-width font. */
879 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
880 && strstr((char *)font_name, "10646") != NULL)
881 set_guifontwide(font_name);
882#endif
883 ret = OK;
884 break;
885 }
886 }
887 }
888
889 if (ret != OK
890 && STRCMP(font_list, "*") != 0
891 && (font_list_empty || gui.norm_font == NOFONT))
892 {
893 /*
894 * Couldn't load any font in 'font_list', keep the current font if
895 * there is one. If 'font_list' is empty, or if there is no current
896 * font, tell gui_mch_init_font() to try to find a font we can load.
897 */
898 ret = gui_mch_init_font(NULL, FALSE);
899 }
900
901 if (ret == OK)
902 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200903#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 /* Set normal font as current font */
905# ifdef FEAT_XFONTSET
906 if (gui.fontset != NOFONTSET)
907 gui_mch_set_fontset(gui.fontset);
908 else
909# endif
910 gui_mch_set_font(gui.norm_font);
911#endif
Bram Moolenaarb0316262012-11-20 12:03:06 +0100912 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 }
914
915 return ret;
916}
917
918#if defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200919# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920/*
921 * Try setting 'guifontwide' to a font twice as wide as "name".
922 */
923 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100924set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925{
926 int i = 0;
927 char_u wide_name[FONTLEN + 10]; /* room for 2 * width and '*' */
928 char_u *wp = NULL;
929 char_u *p;
930 GuiFont font;
931
932 wp = wide_name;
933 for (p = name; *p != NUL; ++p)
934 {
935 *wp++ = *p;
936 if (*p == '-')
937 {
938 ++i;
939 if (i == 6) /* font type: change "--" to "-*-" */
940 {
941 if (p[1] == '-')
942 *wp++ = '*';
943 }
944 else if (i == 12) /* found the width */
945 {
946 ++p;
947 i = getdigits(&p);
948 if (i != 0)
949 {
950 /* Double the width specification. */
951 sprintf((char *)wp, "%d%s", i * 2, p);
952 font = gui_mch_get_font(wide_name, FALSE);
953 if (font != NOFONT)
954 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000955 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 gui.wide_font = font;
957 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000958 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 }
960 }
961 break;
962 }
963 }
964 }
965}
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200966# endif /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
968/*
969 * Get the font for 'guifontwide'.
970 * Return FAIL for an invalid font name.
971 */
972 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100973gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 GuiFont font = NOFONT;
976 char_u font_name[FONTLEN];
977 char_u *p;
978
979 if (!gui.in_use) /* Can't allocate font yet, assume it's OK. */
980 return OK; /* Will give an error message later. */
981
982 if (p_guifontwide != NULL && *p_guifontwide != NUL)
983 {
984 for (p = p_guifontwide; *p != NUL; )
985 {
986 /* Isolate one comma separated font name. */
987 (void)copy_option_part(&p, font_name, FONTLEN, ",");
988 font = gui_mch_get_font(font_name, FALSE);
989 if (font != NOFONT)
990 break;
991 }
992 if (font == NOFONT)
993 return FAIL;
994 }
995
996 gui_mch_free_font(gui.wide_font);
Bram Moolenaarcdffbea2013-04-03 21:11:39 +0200997# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
999 if (font != NOFONT && gui.norm_font != NOFONT
1000 && pango_font_description_equal(font, gui.norm_font))
1001 {
1002 gui.wide_font = NOFONT;
1003 gui_mch_free_font(font);
1004 }
1005 else
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001006# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 gui.wide_font = font;
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001008# ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001009 gui_mch_wide_font_changed();
Bram Moolenaardb250522013-06-17 22:43:25 +02001010# else
1011 /*
1012 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1013 * support those fonts for 'guifontwide'.
1014 */
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001015# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 return OK;
1017}
1018#endif
1019
1020 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001021gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022{
1023 gui.row = row;
1024 gui.col = col;
1025}
1026
1027/*
1028 * gui_check_pos - check if the cursor is on the screen.
1029 */
1030 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001031gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032{
1033 if (gui.row >= screen_Rows)
1034 gui.row = screen_Rows - 1;
1035 if (gui.col >= screen_Columns)
1036 gui.col = screen_Columns - 1;
1037 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1038 gui.cursor_is_valid = FALSE;
1039}
1040
1041/*
1042 * Redraw the cursor if necessary or when forced.
1043 * Careful: The contents of ScreenLines[] must match what is on the screen,
1044 * otherwise this goes wrong. May need to call out_flush() first.
1045 */
1046 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001047gui_update_cursor(
1048 int force, /* when TRUE, update even when not moved */
1049 int clear_selection)/* clear selection under cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
1051 int cur_width = 0;
1052 int cur_height = 0;
1053 int old_hl_mask;
1054 int idx;
1055 int id;
1056 guicolor_T cfg, cbg, cc; /* cursor fore-/background color */
1057 int cattr; /* cursor attributes */
1058 int attr;
1059 attrentry_T *aep = NULL;
1060
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001061 /* Don't update the cursor when halfway busy scrolling or the screen size
1062 * doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. */
1063 if (!can_update_cursor || screen_Columns != gui.num_cols
1064 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 return;
1066
1067 gui_check_pos();
1068 if (!gui.cursor_is_valid || force
1069 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1070 {
1071 gui_undraw_cursor();
1072 if (gui.row < 0)
1073 return;
1074#ifdef USE_IM_CONTROL
1075 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1076 im_set_position(gui.row, gui.col);
1077#endif
1078 gui.cursor_row = gui.row;
1079 gui.cursor_col = gui.col;
1080
1081 /* Only write to the screen after ScreenLines[] has been initialized */
1082 if (!screen_cleared || ScreenLines == NULL)
1083 return;
1084
1085 /* Clear the selection if we are about to write over it */
1086 if (clear_selection)
1087 clip_may_clear_selection(gui.row, gui.row);
1088 /* Check that the cursor is inside the shell (resizing may have made
1089 * it invalid) */
1090 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1091 return;
1092
1093 gui.cursor_is_valid = TRUE;
1094
1095 /*
1096 * How the cursor is drawn depends on the current mode.
1097 */
1098 idx = get_shape_idx(FALSE);
1099 if (State & LANGMAP)
1100 id = shape_table[idx].id_lm;
1101 else
1102 id = shape_table[idx].id;
1103
1104 /* get the colors and attributes for the cursor. Default is inverted */
1105 cfg = INVALCOLOR;
1106 cbg = INVALCOLOR;
1107 cattr = HL_INVERSE;
1108 gui_mch_set_blinking(shape_table[idx].blinkwait,
1109 shape_table[idx].blinkon,
1110 shape_table[idx].blinkoff);
1111 if (id > 0)
1112 {
1113 cattr = syn_id2colors(id, &cfg, &cbg);
1114#if defined(USE_IM_CONTROL) || defined(FEAT_HANGULIN)
1115 {
1116 static int iid;
1117 guicolor_T fg, bg;
1118
Bram Moolenaarc236c162008-07-13 17:41:49 +00001119 if (
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001120# if defined(FEAT_GUI_GTK) && !defined(FEAT_HANGULIN)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001121 preedit_get_status()
1122# else
1123 im_get_status()
1124# endif
1125 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 {
1127 iid = syn_name2id((char_u *)"CursorIM");
1128 if (iid > 0)
1129 {
1130 syn_id2colors(iid, &fg, &bg);
1131 if (bg != INVALCOLOR)
1132 cbg = bg;
1133 if (fg != INVALCOLOR)
1134 cfg = fg;
1135 }
1136 }
1137 }
1138#endif
1139 }
1140
1141 /*
1142 * Get the attributes for the character under the cursor.
1143 * When no cursor color was given, use the character color.
1144 */
1145 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1146 if (attr > HL_ALL)
1147 aep = syn_gui_attr2entry(attr);
1148 if (aep != NULL)
1149 {
1150 attr = aep->ae_attr;
1151 if (cfg == INVALCOLOR)
1152 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1153 : aep->ae_u.gui.fg_color);
1154 if (cbg == INVALCOLOR)
1155 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1156 : aep->ae_u.gui.bg_color);
1157 }
1158 if (cfg == INVALCOLOR)
1159 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1160 if (cbg == INVALCOLOR)
1161 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1162
1163#ifdef FEAT_XIM
1164 if (aep != NULL)
1165 {
1166 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1167 : aep->ae_u.gui.bg_color);
1168 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1169 : aep->ae_u.gui.fg_color);
1170 if (xim_bg_color == INVALCOLOR)
1171 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1172 : gui.back_pixel;
1173 if (xim_fg_color == INVALCOLOR)
1174 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1175 : gui.norm_pixel;
1176 }
1177 else
1178 {
1179 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1180 : gui.back_pixel;
1181 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1182 : gui.norm_pixel;
1183 }
1184#endif
1185
1186 attr &= ~HL_INVERSE;
1187 if (cattr & HL_INVERSE)
1188 {
1189 cc = cbg;
1190 cbg = cfg;
1191 cfg = cc;
1192 }
1193 cattr &= ~HL_INVERSE;
1194
1195 /*
1196 * When we don't have window focus, draw a hollow cursor.
1197 */
1198 if (!gui.in_focus)
1199 {
1200 gui_mch_draw_hollow_cursor(cbg);
1201 return;
1202 }
1203
1204 old_hl_mask = gui.highlight_mask;
1205 if (shape_table[idx].shape == SHAPE_BLOCK
1206#ifdef FEAT_HANGULIN
1207 || composing_hangul
1208#endif
1209 )
1210 {
1211 /*
1212 * Draw the text character with the cursor colors. Use the
1213 * character attributes plus the cursor attributes.
1214 */
1215 gui.highlight_mask = (cattr | attr);
1216#ifdef FEAT_HANGULIN
1217 if (composing_hangul)
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001218 {
1219 char_u *comp_buf;
1220 int comp_len;
1221
1222 comp_buf = hangul_composing_buffer_get(&comp_len);
1223 if (comp_buf)
1224 {
1225 (void)gui_outstr_nowrap(comp_buf, comp_len,
1226 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR,
1227 cfg, cbg, 0);
1228 vim_free(comp_buf);
1229 }
1230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 else
1232#endif
1233 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1234 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1235 }
1236 else
1237 {
1238#if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1239 int col_off = FALSE;
1240#endif
1241 /*
1242 * First draw the partial cursor, then overwrite with the text
1243 * character, using a transparent background.
1244 */
1245 if (shape_table[idx].shape == SHAPE_VER)
1246 {
1247 cur_height = gui.char_height;
1248 cur_width = (gui.char_width * shape_table[idx].percentage
1249 + 99) / 100;
1250 }
1251 else
1252 {
1253 cur_height = (gui.char_height * shape_table[idx].percentage
1254 + 99) / 100;
1255 cur_width = gui.char_width;
1256 }
1257#ifdef FEAT_MBYTE
Bram Moolenaar367329b2007-08-30 11:53:22 +00001258 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1259 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
1261 /* Double wide character. */
1262 if (shape_table[idx].shape != SHAPE_VER)
1263 cur_width += gui.char_width;
1264# ifdef FEAT_RIGHTLEFT
1265 if (CURSOR_BAR_RIGHT)
1266 {
1267 /* gui.col points to the left halve of the character but
1268 * the vertical line needs to be on the right halve.
1269 * A double-wide horizontal line is also drawn from the
1270 * right halve in gui_mch_draw_part_cursor(). */
1271 col_off = TRUE;
1272 ++gui.col;
1273 }
1274# endif
1275 }
1276#endif
1277 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
1278#if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1279 if (col_off)
1280 --gui.col;
1281#endif
1282
1283#ifndef FEAT_GUI_MSWIN /* doesn't seem to work for MSWindows */
1284 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1285 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1286 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1287 (guicolor_T)0, (guicolor_T)0, 0);
1288#endif
1289 }
1290 gui.highlight_mask = old_hl_mask;
1291 }
1292}
1293
1294#if defined(FEAT_MENU) || defined(PROTO)
1295 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001296gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001298# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (gui.menu_is_active && gui.in_use)
1300 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1301# endif
1302}
1303#endif
1304
1305/*
1306 * Position the various GUI components (text area, menu). The vertical
1307 * scrollbars are NOT handled here. See gui_update_scrollbars().
1308 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001310gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311{
1312 int text_area_x;
1313 int text_area_y;
1314 int text_area_width;
1315 int text_area_height;
1316
1317 /* avoid that moving components around generates events */
1318 ++hold_gui_events;
1319
1320 text_area_x = 0;
1321 if (gui.which_scrollbars[SBAR_LEFT])
1322 text_area_x += gui.scrollbar_width;
1323
1324 text_area_y = 0;
1325#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1326 gui.menu_width = total_width;
1327 if (gui.menu_is_active)
1328 text_area_y += gui.menu_height;
1329#endif
1330#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1331 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1332 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1333#endif
1334
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001335# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001336 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001337 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001338 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001339#endif
1340
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1342 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1343 {
1344# ifdef FEAT_GUI_ATHENA
1345 gui_mch_set_toolbar_pos(0, text_area_y,
1346 gui.menu_width, gui.toolbar_height);
1347# endif
1348 text_area_y += gui.toolbar_height;
1349 }
1350#endif
1351
1352 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1353 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1354
1355 gui_mch_set_text_area_pos(text_area_x,
1356 text_area_y,
1357 text_area_width,
1358 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001359#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 + xim_get_status_area_height()
1361#endif
1362 );
1363#ifdef FEAT_MENU
1364 gui_position_menu();
1365#endif
1366 if (gui.which_scrollbars[SBAR_BOTTOM])
1367 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1368 text_area_x,
1369 text_area_y + text_area_height,
1370 text_area_width,
1371 gui.scrollbar_height);
1372 gui.left_sbar_x = 0;
1373 gui.right_sbar_x = text_area_x + text_area_width;
1374
1375 --hold_gui_events;
1376}
1377
Bram Moolenaar02743632005-07-25 20:42:36 +00001378/*
1379 * Get the width of the widgets and decorations to the side of the text area.
1380 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001382gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383{
1384 int base_width;
1385
1386 base_width = 2 * gui.border_offset;
1387 if (gui.which_scrollbars[SBAR_LEFT])
1388 base_width += gui.scrollbar_width;
1389 if (gui.which_scrollbars[SBAR_RIGHT])
1390 base_width += gui.scrollbar_width;
1391 return base_width;
1392}
1393
Bram Moolenaar02743632005-07-25 20:42:36 +00001394/*
1395 * Get the height of the widgets and decorations above and below the text area.
1396 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001398gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399{
1400 int base_height;
1401
1402 base_height = 2 * gui.border_offset;
1403 if (gui.which_scrollbars[SBAR_BOTTOM])
1404 base_height += gui.scrollbar_height;
1405#ifdef FEAT_GUI_GTK
1406 /* We can't take the sizes properly into account until anything is
1407 * realized. Therefore we recalculate all the values here just before
1408 * setting the size. (--mdcki) */
1409#else
1410# ifdef FEAT_MENU
1411 if (gui.menu_is_active)
1412 base_height += gui.menu_height;
1413# endif
1414# ifdef FEAT_TOOLBAR
1415 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1416# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1417 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1418# else
1419 base_height += gui.toolbar_height;
1420# endif
1421# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001422# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1423 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001424 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001425 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001426# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427# ifdef FEAT_FOOTER
1428 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1429 base_height += gui.footer_height;
1430# endif
1431# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1432 base_height += gui_mch_text_area_extra_height();
1433# endif
1434#endif
1435 return base_height;
1436}
1437
1438/*
1439 * Should be called after the GUI shell has been resized. Its arguments are
1440 * the new width and height of the shell in pixels.
1441 */
1442 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001443gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
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
1461again:
1462 busy = TRUE;
1463
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 /* Flush pending output before redrawing */
1465 out_flush();
1466
1467 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001468 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469
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
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 gui_update_scrollbars(TRUE);
1487 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001488#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 xim_set_status_area();
1490#endif
1491
1492 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001493
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 /*
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
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001512gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513{
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
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001529gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530{
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.
Bram Moolenaar02743632005-07-25 20:42:36 +00001538 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1539 * on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001542gui_set_shellsize(
1543 int mustset UNUSED, /* set by the user */
1544 int fit_to_display,
1545 int direction) /* RESIZE_HOR, RESIZE_VER */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546{
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;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001555#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001556 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001557 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001558#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001559 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
1561 if (!gui.shell_created)
1562 return;
1563
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001564#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 /* 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();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001576 if (fit_to_display)
1577 /* Remember the original window position. */
Bram Moolenaarcde88542015-08-11 19:14:00 +02001578 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001579
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580#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);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001597 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
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;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001603#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001604 ++did_adjust;
1605#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001607 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 {
1609 Rows = (screen_h - base_height) / gui.char_height;
1610 check_shellsize();
1611 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001612#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001613 ++did_adjust;
1614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001616#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001617 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001623 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 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;
Bram Moolenaar09736232009-09-23 16:14:49 +00001629#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001630 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001631#endif
1632
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001633#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001634 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001647 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001649 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). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 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
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001668gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669{
1670 gui_reset_scroll_region();
1671}
1672
1673/*
1674 * Make scroll region cover whole screen.
1675 */
1676 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001677gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678{
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
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001686gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687{
1688 if (mask > HL_ALL) /* highlight code */
1689 gui.highlight_mask = mask;
1690 else /* mask */
1691 gui.highlight_mask |= mask;
1692}
1693
1694 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001695gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696{
1697 if (mask > HL_ALL) /* highlight code */
1698 gui.highlight_mask = HL_NORMAL;
1699 else /* mask */
1700 gui.highlight_mask &= ~mask;
1701}
1702
1703/*
1704 * Clear a rectangular region of the screen from text pos (row1, col1) to
1705 * (row2, col2) inclusive.
1706 */
1707 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001708gui_clear_block(
1709 int row1,
1710 int col1,
1711 int row2,
1712 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
1714 /* Clear the selection if we are about to write over it */
1715 clip_may_clear_selection(row1, row2);
1716
1717 gui_mch_clear_block(row1, col1, row2, col2);
1718
1719 /* Invalidate cursor if it was in this block */
1720 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1721 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1722 gui.cursor_is_valid = FALSE;
1723}
1724
1725/*
1726 * Write code to update the cursor later. This avoids the need to flush the
1727 * output buffer before calling gui_update_cursor().
1728 */
1729 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001730gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001732 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733}
1734
1735 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001736gui_write(
1737 char_u *s,
1738 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739{
1740 char_u *p;
1741 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 int force_cursor = FALSE; /* force cursor update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 int force_scrollbar = FALSE;
1744 static win_T *old_curwin = NULL;
1745
1746/* #define DEBUG_GUI_WRITE */
1747#ifdef DEBUG_GUI_WRITE
1748 {
1749 int i;
1750 char_u *str;
1751
1752 printf("gui_write(%d):\n ", len);
1753 for (i = 0; i < len; i++)
1754 if (s[i] == ESC)
1755 {
1756 if (i != 0)
1757 printf("\n ");
1758 printf("<ESC>");
1759 }
1760 else
1761 {
1762 str = transchar_byte(s[i]);
1763 if (str[0] && str[1])
1764 printf("<%s>", (char *)str);
1765 else
1766 printf("%s", (char *)str);
1767 }
1768 printf("\n");
1769 }
1770#endif
1771 while (len)
1772 {
1773 if (s[0] == ESC && s[1] == '|')
1774 {
1775 p = s + 2;
1776 if (VIM_ISDIGIT(*p))
1777 {
1778 arg1 = getdigits(&p);
1779 if (p > s + len)
1780 break;
1781 if (*p == ';')
1782 {
1783 ++p;
1784 arg2 = getdigits(&p);
1785 if (p > s + len)
1786 break;
1787 }
1788 }
1789 switch (*p)
1790 {
1791 case 'C': /* Clear screen */
1792 clip_scroll_selection(9999);
1793 gui_mch_clear_all();
1794 gui.cursor_is_valid = FALSE;
1795 force_scrollbar = TRUE;
1796 break;
1797 case 'M': /* Move cursor */
1798 gui_set_cursor(arg1, arg2);
1799 break;
1800 case 's': /* force cursor (shape) update */
1801 force_cursor = TRUE;
1802 break;
1803 case 'R': /* Set scroll region */
1804 if (arg1 < arg2)
1805 {
1806 gui.scroll_region_top = arg1;
1807 gui.scroll_region_bot = arg2;
1808 }
1809 else
1810 {
1811 gui.scroll_region_top = arg2;
1812 gui.scroll_region_bot = arg1;
1813 }
1814 break;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01001815#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 case 'V': /* Set vertical scroll region */
1817 if (arg1 < arg2)
1818 {
1819 gui.scroll_region_left = arg1;
1820 gui.scroll_region_right = arg2;
1821 }
1822 else
1823 {
1824 gui.scroll_region_left = arg2;
1825 gui.scroll_region_right = arg1;
1826 }
1827 break;
1828#endif
1829 case 'd': /* Delete line */
1830 gui_delete_lines(gui.row, 1);
1831 break;
1832 case 'D': /* Delete lines */
1833 gui_delete_lines(gui.row, arg1);
1834 break;
1835 case 'i': /* Insert line */
1836 gui_insert_lines(gui.row, 1);
1837 break;
1838 case 'I': /* Insert lines */
1839 gui_insert_lines(gui.row, arg1);
1840 break;
1841 case '$': /* Clear to end-of-line */
1842 gui_clear_block(gui.row, gui.col, gui.row,
1843 (int)Columns - 1);
1844 break;
1845 case 'h': /* Turn on highlighting */
1846 gui_start_highlight(arg1);
1847 break;
1848 case 'H': /* Turn off highlighting */
1849 gui_stop_highlight(arg1);
1850 break;
1851 case 'f': /* flash the window (visual bell) */
1852 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1853 break;
1854 default:
1855 p = s + 1; /* Skip the ESC */
1856 break;
1857 }
1858 len -= (int)(++p - s);
1859 s = p;
1860 }
1861 else if (
1862#ifdef EBCDIC
1863 CtrlChar(s[0]) != 0 /* Ctrl character */
1864#else
1865 s[0] < 0x20 /* Ctrl character */
1866#endif
1867#ifdef FEAT_SIGN_ICONS
1868 && s[0] != SIGN_BYTE
1869# ifdef FEAT_NETBEANS_INTG
1870 && s[0] != MULTISIGN_BYTE
1871# endif
1872#endif
1873 )
1874 {
1875 if (s[0] == '\n') /* NL */
1876 {
1877 gui.col = 0;
1878 if (gui.row < gui.scroll_region_bot)
1879 gui.row++;
1880 else
1881 gui_delete_lines(gui.scroll_region_top, 1);
1882 }
1883 else if (s[0] == '\r') /* CR */
1884 {
1885 gui.col = 0;
1886 }
1887 else if (s[0] == '\b') /* Backspace */
1888 {
1889 if (gui.col)
1890 --gui.col;
1891 }
1892 else if (s[0] == Ctrl_L) /* cursor-right */
1893 {
1894 ++gui.col;
1895 }
1896 else if (s[0] == Ctrl_G) /* Beep */
1897 {
1898 gui_mch_beep();
1899 }
1900 /* Other Ctrl character: shouldn't happen! */
1901
1902 --len; /* Skip this char */
1903 ++s;
1904 }
1905 else
1906 {
1907 p = s;
1908 while (len > 0 && (
1909#ifdef EBCDIC
1910 CtrlChar(*p) == 0
1911#else
1912 *p >= 0x20
1913#endif
1914#ifdef FEAT_SIGN_ICONS
1915 || *p == SIGN_BYTE
1916# ifdef FEAT_NETBEANS_INTG
1917 || *p == MULTISIGN_BYTE
1918# endif
1919#endif
1920 ))
1921 {
1922 len--;
1923 p++;
1924 }
1925 gui_outstr(s, (int)(p - s));
1926 s = p;
1927 }
1928 }
1929
1930 /* Postponed update of the cursor (won't work if "can_update_cursor" isn't
1931 * set). */
1932 if (force_cursor)
1933 gui_update_cursor(TRUE, TRUE);
1934
1935 /* When switching to another window the dragging must have stopped.
1936 * Required for GTK, dragged_sb isn't reset. */
1937 if (old_curwin != curwin)
1938 gui.dragged_sb = SBAR_NONE;
1939
1940 /* Update the scrollbars after clearing the screen or when switched
1941 * to another window.
1942 * Update the horizontal scrollbar always, it's difficult to check all
1943 * situations where it might change. */
1944 if (force_scrollbar || old_curwin != curwin)
1945 gui_update_scrollbars(force_scrollbar);
1946 else
1947 gui_update_horiz_scrollbar(FALSE);
1948 old_curwin = curwin;
1949
1950 /*
1951 * We need to make sure this is cleared since Athena doesn't tell us when
1952 * he is done dragging. Do the same for GTK.
1953 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00001954#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 gui.dragged_sb = SBAR_NONE;
1956#endif
1957
1958 gui_mch_flush(); /* In case vim decides to take a nap */
1959}
1960
1961/*
1962 * When ScreenLines[] is invalid, updating the cursor should not be done, it
1963 * produces wrong results. Call gui_dont_update_cursor() before that code and
1964 * gui_can_update_cursor() afterwards.
1965 */
1966 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001967gui_dont_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968{
1969 if (gui.in_use)
1970 {
1971 /* Undraw the cursor now, we probably can't do it after the change. */
1972 gui_undraw_cursor();
1973 can_update_cursor = FALSE;
1974 }
1975}
1976
1977 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001978gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979{
1980 can_update_cursor = TRUE;
1981 /* No need to update the cursor right now, there is always more output
1982 * after scrolling. */
1983}
1984
1985 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001986gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 int this_len;
1989#ifdef FEAT_MBYTE
1990 int cells;
1991#endif
1992
1993 if (len == 0)
1994 return;
1995
1996 if (len < 0)
1997 len = (int)STRLEN(s);
1998
1999 while (len > 0)
2000 {
2001#ifdef FEAT_MBYTE
2002 if (has_mbyte)
2003 {
2004 /* Find out how many chars fit in the current line. */
2005 cells = 0;
2006 for (this_len = 0; this_len < len; )
2007 {
2008 cells += (*mb_ptr2cells)(s + this_len);
2009 if (gui.col + cells > Columns)
2010 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002011 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 }
2013 if (this_len > len)
2014 this_len = len; /* don't include following composing char */
2015 }
2016 else
2017#endif
2018 if (gui.col + len > Columns)
2019 this_len = Columns - gui.col;
2020 else
2021 this_len = len;
2022
2023 (void)gui_outstr_nowrap(s, this_len,
2024 0, (guicolor_T)0, (guicolor_T)0, 0);
2025 s += this_len;
2026 len -= this_len;
2027#ifdef FEAT_MBYTE
2028 /* fill up for a double-width char that doesn't fit. */
2029 if (len > 0 && gui.col < Columns)
2030 (void)gui_outstr_nowrap((char_u *)" ", 1,
2031 0, (guicolor_T)0, (guicolor_T)0, 0);
2032#endif
2033 /* The cursor may wrap to the next line. */
2034 if (gui.col >= Columns)
2035 {
2036 gui.col = 0;
2037 gui.row++;
2038 }
2039 }
2040}
2041
2042/*
2043 * Output one character (may be one or two display cells).
2044 * Caller must check for valid "off".
2045 * Returns FAIL or OK, just like gui_outstr_nowrap().
2046 */
2047 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002048gui_screenchar(
2049 int off, /* Offset from start of screen */
2050 int flags,
2051 guicolor_T fg, /* colors for cursor */
2052 guicolor_T bg, /* colors for cursor */
2053 int back) /* backup this many chars when using bold trick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054{
2055#ifdef FEAT_MBYTE
2056 char_u buf[MB_MAXBYTES + 1];
2057
2058 /* Don't draw right halve of a double-width UTF-8 char. "cannot happen" */
2059 if (enc_utf8 && ScreenLines[off] == 0)
2060 return OK;
2061
2062 if (enc_utf8 && ScreenLinesUC[off] != 0)
2063 /* Draw UTF-8 multi-byte character. */
2064 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2065 flags, fg, bg, back);
2066
2067 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2068 {
2069 buf[0] = ScreenLines[off];
2070 buf[1] = ScreenLines2[off];
2071 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2072 }
2073
2074 /* Draw non-multi-byte character or DBCS character. */
2075 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002076 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 flags, fg, bg, back);
2078#else
2079 return gui_outstr_nowrap(ScreenLines + off, 1, flags, fg, bg, back);
2080#endif
2081}
2082
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002083#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084/*
2085 * Output the string at the given screen position. This is used in place
2086 * of gui_screenchar() where possible because Pango needs as much context
2087 * as possible to work nicely. It's a lot faster as well.
2088 */
2089 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002090gui_screenstr(
2091 int off, /* Offset from start of screen */
2092 int len, /* string length in screen cells */
2093 int flags,
2094 guicolor_T fg, /* colors for cursor */
2095 guicolor_T bg, /* colors for cursor */
2096 int back) /* backup this many chars when using bold trick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097{
2098 char_u *buf;
2099 int outlen = 0;
2100 int i;
2101 int retval;
2102
2103 if (len <= 0) /* "cannot happen"? */
2104 return OK;
2105
2106 if (enc_utf8)
2107 {
2108 buf = alloc((unsigned)(len * MB_MAXBYTES + 1));
2109 if (buf == NULL)
2110 return OK; /* not much we could do here... */
2111
2112 for (i = off; i < off + len; ++i)
2113 {
2114 if (ScreenLines[i] == 0)
2115 continue; /* skip second half of double-width char */
2116
2117 if (ScreenLinesUC[i] == 0)
2118 buf[outlen++] = ScreenLines[i];
2119 else
2120 outlen += utfc_char2bytes(i, buf + outlen);
2121 }
2122
2123 buf[outlen] = NUL; /* only to aid debugging */
2124 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2125 vim_free(buf);
2126
2127 return retval;
2128 }
2129 else if (enc_dbcs == DBCS_JPNU)
2130 {
2131 buf = alloc((unsigned)(len * 2 + 1));
2132 if (buf == NULL)
2133 return OK; /* not much we could do here... */
2134
2135 for (i = off; i < off + len; ++i)
2136 {
2137 buf[outlen++] = ScreenLines[i];
2138
2139 /* handle double-byte single-width char */
2140 if (ScreenLines[i] == 0x8e)
2141 buf[outlen++] = ScreenLines2[i];
2142 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2143 buf[outlen++] = ScreenLines[++i];
2144 }
2145
2146 buf[outlen] = NUL; /* only to aid debugging */
2147 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2148 vim_free(buf);
2149
2150 return retval;
2151 }
2152 else
2153 {
2154 return gui_outstr_nowrap(&ScreenLines[off], len,
2155 flags, fg, bg, back);
2156 }
2157}
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002158#endif /* FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160/*
2161 * Output the given string at the current cursor position. If the string is
2162 * too long to fit on the line, then it is truncated.
2163 * "flags":
2164 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2165 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002166 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 * background.
2168 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2169 * it.
2170 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2171 * FAIL (the caller should start drawing "back" chars back).
2172 */
2173 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002174gui_outstr_nowrap(
2175 char_u *s,
2176 int len,
2177 int flags,
2178 guicolor_T fg, /* colors for cursor */
2179 guicolor_T bg, /* colors for cursor */
2180 int back) /* backup this many chars when using bold trick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181{
2182 long_u highlight_mask;
2183 long_u hl_mask_todo;
2184 guicolor_T fg_color;
2185 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002186 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002187#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002189# ifdef FEAT_MBYTE
2190 GuiFont wide_font = NOFONT;
2191# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192# ifdef FEAT_XFONTSET
2193 GuiFontset fontset = NOFONTSET;
2194# endif
2195#endif
2196 attrentry_T *aep = NULL;
2197 int draw_flags;
2198 int col = gui.col;
2199#ifdef FEAT_SIGN_ICONS
2200 int draw_sign = FALSE;
2201# ifdef FEAT_NETBEANS_INTG
2202 int multi_sign = FALSE;
2203# endif
2204#endif
2205
2206 if (len < 0)
2207 len = (int)STRLEN(s);
2208 if (len == 0)
2209 return OK;
2210
2211#ifdef FEAT_SIGN_ICONS
2212 if (*s == SIGN_BYTE
2213# ifdef FEAT_NETBEANS_INTG
2214 || *s == MULTISIGN_BYTE
2215# endif
2216 )
2217 {
2218# ifdef FEAT_NETBEANS_INTG
2219 if (*s == MULTISIGN_BYTE)
2220 multi_sign = TRUE;
2221# endif
2222 /* draw spaces instead */
2223 s = (char_u *)" ";
2224 if (len == 1 && col > 0)
2225 --col;
2226 len = 2;
2227 draw_sign = TRUE;
2228 highlight_mask = 0;
2229 }
2230 else
2231#endif
2232 if (gui.highlight_mask > HL_ALL)
2233 {
2234 aep = syn_gui_attr2entry(gui.highlight_mask);
2235 if (aep == NULL) /* highlighting not set */
2236 highlight_mask = 0;
2237 else
2238 highlight_mask = aep->ae_attr;
2239 }
2240 else
2241 highlight_mask = gui.highlight_mask;
2242 hl_mask_todo = highlight_mask;
2243
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002244#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 /* Set the font */
2246 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2247 font = aep->ae_u.gui.font;
2248# ifdef FEAT_XFONTSET
2249 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2250 fontset = aep->ae_u.gui.fontset;
2251# endif
2252 else
2253 {
2254# ifdef FEAT_XFONTSET
2255 if (gui.fontset != NOFONTSET)
2256 fontset = gui.fontset;
2257 else
2258# endif
2259 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2260 {
2261 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2262 {
2263 font = gui.boldital_font;
2264 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2265 }
2266 else if (gui.bold_font != NOFONT)
2267 {
2268 font = gui.bold_font;
2269 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2270 }
2271 else
2272 font = gui.norm_font;
2273 }
2274 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2275 {
2276 font = gui.ital_font;
2277 hl_mask_todo &= ~HL_ITALIC;
2278 }
2279 else
2280 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002281
2282# ifdef FEAT_MBYTE
2283 /*
2284 * Choose correct wide_font by font. wide_font should be set with font
2285 * at same time in above block. But it will make many "ifdef" nasty
2286 * blocks. So we do it here.
2287 */
2288 if (font == gui.boldital_font && gui.wide_boldital_font)
2289 wide_font = gui.wide_boldital_font;
2290 else if (font == gui.bold_font && gui.wide_bold_font)
2291 wide_font = gui.wide_bold_font;
2292 else if (font == gui.ital_font && gui.wide_ital_font)
2293 wide_font = gui.wide_ital_font;
2294 else if (font == gui.norm_font && gui.wide_font)
2295 wide_font = gui.wide_font;
2296# endif
2297
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 }
2299# ifdef FEAT_XFONTSET
2300 if (fontset != NOFONTSET)
2301 gui_mch_set_fontset(fontset);
2302 else
2303# endif
2304 gui_mch_set_font(font);
2305#endif
2306
2307 draw_flags = 0;
2308
2309 /* Set the color */
2310 bg_color = gui.back_pixel;
2311 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2312 {
2313 draw_flags |= DRAW_CURSOR;
2314 fg_color = fg;
2315 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002316 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 }
2318 else if (aep != NULL)
2319 {
2320 fg_color = aep->ae_u.gui.fg_color;
2321 if (fg_color == INVALCOLOR)
2322 fg_color = gui.norm_pixel;
2323 bg_color = aep->ae_u.gui.bg_color;
2324 if (bg_color == INVALCOLOR)
2325 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002326 sp_color = aep->ae_u.gui.sp_color;
2327 if (sp_color == INVALCOLOR)
2328 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 }
2330 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002331 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002333 sp_color = fg_color;
2334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335
2336 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2337 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002338#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 gui_mch_set_colors(bg_color, fg_color);
2340#else
2341 gui_mch_set_fg_color(bg_color);
2342 gui_mch_set_bg_color(fg_color);
2343#endif
2344 }
2345 else
2346 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002347#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 gui_mch_set_colors(fg_color, bg_color);
2349#else
2350 gui_mch_set_fg_color(fg_color);
2351 gui_mch_set_bg_color(bg_color);
2352#endif
2353 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002354 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355
2356 /* Clear the selection if we are about to write over it */
2357 if (!(flags & GUI_MON_NOCLEAR))
2358 clip_may_clear_selection(gui.row, gui.row);
2359
2360
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 /* If there's no bold font, then fake it */
2362 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2363 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364
2365 /*
2366 * When drawing bold or italic characters the spill-over from the left
2367 * neighbor may be destroyed. Let the caller backup to start redrawing
2368 * just after a blank.
2369 */
2370 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2371 return FAIL;
2372
Bram Moolenaare60acc12011-05-10 16:41:25 +02002373#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 /* If there's no italic font, then fake it.
2375 * For GTK2, we don't need a different font for italic style. */
2376 if (hl_mask_todo & HL_ITALIC)
2377 draw_flags |= DRAW_ITALIC;
2378
2379 /* Do we underline the text? */
2380 if (hl_mask_todo & HL_UNDERLINE)
2381 draw_flags |= DRAW_UNDERL;
2382#else
2383 /* Do we underline the text? */
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002384 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 draw_flags |= DRAW_UNDERL;
2386#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00002387 /* Do we undercurl the text? */
2388 if (hl_mask_todo & HL_UNDERCURL)
2389 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002391 /* Do we draw transparently? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 if (flags & GUI_MON_TRS_CURSOR)
2393 draw_flags |= DRAW_TRANSP;
2394
2395 /*
2396 * Draw the text.
2397 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002398#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 /* The value returned is the length in display cells */
2400 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2401#else
2402# ifdef FEAT_MBYTE
2403 if (enc_utf8)
2404 {
2405 int start; /* index of bytes to be drawn */
2406 int cells; /* cellwidth of bytes to be drawn */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002407 int thislen; /* length of bytes to be drawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 int cn; /* cellwidth of current char */
2409 int i; /* index of current char */
2410 int c; /* current char value */
2411 int cl; /* byte length of current char */
2412 int comping; /* current char is composing */
2413 int scol = col; /* screen column */
Bram Moolenaar45933962013-01-23 17:43:57 +01002414 int curr_wide; /* use 'guifontwide' */
2415 int prev_wide = FALSE;
2416 int wide_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417
2418 /* Break the string at a composing character, it has to be drawn on
2419 * top of the previous character. */
2420 start = 0;
2421 cells = 0;
2422 for (i = 0; i < len; i += cl)
2423 {
2424 c = utf_ptr2char(s + i);
2425 cn = utf_char2cells(c);
2426 if (cn > 1
2427# ifdef FEAT_XFONTSET
2428 && fontset == NOFONTSET
2429# endif
Bram Moolenaardb250522013-06-17 22:43:25 +02002430 && wide_font != NOFONT)
Bram Moolenaar45933962013-01-23 17:43:57 +01002431 curr_wide = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 else
Bram Moolenaar45933962013-01-23 17:43:57 +01002433 curr_wide = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 comping = utf_iscomposing(c);
2435 if (!comping) /* count cells from non-composing chars */
2436 cells += cn;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002437 cl = utf_ptr2len(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 if (cl == 0) /* hit end of string */
2439 len = i + cl; /* len must be wrong "cannot happen" */
2440
Bram Moolenaar45933962013-01-23 17:43:57 +01002441 wide_changed = curr_wide != prev_wide;
2442
2443 /* Print the string so far if it's the last character or there is
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 * a composing character. */
Bram Moolenaar45933962013-01-23 17:43:57 +01002445 if (i + cl >= len || (comping && i > start) || wide_changed
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002446# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 || (cn > 1
2448# ifdef FEAT_XFONTSET
2449 /* No fontset: At least draw char after wide char at
2450 * right position. */
2451 && fontset == NOFONTSET
2452# endif
2453 )
2454# endif
2455 )
2456 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002457 if (comping || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 thislen = i - start;
2459 else
2460 thislen = i - start + cl;
2461 if (thislen > 0)
2462 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002463 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002464 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2466 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002467 if (prev_wide)
2468 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 start += thislen;
2470 }
2471 scol += cells;
2472 cells = 0;
Bram Moolenaar45933962013-01-23 17:43:57 +01002473 /* Adjust to not draw a character which width is changed
2474 * against with last one. */
2475 if (wide_changed && !comping)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002477 scol -= cn;
2478 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 }
2480
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002481# if defined(FEAT_GUI_X11)
Bram Moolenaar843ee412004-06-30 16:16:41 +00002482 /* No fontset: draw a space to fill the gap after a wide char
2483 * */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
2485# ifdef FEAT_XFONTSET
2486 && fontset == NOFONTSET
2487# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002488 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2490 1, draw_flags);
2491# endif
2492 }
2493 /* Draw a composing char on top of the previous char. */
2494 if (comping)
2495 {
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002496# if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002497 /* Carbon ATSUI autodraws composing char over previous char */
2498 gui_mch_draw_string(gui.row, scol, s + i, cl,
2499 draw_flags | DRAW_TRANSP);
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002500# else
2501 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2502 draw_flags | DRAW_TRANSP);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002503# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 start = i + cl;
2505 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002506 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 }
2508 /* The stuff below assumes "len" is the length in screen columns. */
2509 len = scol - col;
2510 }
2511 else
2512# endif
2513 {
2514 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
2515# ifdef FEAT_MBYTE
2516 if (enc_dbcs == DBCS_JPNU)
2517 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 /* Get the length in display cells, this can be different from the
2519 * number of bytes for "euc-jp". */
Bram Moolenaar72597a52010-07-18 15:31:08 +02002520 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 }
2522# endif
2523 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002524#endif /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525
2526 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2527 gui.col = col + len;
2528
2529 /* May need to invert it when it's part of the selection. */
2530 if (flags & GUI_MON_NOCLEAR)
2531 clip_may_redraw_selection(gui.row, col, len);
2532
2533 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2534 {
2535 /* Invalidate the old physical cursor position if we wrote over it */
2536 if (gui.cursor_row == gui.row
2537 && gui.cursor_col >= col
2538 && gui.cursor_col < col + len)
2539 gui.cursor_is_valid = FALSE;
2540 }
2541
2542#ifdef FEAT_SIGN_ICONS
2543 if (draw_sign)
2544 /* Draw the sign on top of the spaces. */
2545 gui_mch_drawsign(gui.row, col, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002546# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar67c53842010-05-22 18:28:27 +02002547 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 if (multi_sign)
2549 netbeans_draw_multisign_indicator(gui.row);
2550# endif
2551#endif
2552
2553 return OK;
2554}
2555
2556/*
2557 * Un-draw the cursor. Actually this just redraws the character at the given
2558 * position. The character just before it too, for when it was in bold.
2559 */
2560 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002561gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
2563 if (gui.cursor_is_valid)
2564 {
2565#ifdef FEAT_HANGULIN
2566 if (composing_hangul
2567 && gui.col == gui.cursor_col && gui.row == gui.cursor_row)
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002568 {
2569 char_u *comp_buf;
2570 int comp_len;
2571
2572 comp_buf = hangul_composing_buffer_get(&comp_len);
2573 if (comp_buf)
2574 {
2575 (void)gui_outstr_nowrap(comp_buf, comp_len,
2576 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR,
2577 gui.norm_pixel, gui.back_pixel, 0);
2578 vim_free(comp_buf);
2579 }
2580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 else
2582 {
2583#endif
2584 if (gui_redraw_block(gui.cursor_row, gui.cursor_col,
2585 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR)
2586 && gui.cursor_col > 0)
2587 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col - 1,
2588 gui.cursor_row, gui.cursor_col - 1, GUI_MON_NOCLEAR);
2589#ifdef FEAT_HANGULIN
2590 if (composing_hangul)
2591 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col + 1,
2592 gui.cursor_row, gui.cursor_col + 1, GUI_MON_NOCLEAR);
2593 }
2594#endif
2595 /* Cursor_is_valid is reset when the cursor is undrawn, also reset it
2596 * here in case it wasn't needed to undraw it. */
2597 gui.cursor_is_valid = FALSE;
2598 }
2599}
2600
2601 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002602gui_redraw(
2603 int x,
2604 int y,
2605 int w,
2606 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607{
2608 int row1, col1, row2, col2;
2609
2610 row1 = Y_2_ROW(y);
2611 col1 = X_2_COL(x);
2612 row2 = Y_2_ROW(y + h - 1);
2613 col2 = X_2_COL(x + w - 1);
2614
2615 (void)gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
2616
2617 /*
2618 * We may need to redraw the cursor, but don't take it upon us to change
2619 * its location after a scroll.
2620 * (maybe be more strict even and test col too?)
2621 * These things may be outside the update/clipping region and reality may
2622 * not reflect Vims internal ideas if these operations are clipped away.
2623 */
2624 if (gui.row == gui.cursor_row)
2625 gui_update_cursor(TRUE, TRUE);
2626}
2627
2628/*
2629 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2630 * from col1 to col2 (inclusive).
2631 * Return TRUE when the character before the first drawn character has
2632 * different attributes (may have to be redrawn too).
2633 */
2634 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002635gui_redraw_block(
2636 int row1,
2637 int col1,
2638 int row2,
2639 int col2,
2640 int flags) /* flags for gui_outstr_nowrap() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641{
2642 int old_row, old_col;
2643 long_u old_hl_mask;
2644 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002645 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 int idx, len;
2647 int back, nback;
2648 int retval = FALSE;
2649#ifdef FEAT_MBYTE
2650 int orig_col1, orig_col2;
2651#endif
2652
2653 /* Don't try to update when ScreenLines is not valid */
2654 if (!screen_cleared || ScreenLines == NULL)
2655 return retval;
2656
2657 /* Don't try to draw outside the shell! */
2658 /* Check everything, strange values may be caused by a big border width */
2659 col1 = check_col(col1);
2660 col2 = check_col(col2);
2661 row1 = check_row(row1);
2662 row2 = check_row(row2);
2663
2664 /* Remember where our cursor was */
2665 old_row = gui.row;
2666 old_col = gui.col;
2667 old_hl_mask = gui.highlight_mask;
2668#ifdef FEAT_MBYTE
2669 orig_col1 = col1;
2670 orig_col2 = col2;
2671#endif
2672
2673 for (gui.row = row1; gui.row <= row2; gui.row++)
2674 {
2675#ifdef FEAT_MBYTE
2676 /* When only half of a double-wide character is in the block, include
2677 * the other half. */
2678 col1 = orig_col1;
2679 col2 = orig_col2;
2680 off = LineOffset[gui.row];
2681 if (enc_dbcs != 0)
2682 {
2683 if (col1 > 0)
2684 col1 -= dbcs_screen_head_off(ScreenLines + off,
2685 ScreenLines + off + col1);
2686 col2 += dbcs_screen_tail_off(ScreenLines + off,
2687 ScreenLines + off + col2);
2688 }
2689 else if (enc_utf8)
2690 {
2691 if (ScreenLines[off + col1] == 0)
2692 --col1;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002693# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2695 ++col2;
2696# endif
2697 }
2698#endif
2699 gui.col = col1;
2700 off = LineOffset[gui.row] + gui.col;
2701 len = col2 - col1 + 1;
2702
2703 /* Find how many chars back this highlighting starts, or where a space
2704 * is. Needed for when the bold trick is used */
2705 for (back = 0; back < col1; ++back)
2706 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2707 || ScreenLines[off - 1 - back] == ' ')
2708 break;
2709 retval = (col1 > 0 && ScreenAttrs[off - 1] != 0 && back == 0
2710 && ScreenLines[off - 1] != ' ');
2711
2712 /* Break it up in strings of characters with the same attributes. */
2713 /* Print UTF-8 characters individually. */
2714 while (len > 0)
2715 {
2716 first_attr = ScreenAttrs[off];
2717 gui.highlight_mask = first_attr;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002718#if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 if (enc_utf8 && ScreenLinesUC[off] != 0)
2720 {
2721 /* output multi-byte character separately */
2722 nback = gui_screenchar(off, flags,
2723 (guicolor_T)0, (guicolor_T)0, back);
2724 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2725 idx = 2;
2726 else
2727 idx = 1;
2728 }
2729 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2730 {
2731 /* output double-byte, single-width character separately */
2732 nback = gui_screenchar(off, flags,
2733 (guicolor_T)0, (guicolor_T)0, back);
2734 idx = 1;
2735 }
2736 else
2737#endif
2738 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002739#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 for (idx = 0; idx < len; ++idx)
2741 {
2742 if (enc_utf8 && ScreenLines[off + idx] == 0)
2743 continue; /* skip second half of double-width char */
2744 if (ScreenAttrs[off + idx] != first_attr)
2745 break;
2746 }
2747 /* gui_screenstr() takes care of multibyte chars */
2748 nback = gui_screenstr(off, idx, flags,
2749 (guicolor_T)0, (guicolor_T)0, back);
2750#else
2751 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2752 idx++)
2753 {
2754# ifdef FEAT_MBYTE
2755 /* Stop at a multi-byte Unicode character. */
2756 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2757 break;
2758 if (enc_dbcs == DBCS_JPNU)
2759 {
2760 /* Stop at a double-byte single-width char. */
2761 if (ScreenLines[off + idx] == 0x8e)
2762 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002763 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 + off + idx) == 2)
2765 ++idx; /* skip second byte of double-byte char */
2766 }
2767# endif
2768 }
2769 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2770 (guicolor_T)0, (guicolor_T)0, back);
2771#endif
2772 }
2773 if (nback == FAIL)
2774 {
2775 /* Must back up to start drawing where a bold or italic word
2776 * starts. */
2777 off -= back;
2778 len += back;
2779 gui.col -= back;
2780 }
2781 else
2782 {
2783 off += idx;
2784 len -= idx;
2785 }
2786 back = 0;
2787 }
2788 }
2789
2790 /* Put the cursor back where it was */
2791 gui.row = old_row;
2792 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002793 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794
2795 return retval;
2796}
2797
2798 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002799gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800{
2801 if (count <= 0)
2802 return;
2803
2804 if (row + count > gui.scroll_region_bot)
2805 /* Scrolled out of region, just blank the lines out */
2806 gui_clear_block(row, gui.scroll_region_left,
2807 gui.scroll_region_bot, gui.scroll_region_right);
2808 else
2809 {
2810 gui_mch_delete_lines(row, count);
2811
2812 /* If the cursor was in the deleted lines it's now gone. If the
2813 * cursor was in the scrolled lines adjust its position. */
2814 if (gui.cursor_row >= row
2815 && gui.cursor_col >= gui.scroll_region_left
2816 && gui.cursor_col <= gui.scroll_region_right)
2817 {
2818 if (gui.cursor_row < row + count)
2819 gui.cursor_is_valid = FALSE;
2820 else if (gui.cursor_row <= gui.scroll_region_bot)
2821 gui.cursor_row -= count;
2822 }
2823 }
2824}
2825
2826 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002827gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828{
2829 if (count <= 0)
2830 return;
2831
2832 if (row + count > gui.scroll_region_bot)
2833 /* Scrolled out of region, just blank the lines out */
2834 gui_clear_block(row, gui.scroll_region_left,
2835 gui.scroll_region_bot, gui.scroll_region_right);
2836 else
2837 {
2838 gui_mch_insert_lines(row, count);
2839
2840 if (gui.cursor_row >= gui.row
2841 && gui.cursor_col >= gui.scroll_region_left
2842 && gui.cursor_col <= gui.scroll_region_right)
2843 {
2844 if (gui.cursor_row <= gui.scroll_region_bot - count)
2845 gui.cursor_row += count;
2846 else if (gui.cursor_row <= gui.scroll_region_bot)
2847 gui.cursor_is_valid = FALSE;
2848 }
2849 }
2850}
2851
Bram Moolenaar975b5272016-03-15 23:10:59 +01002852 static int
2853gui_wait_for_chars_or_timer(long wtime)
2854{
2855#ifdef FEAT_TIMERS
2856 int due_time;
2857 long remaining = wtime;
Bram Moolenaar40b1b542016-04-20 20:18:23 +02002858 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar975b5272016-03-15 23:10:59 +01002859
2860 /* When waiting very briefly don't trigger timers. */
2861 if (wtime >= 0 && wtime < 10L)
2862 return gui_mch_wait_for_chars(wtime);
2863
2864 while (wtime < 0 || remaining > 0)
2865 {
2866 /* Trigger timers and then get the time in wtime until the next one is
2867 * due. Wait up to that time. */
2868 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02002869 if (typebuf.tb_change_cnt != tb_change_cnt)
2870 {
2871 /* timer may have used feedkeys() */
2872 return FALSE;
2873 }
Bram Moolenaar975b5272016-03-15 23:10:59 +01002874 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
2875 due_time = remaining;
2876 if (gui_mch_wait_for_chars(due_time))
2877 return TRUE;
2878 if (wtime > 0)
2879 remaining -= due_time;
2880 }
2881 return FALSE;
2882#else
2883 return gui_mch_wait_for_chars(wtime);
2884#endif
2885}
2886
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887/*
2888 * The main GUI input routine. Waits for a character from the keyboard.
2889 * wtime == -1 Wait forever.
2890 * wtime == 0 Don't wait.
2891 * wtime > 0 Wait wtime milliseconds for a character.
2892 * Returns OK if a character was found to be available within the given time,
2893 * or FAIL otherwise.
2894 */
2895 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002896gui_wait_for_chars(long wtime)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897{
2898 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899
Bram Moolenaarca7e1f22010-05-22 15:50:12 +02002900#ifdef FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 /*
2902 * If we're going to wait a bit, update the menus and mouse shape for the
2903 * current State.
2904 */
2905 if (wtime != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 gui_update_menus(0);
2907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
2909 gui_mch_update();
2910 if (input_available()) /* Got char, return immediately */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 if (wtime == 0) /* Don't wait for char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914
2915 /* Before waiting, flush any output to the screen. */
2916 gui_mch_flush();
2917
2918 if (wtime > 0)
2919 {
2920 /* Blink when waiting for a character. Probably only does something
2921 * for showmatch() */
2922 gui_mch_start_blink();
Bram Moolenaar975b5272016-03-15 23:10:59 +01002923 retval = gui_wait_for_chars_or_timer(wtime);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 gui_mch_stop_blink();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 return retval;
2926 }
2927
2928 /*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002929 * While we are waiting indefinitely for a character, blink the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 */
2931 gui_mch_start_blink();
2932
Bram Moolenaar3918c952005-03-15 22:34:55 +00002933 retval = FAIL;
2934 /*
2935 * We may want to trigger the CursorHold event. First wait for
2936 * 'updatetime' and if nothing is typed within that time put the
2937 * K_CURSORHOLD key in the input buffer.
2938 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002939 if (gui_wait_for_chars_or_timer(p_ut) == OK)
Bram Moolenaar3918c952005-03-15 22:34:55 +00002940 retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +00002942 else if (trigger_cursorhold())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00002944 char_u buf[3];
2945
2946 /* Put K_CURSORHOLD in the input buffer. */
2947 buf[0] = CSI;
2948 buf[1] = KS_EXTRA;
2949 buf[2] = (int)KE_CURSORHOLD;
2950 add_to_input_buf(buf, 3);
2951
2952 retval = OK;
2953 }
2954#endif
2955
2956 if (retval == FAIL)
2957 {
2958 /* Blocking wait. */
Bram Moolenaar702517d2005-06-27 22:34:07 +00002959 before_blocking();
Bram Moolenaar975b5272016-03-15 23:10:59 +01002960 retval = gui_wait_for_chars_or_timer(-1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962
2963 gui_mch_stop_blink();
2964 return retval;
2965}
2966
2967/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00002968 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 */
2970 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002971fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 p[0] = (char_u)(col / 128 + ' ' + 1);
2974 p[1] = (char_u)(col % 128 + ' ' + 1);
2975 p[2] = (char_u)(row / 128 + ' ' + 1);
2976 p[3] = (char_u)(row % 128 + ' ' + 1);
2977}
2978
2979/*
2980 * Generic mouse support function. Add a mouse event to the input buffer with
2981 * the given properties.
2982 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
2983 * MOUSE_X1, MOUSE_X2
2984 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002985 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
2986 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 * x, y --- Coordinates of mouse in pixels.
2988 * repeated_click --- TRUE if this click comes only a short time after a
2989 * previous click.
2990 * modifiers --- Bit field which may be any of the following modifiers
2991 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
2992 * This function will ignore drag events where the mouse has not moved to a new
2993 * character.
2994 */
2995 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002996gui_send_mouse_event(
2997 int button,
2998 int x,
2999 int y,
3000 int repeated_click,
3001 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002{
3003 static int prev_row = 0, prev_col = 0;
3004 static int prev_button = -1;
3005 static int num_clicks = 1;
3006 char_u string[10];
3007 enum key_extra button_char;
3008 int row, col;
3009#ifdef FEAT_CLIPBOARD
3010 int checkfor;
3011 int did_clip = FALSE;
3012#endif
3013
3014 /*
3015 * Scrolling may happen at any time, also while a selection is present.
3016 */
3017 switch (button)
3018 {
3019 case MOUSE_X1:
3020 button_char = KE_X1MOUSE;
3021 goto button_set;
3022 case MOUSE_X2:
3023 button_char = KE_X2MOUSE;
3024 goto button_set;
3025 case MOUSE_4:
3026 button_char = KE_MOUSEDOWN;
3027 goto button_set;
3028 case MOUSE_5:
3029 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003030 goto button_set;
3031 case MOUSE_6:
3032 button_char = KE_MOUSELEFT;
3033 goto button_set;
3034 case MOUSE_7:
3035 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036button_set:
3037 {
3038 /* Don't put events in the input queue now. */
3039 if (hold_gui_events)
3040 return;
3041
3042 string[3] = CSI;
3043 string[4] = KS_EXTRA;
3044 string[5] = (int)button_char;
3045
3046 /* Pass the pointer coordinates of the scroll event so that we
3047 * know which window to scroll. */
3048 row = gui_xy2colrow(x, y, &col);
3049 string[6] = (char_u)(col / 128 + ' ' + 1);
3050 string[7] = (char_u)(col % 128 + ' ' + 1);
3051 string[8] = (char_u)(row / 128 + ' ' + 1);
3052 string[9] = (char_u)(row % 128 + ' ' + 1);
3053
3054 if (modifiers == 0)
3055 add_to_input_buf(string + 3, 7);
3056 else
3057 {
3058 string[0] = CSI;
3059 string[1] = KS_MODIFIER;
3060 string[2] = 0;
3061 if (modifiers & MOUSE_SHIFT)
3062 string[2] |= MOD_MASK_SHIFT;
3063 if (modifiers & MOUSE_CTRL)
3064 string[2] |= MOD_MASK_CTRL;
3065 if (modifiers & MOUSE_ALT)
3066 string[2] |= MOD_MASK_ALT;
3067 add_to_input_buf(string, 10);
3068 }
3069 return;
3070 }
3071 }
3072
3073#ifdef FEAT_CLIPBOARD
3074 /* If a clipboard selection is in progress, handle it */
3075 if (clip_star.state == SELECT_IN_PROGRESS)
3076 {
3077 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
3078 return;
3079 }
3080
3081 /* Determine which mouse settings to look for based on the current mode */
3082 switch (get_real_state())
3083 {
3084 case NORMAL_BUSY:
3085 case OP_PENDING:
3086 case NORMAL: checkfor = MOUSE_NORMAL; break;
3087 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003088 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 case REPLACE:
3090 case REPLACE+LANGMAP:
3091#ifdef FEAT_VREPLACE
3092 case VREPLACE:
3093 case VREPLACE+LANGMAP:
3094#endif
3095 case INSERT:
3096 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3097 case ASKMORE:
3098 case HITRETURN: /* At the more- and hit-enter prompt pass the
3099 mouse event for a click on or below the
3100 message line. */
3101 if (Y_2_ROW(y) >= msg_row)
3102 checkfor = MOUSE_NORMAL;
3103 else
3104 checkfor = MOUSE_RETURN;
3105 break;
3106
3107 /*
3108 * On the command line, use the clipboard selection on all lines
3109 * but the command line. But not when pasting.
3110 */
3111 case CMDLINE:
3112 case CMDLINE+LANGMAP:
3113 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3114 checkfor = MOUSE_NONE;
3115 else
3116 checkfor = MOUSE_COMMAND;
3117 break;
3118
3119 default:
3120 checkfor = MOUSE_NONE;
3121 break;
3122 };
3123
3124 /*
3125 * Allow clipboard selection of text on the command line in "normal"
3126 * modes. Don't do this when dragging the status line, or extending a
3127 * Visual selection.
3128 */
3129 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
3130 && Y_2_ROW(y) >= topframe->fr_height
Bram Moolenaar8838aee2006-10-08 11:56:24 +00003131# ifdef FEAT_WINDOWS
3132 + firstwin->w_winrow
3133# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 && button != MOUSE_DRAG
3135# ifdef FEAT_MOUSESHAPE
3136 && !drag_status_line
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003137# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 && !drag_sep_line
3139# endif
3140# endif
3141 )
3142 checkfor = MOUSE_NONE;
3143
3144 /*
3145 * Use modeless selection when holding CTRL and SHIFT pressed.
3146 */
3147 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3148 checkfor = MOUSE_NONEF;
3149
3150 /*
3151 * In Ex mode, always use modeless selection.
3152 */
3153 if (exmode_active)
3154 checkfor = MOUSE_NONE;
3155
3156 /*
3157 * If the mouse settings say to not use the mouse, use the modeless
3158 * selection. But if Visual is active, assume that only the Visual area
3159 * will be selected.
3160 * Exception: On the command line, both the selection is used and a mouse
3161 * key is send.
3162 */
3163 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3164 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 /* Don't do modeless selection in Visual mode. */
3166 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3167 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168
3169 /*
3170 * When 'mousemodel' is "popup", shift-left is translated to right.
3171 * But not when also using Ctrl.
3172 */
3173 if (mouse_model_popup() && button == MOUSE_LEFT
3174 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3175 {
3176 button = MOUSE_RIGHT;
3177 modifiers &= ~ MOUSE_SHIFT;
3178 }
3179
3180 /* If the selection is done, allow the right button to extend it.
3181 * If the selection is cleared, allow the right button to start it
3182 * from the cursor position. */
3183 if (button == MOUSE_RIGHT)
3184 {
3185 if (clip_star.state == SELECT_CLEARED)
3186 {
3187 if (State & CMDLINE)
3188 {
3189 col = msg_col;
3190 row = msg_row;
3191 }
3192 else
3193 {
3194 col = curwin->w_wcol;
3195 row = curwin->w_wrow + W_WINROW(curwin);
3196 }
3197 clip_start_selection(col, row, FALSE);
3198 }
3199 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3200 repeated_click);
3201 did_clip = TRUE;
3202 }
3203 /* Allow the left button to start the selection */
Bram Moolenaare60acc12011-05-10 16:41:25 +02003204 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 {
3206 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3207 did_clip = TRUE;
3208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209
3210 /* Always allow pasting */
3211 if (button != MOUSE_MIDDLE)
3212 {
3213 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3214 return;
3215 if (checkfor != MOUSE_COMMAND)
3216 button = MOUSE_LEFT;
3217 }
3218 repeated_click = FALSE;
3219 }
3220
3221 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003222 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223#endif
3224
3225 /* Don't put events in the input queue now. */
3226 if (hold_gui_events)
3227 return;
3228
3229 row = gui_xy2colrow(x, y, &col);
3230
3231 /*
3232 * If we are dragging and the mouse hasn't moved far enough to be on a
3233 * different character, then don't send an event to vim.
3234 */
3235 if (button == MOUSE_DRAG)
3236 {
3237 if (row == prev_row && col == prev_col)
3238 return;
3239 /* Dragging above the window, set "row" to -1 to cause a scroll. */
3240 if (y < 0)
3241 row = -1;
3242 }
3243
3244 /*
3245 * If topline has changed (window scrolled) since the last click, reset
3246 * repeated_click, because we don't want starting Visual mode when
3247 * clicking on a different character in the text.
3248 */
3249 if (curwin->w_topline != gui_prev_topline
3250#ifdef FEAT_DIFF
3251 || curwin->w_topfill != gui_prev_topfill
3252#endif
3253 )
3254 repeated_click = FALSE;
3255
3256 string[0] = CSI; /* this sequence is recognized by check_termcode() */
3257 string[1] = KS_MOUSE;
3258 string[2] = KE_FILLER;
3259 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3260 {
3261 if (repeated_click)
3262 {
3263 /*
3264 * Handle multiple clicks. They only count if the mouse is still
3265 * pointing at the same character.
3266 */
3267 if (button != prev_button || row != prev_row || col != prev_col)
3268 num_clicks = 1;
3269 else if (++num_clicks > 4)
3270 num_clicks = 1;
3271 }
3272 else
3273 num_clicks = 1;
3274 prev_button = button;
3275 gui_prev_topline = curwin->w_topline;
3276#ifdef FEAT_DIFF
3277 gui_prev_topfill = curwin->w_topfill;
3278#endif
3279
3280 string[3] = (char_u)(button | 0x20);
3281 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3282 }
3283 else
3284 string[3] = (char_u)button;
3285
3286 string[3] |= modifiers;
3287 fill_mouse_coord(string + 4, col, row);
3288 add_to_input_buf(string, 8);
3289
3290 if (row < 0)
3291 prev_row = 0;
3292 else
3293 prev_row = row;
3294 prev_col = col;
3295
3296 /*
3297 * We need to make sure this is cleared since Athena doesn't tell us when
3298 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3299 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003300#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 gui.dragged_sb = SBAR_NONE;
3302#endif
3303}
3304
3305/*
3306 * Convert x and y coordinate to column and row in text window.
3307 * Corrects for multi-byte character.
3308 * returns column in "*colp" and row as return value;
3309 */
3310 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003311gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312{
3313 int col = check_col(X_2_COL(x));
3314 int row = check_row(Y_2_ROW(y));
3315
3316#ifdef FEAT_MBYTE
3317 *colp = mb_fix_col(col, row);
3318#else
3319 *colp = col;
3320#endif
3321 return row;
3322}
3323
3324#if defined(FEAT_MENU) || defined(PROTO)
3325/*
3326 * Callback function for when a menu entry has been selected.
3327 */
3328 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003329gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003331 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332
3333 /* Don't put events in the input queue now. */
3334 if (hold_gui_events)
3335 return;
3336
3337 bytes[0] = CSI;
3338 bytes[1] = KS_MENU;
3339 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003340 add_to_input_buf(bytes, 3);
3341 add_long_to_buf((long_u)menu, bytes);
3342 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343}
3344#endif
3345
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003346static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003347
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348/*
3349 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003350 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 * in p_go.
3352 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003354gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356#ifdef FEAT_MENU
3357 static int prev_menu_is_active = -1;
3358#endif
3359#ifdef FEAT_TOOLBAR
3360 static int prev_toolbar = -1;
3361 int using_toolbar = FALSE;
3362#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003363#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003364 int using_tabline;
3365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366#ifdef FEAT_FOOTER
3367 static int prev_footer = -1;
3368 int using_footer = FALSE;
3369#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003370#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 static int prev_tearoff = -1;
3372 int using_tearoff = FALSE;
3373#endif
3374
3375 char_u *p;
3376 int i;
3377#ifdef FEAT_MENU
3378 int grey_old, grey_new;
3379 char_u *temp;
3380#endif
3381 win_T *wp;
3382 int need_set_size;
3383 int fix_size;
3384
3385#ifdef FEAT_MENU
3386 if (oldval != NULL && gui.in_use)
3387 {
3388 /*
3389 * Check if the menu's go from grey to non-grey or vise versa.
3390 */
3391 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3392 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3393 if (grey_old != grey_new)
3394 {
3395 temp = p_go;
3396 p_go = oldval;
3397 gui_update_menus(MENU_ALL_MODES);
3398 p_go = temp;
3399 }
3400 }
3401 gui.menu_is_active = FALSE;
3402#endif
3403
3404 for (i = 0; i < 3; i++)
3405 gui.which_scrollbars[i] = FALSE;
3406 for (p = p_go; *p; p++)
3407 switch (*p)
3408 {
3409 case GO_LEFT:
3410 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3411 break;
3412 case GO_RIGHT:
3413 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3414 break;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003415#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 case GO_VLEFT:
3417 if (win_hasvertsplit())
3418 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3419 break;
3420 case GO_VRIGHT:
3421 if (win_hasvertsplit())
3422 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3423 break;
3424#endif
3425 case GO_BOT:
3426 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3427 break;
3428#ifdef FEAT_MENU
3429 case GO_MENUS:
3430 gui.menu_is_active = TRUE;
3431 break;
3432#endif
3433 case GO_GREY:
3434 /* make menu's have grey items, ignored here */
3435 break;
3436#ifdef FEAT_TOOLBAR
3437 case GO_TOOLBAR:
3438 using_toolbar = TRUE;
3439 break;
3440#endif
3441#ifdef FEAT_FOOTER
3442 case GO_FOOTER:
3443 using_footer = TRUE;
3444 break;
3445#endif
3446 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003447#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 using_tearoff = TRUE;
3449#endif
3450 break;
3451 default:
3452 /* Ignore options that are not supported */
3453 break;
3454 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (gui.in_use)
3457 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003458 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003460
3461#ifdef FEAT_GUI_TABLINE
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003462 /* Update the GUI tab line, it may appear or disappear. This may
3463 * cause the non-GUI tab line to disappear or appear. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003464 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003465 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003466 {
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003467 /* We don't want a resize event change "Rows" here, save and
3468 * restore it. Resizing is handled below. */
3469 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003470 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003471 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003472 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003473 if (using_tabline)
3474 fix_size = TRUE;
3475 if (!gui_use_tabline())
3476 redraw_tabline = TRUE; /* may draw non-GUI tab line */
3477 }
3478#endif
3479
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 for (i = 0; i < 3; i++)
3481 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003482 /* The scrollbar needs to be updated when it is shown/unshown and
3483 * when switching tab pages. But the size only changes when it's
3484 * shown/unshown. Thus we need two places to remember whether a
3485 * scrollbar is there or not. */
3486 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar371d5402006-03-20 21:47:49 +00003487#ifdef FEAT_WINDOWS
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003488 || gui.which_scrollbars[i]
3489 != curtab->tp_prev_which_scrollbars[i]
Bram Moolenaar371d5402006-03-20 21:47:49 +00003490#endif
3491 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 {
3493 if (i == SBAR_BOTTOM)
3494 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3495 gui.which_scrollbars[i]);
3496 else
3497 {
3498 FOR_ALL_WINDOWS(wp)
3499 {
3500 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
3501 }
3502 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003503 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3504 {
3505 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003506 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003507 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003508 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003509 if (gui.which_scrollbars[i])
3510 fix_size = TRUE;
3511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003513#ifdef FEAT_WINDOWS
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003514 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar371d5402006-03-20 21:47:49 +00003515#endif
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003516 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 }
3518
3519#ifdef FEAT_MENU
3520 if (gui.menu_is_active != prev_menu_is_active)
3521 {
3522 /* We don't want a resize event change "Rows" here, save and
3523 * restore it. Resizing is handled below. */
3524 i = Rows;
3525 gui_mch_enable_menu(gui.menu_is_active);
3526 Rows = i;
3527 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003528 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 if (gui.menu_is_active)
3530 fix_size = TRUE;
3531 }
3532#endif
3533
3534#ifdef FEAT_TOOLBAR
3535 if (using_toolbar != prev_toolbar)
3536 {
3537 gui_mch_show_toolbar(using_toolbar);
3538 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003539 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 if (using_toolbar)
3541 fix_size = TRUE;
3542 }
3543#endif
3544#ifdef FEAT_FOOTER
3545 if (using_footer != prev_footer)
3546 {
3547 gui_mch_enable_footer(using_footer);
3548 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003549 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 if (using_footer)
3551 fix_size = TRUE;
3552 }
3553#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003554#if defined(FEAT_MENU) && !(defined(WIN3264) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (using_tearoff != prev_tearoff)
3556 {
3557 gui_mch_toggle_tearoffs(using_tearoff);
3558 prev_tearoff = using_tearoff;
3559 }
3560#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003561 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003562 {
3563#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003564 long prev_Columns = Columns;
3565 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 /* Adjust the size of the window to make the text area keep the
3568 * same size and to avoid that part of our window is off-screen
3569 * and a scrollbar can't be used, for example. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003570 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003571
3572#ifdef FEAT_GUI_GTK
3573 /* GTK has the annoying habit of sending us resize events when
3574 * changing the window size ourselves. This mostly happens when
3575 * waiting for a character to arrive, quite unpredictably, and may
3576 * change Columns and Rows when we don't want it. Wait for a
3577 * character here to avoid this effect.
3578 * If you remove this, please test this command for resizing
Bram Moolenaara04f10b2005-05-31 22:09:46 +00003579 * effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003580 * Don't do this while starting up though.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003581 * Don't change Rows when adding menu/toolbar/tabline.
3582 * Don't change Columns when adding vertical toolbar. */
3583 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003584 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003585 if ((need_set_size & RESIZE_VERT) == 0)
3586 Rows = prev_Rows;
3587 if ((need_set_size & RESIZE_HOR) == 0)
3588 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003589#endif
3590 }
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003591#ifdef FEAT_WINDOWS
3592 /* When the console tabline appears or disappears the window positions
3593 * change. */
3594 if (firstwin->w_winrow != tabline_height())
3595 shell_new_rows(); /* recompute window positions and heights */
3596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 }
3598}
3599
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003600#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3601/*
3602 * Return TRUE if the GUI is taking care of the tabline.
3603 * It may still be hidden if 'showtabline' is zero.
3604 */
3605 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003606gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003607{
3608 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3609}
3610
3611/*
3612 * Return TRUE if the GUI is showing the tabline.
3613 * This uses 'showtabline'.
3614 */
3615 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003616gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003617{
3618 if (!gui_use_tabline()
3619 || p_stal == 0
3620 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3621 return FALSE;
3622 return TRUE;
3623}
3624
3625/*
3626 * Update the tabline.
3627 * This may display/undisplay the tabline and update the labels.
3628 */
3629 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003630gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003631{
3632 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003633 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003634
3635 if (!gui.starting && starting == 0)
3636 {
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003637 /* Updating the tabline uses direct GUI commands, flush
3638 * outstanding instructions first. (esp. clear screen) */
3639 out_flush();
3640 gui_mch_flush();
3641
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003642 if (!showit != !shown)
3643 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003644 if (showit != 0)
3645 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003646
3647 /* When the tabs change from hidden to shown or from shown to
3648 * hidden the size of the text area should remain the same. */
3649 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003650 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003651 }
3652}
3653
3654/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003655 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003656 */
3657 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003658get_tabline_label(
3659 tabpage_T *tp,
3660 int tooltip) /* TRUE: get tooltip */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003661{
3662 int modified = FALSE;
3663 char_u buf[40];
3664 int wincount;
3665 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003666 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003667
Bram Moolenaar57657d82006-04-21 22:12:41 +00003668 /* Use 'guitablabel' or 'guitabtooltip' if it's set. */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003669 opt = (tooltip ? &p_gtt : &p_gtl);
3670 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003671 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003672 int use_sandbox = FALSE;
3673 int save_called_emsg = called_emsg;
3674 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003675 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003676 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3677 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003678
3679 called_emsg = FALSE;
3680
3681 printer_page_num = tabpage_index(tp);
3682# ifdef FEAT_EVAL
3683 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003684 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003685# endif
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003686 /* It's almost as going to the tabpage, but without autocommands. */
3687 curtab->tp_firstwin = firstwin;
3688 curtab->tp_lastwin = lastwin;
3689 curtab->tp_curwin = curwin;
3690 save_curtab = curtab;
3691 curtab = tp;
3692 topframe = curtab->tp_topframe;
3693 firstwin = curtab->tp_firstwin;
3694 lastwin = curtab->tp_lastwin;
3695 curwin = curtab->tp_curwin;
3696 curbuf = curwin->w_buffer;
3697
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003698 /* Can't use NameBuff directly, build_stl_str_hl() uses it. */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003699 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003700 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003701 STRCPY(NameBuff, res);
3702
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003703 /* Back to the original curtab. */
3704 curtab = save_curtab;
3705 topframe = curtab->tp_topframe;
3706 firstwin = curtab->tp_firstwin;
3707 lastwin = curtab->tp_lastwin;
3708 curwin = curtab->tp_curwin;
3709 curbuf = curwin->w_buffer;
3710
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003711 if (called_emsg)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003712 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003713 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003714 called_emsg |= save_called_emsg;
3715 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003716
3717 /* If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3718 * use a default label. */
3719 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003720 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003721 /* Get the buffer name into NameBuff[] and shorten it. */
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003722 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003723 if (!tooltip)
3724 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003725
3726 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3727 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3728 if (bufIsChanged(wp->w_buffer))
3729 modified = TRUE;
3730 if (modified || wincount > 1)
3731 {
3732 if (wincount > 1)
3733 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3734 else
3735 buf[0] = NUL;
3736 if (modified)
3737 STRCAT(buf, "+");
3738 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003739 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003740 mch_memmove(NameBuff, buf, STRLEN(buf));
3741 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003742 }
3743}
3744
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003745/*
3746 * Send the event for clicking to select tab page "nr".
3747 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003748 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003749 */
3750 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003751send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003752{
3753 char_u string[3];
3754
3755 if (nr == tabpage_index(curtab))
3756 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003757
3758 /* Don't put events in the input queue now. */
3759 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003760# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003761 || cmdwin_type != 0
3762# endif
3763 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003764 {
3765 /* Set it back to the current tab page. */
3766 gui_mch_set_curtab(tabpage_index(curtab));
3767 return FALSE;
3768 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003769
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003770 string[0] = CSI;
3771 string[1] = KS_TABLINE;
3772 string[2] = KE_FILLER;
3773 add_to_input_buf(string, 3);
3774 string[0] = nr;
3775 add_to_input_buf_csi(string, 1);
3776 return TRUE;
3777}
3778
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003779/*
3780 * Send a tabline menu event
3781 */
3782 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003783send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003784{
3785 char_u string[3];
3786
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003787 /* Don't put events in the input queue now. */
3788 if (hold_gui_events)
3789 return;
3790
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003791 string[0] = CSI;
3792 string[1] = KS_TABMENU;
3793 string[2] = KE_FILLER;
3794 add_to_input_buf(string, 3);
3795 string[0] = tabidx;
3796 string[1] = (char_u)(long)event;
3797 add_to_input_buf_csi(string, 2);
3798}
3799
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003800#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801
3802/*
3803 * Scrollbar stuff:
3804 */
3805
Bram Moolenaare45828b2006-02-15 22:12:56 +00003806#if defined(FEAT_WINDOWS) || defined(PROTO)
3807/*
3808 * Remove all scrollbars. Used before switching to another tab page.
3809 */
3810 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003811gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003812{
3813 int i;
3814 win_T *wp;
3815
3816 for (i = 0; i < 3; i++)
3817 {
3818 if (i == SBAR_BOTTOM)
3819 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3820 else
3821 {
3822 FOR_ALL_WINDOWS(wp)
3823 {
3824 gui_do_scrollbar(wp, i, FALSE);
3825 }
3826 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003827 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003828 }
3829}
3830#endif
3831
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003833gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834{
3835 static int sbar_ident = 0;
3836
3837 sb->ident = sbar_ident++; /* No check for too big, but would it happen? */
3838 sb->wp = wp;
3839 sb->type = type;
3840 sb->value = 0;
3841#ifdef FEAT_GUI_ATHENA
3842 sb->pixval = 0;
3843#endif
3844 sb->size = 1;
3845 sb->max = 1;
3846 sb->top = 0;
3847 sb->height = 0;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003848#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 sb->width = 0;
3850#endif
3851 sb->status_height = 0;
3852 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3853}
3854
3855/*
3856 * Find the scrollbar with the given index.
3857 */
3858 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003859gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 win_T *wp;
3862
3863 if (gui.bottom_sbar.ident == ident)
3864 return &gui.bottom_sbar;
3865 FOR_ALL_WINDOWS(wp)
3866 {
3867 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3868 return &wp->w_scrollbars[SBAR_LEFT];
3869 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3870 return &wp->w_scrollbars[SBAR_RIGHT];
3871 }
3872 return NULL;
3873}
3874
3875/*
3876 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3877 *
3878 * For Win32, Macintosh and GTK+ 2:
3879 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3880 * you stop dragging the scrollbar. We get here each time the scrollbar is
3881 * dragged another pixel, but as far as the rest of vim goes, it thinks
3882 * we're just hanging in the call to DispatchMessage() in
3883 * process_message(). The DispatchMessage() call that hangs was passed a
3884 * mouse button click event in the scrollbar window. -- webb.
3885 *
3886 * Solution: Do the scrolling right here. But only when allowed.
3887 * Ignore the scrollbars while executing an external command or when there
3888 * are still characters to be processed.
3889 */
3890 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003891gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892{
3893#ifdef FEAT_WINDOWS
3894 win_T *wp;
3895#endif
3896 int sb_num;
3897#ifdef USE_ON_FLY_SCROLL
3898 colnr_T old_leftcol = curwin->w_leftcol;
3899# ifdef FEAT_SCROLLBIND
3900 linenr_T old_topline = curwin->w_topline;
3901# endif
3902# ifdef FEAT_DIFF
3903 int old_topfill = curwin->w_topfill;
3904# endif
3905#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003906 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 int byte_count;
3908#endif
3909
3910 if (sb == NULL)
3911 return;
3912
3913 /* Don't put events in the input queue now. */
3914 if (hold_gui_events)
3915 return;
3916
3917#ifdef FEAT_CMDWIN
3918 if (cmdwin_type != 0 && sb->wp != curwin)
3919 return;
3920#endif
3921
3922 if (still_dragging)
3923 {
3924 if (sb->wp == NULL)
3925 gui.dragged_sb = SBAR_BOTTOM;
3926 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3927 gui.dragged_sb = SBAR_LEFT;
3928 else
3929 gui.dragged_sb = SBAR_RIGHT;
3930 gui.dragged_wp = sb->wp;
3931 }
3932 else
3933 {
3934 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003935#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 /* Keep the "dragged_wp" value until after the scrolling, for when the
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003937 * mouse button is released. GTK2 doesn't send the button-up event. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 gui.dragged_wp = NULL;
3939#endif
3940 }
3941
3942 /* Vertical sbar info is kept in the first sbar (the left one) */
3943 if (sb->wp != NULL)
3944 sb = &sb->wp->w_scrollbars[0];
3945
3946 /*
3947 * Check validity of value
3948 */
3949 if (value < 0)
3950 value = 0;
3951#ifdef SCROLL_PAST_END
3952 else if (value > sb->max)
3953 value = sb->max;
3954#else
3955 if (value > sb->max - sb->size + 1)
3956 value = sb->max - sb->size + 1;
3957#endif
3958
3959 sb->value = value;
3960
3961#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar67840782008-01-03 15:15:07 +00003962 /* When not allowed to do the scrolling right now, return.
3963 * This also checked input_available(), but that causes the first click in
3964 * a scrollbar to be ignored when Vim doesn't have focus. */
3965 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 return;
3967#endif
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00003968#ifdef FEAT_INS_EXPAND
3969 /* Disallow scrolling the current window when the completion popup menu is
3970 * visible. */
3971 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
3972 return;
3973#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975#ifdef FEAT_RIGHTLEFT
3976 if (sb->wp == NULL && curwin->w_p_rl)
3977 {
3978 value = sb->max + 1 - sb->size - value;
3979 if (value < 0)
3980 value = 0;
3981 }
3982#endif
3983
3984 if (sb->wp != NULL) /* vertical scrollbar */
3985 {
3986 sb_num = 0;
3987#ifdef FEAT_WINDOWS
3988 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
3989 sb_num++;
3990 if (wp == NULL)
3991 return;
3992#else
3993 if (sb->wp != curwin)
3994 return;
3995#endif
3996
3997#ifdef USE_ON_FLY_SCROLL
3998 current_scrollbar = sb_num;
3999 scrollbar_value = value;
4000 if (State & NORMAL)
4001 {
4002 gui_do_scroll();
4003 setcursor();
4004 }
4005 else if (State & INSERT)
4006 {
4007 ins_scroll();
4008 setcursor();
4009 }
4010 else if (State & CMDLINE)
4011 {
4012 if (msg_scrolled == 0)
4013 {
4014 gui_do_scroll();
4015 redrawcmdline();
4016 }
4017 }
4018# ifdef FEAT_FOLDING
4019 /* Value may have been changed for closed fold. */
4020 sb->value = sb->wp->w_topline - 1;
4021# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004022
4023 /* When dragging one scrollbar and there is another one at the other
4024 * side move the thumb of that one too. */
4025 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4026 gui_mch_set_scrollbar_thumb(
4027 &sb->wp->w_scrollbars[
4028 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4029 ? SBAR_LEFT : SBAR_RIGHT],
4030 sb->value, sb->size, sb->max);
4031
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032#else
4033 bytes[0] = CSI;
4034 bytes[1] = KS_VER_SCROLLBAR;
4035 bytes[2] = KE_FILLER;
4036 bytes[3] = (char_u)sb_num;
4037 byte_count = 4;
4038#endif
4039 }
4040 else
4041 {
4042#ifdef USE_ON_FLY_SCROLL
4043 scrollbar_value = value;
4044
4045 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004046 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 else if (State & INSERT)
4048 ins_horscroll();
4049 else if (State & CMDLINE)
4050 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004051 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004053 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 redrawcmdline();
4055 }
4056 }
4057 if (old_leftcol != curwin->w_leftcol)
4058 {
4059 updateWindow(curwin); /* update window, status and cmdline */
4060 setcursor();
4061 }
4062#else
4063 bytes[0] = CSI;
4064 bytes[1] = KS_HOR_SCROLLBAR;
4065 bytes[2] = KE_FILLER;
4066 byte_count = 3;
4067#endif
4068 }
4069
4070#ifdef USE_ON_FLY_SCROLL
4071# ifdef FEAT_SCROLLBIND
4072 /*
4073 * synchronize other windows, as necessary according to 'scrollbind'
4074 */
4075 if (curwin->w_p_scb
4076 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4077 || (sb->wp == curwin && (curwin->w_topline != old_topline
4078# ifdef FEAT_DIFF
4079 || curwin->w_topfill != old_topfill
4080# endif
4081 ))))
4082 {
4083 do_check_scrollbind(TRUE);
4084 /* need to update the window right here */
4085 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4086 if (wp->w_redr_type > 0)
4087 updateWindow(wp);
4088 setcursor();
4089 }
4090# endif
4091 out_flush();
4092 gui_update_cursor(FALSE, TRUE);
4093#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004094 add_to_input_buf(bytes, byte_count);
4095 add_long_to_buf((long_u)value, bytes);
4096 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097#endif
4098}
4099
4100/*
4101 * Scrollbar stuff:
4102 */
4103
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004104#if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004105/*
4106 * Called when something in the window layout has changed.
4107 */
4108 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004109gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004110{
4111 if (gui.in_use && starting == 0)
4112 {
4113 out_flush();
4114 gui_init_which_components(NULL);
4115 gui_update_scrollbars(TRUE);
4116 }
4117 need_mouse_correct = TRUE;
4118}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004119#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004120
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004122gui_update_scrollbars(
4123 int force) /* Force all scrollbars to get updated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124{
4125 win_T *wp;
4126 scrollbar_T *sb;
4127 long val, size, max; /* need 32 bits here */
4128 int which_sb;
4129 int h, y;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004130#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 static win_T *prev_curwin = NULL;
4132#endif
4133
4134 /* Update the horizontal scrollbar */
4135 gui_update_horiz_scrollbar(force);
4136
4137#ifndef WIN3264
4138 /* Return straight away if there is neither a left nor right scrollbar.
4139 * On MS-Windows this is required anyway for scrollwheel messages. */
4140 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4141 return;
4142#endif
4143
4144 /*
4145 * Don't want to update a scrollbar while we're dragging it. But if we
4146 * have both a left and right scrollbar, and we drag one of them, we still
4147 * need to update the other one.
4148 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004149 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4150 && gui.which_scrollbars[SBAR_LEFT]
4151 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 {
4153 /*
4154 * If we have two scrollbars and one of them is being dragged, just
4155 * copy the scrollbar position from the dragged one to the other one.
4156 */
4157 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4158 if (gui.dragged_wp != NULL)
4159 gui_mch_set_scrollbar_thumb(
4160 &gui.dragged_wp->w_scrollbars[which_sb],
4161 gui.dragged_wp->w_scrollbars[0].value,
4162 gui.dragged_wp->w_scrollbars[0].size,
4163 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 }
4165
4166 /* avoid that moving components around generates events */
4167 ++hold_gui_events;
4168
4169 for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
4170 {
4171 if (wp->w_buffer == NULL) /* just in case */
4172 continue;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004173 /* Skip a scrollbar that is being dragged. */
4174 if (!force && (gui.dragged_sb == SBAR_LEFT
4175 || gui.dragged_sb == SBAR_RIGHT)
4176 && gui.dragged_wp == wp)
4177 continue;
4178
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179#ifdef SCROLL_PAST_END
4180 max = wp->w_buffer->b_ml.ml_line_count - 1;
4181#else
4182 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4183#endif
4184 if (max < 0) /* empty buffer */
4185 max = 0;
4186 val = wp->w_topline - 1;
4187 size = wp->w_height;
4188#ifdef SCROLL_PAST_END
4189 if (val > max) /* just in case */
4190 val = max;
4191#else
4192 if (size > max + 1) /* just in case */
4193 size = max + 1;
4194 if (val > max - size + 1)
4195 val = max - size + 1;
4196#endif
4197 if (val < 0) /* minimal value is 0 */
4198 val = 0;
4199
4200 /*
4201 * Scrollbar at index 0 (the left one) contains all the information.
4202 * It would be the same info for left and right so we just store it for
4203 * one of them.
4204 */
4205 sb = &wp->w_scrollbars[0];
4206
4207 /*
4208 * Note: no check for valid w_botline. If it's not valid the
4209 * scrollbars will be updated later anyway.
4210 */
4211 if (size < 1 || wp->w_botline - 2 > max)
4212 {
4213 /*
4214 * This can happen during changing files. Just don't update the
4215 * scrollbar for now.
4216 */
4217 sb->height = 0; /* Force update next time */
4218 if (gui.which_scrollbars[SBAR_LEFT])
4219 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4220 if (gui.which_scrollbars[SBAR_RIGHT])
4221 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4222 continue;
4223 }
4224 if (force || sb->height != wp->w_height
4225#ifdef FEAT_WINDOWS
4226 || sb->top != wp->w_winrow
4227 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 || sb->width != wp->w_width
4229 || prev_curwin != curwin
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230#endif
4231 )
4232 {
4233 /* Height, width or position of scrollbar has changed. For
4234 * vertical split: curwin changed. */
4235 sb->height = wp->w_height;
4236#ifdef FEAT_WINDOWS
4237 sb->top = wp->w_winrow;
4238 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240#endif
4241
4242 /* Calculate height and position in pixels */
4243 h = (sb->height + sb->status_height) * gui.char_height;
4244 y = sb->top * gui.char_height + gui.border_offset;
4245#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4246 if (gui.menu_is_active)
4247 y += gui.menu_height;
4248#endif
4249
4250#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA))
4251 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
4252# ifdef FEAT_GUI_ATHENA
4253 y += gui.toolbar_height;
4254# else
4255# ifdef FEAT_GUI_MSWIN
4256 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4257# endif
4258# endif
4259#endif
4260
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004261#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN)
4262 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004263 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004264#endif
4265
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266#ifdef FEAT_WINDOWS
4267 if (wp->w_winrow == 0)
4268#endif
4269 {
4270 /* Height of top scrollbar includes width of top border */
4271 h += gui.border_offset;
4272 y -= gui.border_offset;
4273 }
4274 if (gui.which_scrollbars[SBAR_LEFT])
4275 {
4276 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4277 gui.left_sbar_x, y,
4278 gui.scrollbar_width, h);
4279 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4280 }
4281 if (gui.which_scrollbars[SBAR_RIGHT])
4282 {
4283 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4284 gui.right_sbar_x, y,
4285 gui.scrollbar_width, h);
4286 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4287 }
4288 }
4289
4290 /* Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4291 * checking if the thumb moved at least a pixel. Only do this for
4292 * Athena, most other GUIs require the update anyway to make the
4293 * arrows work. */
4294#ifdef FEAT_GUI_ATHENA
4295 if (max == 0)
4296 y = 0;
4297 else
4298 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4299 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4300#else
4301 if (force || sb->value != val || sb->size != size || sb->max != max)
4302#endif
4303 {
4304 /* Thumb of scrollbar has moved */
4305 sb->value = val;
4306#ifdef FEAT_GUI_ATHENA
4307 sb->pixval = y;
4308#endif
4309 sb->size = size;
4310 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004311 if (gui.which_scrollbars[SBAR_LEFT]
4312 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4314 val, size, max);
4315 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004316 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4318 val, size, max);
4319 }
4320 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004321#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 prev_curwin = curwin;
4323#endif
4324 --hold_gui_events;
4325}
4326
4327/*
4328 * Enable or disable a scrollbar.
4329 * Check for scrollbars for vertically split windows which are not enabled
4330 * sometimes.
4331 */
4332 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004333gui_do_scrollbar(
4334 win_T *wp,
4335 int which, /* SBAR_LEFT or SBAR_RIGHT */
4336 int enable) /* TRUE to enable scrollbar */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337{
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004338#ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 int midcol = curwin->w_wincol + curwin->w_width / 2;
4340 int has_midcol = (wp->w_wincol <= midcol
4341 && wp->w_wincol + wp->w_width >= midcol);
4342
4343 /* Only enable scrollbars that contain the middle column of the current
4344 * window. */
4345 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4346 {
4347 /* Scrollbars only on one side. Don't enable scrollbars that don't
4348 * contain the middle column of the current window. */
4349 if (!has_midcol)
4350 enable = FALSE;
4351 }
4352 else
4353 {
4354 /* Scrollbars on both sides. Don't enable scrollbars that neither
4355 * contain the middle column of the current window nor are on the far
4356 * side. */
4357 if (midcol > Columns / 2)
4358 {
4359 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4360 enable = FALSE;
4361 }
4362 else
4363 {
4364 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4365 : !has_midcol)
4366 enable = FALSE;
4367 }
4368 }
4369#endif
4370 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4371}
4372
4373/*
4374 * Scroll a window according to the values set in the globals current_scrollbar
4375 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4376 * or FALSE otherwise.
4377 */
4378 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004379gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380{
4381 win_T *wp, *save_wp;
4382 int i;
4383 long nlines;
4384 pos_T old_cursor;
4385 linenr_T old_topline;
4386#ifdef FEAT_DIFF
4387 int old_topfill;
4388#endif
4389
4390 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4391 if (wp == NULL)
4392 break;
4393 if (wp == NULL)
4394 /* Couldn't find window */
4395 return FALSE;
4396
4397 /*
4398 * Compute number of lines to scroll. If zero, nothing to do.
4399 */
4400 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4401 if (nlines == 0)
4402 return FALSE;
4403
4404 save_wp = curwin;
4405 old_topline = wp->w_topline;
4406#ifdef FEAT_DIFF
4407 old_topfill = wp->w_topfill;
4408#endif
4409 old_cursor = wp->w_cursor;
4410 curwin = wp;
4411 curbuf = wp->w_buffer;
4412 if (nlines < 0)
4413 scrolldown(-nlines, gui.dragged_wp == NULL);
4414 else
4415 scrollup(nlines, gui.dragged_wp == NULL);
4416 /* Reset dragged_wp after using it. "dragged_sb" will have been reset for
4417 * the mouse-up event already, but we still want it to behave like when
4418 * dragging. But not the next click in an arrow. */
4419 if (gui.dragged_sb == SBAR_NONE)
4420 gui.dragged_wp = NULL;
4421
4422 if (old_topline != wp->w_topline
4423#ifdef FEAT_DIFF
4424 || old_topfill != wp->w_topfill
4425#endif
4426 )
4427 {
4428 if (p_so != 0)
4429 {
4430 cursor_correct(); /* fix window for 'so' */
4431 update_topline(); /* avoid up/down jump */
4432 }
4433 if (old_cursor.lnum != wp->w_cursor.lnum)
4434 coladvance(wp->w_curswant);
4435#ifdef FEAT_SCROLLBIND
4436 wp->w_scbind_pos = wp->w_topline;
4437#endif
4438 }
4439
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004440 /* Make sure wp->w_leftcol and wp->w_skipcol are correct. */
4441 validate_cursor();
4442
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 curwin = save_wp;
4444 curbuf = save_wp->w_buffer;
4445
4446 /*
4447 * Don't call updateWindow() when nothing has changed (it will overwrite
4448 * the status line!).
4449 */
4450 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004451 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452#ifdef FEAT_DIFF
4453 || old_topfill != wp->w_topfill
4454#endif
4455 )
4456 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004457 int type = VALID;
4458
4459#ifdef FEAT_INS_EXPAND
4460 if (pum_visible())
4461 {
4462 type = NOT_VALID;
4463 wp->w_lines_valid = 0;
4464 }
4465#endif
4466 /* Don't set must_redraw here, it may cause the popup menu to
4467 * disappear when losing focus after a scrollbar drag. */
4468 if (wp->w_redr_type < type)
4469 wp->w_redr_type = type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 updateWindow(wp); /* update window, status line, and cmdline */
4471 }
4472
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004473#ifdef FEAT_INS_EXPAND
4474 /* May need to redraw the popup menu. */
4475 if (pum_visible())
4476 pum_redraw();
4477#endif
4478
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor));
4480}
4481
4482
4483/*
4484 * Horizontal scrollbar stuff:
4485 */
4486
4487/*
4488 * Return length of line "lnum" for horizontal scrolling.
4489 */
4490 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004491scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492{
4493 char_u *p;
4494 colnr_T col;
4495 int w;
4496
4497 p = ml_get(lnum);
4498 col = 0;
4499 if (*p != NUL)
4500 for (;;)
4501 {
4502 w = chartabsize(p, col);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004503 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 if (*p == NUL) /* don't count the last character */
4505 break;
4506 col += w;
4507 }
4508 return col;
4509}
4510
4511/* Remember which line is currently the longest, so that we don't have to
4512 * search for it when scrolling horizontally. */
4513static linenr_T longest_lnum = 0;
4514
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004515/*
4516 * Find longest visible line number. If this is not possible (or not desired,
4517 * by setting 'h' in "guioptions") then the current line number is returned.
4518 */
4519 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004520gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004521{
4522 linenr_T ret = 0;
4523
4524 /* Calculate maximum for horizontal scrollbar. Check for reasonable
4525 * line numbers, topline and botline can be invalid when displaying is
4526 * postponed. */
4527 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4528 && curwin->w_topline <= curwin->w_cursor.lnum
4529 && curwin->w_botline > curwin->w_cursor.lnum
4530 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4531 {
4532 linenr_T lnum;
4533 colnr_T n;
4534 long max = 0;
4535
4536 /* Use maximum of all visible lines. Remember the lnum of the
4537 * longest line, closest to the cursor line. Used when scrolling
4538 * below. */
4539 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4540 {
4541 n = scroll_line_len(lnum);
4542 if (n > (colnr_T)max)
4543 {
4544 max = n;
4545 ret = lnum;
4546 }
4547 else if (n == (colnr_T)max
4548 && abs((int)(lnum - curwin->w_cursor.lnum))
4549 < abs((int)(ret - curwin->w_cursor.lnum)))
4550 ret = lnum;
4551 }
4552 }
4553 else
4554 /* Use cursor line only. */
4555 ret = curwin->w_cursor.lnum;
4556
4557 return ret;
4558}
4559
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004561gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562{
4563 long value, size, max; /* need 32 bit ints here */
4564
4565 if (!gui.which_scrollbars[SBAR_BOTTOM])
4566 return;
4567
4568 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4569 return;
4570
4571 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4572 return;
4573
4574 /*
4575 * It is possible for the cursor to be invalid if we're in the middle of
4576 * something (like changing files). If so, don't do anything for now.
4577 */
4578 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4579 {
4580 gui.bottom_sbar.value = -1;
4581 return;
4582 }
4583
4584 size = W_WIDTH(curwin);
4585 if (curwin->w_p_wrap)
4586 {
4587 value = 0;
4588#ifdef SCROLL_PAST_END
4589 max = 0;
4590#else
4591 max = W_WIDTH(curwin) - 1;
4592#endif
4593 }
4594 else
4595 {
4596 value = curwin->w_leftcol;
4597
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004598 longest_lnum = gui_find_longest_lnum();
4599 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601#ifdef FEAT_VIRTUALEDIT
4602 if (virtual_active())
4603 {
4604 /* May move the cursor even further to the right. */
4605 if (curwin->w_virtcol >= (colnr_T)max)
4606 max = curwin->w_virtcol;
4607 }
4608#endif
4609
4610#ifndef SCROLL_PAST_END
4611 max += W_WIDTH(curwin) - 1;
4612#endif
4613 /* The line number isn't scrolled, thus there is less space when
Bram Moolenaar64486672010-05-16 15:46:46 +02004614 * 'number' or 'relativenumber' is set (also for 'foldcolumn'). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 size -= curwin_col_off();
4616#ifndef SCROLL_PAST_END
4617 max -= curwin_col_off();
4618#endif
4619 }
4620
4621#ifndef SCROLL_PAST_END
4622 if (value > max - size + 1)
4623 value = max - size + 1; /* limit the value to allowable range */
4624#endif
4625
4626#ifdef FEAT_RIGHTLEFT
4627 if (curwin->w_p_rl)
4628 {
4629 value = max + 1 - size - value;
4630 if (value < 0)
4631 {
4632 size += value;
4633 value = 0;
4634 }
4635 }
4636#endif
4637 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4638 && max == gui.bottom_sbar.max)
4639 return;
4640
4641 gui.bottom_sbar.value = value;
4642 gui.bottom_sbar.size = size;
4643 gui.bottom_sbar.max = max;
4644 gui.prev_wrap = curwin->w_p_wrap;
4645
4646 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4647}
4648
4649/*
4650 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4651 */
4652 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004653gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654{
4655 /* no wrapping, no scrolling */
4656 if (curwin->w_p_wrap)
4657 return FALSE;
4658
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004659 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 return FALSE;
4661
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004662 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663
4664 /* When the line of the cursor is too short, move the cursor to the
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004665 * longest visible line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004667 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004668 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004670 if (compute_longest_lnum)
4671 {
4672 curwin->w_cursor.lnum = gui_find_longest_lnum();
4673 curwin->w_cursor.col = 0;
4674 }
4675 /* Do a sanity check on "longest_lnum", just in case. */
4676 else if (longest_lnum >= curwin->w_topline
4677 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 {
4679 curwin->w_cursor.lnum = longest_lnum;
4680 curwin->w_cursor.col = 0;
4681 }
4682 }
4683
4684 return leftcol_changed();
4685}
4686
4687/*
4688 * Check that none of the colors are the same as the background color
4689 */
4690 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004691gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692{
4693 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4694 {
4695 gui_set_bg_color((char_u *)"White");
4696 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4697 gui_set_fg_color((char_u *)"Black");
4698 }
4699}
4700
Bram Moolenaar3918c952005-03-15 22:34:55 +00004701 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004702gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
4704 gui.norm_pixel = gui_get_color(name);
4705 hl_set_fg_color_name(vim_strsave(name));
4706}
4707
Bram Moolenaar3918c952005-03-15 22:34:55 +00004708 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004709gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710{
4711 gui.back_pixel = gui_get_color(name);
4712 hl_set_bg_color_name(vim_strsave(name));
4713}
4714
4715/*
4716 * Allocate a color by name.
4717 * Returns INVALCOLOR and gives an error message when failed.
4718 */
4719 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004720gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721{
4722 guicolor_T t;
4723
4724 if (*name == NUL)
4725 return INVALCOLOR;
4726 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004727
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004729#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 && gui.in_use
4731#endif
4732 )
4733 EMSG2(_("E254: Cannot allocate color %s"), name);
4734 return t;
4735}
4736
4737/*
4738 * Return the grey value of a color (range 0-255).
4739 */
4740 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004741gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742{
4743 long_u rgb = gui_mch_get_rgb(pixel);
4744
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004745 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004746 + (((rgb >> 8) & 0xff) * 587)
4747 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748}
4749
4750#if defined(FEAT_GUI_X11) || defined(PROTO)
4751 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004752gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753{
4754 win_T *wp;
4755
4756 /* Nothing to do if GUI hasn't started yet. */
4757 if (!gui.in_use)
4758 return;
4759
4760 FOR_ALL_WINDOWS(wp)
4761 {
4762 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4763 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4764 }
4765 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4766}
4767#endif
4768
4769/*
4770 * Call this when focus has changed.
4771 */
4772 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004773gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774{
4775/*
4776 * Skip this code to avoid drawing the cursor when debugging and switching
4777 * between the debugger window and gvim.
4778 */
4779#if 1
4780 gui.in_focus = in_focus;
4781 out_flush(); /* make sure output has been written */
4782 gui_update_cursor(TRUE, FALSE);
4783
4784# ifdef FEAT_XIM
4785 xim_set_focus(in_focus);
4786# endif
4787
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004788 /* Put events in the input queue only when allowed.
4789 * ui_focus_change() isn't called directly, because it invokes
4790 * autocommands and that must not happen asynchronously. */
4791 if (!hold_gui_events)
4792 {
4793 char_u bytes[3];
4794
4795 bytes[0] = CSI;
4796 bytes[1] = KS_EXTRA;
4797 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4798 add_to_input_buf(bytes, 3);
4799 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800#endif
4801}
4802
4803/*
4804 * Called when the mouse moved (but not when dragging).
4805 */
4806 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004807gui_mouse_moved(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808{
4809 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004810 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811
Bram Moolenaard3667a22006-03-16 21:35:52 +00004812 /* Ignore this while still starting up. */
4813 if (!gui.in_use || gui.starting)
4814 return;
4815
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816#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
Bram Moolenaar9c102382006-05-03 21:26:49 +00004839#ifdef FEAT_WINDOWS
4840 /* Ignore position in the tab pages line. */
4841 if (Y_2_ROW(y) < tabline_height())
4842 return;
4843#endif
4844
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 /*
4846 * format a mouse click on status line input
4847 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004848 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4849 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 */
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,
Bram Moolenaar44a2f922016-03-19 22:11:51 +01004862#ifdef FEAT_WINDOWS
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004863 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864#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);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872#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
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004884gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885{
4886 int x, y;
4887 win_T *wp = NULL;
4888
4889 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004890
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;
Bram Moolenaar8798be02006-05-13 10:11:39 +00004898 if (y >= 0
Bram Moolenaar9c102382006-05-03 21:26:49 +00004899# ifdef FEAT_WINDOWS
Bram Moolenaar8798be02006-05-13 10:11:39 +00004900 && Y_2_ROW(y) >= tabline_height()
Bram Moolenaar9c102382006-05-03 21:26:49 +00004901# endif
Bram Moolenaar8798be02006-05-13 10:11:39 +00004902 )
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004903 wp = xy2win(x, y);
4904 if (wp != curwin && wp != NULL) /* If in other than current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004906 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 }
4911}
4912
4913/*
4914 * Find window where the mouse pointer "y" coordinate is in.
4915 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 static win_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004917xy2win(int x UNUSED, int y UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918{
4919#ifdef FEAT_WINDOWS
4920 int row;
4921 int col;
4922 win_T *wp;
4923
4924 row = Y_2_ROW(y);
4925 col = X_2_COL(x);
4926 if (row < 0 || col < 0) /* before first window */
4927 return NULL;
4928 wp = mouse_find_win(&row, &col);
4929# ifdef FEAT_MOUSESHAPE
4930 if (State == HITRETURN || State == ASKMORE)
4931 {
4932 if (Y_2_ROW(y) >= msg_row)
4933 update_mouseshape(SHAPE_IDX_MOREL);
4934 else
4935 update_mouseshape(SHAPE_IDX_MORE);
4936 }
4937 else if (row > wp->w_height) /* below status line */
4938 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 else if (!(State & CMDLINE) && W_VSEP_WIDTH(wp) > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004940 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 else if (!(State & CMDLINE) && W_STATUS_HEIGHT(wp) > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004943 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 update_mouseshape(SHAPE_IDX_STATUS);
4945 else
4946 update_mouseshape(-2);
4947# endif
4948 return wp;
4949#else
4950 return firstwin;
4951#endif
4952}
4953
4954/*
4955 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
4956 * File names may be given to redefine the args list.
4957 */
4958 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004959ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960{
4961 char_u *arg = eap->arg;
4962
4963 /*
4964 * Check for "-f" argument: foreground, don't fork.
4965 * Also don't fork when started with "gvim -f".
4966 * Do fork when using "gui -b".
4967 */
4968 if (arg[0] == '-'
4969 && (arg[1] == 'f' || arg[1] == 'b')
4970 && (arg[2] == NUL || vim_iswhite(arg[2])))
4971 {
4972 gui.dofork = (arg[1] == 'b');
4973 eap->arg = skipwhite(eap->arg + 2);
4974 }
4975 if (!gui.in_use)
4976 {
4977 /* Clear the command. Needed for when forking+exiting, to avoid part
4978 * of the argument ending up after the shell prompt. */
4979 msg_clr_eos_force();
4980 gui_start();
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004981#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01004982 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02004983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 }
4985 if (!ends_excmd(*eap->arg))
4986 ex_next(eap);
4987}
4988
4989#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00004990 || defined(FEAT_GUI_PHOTON)) && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991/*
4992 * This is shared between Athena, Motif and GTK.
4993 */
Bram Moolenaard25c16e2016-01-29 22:13:30 +01004994static void gfp_setname(char_u *fname, void *cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995
4996/*
4997 * Callback function for do_in_runtimepath().
4998 */
4999 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005000gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005002 char_u *gfp_buffer = cookie;
5003
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 if (STRLEN(fname) >= MAXPATHL)
5005 *gfp_buffer = NUL;
5006 else
5007 STRCPY(gfp_buffer, fname);
5008}
5009
5010/*
5011 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5012 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5013 */
5014 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005015gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016{
5017 if (STRLEN(name) > MAXPATHL - 14)
5018 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005019 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005020 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005021 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 return FAIL;
5023 return OK;
5024}
5025
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005026# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027/*
5028 * Given the name of the "icon=" argument, try finding the bitmap file for the
5029 * icon. If it is an absolute path name, use it as it is. Otherwise append
5030 * "ext" and search for it in 'runtimepath'.
5031 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5032 * contains "name".
5033 */
5034 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005035gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036{
5037 char_u buf[MAXPATHL + 1];
5038
5039 expand_env(name, buffer, MAXPATHL);
5040 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5041 STRCPY(buffer, buf);
5042}
5043# endif
5044#endif
5045
Bram Moolenaar9372a112005-12-06 19:59:18 +00005046#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005048display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049{
5050 char_u *p;
5051
5052 if (isatty(2))
5053 fflush(stderr);
5054 else if (error_ga.ga_data != NULL)
5055 {
5056 /* avoid putting up a message box with blanks only */
5057 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5058 if (!isspace(*p))
5059 {
5060 /* Truncate a very long message, it will go off-screen. */
5061 if (STRLEN(p) > 2000)
5062 STRCPY(p + 2000 - 14, "...(truncated)");
5063 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005064 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 break;
5066 }
5067 ga_clear(&error_ga);
5068 }
5069}
5070#endif
5071
5072#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5073/*
5074 * Return TRUE if still starting up and there is no place to enter text.
5075 * For GTK and X11 we check if stderr is not a tty, which means we were
5076 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5077 * allow typing on stdin.
5078 */
5079 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005080no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081{
5082 return ((!gui.in_use || gui.starting)
5083# ifndef NO_CONSOLE
5084 && !isatty(0) && !isatty(2)
5085# endif
5086 );
5087}
5088#endif
5089
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005090#if defined(FIND_REPLACE_DIALOG) || defined(FEAT_SUN_WORKSHOP) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005091 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005092 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093/*
5094 * Update the current window and the screen.
5095 */
5096 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005097gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005099#ifdef FEAT_CONCEAL
5100 linenr_T conceal_old_cursor_line = 0;
5101 linenr_T conceal_new_cursor_line = 0;
5102 int conceal_update_lines = FALSE;
5103#endif
5104
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 update_topline();
5106 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005107
5108#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaarec80df72008-05-07 19:46:51 +00005109 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005110 if (!finish_op && (
5111# ifdef FEAT_AUTOCMD
5112 has_cursormoved()
5113# endif
5114# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
5115 ||
5116# endif
5117# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005118 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005119# endif
5120 )
5121 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005122 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005123# ifdef FEAT_AUTOCMD
5124 if (has_cursormoved())
5125 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
5126# endif
5127# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005128 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005129 {
5130 conceal_old_cursor_line = last_cursormoved.lnum;
5131 conceal_new_cursor_line = curwin->w_cursor.lnum;
5132 conceal_update_lines = TRUE;
5133 }
5134# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005135 last_cursormoved = curwin->w_cursor;
5136 }
5137#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005138
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 update_screen(0); /* may need to update the screen */
5140 setcursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005141# if defined(FEAT_CONCEAL)
5142 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005143 && (conceal_old_cursor_line != conceal_new_cursor_line
5144 || conceal_cursor_line(curwin)
5145 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005146 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005147 if (conceal_old_cursor_line != conceal_new_cursor_line)
5148 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005149 update_single_line(curwin, conceal_new_cursor_line);
5150 curwin->w_valid &= ~VALID_CROW;
5151 }
5152# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 out_flush(); /* make sure output has been written */
5154 gui_update_cursor(TRUE, FALSE);
5155 gui_mch_flush();
5156}
5157#endif
5158
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005159#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005160static void concat_esc(garray_T *gap, char_u *text, int what);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161
5162/*
5163 * Get the text to use in a find/replace dialog. Uses the last search pattern
5164 * if the argument is empty.
5165 * Returns an allocated string.
5166 */
5167 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005168get_find_dialog_text(
5169 char_u *arg,
5170 int *wwordp, /* return: TRUE if \< \> found */
5171 int *mcasep) /* return: TRUE if \C found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172{
5173 char_u *text;
5174
5175 if (*arg == NUL)
5176 text = last_search_pat();
5177 else
5178 text = arg;
5179 if (text != NULL)
5180 {
5181 text = vim_strsave(text);
5182 if (text != NULL)
5183 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005184 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 int i;
5186
5187 /* Remove "\V" */
5188 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5189 {
5190 mch_memmove(text, text + 2, (size_t)(len - 1));
5191 len -= 2;
5192 }
5193
5194 /* Recognize "\c" and "\C" and remove. */
5195 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5196 {
5197 *mcasep = (text[1] == 'C');
5198 mch_memmove(text, text + 2, (size_t)(len - 1));
5199 len -= 2;
5200 }
5201
5202 /* Recognize "\<text\>" and remove. */
5203 if (len >= 4
5204 && STRNCMP(text, "\\<", 2) == 0
5205 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5206 {
5207 *wwordp = TRUE;
5208 mch_memmove(text, text + 2, (size_t)(len - 4));
5209 text[len - 4] = NUL;
5210 }
5211
5212 /* Recognize "\/" or "\?" and remove. */
5213 for (i = 0; i + 1 < len; ++i)
5214 if (text[i] == '\\' && (text[i + 1] == '/'
5215 || text[i + 1] == '?'))
5216 {
5217 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5218 --len;
5219 }
5220 }
5221 }
5222 return text;
5223}
5224
5225/*
5226 * Concatenate "text" to grow array "gap", escaping "what" with a backslash.
5227 */
5228 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005229concat_esc(garray_T *gap, char_u *text, int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230{
5231 while (*text != NUL)
5232 {
5233#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005234 int l = (*mb_ptr2len)(text);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005235
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (l > 1)
5237 {
5238 while (--l >= 0)
5239 ga_append(gap, *text++);
5240 continue;
5241 }
5242#endif
5243 if (*text == what)
5244 ga_append(gap, '\\');
5245 ga_append(gap, *text);
5246 ++text;
5247 }
5248}
5249
5250/*
5251 * Handle the press of a button in the find-replace dialog.
5252 * Return TRUE when something was added to the input buffer.
5253 */
5254 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005255gui_do_findrepl(
5256 int flags, /* one of FRD_REPLACE, FRD_FINDNEXT, etc. */
5257 char_u *find_text,
5258 char_u *repl_text,
5259 int down) /* Search downwards. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260{
5261 garray_T ga;
5262 int i;
5263 int type = (flags & FRD_TYPE_MASK);
5264 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005265 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005266 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005267 static int busy = FALSE;
5268
5269 /* When the screen is being updated we should not change buffers and
5270 * windows structures, it may cause freed memory to be used. Also don't
5271 * do this recursively (pressing "Find" quickly several times. */
5272 if (updating_screen || busy)
5273 return FALSE;
5274
5275 /* refuse replace when text cannot be changed */
5276 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5277 return FALSE;
5278
5279 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280
5281 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005282 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 ga_concat(&ga, (char_u *)"%s/");
5284
5285 ga_concat(&ga, (char_u *)"\\V");
5286 if (flags & FRD_MATCH_CASE)
5287 ga_concat(&ga, (char_u *)"\\C");
5288 else
5289 ga_concat(&ga, (char_u *)"\\c");
5290 if (flags & FRD_WHOLE_WORD)
5291 ga_concat(&ga, (char_u *)"\\<");
5292 if (type == FRD_REPLACEALL || down)
5293 concat_esc(&ga, find_text, '/'); /* escape slashes */
5294 else
5295 concat_esc(&ga, find_text, '?'); /* escape '?' */
5296 if (flags & FRD_WHOLE_WORD)
5297 ga_concat(&ga, (char_u *)"\\>");
5298
5299 if (type == FRD_REPLACEALL)
5300 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005302 /* escape / and \ */
5303 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5304 if (p != NULL)
5305 ga_concat(&ga, p);
5306 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005308 }
5309 ga_append(&ga, NUL);
5310
5311 if (type == FRD_REPLACE)
5312 {
5313 /* Do the replacement when the text at the cursor matches. Thus no
5314 * replacement is done if the cursor was moved! */
5315 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5316 regmatch.rm_ic = 0;
5317 if (regmatch.regprog != NULL)
5318 {
5319 p = ml_get_cursor();
5320 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5321 && regmatch.startp[0] == p)
5322 {
5323 /* Clear the command line to remove any old "No match"
5324 * error. */
5325 msg_end_prompt();
5326
5327 if (u_save_cursor() == OK)
5328 {
5329 /* A button was pressed thus undo should be synced. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005330 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005331
5332 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005333 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005334 ins_str(repl_text);
5335 }
5336 }
5337 else
5338 MSG(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005339 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005340 }
5341 }
5342
5343 if (type == FRD_REPLACEALL)
5344 {
5345 /* A button was pressed, thus undo should be synced. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005346 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 do_cmdline_cmd(ga.ga_data);
5348 }
5349 else
5350 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005351 int searchflags = SEARCH_MSG + SEARCH_MARK;
5352
5353 /* Search for the next match.
5354 * Don't skip text under cursor for single replace. */
5355 if (type == FRD_REPLACE)
5356 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 i = msg_scroll;
Bram Moolenaarcde88542015-08-11 19:14:00 +02005358 (void)do_search(NULL, down ? '/' : '?', ga.ga_data, 1L,
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005359 searchflags, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 msg_scroll = i; /* don't let an error message set msg_scroll */
5361 }
5362
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005363 /* Don't want to pass did_emsg to other code, it may cause disabling
5364 * syntax HL if we were busy redrawing. */
5365 did_emsg = save_did_emsg;
5366
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 if (State & (NORMAL | INSERT))
5368 {
5369 gui_update_screen(); /* update the screen */
5370 msg_didout = 0; /* overwrite any message */
5371 need_wait_return = FALSE; /* don't wait for return */
5372 }
5373
5374 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005375 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 return (ga.ga_len > 0);
5377}
5378
5379#endif
5380
5381#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5382 || defined(FEAT_GUI_MSWIN) \
5383 || defined(FEAT_GUI_MAC) \
5384 || defined(PROTO)
5385
5386#ifdef FEAT_WINDOWS
Bram Moolenaard25c16e2016-01-29 22:13:30 +01005387static void gui_wingoto_xy(int x, int y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388
5389/*
5390 * Jump to the window at specified point (x, y).
5391 */
5392 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005393gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394{
5395 int row = Y_2_ROW(y);
5396 int col = X_2_COL(x);
5397 win_T *wp;
5398
5399 if (row >= 0 && col >= 0)
5400 {
5401 wp = mouse_find_win(&row, &col);
5402 if (wp != NULL && wp != curwin)
5403 win_goto(wp);
5404 }
5405}
5406#endif
5407
5408/*
5409 * Process file drop. Mouse cursor position, key modifiers, name of files
5410 * and count of files are given. Argument "fnames[count]" has full pathnames
5411 * of dropped files, they will be freed in this function, and caller can't use
5412 * fnames after call this function.
5413 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005415gui_handle_drop(
5416 int x UNUSED,
5417 int y UNUSED,
5418 int_u modifiers,
5419 char_u **fnames,
5420 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421{
5422 int i;
5423 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005424 static int entered = FALSE;
5425
5426 /*
5427 * This function is called by event handlers. Just in case we get a
5428 * second event before the first one is handled, ignore the second one.
5429 * Not sure if this can ever happen, just in case.
5430 */
5431 if (entered)
5432 return;
5433 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434
5435 /*
5436 * When the cursor is at the command line, add the file names to the
5437 * command line, don't edit the files.
5438 */
5439 if (State & CMDLINE)
5440 {
5441 shorten_filenames(fnames, count);
5442 for (i = 0; i < count; ++i)
5443 {
5444 if (fnames[i] != NULL)
5445 {
5446 if (i > 0)
5447 add_to_input_buf((char_u*)" ", 1);
5448
5449 /* We don't know what command is used thus we can't be sure
5450 * about which characters need to be escaped. Only escape the
5451 * most common ones. */
5452# ifdef BACKSLASH_IN_FILENAME
5453 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5454# else
5455 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5456# endif
5457 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005458 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 vim_free(p);
5460 vim_free(fnames[i]);
5461 }
5462 }
5463 vim_free(fnames);
5464 }
5465 else
5466 {
5467 /* Go to the window under mouse cursor, then shorten given "fnames" by
5468 * current window, because a window can have local current dir. */
5469# ifdef FEAT_WINDOWS
5470 gui_wingoto_xy(x, y);
5471# endif
5472 shorten_filenames(fnames, count);
5473
5474 /* If Shift held down, remember the first item. */
5475 if ((modifiers & MOUSE_SHIFT) != 0)
5476 p = vim_strsave(fnames[0]);
5477 else
5478 p = NULL;
5479
5480 /* Handle the drop, :edit or :split to get to the file. This also
5481 * frees fnames[]. Skip this if there is only one item it's a
5482 * directory and Shift is held down. */
5483 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5484 && mch_isdir(fnames[0]))
5485 {
5486 vim_free(fnames[0]);
5487 vim_free(fnames);
5488 }
5489 else
5490 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0);
5491
5492 /* If Shift held down, change to first file's directory. If the first
5493 * item is a directory, change to that directory (and let the explorer
5494 * plugin show the contents). */
5495 if (p != NULL)
5496 {
5497 if (mch_isdir(p))
5498 {
5499 if (mch_chdir((char *)p) == 0)
5500 shorten_fnames(TRUE);
5501 }
5502 else if (vim_chdirfile(p) == OK)
5503 shorten_fnames(TRUE);
5504 vim_free(p);
5505 }
5506
5507 /* Update the screen display */
5508 update_screen(NOT_VALID);
5509# ifdef FEAT_MENU
5510 gui_update_menus(0);
5511# endif
Bram Moolenaarca7e1f22010-05-22 15:50:12 +02005512#ifdef FEAT_TITLE
5513 maketitle();
5514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 setcursor();
5516 out_flush();
5517 gui_update_cursor(FALSE, FALSE);
5518 gui_mch_flush();
5519 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005520
5521 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522}
5523#endif