blob: 06a99e6cba16e822d438ed8395ef095814095883 [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 Moolenaar071d4272004-06-13 20:20:40 +000017static void set_guifontwide __ARGS((char_u *font_name));
18#endif
19static void gui_check_pos __ARGS((void));
20static void gui_position_components __ARGS((int));
21static void gui_outstr __ARGS((char_u *, int));
22static int gui_screenchar __ARGS((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 Moolenaar071d4272004-06-13 20:20:40 +000024static int gui_screenstr __ARGS((int off, int len, int flags, guicolor_T fg, guicolor_T bg, int back));
25#endif
26static void gui_delete_lines __ARGS((int row, int count));
27static void gui_insert_lines __ARGS((int row, int count));
28static void fill_mouse_coord __ARGS((char_u *p, int col, int row));
Bram Moolenaar32466aa2006-02-24 23:53:04 +000029#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
30static int gui_has_tabline __ARGS((void));
31#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000032static void gui_do_scrollbar __ARGS((win_T *wp, int which, int enable));
33static colnr_T scroll_line_len __ARGS((linenr_T lnum));
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +020034static linenr_T gui_find_longest_lnum __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000035static void gui_update_horiz_scrollbar __ARGS((int));
Bram Moolenaar3918c952005-03-15 22:34:55 +000036static void gui_set_fg_color __ARGS((char_u *name));
37static void gui_set_bg_color __ARGS((char_u *name));
Bram Moolenaar071d4272004-06-13 20:20:40 +000038static win_T *xy2win __ARGS((int x, int y));
39
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
42static void gui_do_fork __ARGS((void));
43
44static int gui_read_child_pipe __ARGS((int fd));
45
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
55static void gui_attempt_start __ARGS((void));
56
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
76gui_start()
77{
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)
108 exit(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
155gui_attempt_start()
156{
157 static int recursive = 0;
158
159 ++recursive;
160 gui.starting = TRUE;
161
162#ifdef FEAT_GUI_GTK
163 gui.event_time = GDK_CURRENT_TIME;
164#endif
165
166 termcapinit((char_u *)"builtin_gui");
167 gui.starting = recursive - 1;
168
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
207gui_do_fork()
208{
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)
275 exit(1);
276#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)
312 exit(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
348gui_prepare(argc, argv)
349 int *argc;
350 char **argv;
351{
352 gui.in_use = FALSE; /* No GUI yet (maybe later) */
353 gui.starting = FALSE; /* No GUI yet (maybe later) */
354 gui_mch_prepare(argc, argv);
355}
356
357/*
358 * Try initializing the GUI and check if it can be started.
359 * Used from main() to check early if "vim -g" can start the GUI.
360 * Used from gui_init() to prepare for starting the GUI.
361 * Returns FAIL or OK.
362 */
363 int
364gui_init_check()
365{
366 static int result = MAYBE;
367
368 if (result != MAYBE)
369 {
370 if (result == FAIL)
371 EMSG(_("E229: Cannot start the GUI"));
372 return result;
373 }
374
375 gui.shell_created = FALSE;
376 gui.dying = FALSE;
377 gui.in_focus = TRUE; /* so the guicursor setting works */
378 gui.dragged_sb = SBAR_NONE;
379 gui.dragged_wp = NULL;
380 gui.pointer_hidden = FALSE;
381 gui.col = 0;
382 gui.row = 0;
383 gui.num_cols = Columns;
384 gui.num_rows = Rows;
385
386 gui.cursor_is_valid = FALSE;
387 gui.scroll_region_top = 0;
388 gui.scroll_region_bot = Rows - 1;
389 gui.scroll_region_left = 0;
390 gui.scroll_region_right = Columns - 1;
391 gui.highlight_mask = HL_NORMAL;
392 gui.char_width = 1;
393 gui.char_height = 1;
394 gui.char_ascent = 0;
395 gui.border_width = 0;
396
397 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200398#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 gui.bold_font = NOFONT;
400 gui.ital_font = NOFONT;
401 gui.boldital_font = NOFONT;
402# ifdef FEAT_XFONTSET
403 gui.fontset = NOFONTSET;
404# endif
405#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200406#ifdef FEAT_MBYTE
407 gui.wide_font = NOFONT;
408# ifndef FEAT_GUI_GTK
409 gui.wide_bold_font = NOFONT;
410 gui.wide_ital_font = NOFONT;
411 gui.wide_boldital_font = NOFONT;
412# endif
413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
415#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200416# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417# ifdef FONTSET_ALWAYS
418 gui.menu_fontset = NOFONTSET;
419# else
420 gui.menu_font = NOFONT;
421# endif
422# endif
423 gui.menu_is_active = TRUE; /* default: include menu */
424# ifndef FEAT_GUI_GTK
425 gui.menu_height = MENU_DEFAULT_HEIGHT;
426 gui.menu_width = 0;
427# endif
428#endif
429#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
430 gui.toolbar_height = 0;
431#endif
432#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
433 gui.footer_height = 0;
434#endif
435#ifdef FEAT_BEVAL_TIP
436 gui.tooltip_fontset = NOFONTSET;
437#endif
438
439 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
440 gui.prev_wrap = -1;
441
442#ifdef ALWAYS_USE_GUI
443 result = OK;
444#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200445# ifdef FEAT_GUI_GTK
446 /*
447 * Note: Don't call gtk_init_check() before fork, it will be called after
448 * the fork. When calling it before fork, it make vim hang for a while.
449 * See gui_do_fork().
450 * Use a simpler check if the GUI window can probably be opened.
451 */
452 result = gui.dofork ? gui_mch_early_init_check() : gui_mch_init_check();
453# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200455# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456#endif
457 return result;
458}
459
460/*
461 * This is the call which starts the GUI.
462 */
463 void
464gui_init()
465{
466 win_T *wp;
467 static int recursive = 0;
468
469 /*
470 * It's possible to use ":gui" in a .gvimrc file. The first halve of this
471 * function will then be executed at the first call, the rest by the
472 * recursive call. This allow the shell to be opened halfway reading a
473 * gvimrc file.
474 */
475 if (!recursive)
476 {
477 ++recursive;
478
479 clip_init(TRUE);
480
481 /* If can't initialize, don't try doing the rest */
482 if (gui_init_check() == FAIL)
483 {
484 --recursive;
485 clip_init(FALSE);
486 return;
487 }
488
489 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000490 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
491 * breaks the Paste toolbar button.
492 */
493 set_option_value((char_u *)"paste", 0L, NULL, 0);
494
495 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 * Set up system-wide default menus.
497 */
498#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
499 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
500 {
501 sys_menu = TRUE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000502 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 sys_menu = FALSE;
504 }
505#endif
506
507 /*
508 * Switch on the mouse by default, unless the user changed it already.
509 * This can then be changed in the .gvimrc.
510 */
511 if (!option_was_set((char_u *)"mouse"))
512 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000513 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514
515 /*
516 * If -U option given, use only the initializations from that file and
517 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
518 */
519 if (use_gvimrc != NULL)
520 {
521 if (STRCMP(use_gvimrc, "NONE") != 0
522 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000523 && do_source(use_gvimrc, FALSE, DOSO_NONE) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 EMSG2(_("E230: Cannot read from \"%s\""), use_gvimrc);
525 }
526 else
527 {
528 /*
529 * Get system wide defaults for gvim, only when file name defined.
530 */
531#ifdef SYS_GVIMRC_FILE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000532 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#endif
534
535 /*
536 * Try to read GUI initialization commands from the following
537 * places:
538 * - environment variable GVIMINIT
539 * - the user gvimrc file (~/.gvimrc)
540 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
541 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
542 * The first that exists is used, the rest is ignored.
543 */
544 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000545 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
546 DOSO_GVIMRC) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000548 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
549 DOSO_GVIMRC) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200551#ifdef USR_GVIMRC_FILE3
552 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
553 DOSO_GVIMRC) == FAIL
554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 )
556 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200557#ifdef USR_GVIMRC_FILE4
558 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE, DOSO_GVIMRC);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559#endif
560 }
561
562 /*
563 * Read initialization commands from ".gvimrc" in current
564 * directory. This is only done if the 'exrc' option is set.
565 * Because of security reasons we disallow shell and write
566 * commands now, except for unix if the file is owned by the user
567 * or 'secure' option has been reset in environment of global
568 * ".gvimrc".
569 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
570 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
571 */
572 if (p_exrc)
573 {
574#ifdef UNIX
575 {
576 struct stat s;
577
578 /* if ".gvimrc" file is not owned by user, set 'secure'
579 * mode */
580 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
581 secure = p_secure;
582 }
583#else
584 secure = p_secure;
585#endif
586
587 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
588 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
589#ifdef SYS_GVIMRC_FILE
590 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
591 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
592#endif
593#ifdef USR_GVIMRC_FILE2
594 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
595 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
596#endif
597#ifdef USR_GVIMRC_FILE3
598 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
599 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
600#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200601#ifdef USR_GVIMRC_FILE4
602 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
603 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
604#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 )
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000606 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
608 if (secure == 2)
609 need_wait_return = TRUE;
610 secure = 0;
611 }
612 }
613
614 if (need_wait_return || msg_didany)
615 wait_return(TRUE);
616
617 --recursive;
618 }
619
620 /* If recursive call opened the shell, return here from the first call */
621 if (gui.in_use)
622 return;
623
624 /*
625 * Create the GUI shell.
626 */
627 gui.in_use = TRUE; /* Must be set after menus have been set up */
628 if (gui_mch_init() == FAIL)
629 goto error;
630
631 /* Avoid a delay for an error message that was printed in the terminal
632 * where Vim was started. */
633 emsg_on_display = FALSE;
634 msg_scrolled = 0;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000635 clear_sb_text();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 need_wait_return = FALSE;
637 msg_didany = FALSE;
638
639 /*
640 * Check validity of any generic resources that may have been loaded.
641 */
642 if (gui.border_width < 0)
643 gui.border_width = 0;
644
645 /*
646 * Set up the fonts. First use a font specified with "-fn" or "-font".
647 */
648 if (font_argument != NULL)
649 set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
650 if (
651#ifdef FEAT_XFONTSET
652 (*p_guifontset == NUL
653 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
654#endif
655 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
656 : p_guifont, FALSE) == FAIL)
657 {
658 EMSG(_("E665: Cannot start GUI, no valid font found"));
659 goto error2;
660 }
661#ifdef FEAT_MBYTE
662 if (gui_get_wide_font() == FAIL)
663 EMSG(_("E231: 'guifontwide' invalid"));
664#endif
665
666 gui.num_cols = Columns;
667 gui.num_rows = Rows;
668 gui_reset_scroll_region();
669
670 /* Create initial scrollbars */
671 FOR_ALL_WINDOWS(wp)
672 {
673 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
674 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
675 }
676 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
677
678#ifdef FEAT_MENU
679 gui_create_initial_menus(root_menu);
680#endif
681#ifdef FEAT_SUN_WORKSHOP
682 if (usingSunWorkShop)
683 workshop_init();
684#endif
685#ifdef FEAT_SIGN_ICONS
686 sign_gui_started();
687#endif
688
689 /* Configure the desired menu and scrollbars */
690 gui_init_which_components(NULL);
691
692 /* All components of the GUI have been created now */
693 gui.shell_created = TRUE;
694
695#ifndef FEAT_GUI_GTK
696 /* Set the shell size, adjusted for the screen size. For GTK this only
697 * works after the shell has been opened, thus it is further down. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000698 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699#endif
700#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
701 /* Need to set the size of the menubar after all the menus have been
702 * created. */
703 gui_mch_compute_menu_height((Widget)0);
704#endif
705
706 /*
707 * Actually open the GUI shell.
708 */
709 if (gui_mch_open() != FAIL)
710 {
711#ifdef FEAT_TITLE
712 maketitle();
713 resettitle();
714#endif
715 init_gui_options();
716#ifdef FEAT_ARABIC
717 /* Our GUI can't do bidi. */
718 p_tbidi = FALSE;
719#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000720#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 /* Give GTK+ a chance to put all widget's into place. */
722 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000723
724# ifdef FEAT_MENU
725 /* If there is no 'm' in 'guioptions' we need to remove the menu now.
726 * It was still there to make F10 work. */
727 if (vim_strchr(p_go, GO_MENUS) == NULL)
728 {
729 --gui.starting;
730 gui_mch_enable_menu(FALSE);
731 ++gui.starting;
732 gui_mch_update();
733 }
734# endif
735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 /* Now make sure the shell fits on the screen. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +0000737 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738#endif
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000739 /* When 'lines' was set while starting up the topframe may have to be
740 * resized. */
741 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000742
743#ifdef FEAT_BEVAL
744 /* Always create the Balloon Evaluation area, but disable it when
745 * 'ballooneval' is off */
746# ifdef FEAT_GUI_GTK
747 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
748 &general_beval_cb, NULL);
749# else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000750# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000751 {
752 extern Widget textArea;
753 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000754 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000755 }
756# else
757# ifdef FEAT_GUI_W32
758 balloonEval = gui_mch_create_beval_area(NULL, NULL,
759 &general_beval_cb, NULL);
760# endif
761# endif
762# endif
763 if (!p_beval)
764 gui_mch_disable_beval_area(balloonEval);
765#endif
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
768 if (!im_xim_isvalid_imactivate())
769 EMSG(_("E599: Value of 'imactivatekey' is invalid"));
770#endif
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000771 /* When 'cmdheight' was set during startup it may not have taken
772 * effect yet. */
773 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000774 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775
776 return;
777 }
778
779error2:
780#ifdef FEAT_GUI_X11
781 /* undo gui_mch_init() */
782 gui_mch_uninit();
783#endif
784
785error:
786 gui.in_use = FALSE;
787 clip_init(FALSE);
788}
789
790
791 void
792gui_exit(rc)
793 int rc;
794{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 /* don't free the fonts, it leads to a BUS error
796 * richard@whitequeen.com Jul 99 */
797 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 gui.in_use = FALSE;
799 gui_mch_exit(rc);
800}
801
Bram Moolenaar9372a112005-12-06 19:59:18 +0000802#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000804# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805/*
806 * Called when the GUI shell is closed by the user. If there are no changed
807 * files Vim exits, otherwise there will be a dialog to ask the user what to
808 * do.
809 * When this function returns, Vim should NOT exit!
810 */
811 void
812gui_shell_closed()
813{
814 cmdmod_T save_cmdmod;
815
816 save_cmdmod = cmdmod;
817
818 /* Only exit when there are no changed files */
819 exiting = TRUE;
820# ifdef FEAT_BROWSE
821 cmdmod.browse = TRUE;
822# endif
823# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
824 cmdmod.confirm = TRUE;
825# endif
826 /* If there are changed buffers, present the user with a dialog if
827 * possible, otherwise give an error message. */
828 if (!check_changed_any(FALSE))
829 getout(0);
830
831 exiting = FALSE;
832 cmdmod = save_cmdmod;
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000833 gui_update_screen(); /* redraw, window may show changed buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834}
835#endif
836
837/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200838 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 * first font name that works is used. If none is found, use the default
840 * font.
841 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
842 * Return OK when able to set the font. When it failed FAIL is returned and
843 * the fonts are unchanged.
844 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 int
846gui_init_font(font_list, fontset)
847 char_u *font_list;
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000848 int fontset UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849{
850#define FONTLEN 320
851 char_u font_name[FONTLEN];
852 int font_list_empty = FALSE;
853 int ret = FAIL;
854
855 if (!gui.in_use)
856 return FAIL;
857
858 font_name[0] = NUL;
859 if (*font_list == NUL)
860 font_list_empty = TRUE;
861 else
862 {
863#ifdef FEAT_XFONTSET
864 /* When using a fontset, the whole list of fonts is one name. */
865 if (fontset)
866 ret = gui_mch_init_font(font_list, TRUE);
867 else
868#endif
869 while (*font_list != NUL)
870 {
871 /* Isolate one comma separated font name. */
872 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
873
874 /* Careful!!! The Win32 version of gui_mch_init_font(), when
875 * called with "*" will change p_guifont to the selected font
876 * name, which frees the old value. This makes font_list
877 * invalid. Thus when OK is returned here, font_list must no
878 * longer be used! */
879 if (gui_mch_init_font(font_name, FALSE) == OK)
880 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200881#if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 /* If it's a Unicode font, try setting 'guifontwide' to a
883 * similar double-width font. */
884 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
885 && strstr((char *)font_name, "10646") != NULL)
886 set_guifontwide(font_name);
887#endif
888 ret = OK;
889 break;
890 }
891 }
892 }
893
894 if (ret != OK
895 && STRCMP(font_list, "*") != 0
896 && (font_list_empty || gui.norm_font == NOFONT))
897 {
898 /*
899 * Couldn't load any font in 'font_list', keep the current font if
900 * there is one. If 'font_list' is empty, or if there is no current
901 * font, tell gui_mch_init_font() to try to find a font we can load.
902 */
903 ret = gui_mch_init_font(NULL, FALSE);
904 }
905
906 if (ret == OK)
907 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200908#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 /* Set normal font as current font */
910# ifdef FEAT_XFONTSET
911 if (gui.fontset != NOFONTSET)
912 gui_mch_set_fontset(gui.fontset);
913 else
914# endif
915 gui_mch_set_font(gui.norm_font);
916#endif
Bram Moolenaarb0316262012-11-20 12:03:06 +0100917 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 }
919
920 return ret;
921}
922
923#if defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200924# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925/*
926 * Try setting 'guifontwide' to a font twice as wide as "name".
927 */
928 static void
929set_guifontwide(name)
930 char_u *name;
931{
932 int i = 0;
933 char_u wide_name[FONTLEN + 10]; /* room for 2 * width and '*' */
934 char_u *wp = NULL;
935 char_u *p;
936 GuiFont font;
937
938 wp = wide_name;
939 for (p = name; *p != NUL; ++p)
940 {
941 *wp++ = *p;
942 if (*p == '-')
943 {
944 ++i;
945 if (i == 6) /* font type: change "--" to "-*-" */
946 {
947 if (p[1] == '-')
948 *wp++ = '*';
949 }
950 else if (i == 12) /* found the width */
951 {
952 ++p;
953 i = getdigits(&p);
954 if (i != 0)
955 {
956 /* Double the width specification. */
957 sprintf((char *)wp, "%d%s", i * 2, p);
958 font = gui_mch_get_font(wide_name, FALSE);
959 if (font != NOFONT)
960 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000961 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 gui.wide_font = font;
963 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000964 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 }
966 }
967 break;
968 }
969 }
970 }
971}
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200972# endif /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
974/*
975 * Get the font for 'guifontwide'.
976 * Return FAIL for an invalid font name.
977 */
978 int
979gui_get_wide_font()
980{
981 GuiFont font = NOFONT;
982 char_u font_name[FONTLEN];
983 char_u *p;
984
985 if (!gui.in_use) /* Can't allocate font yet, assume it's OK. */
986 return OK; /* Will give an error message later. */
987
988 if (p_guifontwide != NULL && *p_guifontwide != NUL)
989 {
990 for (p = p_guifontwide; *p != NUL; )
991 {
992 /* Isolate one comma separated font name. */
993 (void)copy_option_part(&p, font_name, FONTLEN, ",");
994 font = gui_mch_get_font(font_name, FALSE);
995 if (font != NOFONT)
996 break;
997 }
998 if (font == NOFONT)
999 return FAIL;
1000 }
1001
1002 gui_mch_free_font(gui.wide_font);
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001003# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
1005 if (font != NOFONT && gui.norm_font != NOFONT
1006 && pango_font_description_equal(font, gui.norm_font))
1007 {
1008 gui.wide_font = NOFONT;
1009 gui_mch_free_font(font);
1010 }
1011 else
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001012# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 gui.wide_font = font;
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001014# ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001015 gui_mch_wide_font_changed();
Bram Moolenaardb250522013-06-17 22:43:25 +02001016# else
1017 /*
1018 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1019 * support those fonts for 'guifontwide'.
1020 */
Bram Moolenaarcdffbea2013-04-03 21:11:39 +02001021# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 return OK;
1023}
1024#endif
1025
1026 void
1027gui_set_cursor(row, col)
1028 int row;
1029 int col;
1030{
1031 gui.row = row;
1032 gui.col = col;
1033}
1034
1035/*
1036 * gui_check_pos - check if the cursor is on the screen.
1037 */
1038 static void
1039gui_check_pos()
1040{
1041 if (gui.row >= screen_Rows)
1042 gui.row = screen_Rows - 1;
1043 if (gui.col >= screen_Columns)
1044 gui.col = screen_Columns - 1;
1045 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1046 gui.cursor_is_valid = FALSE;
1047}
1048
1049/*
1050 * Redraw the cursor if necessary or when forced.
1051 * Careful: The contents of ScreenLines[] must match what is on the screen,
1052 * otherwise this goes wrong. May need to call out_flush() first.
1053 */
1054 void
1055gui_update_cursor(force, clear_selection)
1056 int force; /* when TRUE, update even when not moved */
1057 int clear_selection;/* clear selection under cursor */
1058{
1059 int cur_width = 0;
1060 int cur_height = 0;
1061 int old_hl_mask;
1062 int idx;
1063 int id;
1064 guicolor_T cfg, cbg, cc; /* cursor fore-/background color */
1065 int cattr; /* cursor attributes */
1066 int attr;
1067 attrentry_T *aep = NULL;
1068
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001069 /* Don't update the cursor when halfway busy scrolling or the screen size
1070 * doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. */
1071 if (!can_update_cursor || screen_Columns != gui.num_cols
1072 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 return;
1074
1075 gui_check_pos();
1076 if (!gui.cursor_is_valid || force
1077 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1078 {
1079 gui_undraw_cursor();
1080 if (gui.row < 0)
1081 return;
1082#ifdef USE_IM_CONTROL
1083 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1084 im_set_position(gui.row, gui.col);
1085#endif
1086 gui.cursor_row = gui.row;
1087 gui.cursor_col = gui.col;
1088
1089 /* Only write to the screen after ScreenLines[] has been initialized */
1090 if (!screen_cleared || ScreenLines == NULL)
1091 return;
1092
1093 /* Clear the selection if we are about to write over it */
1094 if (clear_selection)
1095 clip_may_clear_selection(gui.row, gui.row);
1096 /* Check that the cursor is inside the shell (resizing may have made
1097 * it invalid) */
1098 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1099 return;
1100
1101 gui.cursor_is_valid = TRUE;
1102
1103 /*
1104 * How the cursor is drawn depends on the current mode.
1105 */
1106 idx = get_shape_idx(FALSE);
1107 if (State & LANGMAP)
1108 id = shape_table[idx].id_lm;
1109 else
1110 id = shape_table[idx].id;
1111
1112 /* get the colors and attributes for the cursor. Default is inverted */
1113 cfg = INVALCOLOR;
1114 cbg = INVALCOLOR;
1115 cattr = HL_INVERSE;
1116 gui_mch_set_blinking(shape_table[idx].blinkwait,
1117 shape_table[idx].blinkon,
1118 shape_table[idx].blinkoff);
1119 if (id > 0)
1120 {
1121 cattr = syn_id2colors(id, &cfg, &cbg);
1122#if defined(USE_IM_CONTROL) || defined(FEAT_HANGULIN)
1123 {
1124 static int iid;
1125 guicolor_T fg, bg;
1126
Bram Moolenaarc236c162008-07-13 17:41:49 +00001127 if (
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001128# if defined(FEAT_GUI_GTK) && !defined(FEAT_HANGULIN)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001129 preedit_get_status()
1130# else
1131 im_get_status()
1132# endif
1133 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 {
1135 iid = syn_name2id((char_u *)"CursorIM");
1136 if (iid > 0)
1137 {
1138 syn_id2colors(iid, &fg, &bg);
1139 if (bg != INVALCOLOR)
1140 cbg = bg;
1141 if (fg != INVALCOLOR)
1142 cfg = fg;
1143 }
1144 }
1145 }
1146#endif
1147 }
1148
1149 /*
1150 * Get the attributes for the character under the cursor.
1151 * When no cursor color was given, use the character color.
1152 */
1153 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1154 if (attr > HL_ALL)
1155 aep = syn_gui_attr2entry(attr);
1156 if (aep != NULL)
1157 {
1158 attr = aep->ae_attr;
1159 if (cfg == INVALCOLOR)
1160 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1161 : aep->ae_u.gui.fg_color);
1162 if (cbg == INVALCOLOR)
1163 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1164 : aep->ae_u.gui.bg_color);
1165 }
1166 if (cfg == INVALCOLOR)
1167 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1168 if (cbg == INVALCOLOR)
1169 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1170
1171#ifdef FEAT_XIM
1172 if (aep != NULL)
1173 {
1174 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1175 : aep->ae_u.gui.bg_color);
1176 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1177 : aep->ae_u.gui.fg_color);
1178 if (xim_bg_color == INVALCOLOR)
1179 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1180 : gui.back_pixel;
1181 if (xim_fg_color == INVALCOLOR)
1182 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1183 : gui.norm_pixel;
1184 }
1185 else
1186 {
1187 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1188 : gui.back_pixel;
1189 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1190 : gui.norm_pixel;
1191 }
1192#endif
1193
1194 attr &= ~HL_INVERSE;
1195 if (cattr & HL_INVERSE)
1196 {
1197 cc = cbg;
1198 cbg = cfg;
1199 cfg = cc;
1200 }
1201 cattr &= ~HL_INVERSE;
1202
1203 /*
1204 * When we don't have window focus, draw a hollow cursor.
1205 */
1206 if (!gui.in_focus)
1207 {
1208 gui_mch_draw_hollow_cursor(cbg);
1209 return;
1210 }
1211
1212 old_hl_mask = gui.highlight_mask;
1213 if (shape_table[idx].shape == SHAPE_BLOCK
1214#ifdef FEAT_HANGULIN
1215 || composing_hangul
1216#endif
1217 )
1218 {
1219 /*
1220 * Draw the text character with the cursor colors. Use the
1221 * character attributes plus the cursor attributes.
1222 */
1223 gui.highlight_mask = (cattr | attr);
1224#ifdef FEAT_HANGULIN
1225 if (composing_hangul)
1226 (void)gui_outstr_nowrap(composing_hangul_buffer, 2,
1227 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1228 else
1229#endif
1230 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1231 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1232 }
1233 else
1234 {
1235#if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1236 int col_off = FALSE;
1237#endif
1238 /*
1239 * First draw the partial cursor, then overwrite with the text
1240 * character, using a transparent background.
1241 */
1242 if (shape_table[idx].shape == SHAPE_VER)
1243 {
1244 cur_height = gui.char_height;
1245 cur_width = (gui.char_width * shape_table[idx].percentage
1246 + 99) / 100;
1247 }
1248 else
1249 {
1250 cur_height = (gui.char_height * shape_table[idx].percentage
1251 + 99) / 100;
1252 cur_width = gui.char_width;
1253 }
1254#ifdef FEAT_MBYTE
Bram Moolenaar367329b2007-08-30 11:53:22 +00001255 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1256 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 {
1258 /* Double wide character. */
1259 if (shape_table[idx].shape != SHAPE_VER)
1260 cur_width += gui.char_width;
1261# ifdef FEAT_RIGHTLEFT
1262 if (CURSOR_BAR_RIGHT)
1263 {
1264 /* gui.col points to the left halve of the character but
1265 * the vertical line needs to be on the right halve.
1266 * A double-wide horizontal line is also drawn from the
1267 * right halve in gui_mch_draw_part_cursor(). */
1268 col_off = TRUE;
1269 ++gui.col;
1270 }
1271# endif
1272 }
1273#endif
1274 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
1275#if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1276 if (col_off)
1277 --gui.col;
1278#endif
1279
1280#ifndef FEAT_GUI_MSWIN /* doesn't seem to work for MSWindows */
1281 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1282 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1283 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1284 (guicolor_T)0, (guicolor_T)0, 0);
1285#endif
1286 }
1287 gui.highlight_mask = old_hl_mask;
1288 }
1289}
1290
1291#if defined(FEAT_MENU) || defined(PROTO)
1292 void
1293gui_position_menu()
1294{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001295# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 if (gui.menu_is_active && gui.in_use)
1297 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1298# endif
1299}
1300#endif
1301
1302/*
1303 * Position the various GUI components (text area, menu). The vertical
1304 * scrollbars are NOT handled here. See gui_update_scrollbars().
1305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 static void
1307gui_position_components(total_width)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001308 int total_width UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309{
1310 int text_area_x;
1311 int text_area_y;
1312 int text_area_width;
1313 int text_area_height;
1314
1315 /* avoid that moving components around generates events */
1316 ++hold_gui_events;
1317
1318 text_area_x = 0;
1319 if (gui.which_scrollbars[SBAR_LEFT])
1320 text_area_x += gui.scrollbar_width;
1321
1322 text_area_y = 0;
1323#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1324 gui.menu_width = total_width;
1325 if (gui.menu_is_active)
1326 text_area_y += gui.menu_height;
1327#endif
1328#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1329 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1330 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1331#endif
1332
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001333# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001334 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001335 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001336 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001337#endif
1338
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1340 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1341 {
1342# ifdef FEAT_GUI_ATHENA
1343 gui_mch_set_toolbar_pos(0, text_area_y,
1344 gui.menu_width, gui.toolbar_height);
1345# endif
1346 text_area_y += gui.toolbar_height;
1347 }
1348#endif
1349
1350 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1351 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1352
1353 gui_mch_set_text_area_pos(text_area_x,
1354 text_area_y,
1355 text_area_width,
1356 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001357#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 + xim_get_status_area_height()
1359#endif
1360 );
1361#ifdef FEAT_MENU
1362 gui_position_menu();
1363#endif
1364 if (gui.which_scrollbars[SBAR_BOTTOM])
1365 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1366 text_area_x,
1367 text_area_y + text_area_height,
1368 text_area_width,
1369 gui.scrollbar_height);
1370 gui.left_sbar_x = 0;
1371 gui.right_sbar_x = text_area_x + text_area_width;
1372
1373 --hold_gui_events;
1374}
1375
Bram Moolenaar02743632005-07-25 20:42:36 +00001376/*
1377 * Get the width of the widgets and decorations to the side of the text area.
1378 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 int
1380gui_get_base_width()
1381{
1382 int base_width;
1383
1384 base_width = 2 * gui.border_offset;
1385 if (gui.which_scrollbars[SBAR_LEFT])
1386 base_width += gui.scrollbar_width;
1387 if (gui.which_scrollbars[SBAR_RIGHT])
1388 base_width += gui.scrollbar_width;
1389 return base_width;
1390}
1391
Bram Moolenaar02743632005-07-25 20:42:36 +00001392/*
1393 * Get the height of the widgets and decorations above and below the text area.
1394 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 int
1396gui_get_base_height()
1397{
1398 int base_height;
1399
1400 base_height = 2 * gui.border_offset;
1401 if (gui.which_scrollbars[SBAR_BOTTOM])
1402 base_height += gui.scrollbar_height;
1403#ifdef FEAT_GUI_GTK
1404 /* We can't take the sizes properly into account until anything is
1405 * realized. Therefore we recalculate all the values here just before
1406 * setting the size. (--mdcki) */
1407#else
1408# ifdef FEAT_MENU
1409 if (gui.menu_is_active)
1410 base_height += gui.menu_height;
1411# endif
1412# ifdef FEAT_TOOLBAR
1413 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1414# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1415 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1416# else
1417 base_height += gui.toolbar_height;
1418# endif
1419# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001420# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1421 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001422 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001423 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001424# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425# ifdef FEAT_FOOTER
1426 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1427 base_height += gui.footer_height;
1428# endif
1429# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1430 base_height += gui_mch_text_area_extra_height();
1431# endif
1432#endif
1433 return base_height;
1434}
1435
1436/*
1437 * Should be called after the GUI shell has been resized. Its arguments are
1438 * the new width and height of the shell in pixels.
1439 */
1440 void
1441gui_resize_shell(pixel_width, pixel_height)
1442 int pixel_width;
1443 int pixel_height;
1444{
1445 static int busy = FALSE;
1446
1447 if (!gui.shell_created) /* ignore when still initializing */
1448 return;
1449
1450 /*
1451 * Can't resize the screen while it is being redrawn. Remember the new
1452 * size and handle it later.
1453 */
1454 if (updating_screen || busy)
1455 {
1456 new_pixel_width = pixel_width;
1457 new_pixel_height = pixel_height;
1458 return;
1459 }
1460
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
1512gui_may_resize_shell()
1513{
1514 int h, w;
1515
1516 if (new_pixel_height)
1517 {
1518 /* careful: gui_resize_shell() may postpone the resize again if we
1519 * were called indirectly by it */
1520 w = new_pixel_width;
1521 h = new_pixel_height;
1522 new_pixel_width = 0;
1523 new_pixel_height = 0;
1524 gui_resize_shell(w, h);
1525 }
1526}
1527
1528 int
1529gui_get_shellsize()
1530{
1531 Rows = gui.num_rows;
1532 Columns = gui.num_cols;
1533 return OK;
1534}
1535
1536/*
1537 * Set the size of the Vim shell according to Rows and Columns.
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 Moolenaar2e2a2812006-03-27 20:55:21 +00001542gui_set_shellsize(mustset, fit_to_display, direction)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001543 int mustset UNUSED; /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 int fit_to_display;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001545 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. */
1578 gui_mch_get_winpos(&x, &y);
1579
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 }
1623 gui.num_cols = Columns;
1624 gui.num_rows = Rows;
1625
1626 min_width = base_width + MIN_COLUMNS * gui.char_width;
1627 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001628#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001629 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001630#endif
1631
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001632#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001633 if (un_maximize)
1634 {
1635 /* If the window size is smaller than the screen unmaximize the
1636 * window, otherwise resizing won't work. */
1637 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1638 if ((width + gui.char_width < screen_w
1639 || height + gui.char_height * 2 < screen_h)
1640 && gui_mch_maximized())
1641 gui_mch_unmaximize();
1642 }
1643#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001646 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001648 if (fit_to_display && x >= 0 && y >= 0)
1649 {
1650 /* Some window managers put the Vim window left of/above the screen.
1651 * Only change the position if it wasn't already negative before
1652 * (happens on MS-Windows with a secondary monitor). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 gui_mch_update();
1654 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1655 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1656 }
1657
1658 gui_position_components(width);
1659 gui_update_scrollbars(TRUE);
1660 gui_reset_scroll_region();
1661}
1662
1663/*
1664 * Called when Rows and/or Columns has changed.
1665 */
1666 void
1667gui_new_shellsize()
1668{
1669 gui_reset_scroll_region();
1670}
1671
1672/*
1673 * Make scroll region cover whole screen.
1674 */
1675 void
1676gui_reset_scroll_region()
1677{
1678 gui.scroll_region_top = 0;
1679 gui.scroll_region_bot = gui.num_rows - 1;
1680 gui.scroll_region_left = 0;
1681 gui.scroll_region_right = gui.num_cols - 1;
1682}
1683
1684 void
1685gui_start_highlight(mask)
1686 int mask;
1687{
1688 if (mask > HL_ALL) /* highlight code */
1689 gui.highlight_mask = mask;
1690 else /* mask */
1691 gui.highlight_mask |= mask;
1692}
1693
1694 void
1695gui_stop_highlight(mask)
1696 int mask;
1697{
1698 if (mask > HL_ALL) /* highlight code */
1699 gui.highlight_mask = HL_NORMAL;
1700 else /* mask */
1701 gui.highlight_mask &= ~mask;
1702}
1703
1704/*
1705 * Clear a rectangular region of the screen from text pos (row1, col1) to
1706 * (row2, col2) inclusive.
1707 */
1708 void
1709gui_clear_block(row1, col1, row2, col2)
1710 int row1;
1711 int col1;
1712 int row2;
1713 int col2;
1714{
1715 /* Clear the selection if we are about to write over it */
1716 clip_may_clear_selection(row1, row2);
1717
1718 gui_mch_clear_block(row1, col1, row2, col2);
1719
1720 /* Invalidate cursor if it was in this block */
1721 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1722 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1723 gui.cursor_is_valid = FALSE;
1724}
1725
1726/*
1727 * Write code to update the cursor later. This avoids the need to flush the
1728 * output buffer before calling gui_update_cursor().
1729 */
1730 void
1731gui_update_cursor_later()
1732{
1733 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
1734}
1735
1736 void
1737gui_write(s, len)
1738 char_u *s;
1739 int len;
1740{
1741 char_u *p;
1742 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 int force_cursor = FALSE; /* force cursor update */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 int force_scrollbar = FALSE;
1745 static win_T *old_curwin = NULL;
1746
1747/* #define DEBUG_GUI_WRITE */
1748#ifdef DEBUG_GUI_WRITE
1749 {
1750 int i;
1751 char_u *str;
1752
1753 printf("gui_write(%d):\n ", len);
1754 for (i = 0; i < len; i++)
1755 if (s[i] == ESC)
1756 {
1757 if (i != 0)
1758 printf("\n ");
1759 printf("<ESC>");
1760 }
1761 else
1762 {
1763 str = transchar_byte(s[i]);
1764 if (str[0] && str[1])
1765 printf("<%s>", (char *)str);
1766 else
1767 printf("%s", (char *)str);
1768 }
1769 printf("\n");
1770 }
1771#endif
1772 while (len)
1773 {
1774 if (s[0] == ESC && s[1] == '|')
1775 {
1776 p = s + 2;
1777 if (VIM_ISDIGIT(*p))
1778 {
1779 arg1 = getdigits(&p);
1780 if (p > s + len)
1781 break;
1782 if (*p == ';')
1783 {
1784 ++p;
1785 arg2 = getdigits(&p);
1786 if (p > s + len)
1787 break;
1788 }
1789 }
1790 switch (*p)
1791 {
1792 case 'C': /* Clear screen */
1793 clip_scroll_selection(9999);
1794 gui_mch_clear_all();
1795 gui.cursor_is_valid = FALSE;
1796 force_scrollbar = TRUE;
1797 break;
1798 case 'M': /* Move cursor */
1799 gui_set_cursor(arg1, arg2);
1800 break;
1801 case 's': /* force cursor (shape) update */
1802 force_cursor = TRUE;
1803 break;
1804 case 'R': /* Set scroll region */
1805 if (arg1 < arg2)
1806 {
1807 gui.scroll_region_top = arg1;
1808 gui.scroll_region_bot = arg2;
1809 }
1810 else
1811 {
1812 gui.scroll_region_top = arg2;
1813 gui.scroll_region_bot = arg1;
1814 }
1815 break;
1816#ifdef FEAT_VERTSPLIT
1817 case 'V': /* Set vertical scroll region */
1818 if (arg1 < arg2)
1819 {
1820 gui.scroll_region_left = arg1;
1821 gui.scroll_region_right = arg2;
1822 }
1823 else
1824 {
1825 gui.scroll_region_left = arg2;
1826 gui.scroll_region_right = arg1;
1827 }
1828 break;
1829#endif
1830 case 'd': /* Delete line */
1831 gui_delete_lines(gui.row, 1);
1832 break;
1833 case 'D': /* Delete lines */
1834 gui_delete_lines(gui.row, arg1);
1835 break;
1836 case 'i': /* Insert line */
1837 gui_insert_lines(gui.row, 1);
1838 break;
1839 case 'I': /* Insert lines */
1840 gui_insert_lines(gui.row, arg1);
1841 break;
1842 case '$': /* Clear to end-of-line */
1843 gui_clear_block(gui.row, gui.col, gui.row,
1844 (int)Columns - 1);
1845 break;
1846 case 'h': /* Turn on highlighting */
1847 gui_start_highlight(arg1);
1848 break;
1849 case 'H': /* Turn off highlighting */
1850 gui_stop_highlight(arg1);
1851 break;
1852 case 'f': /* flash the window (visual bell) */
1853 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1854 break;
1855 default:
1856 p = s + 1; /* Skip the ESC */
1857 break;
1858 }
1859 len -= (int)(++p - s);
1860 s = p;
1861 }
1862 else if (
1863#ifdef EBCDIC
1864 CtrlChar(s[0]) != 0 /* Ctrl character */
1865#else
1866 s[0] < 0x20 /* Ctrl character */
1867#endif
1868#ifdef FEAT_SIGN_ICONS
1869 && s[0] != SIGN_BYTE
1870# ifdef FEAT_NETBEANS_INTG
1871 && s[0] != MULTISIGN_BYTE
1872# endif
1873#endif
1874 )
1875 {
1876 if (s[0] == '\n') /* NL */
1877 {
1878 gui.col = 0;
1879 if (gui.row < gui.scroll_region_bot)
1880 gui.row++;
1881 else
1882 gui_delete_lines(gui.scroll_region_top, 1);
1883 }
1884 else if (s[0] == '\r') /* CR */
1885 {
1886 gui.col = 0;
1887 }
1888 else if (s[0] == '\b') /* Backspace */
1889 {
1890 if (gui.col)
1891 --gui.col;
1892 }
1893 else if (s[0] == Ctrl_L) /* cursor-right */
1894 {
1895 ++gui.col;
1896 }
1897 else if (s[0] == Ctrl_G) /* Beep */
1898 {
1899 gui_mch_beep();
1900 }
1901 /* Other Ctrl character: shouldn't happen! */
1902
1903 --len; /* Skip this char */
1904 ++s;
1905 }
1906 else
1907 {
1908 p = s;
1909 while (len > 0 && (
1910#ifdef EBCDIC
1911 CtrlChar(*p) == 0
1912#else
1913 *p >= 0x20
1914#endif
1915#ifdef FEAT_SIGN_ICONS
1916 || *p == SIGN_BYTE
1917# ifdef FEAT_NETBEANS_INTG
1918 || *p == MULTISIGN_BYTE
1919# endif
1920#endif
1921 ))
1922 {
1923 len--;
1924 p++;
1925 }
1926 gui_outstr(s, (int)(p - s));
1927 s = p;
1928 }
1929 }
1930
1931 /* Postponed update of the cursor (won't work if "can_update_cursor" isn't
1932 * set). */
1933 if (force_cursor)
1934 gui_update_cursor(TRUE, TRUE);
1935
1936 /* When switching to another window the dragging must have stopped.
1937 * Required for GTK, dragged_sb isn't reset. */
1938 if (old_curwin != curwin)
1939 gui.dragged_sb = SBAR_NONE;
1940
1941 /* Update the scrollbars after clearing the screen or when switched
1942 * to another window.
1943 * Update the horizontal scrollbar always, it's difficult to check all
1944 * situations where it might change. */
1945 if (force_scrollbar || old_curwin != curwin)
1946 gui_update_scrollbars(force_scrollbar);
1947 else
1948 gui_update_horiz_scrollbar(FALSE);
1949 old_curwin = curwin;
1950
1951 /*
1952 * We need to make sure this is cleared since Athena doesn't tell us when
1953 * he is done dragging. Do the same for GTK.
1954 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00001955#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 gui.dragged_sb = SBAR_NONE;
1957#endif
1958
1959 gui_mch_flush(); /* In case vim decides to take a nap */
1960}
1961
1962/*
1963 * When ScreenLines[] is invalid, updating the cursor should not be done, it
1964 * produces wrong results. Call gui_dont_update_cursor() before that code and
1965 * gui_can_update_cursor() afterwards.
1966 */
1967 void
1968gui_dont_update_cursor()
1969{
1970 if (gui.in_use)
1971 {
1972 /* Undraw the cursor now, we probably can't do it after the change. */
1973 gui_undraw_cursor();
1974 can_update_cursor = FALSE;
1975 }
1976}
1977
1978 void
1979gui_can_update_cursor()
1980{
1981 can_update_cursor = TRUE;
1982 /* No need to update the cursor right now, there is always more output
1983 * after scrolling. */
1984}
1985
1986 static void
1987gui_outstr(s, len)
1988 char_u *s;
1989 int len;
1990{
1991 int this_len;
1992#ifdef FEAT_MBYTE
1993 int cells;
1994#endif
1995
1996 if (len == 0)
1997 return;
1998
1999 if (len < 0)
2000 len = (int)STRLEN(s);
2001
2002 while (len > 0)
2003 {
2004#ifdef FEAT_MBYTE
2005 if (has_mbyte)
2006 {
2007 /* Find out how many chars fit in the current line. */
2008 cells = 0;
2009 for (this_len = 0; this_len < len; )
2010 {
2011 cells += (*mb_ptr2cells)(s + this_len);
2012 if (gui.col + cells > Columns)
2013 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002014 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 }
2016 if (this_len > len)
2017 this_len = len; /* don't include following composing char */
2018 }
2019 else
2020#endif
2021 if (gui.col + len > Columns)
2022 this_len = Columns - gui.col;
2023 else
2024 this_len = len;
2025
2026 (void)gui_outstr_nowrap(s, this_len,
2027 0, (guicolor_T)0, (guicolor_T)0, 0);
2028 s += this_len;
2029 len -= this_len;
2030#ifdef FEAT_MBYTE
2031 /* fill up for a double-width char that doesn't fit. */
2032 if (len > 0 && gui.col < Columns)
2033 (void)gui_outstr_nowrap((char_u *)" ", 1,
2034 0, (guicolor_T)0, (guicolor_T)0, 0);
2035#endif
2036 /* The cursor may wrap to the next line. */
2037 if (gui.col >= Columns)
2038 {
2039 gui.col = 0;
2040 gui.row++;
2041 }
2042 }
2043}
2044
2045/*
2046 * Output one character (may be one or two display cells).
2047 * Caller must check for valid "off".
2048 * Returns FAIL or OK, just like gui_outstr_nowrap().
2049 */
2050 static int
2051gui_screenchar(off, flags, fg, bg, back)
2052 int off; /* Offset from start of screen */
2053 int flags;
2054 guicolor_T fg, bg; /* colors for cursor */
2055 int back; /* backup this many chars when using bold trick */
2056{
2057#ifdef FEAT_MBYTE
2058 char_u buf[MB_MAXBYTES + 1];
2059
2060 /* Don't draw right halve of a double-width UTF-8 char. "cannot happen" */
2061 if (enc_utf8 && ScreenLines[off] == 0)
2062 return OK;
2063
2064 if (enc_utf8 && ScreenLinesUC[off] != 0)
2065 /* Draw UTF-8 multi-byte character. */
2066 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2067 flags, fg, bg, back);
2068
2069 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2070 {
2071 buf[0] = ScreenLines[off];
2072 buf[1] = ScreenLines2[off];
2073 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2074 }
2075
2076 /* Draw non-multi-byte character or DBCS character. */
2077 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002078 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 flags, fg, bg, back);
2080#else
2081 return gui_outstr_nowrap(ScreenLines + off, 1, flags, fg, bg, back);
2082#endif
2083}
2084
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002085#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086/*
2087 * Output the string at the given screen position. This is used in place
2088 * of gui_screenchar() where possible because Pango needs as much context
2089 * as possible to work nicely. It's a lot faster as well.
2090 */
2091 static int
2092gui_screenstr(off, len, flags, fg, bg, back)
2093 int off; /* Offset from start of screen */
2094 int len; /* string length in screen cells */
2095 int flags;
2096 guicolor_T fg, bg; /* colors for cursor */
2097 int back; /* backup this many chars when using bold trick */
2098{
2099 char_u *buf;
2100 int outlen = 0;
2101 int i;
2102 int retval;
2103
2104 if (len <= 0) /* "cannot happen"? */
2105 return OK;
2106
2107 if (enc_utf8)
2108 {
2109 buf = alloc((unsigned)(len * MB_MAXBYTES + 1));
2110 if (buf == NULL)
2111 return OK; /* not much we could do here... */
2112
2113 for (i = off; i < off + len; ++i)
2114 {
2115 if (ScreenLines[i] == 0)
2116 continue; /* skip second half of double-width char */
2117
2118 if (ScreenLinesUC[i] == 0)
2119 buf[outlen++] = ScreenLines[i];
2120 else
2121 outlen += utfc_char2bytes(i, buf + outlen);
2122 }
2123
2124 buf[outlen] = NUL; /* only to aid debugging */
2125 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2126 vim_free(buf);
2127
2128 return retval;
2129 }
2130 else if (enc_dbcs == DBCS_JPNU)
2131 {
2132 buf = alloc((unsigned)(len * 2 + 1));
2133 if (buf == NULL)
2134 return OK; /* not much we could do here... */
2135
2136 for (i = off; i < off + len; ++i)
2137 {
2138 buf[outlen++] = ScreenLines[i];
2139
2140 /* handle double-byte single-width char */
2141 if (ScreenLines[i] == 0x8e)
2142 buf[outlen++] = ScreenLines2[i];
2143 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2144 buf[outlen++] = ScreenLines[++i];
2145 }
2146
2147 buf[outlen] = NUL; /* only to aid debugging */
2148 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2149 vim_free(buf);
2150
2151 return retval;
2152 }
2153 else
2154 {
2155 return gui_outstr_nowrap(&ScreenLines[off], len,
2156 flags, fg, bg, back);
2157 }
2158}
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002159#endif /* FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
2161/*
2162 * Output the given string at the current cursor position. If the string is
2163 * too long to fit on the line, then it is truncated.
2164 * "flags":
2165 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2166 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002167 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 * background.
2169 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2170 * it.
2171 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2172 * FAIL (the caller should start drawing "back" chars back).
2173 */
2174 int
2175gui_outstr_nowrap(s, len, flags, fg, bg, back)
2176 char_u *s;
2177 int len;
2178 int flags;
2179 guicolor_T fg, bg; /* colors for cursor */
2180 int back; /* backup this many chars when using bold trick */
2181{
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 Moolenaar0eda7ac2010-06-26 05:38:18 +02002187#if !defined(MSWIN16_FASTTEXT) && !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 Moolenaar0eda7ac2010-06-26 05:38:18 +02002244#if !defined(MSWIN16_FASTTEXT) && !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
2361#ifndef MSWIN16_FASTTEXT
2362 /* If there's no bold font, then fake it */
2363 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2364 draw_flags |= DRAW_BOLD;
2365#endif
2366
2367 /*
2368 * When drawing bold or italic characters the spill-over from the left
2369 * neighbor may be destroyed. Let the caller backup to start redrawing
2370 * just after a blank.
2371 */
2372 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2373 return FAIL;
2374
Bram Moolenaare60acc12011-05-10 16:41:25 +02002375#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 /* If there's no italic font, then fake it.
2377 * For GTK2, we don't need a different font for italic style. */
2378 if (hl_mask_todo & HL_ITALIC)
2379 draw_flags |= DRAW_ITALIC;
2380
2381 /* Do we underline the text? */
2382 if (hl_mask_todo & HL_UNDERLINE)
2383 draw_flags |= DRAW_UNDERL;
2384#else
2385 /* Do we underline the text? */
2386 if ((hl_mask_todo & HL_UNDERLINE)
2387# ifndef MSWIN16_FASTTEXT
2388 || (hl_mask_todo & HL_ITALIC)
2389# endif
2390 )
2391 draw_flags |= DRAW_UNDERL;
2392#endif
Bram Moolenaar3918c952005-03-15 22:34:55 +00002393 /* Do we undercurl the text? */
2394 if (hl_mask_todo & HL_UNDERCURL)
2395 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002397 /* Do we draw transparently? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 if (flags & GUI_MON_TRS_CURSOR)
2399 draw_flags |= DRAW_TRANSP;
2400
2401 /*
2402 * Draw the text.
2403 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002404#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 /* The value returned is the length in display cells */
2406 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2407#else
2408# ifdef FEAT_MBYTE
2409 if (enc_utf8)
2410 {
2411 int start; /* index of bytes to be drawn */
2412 int cells; /* cellwidth of bytes to be drawn */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002413 int thislen; /* length of bytes to be drawn */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 int cn; /* cellwidth of current char */
2415 int i; /* index of current char */
2416 int c; /* current char value */
2417 int cl; /* byte length of current char */
2418 int comping; /* current char is composing */
2419 int scol = col; /* screen column */
Bram Moolenaar45933962013-01-23 17:43:57 +01002420 int curr_wide; /* use 'guifontwide' */
2421 int prev_wide = FALSE;
2422 int wide_changed;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
2424 /* Break the string at a composing character, it has to be drawn on
2425 * top of the previous character. */
2426 start = 0;
2427 cells = 0;
2428 for (i = 0; i < len; i += cl)
2429 {
2430 c = utf_ptr2char(s + i);
2431 cn = utf_char2cells(c);
2432 if (cn > 1
2433# ifdef FEAT_XFONTSET
2434 && fontset == NOFONTSET
2435# endif
Bram Moolenaardb250522013-06-17 22:43:25 +02002436 && wide_font != NOFONT)
Bram Moolenaar45933962013-01-23 17:43:57 +01002437 curr_wide = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 else
Bram Moolenaar45933962013-01-23 17:43:57 +01002439 curr_wide = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 comping = utf_iscomposing(c);
2441 if (!comping) /* count cells from non-composing chars */
2442 cells += cn;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002443 cl = utf_ptr2len(s + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 if (cl == 0) /* hit end of string */
2445 len = i + cl; /* len must be wrong "cannot happen" */
2446
Bram Moolenaar45933962013-01-23 17:43:57 +01002447 wide_changed = curr_wide != prev_wide;
2448
2449 /* Print the string so far if it's the last character or there is
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 * a composing character. */
Bram Moolenaar45933962013-01-23 17:43:57 +01002451 if (i + cl >= len || (comping && i > start) || wide_changed
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002452# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 || (cn > 1
2454# ifdef FEAT_XFONTSET
2455 /* No fontset: At least draw char after wide char at
2456 * right position. */
2457 && fontset == NOFONTSET
2458# endif
2459 )
2460# endif
2461 )
2462 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002463 if (comping || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 thislen = i - start;
2465 else
2466 thislen = i - start + cl;
2467 if (thislen > 0)
2468 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002469 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002470 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2472 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002473 if (prev_wide)
2474 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 start += thislen;
2476 }
2477 scol += cells;
2478 cells = 0;
Bram Moolenaar45933962013-01-23 17:43:57 +01002479 /* Adjust to not draw a character which width is changed
2480 * against with last one. */
2481 if (wide_changed && !comping)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002483 scol -= cn;
2484 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 }
2486
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002487# if defined(FEAT_GUI_X11)
Bram Moolenaar843ee412004-06-30 16:16:41 +00002488 /* No fontset: draw a space to fill the gap after a wide char
2489 * */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
2491# ifdef FEAT_XFONTSET
2492 && fontset == NOFONTSET
2493# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002494 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2496 1, draw_flags);
2497# endif
2498 }
2499 /* Draw a composing char on top of the previous char. */
2500 if (comping)
2501 {
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002502# if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002503 /* Carbon ATSUI autodraws composing char over previous char */
2504 gui_mch_draw_string(gui.row, scol, s + i, cl,
2505 draw_flags | DRAW_TRANSP);
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002506# else
2507 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2508 draw_flags | DRAW_TRANSP);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002509# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 start = i + cl;
2511 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002512 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 }
2514 /* The stuff below assumes "len" is the length in screen columns. */
2515 len = scol - col;
2516 }
2517 else
2518# endif
2519 {
2520 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
2521# ifdef FEAT_MBYTE
2522 if (enc_dbcs == DBCS_JPNU)
2523 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 /* Get the length in display cells, this can be different from the
2525 * number of bytes for "euc-jp". */
Bram Moolenaar72597a52010-07-18 15:31:08 +02002526 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 }
2528# endif
2529 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002530#endif /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531
2532 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2533 gui.col = col + len;
2534
2535 /* May need to invert it when it's part of the selection. */
2536 if (flags & GUI_MON_NOCLEAR)
2537 clip_may_redraw_selection(gui.row, col, len);
2538
2539 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2540 {
2541 /* Invalidate the old physical cursor position if we wrote over it */
2542 if (gui.cursor_row == gui.row
2543 && gui.cursor_col >= col
2544 && gui.cursor_col < col + len)
2545 gui.cursor_is_valid = FALSE;
2546 }
2547
2548#ifdef FEAT_SIGN_ICONS
2549 if (draw_sign)
2550 /* Draw the sign on top of the spaces. */
2551 gui_mch_drawsign(gui.row, col, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002552# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar67c53842010-05-22 18:28:27 +02002553 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 if (multi_sign)
2555 netbeans_draw_multisign_indicator(gui.row);
2556# endif
2557#endif
2558
2559 return OK;
2560}
2561
2562/*
2563 * Un-draw the cursor. Actually this just redraws the character at the given
2564 * position. The character just before it too, for when it was in bold.
2565 */
2566 void
2567gui_undraw_cursor()
2568{
2569 if (gui.cursor_is_valid)
2570 {
2571#ifdef FEAT_HANGULIN
2572 if (composing_hangul
2573 && gui.col == gui.cursor_col && gui.row == gui.cursor_row)
2574 (void)gui_outstr_nowrap(composing_hangul_buffer, 2,
2575 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR,
2576 gui.norm_pixel, gui.back_pixel, 0);
2577 else
2578 {
2579#endif
2580 if (gui_redraw_block(gui.cursor_row, gui.cursor_col,
2581 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR)
2582 && gui.cursor_col > 0)
2583 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col - 1,
2584 gui.cursor_row, gui.cursor_col - 1, GUI_MON_NOCLEAR);
2585#ifdef FEAT_HANGULIN
2586 if (composing_hangul)
2587 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col + 1,
2588 gui.cursor_row, gui.cursor_col + 1, GUI_MON_NOCLEAR);
2589 }
2590#endif
2591 /* Cursor_is_valid is reset when the cursor is undrawn, also reset it
2592 * here in case it wasn't needed to undraw it. */
2593 gui.cursor_is_valid = FALSE;
2594 }
2595}
2596
2597 void
2598gui_redraw(x, y, w, h)
2599 int x;
2600 int y;
2601 int w;
2602 int h;
2603{
2604 int row1, col1, row2, col2;
2605
2606 row1 = Y_2_ROW(y);
2607 col1 = X_2_COL(x);
2608 row2 = Y_2_ROW(y + h - 1);
2609 col2 = X_2_COL(x + w - 1);
2610
2611 (void)gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
2612
2613 /*
2614 * We may need to redraw the cursor, but don't take it upon us to change
2615 * its location after a scroll.
2616 * (maybe be more strict even and test col too?)
2617 * These things may be outside the update/clipping region and reality may
2618 * not reflect Vims internal ideas if these operations are clipped away.
2619 */
2620 if (gui.row == gui.cursor_row)
2621 gui_update_cursor(TRUE, TRUE);
2622}
2623
2624/*
2625 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2626 * from col1 to col2 (inclusive).
2627 * Return TRUE when the character before the first drawn character has
2628 * different attributes (may have to be redrawn too).
2629 */
2630 int
2631gui_redraw_block(row1, col1, row2, col2, flags)
2632 int row1;
2633 int col1;
2634 int row2;
2635 int col2;
2636 int flags; /* flags for gui_outstr_nowrap() */
2637{
2638 int old_row, old_col;
2639 long_u old_hl_mask;
2640 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002641 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 int idx, len;
2643 int back, nback;
2644 int retval = FALSE;
2645#ifdef FEAT_MBYTE
2646 int orig_col1, orig_col2;
2647#endif
2648
2649 /* Don't try to update when ScreenLines is not valid */
2650 if (!screen_cleared || ScreenLines == NULL)
2651 return retval;
2652
2653 /* Don't try to draw outside the shell! */
2654 /* Check everything, strange values may be caused by a big border width */
2655 col1 = check_col(col1);
2656 col2 = check_col(col2);
2657 row1 = check_row(row1);
2658 row2 = check_row(row2);
2659
2660 /* Remember where our cursor was */
2661 old_row = gui.row;
2662 old_col = gui.col;
2663 old_hl_mask = gui.highlight_mask;
2664#ifdef FEAT_MBYTE
2665 orig_col1 = col1;
2666 orig_col2 = col2;
2667#endif
2668
2669 for (gui.row = row1; gui.row <= row2; gui.row++)
2670 {
2671#ifdef FEAT_MBYTE
2672 /* When only half of a double-wide character is in the block, include
2673 * the other half. */
2674 col1 = orig_col1;
2675 col2 = orig_col2;
2676 off = LineOffset[gui.row];
2677 if (enc_dbcs != 0)
2678 {
2679 if (col1 > 0)
2680 col1 -= dbcs_screen_head_off(ScreenLines + off,
2681 ScreenLines + off + col1);
2682 col2 += dbcs_screen_tail_off(ScreenLines + off,
2683 ScreenLines + off + col2);
2684 }
2685 else if (enc_utf8)
2686 {
2687 if (ScreenLines[off + col1] == 0)
2688 --col1;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002689# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2691 ++col2;
2692# endif
2693 }
2694#endif
2695 gui.col = col1;
2696 off = LineOffset[gui.row] + gui.col;
2697 len = col2 - col1 + 1;
2698
2699 /* Find how many chars back this highlighting starts, or where a space
2700 * is. Needed for when the bold trick is used */
2701 for (back = 0; back < col1; ++back)
2702 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2703 || ScreenLines[off - 1 - back] == ' ')
2704 break;
2705 retval = (col1 > 0 && ScreenAttrs[off - 1] != 0 && back == 0
2706 && ScreenLines[off - 1] != ' ');
2707
2708 /* Break it up in strings of characters with the same attributes. */
2709 /* Print UTF-8 characters individually. */
2710 while (len > 0)
2711 {
2712 first_attr = ScreenAttrs[off];
2713 gui.highlight_mask = first_attr;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002714#if defined(FEAT_MBYTE) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 if (enc_utf8 && ScreenLinesUC[off] != 0)
2716 {
2717 /* output multi-byte character separately */
2718 nback = gui_screenchar(off, flags,
2719 (guicolor_T)0, (guicolor_T)0, back);
2720 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2721 idx = 2;
2722 else
2723 idx = 1;
2724 }
2725 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2726 {
2727 /* output double-byte, single-width character separately */
2728 nback = gui_screenchar(off, flags,
2729 (guicolor_T)0, (guicolor_T)0, back);
2730 idx = 1;
2731 }
2732 else
2733#endif
2734 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002735#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736 for (idx = 0; idx < len; ++idx)
2737 {
2738 if (enc_utf8 && ScreenLines[off + idx] == 0)
2739 continue; /* skip second half of double-width char */
2740 if (ScreenAttrs[off + idx] != first_attr)
2741 break;
2742 }
2743 /* gui_screenstr() takes care of multibyte chars */
2744 nback = gui_screenstr(off, idx, flags,
2745 (guicolor_T)0, (guicolor_T)0, back);
2746#else
2747 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2748 idx++)
2749 {
2750# ifdef FEAT_MBYTE
2751 /* Stop at a multi-byte Unicode character. */
2752 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2753 break;
2754 if (enc_dbcs == DBCS_JPNU)
2755 {
2756 /* Stop at a double-byte single-width char. */
2757 if (ScreenLines[off + idx] == 0x8e)
2758 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002759 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 + off + idx) == 2)
2761 ++idx; /* skip second byte of double-byte char */
2762 }
2763# endif
2764 }
2765 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2766 (guicolor_T)0, (guicolor_T)0, back);
2767#endif
2768 }
2769 if (nback == FAIL)
2770 {
2771 /* Must back up to start drawing where a bold or italic word
2772 * starts. */
2773 off -= back;
2774 len += back;
2775 gui.col -= back;
2776 }
2777 else
2778 {
2779 off += idx;
2780 len -= idx;
2781 }
2782 back = 0;
2783 }
2784 }
2785
2786 /* Put the cursor back where it was */
2787 gui.row = old_row;
2788 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002789 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790
2791 return retval;
2792}
2793
2794 static void
2795gui_delete_lines(row, count)
2796 int row;
2797 int count;
2798{
2799 if (count <= 0)
2800 return;
2801
2802 if (row + count > gui.scroll_region_bot)
2803 /* Scrolled out of region, just blank the lines out */
2804 gui_clear_block(row, gui.scroll_region_left,
2805 gui.scroll_region_bot, gui.scroll_region_right);
2806 else
2807 {
2808 gui_mch_delete_lines(row, count);
2809
2810 /* If the cursor was in the deleted lines it's now gone. If the
2811 * cursor was in the scrolled lines adjust its position. */
2812 if (gui.cursor_row >= row
2813 && gui.cursor_col >= gui.scroll_region_left
2814 && gui.cursor_col <= gui.scroll_region_right)
2815 {
2816 if (gui.cursor_row < row + count)
2817 gui.cursor_is_valid = FALSE;
2818 else if (gui.cursor_row <= gui.scroll_region_bot)
2819 gui.cursor_row -= count;
2820 }
2821 }
2822}
2823
2824 static void
2825gui_insert_lines(row, count)
2826 int row;
2827 int count;
2828{
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
2852/*
2853 * The main GUI input routine. Waits for a character from the keyboard.
2854 * wtime == -1 Wait forever.
2855 * wtime == 0 Don't wait.
2856 * wtime > 0 Wait wtime milliseconds for a character.
2857 * Returns OK if a character was found to be available within the given time,
2858 * or FAIL otherwise.
2859 */
2860 int
2861gui_wait_for_chars(wtime)
2862 long wtime;
2863{
2864 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865
Bram Moolenaarca7e1f22010-05-22 15:50:12 +02002866#ifdef FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 /*
2868 * If we're going to wait a bit, update the menus and mouse shape for the
2869 * current State.
2870 */
2871 if (wtime != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 gui_update_menus(0);
2873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874
2875 gui_mch_update();
2876 if (input_available()) /* Got char, return immediately */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 if (wtime == 0) /* Don't wait for char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
2881 /* Before waiting, flush any output to the screen. */
2882 gui_mch_flush();
2883
2884 if (wtime > 0)
2885 {
2886 /* Blink when waiting for a character. Probably only does something
2887 * for showmatch() */
2888 gui_mch_start_blink();
2889 retval = gui_mch_wait_for_chars(wtime);
2890 gui_mch_stop_blink();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 return retval;
2892 }
2893
2894 /*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002895 * While we are waiting indefinitely for a character, blink the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 */
2897 gui_mch_start_blink();
2898
Bram Moolenaar3918c952005-03-15 22:34:55 +00002899 retval = FAIL;
2900 /*
2901 * We may want to trigger the CursorHold event. First wait for
2902 * 'updatetime' and if nothing is typed within that time put the
2903 * K_CURSORHOLD key in the input buffer.
2904 */
2905 if (gui_mch_wait_for_chars(p_ut) == OK)
2906 retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +00002908 else if (trigger_cursorhold())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00002910 char_u buf[3];
2911
2912 /* Put K_CURSORHOLD in the input buffer. */
2913 buf[0] = CSI;
2914 buf[1] = KS_EXTRA;
2915 buf[2] = (int)KE_CURSORHOLD;
2916 add_to_input_buf(buf, 3);
2917
2918 retval = OK;
2919 }
2920#endif
2921
2922 if (retval == FAIL)
2923 {
2924 /* Blocking wait. */
Bram Moolenaar702517d2005-06-27 22:34:07 +00002925 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 retval = gui_mch_wait_for_chars(-1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928
2929 gui_mch_stop_blink();
2930 return retval;
2931}
2932
2933/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00002934 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 */
2936 static void
2937fill_mouse_coord(p, col, row)
2938 char_u *p;
2939 int col;
2940 int row;
2941{
2942 p[0] = (char_u)(col / 128 + ' ' + 1);
2943 p[1] = (char_u)(col % 128 + ' ' + 1);
2944 p[2] = (char_u)(row / 128 + ' ' + 1);
2945 p[3] = (char_u)(row % 128 + ' ' + 1);
2946}
2947
2948/*
2949 * Generic mouse support function. Add a mouse event to the input buffer with
2950 * the given properties.
2951 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
2952 * MOUSE_X1, MOUSE_X2
2953 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002954 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
2955 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 * x, y --- Coordinates of mouse in pixels.
2957 * repeated_click --- TRUE if this click comes only a short time after a
2958 * previous click.
2959 * modifiers --- Bit field which may be any of the following modifiers
2960 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
2961 * This function will ignore drag events where the mouse has not moved to a new
2962 * character.
2963 */
2964 void
2965gui_send_mouse_event(button, x, y, repeated_click, modifiers)
2966 int button;
2967 int x;
2968 int y;
2969 int repeated_click;
2970 int_u modifiers;
2971{
2972 static int prev_row = 0, prev_col = 0;
2973 static int prev_button = -1;
2974 static int num_clicks = 1;
2975 char_u string[10];
2976 enum key_extra button_char;
2977 int row, col;
2978#ifdef FEAT_CLIPBOARD
2979 int checkfor;
2980 int did_clip = FALSE;
2981#endif
2982
2983 /*
2984 * Scrolling may happen at any time, also while a selection is present.
2985 */
2986 switch (button)
2987 {
2988 case MOUSE_X1:
2989 button_char = KE_X1MOUSE;
2990 goto button_set;
2991 case MOUSE_X2:
2992 button_char = KE_X2MOUSE;
2993 goto button_set;
2994 case MOUSE_4:
2995 button_char = KE_MOUSEDOWN;
2996 goto button_set;
2997 case MOUSE_5:
2998 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002999 goto button_set;
3000 case MOUSE_6:
3001 button_char = KE_MOUSELEFT;
3002 goto button_set;
3003 case MOUSE_7:
3004 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005button_set:
3006 {
3007 /* Don't put events in the input queue now. */
3008 if (hold_gui_events)
3009 return;
3010
3011 string[3] = CSI;
3012 string[4] = KS_EXTRA;
3013 string[5] = (int)button_char;
3014
3015 /* Pass the pointer coordinates of the scroll event so that we
3016 * know which window to scroll. */
3017 row = gui_xy2colrow(x, y, &col);
3018 string[6] = (char_u)(col / 128 + ' ' + 1);
3019 string[7] = (char_u)(col % 128 + ' ' + 1);
3020 string[8] = (char_u)(row / 128 + ' ' + 1);
3021 string[9] = (char_u)(row % 128 + ' ' + 1);
3022
3023 if (modifiers == 0)
3024 add_to_input_buf(string + 3, 7);
3025 else
3026 {
3027 string[0] = CSI;
3028 string[1] = KS_MODIFIER;
3029 string[2] = 0;
3030 if (modifiers & MOUSE_SHIFT)
3031 string[2] |= MOD_MASK_SHIFT;
3032 if (modifiers & MOUSE_CTRL)
3033 string[2] |= MOD_MASK_CTRL;
3034 if (modifiers & MOUSE_ALT)
3035 string[2] |= MOD_MASK_ALT;
3036 add_to_input_buf(string, 10);
3037 }
3038 return;
3039 }
3040 }
3041
3042#ifdef FEAT_CLIPBOARD
3043 /* If a clipboard selection is in progress, handle it */
3044 if (clip_star.state == SELECT_IN_PROGRESS)
3045 {
3046 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
3047 return;
3048 }
3049
3050 /* Determine which mouse settings to look for based on the current mode */
3051 switch (get_real_state())
3052 {
3053 case NORMAL_BUSY:
3054 case OP_PENDING:
3055 case NORMAL: checkfor = MOUSE_NORMAL; break;
3056 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003057 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 case REPLACE:
3059 case REPLACE+LANGMAP:
3060#ifdef FEAT_VREPLACE
3061 case VREPLACE:
3062 case VREPLACE+LANGMAP:
3063#endif
3064 case INSERT:
3065 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3066 case ASKMORE:
3067 case HITRETURN: /* At the more- and hit-enter prompt pass the
3068 mouse event for a click on or below the
3069 message line. */
3070 if (Y_2_ROW(y) >= msg_row)
3071 checkfor = MOUSE_NORMAL;
3072 else
3073 checkfor = MOUSE_RETURN;
3074 break;
3075
3076 /*
3077 * On the command line, use the clipboard selection on all lines
3078 * but the command line. But not when pasting.
3079 */
3080 case CMDLINE:
3081 case CMDLINE+LANGMAP:
3082 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3083 checkfor = MOUSE_NONE;
3084 else
3085 checkfor = MOUSE_COMMAND;
3086 break;
3087
3088 default:
3089 checkfor = MOUSE_NONE;
3090 break;
3091 };
3092
3093 /*
3094 * Allow clipboard selection of text on the command line in "normal"
3095 * modes. Don't do this when dragging the status line, or extending a
3096 * Visual selection.
3097 */
3098 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
3099 && Y_2_ROW(y) >= topframe->fr_height
Bram Moolenaar8838aee2006-10-08 11:56:24 +00003100# ifdef FEAT_WINDOWS
3101 + firstwin->w_winrow
3102# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 && button != MOUSE_DRAG
3104# ifdef FEAT_MOUSESHAPE
3105 && !drag_status_line
3106# ifdef FEAT_VERTSPLIT
3107 && !drag_sep_line
3108# endif
3109# endif
3110 )
3111 checkfor = MOUSE_NONE;
3112
3113 /*
3114 * Use modeless selection when holding CTRL and SHIFT pressed.
3115 */
3116 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3117 checkfor = MOUSE_NONEF;
3118
3119 /*
3120 * In Ex mode, always use modeless selection.
3121 */
3122 if (exmode_active)
3123 checkfor = MOUSE_NONE;
3124
3125 /*
3126 * If the mouse settings say to not use the mouse, use the modeless
3127 * selection. But if Visual is active, assume that only the Visual area
3128 * will be selected.
3129 * Exception: On the command line, both the selection is used and a mouse
3130 * key is send.
3131 */
3132 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3133 {
3134#ifdef FEAT_VISUAL
3135 /* Don't do modeless selection in Visual mode. */
3136 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3137 return;
3138#endif
3139
3140 /*
3141 * When 'mousemodel' is "popup", shift-left is translated to right.
3142 * But not when also using Ctrl.
3143 */
3144 if (mouse_model_popup() && button == MOUSE_LEFT
3145 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3146 {
3147 button = MOUSE_RIGHT;
3148 modifiers &= ~ MOUSE_SHIFT;
3149 }
3150
3151 /* If the selection is done, allow the right button to extend it.
3152 * If the selection is cleared, allow the right button to start it
3153 * from the cursor position. */
3154 if (button == MOUSE_RIGHT)
3155 {
3156 if (clip_star.state == SELECT_CLEARED)
3157 {
3158 if (State & CMDLINE)
3159 {
3160 col = msg_col;
3161 row = msg_row;
3162 }
3163 else
3164 {
3165 col = curwin->w_wcol;
3166 row = curwin->w_wrow + W_WINROW(curwin);
3167 }
3168 clip_start_selection(col, row, FALSE);
3169 }
3170 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3171 repeated_click);
3172 did_clip = TRUE;
3173 }
3174 /* Allow the left button to start the selection */
Bram Moolenaare60acc12011-05-10 16:41:25 +02003175 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 {
3177 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3178 did_clip = TRUE;
3179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181 /* Always allow pasting */
3182 if (button != MOUSE_MIDDLE)
3183 {
3184 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3185 return;
3186 if (checkfor != MOUSE_COMMAND)
3187 button = MOUSE_LEFT;
3188 }
3189 repeated_click = FALSE;
3190 }
3191
3192 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003193 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194#endif
3195
3196 /* Don't put events in the input queue now. */
3197 if (hold_gui_events)
3198 return;
3199
3200 row = gui_xy2colrow(x, y, &col);
3201
3202 /*
3203 * If we are dragging and the mouse hasn't moved far enough to be on a
3204 * different character, then don't send an event to vim.
3205 */
3206 if (button == MOUSE_DRAG)
3207 {
3208 if (row == prev_row && col == prev_col)
3209 return;
3210 /* Dragging above the window, set "row" to -1 to cause a scroll. */
3211 if (y < 0)
3212 row = -1;
3213 }
3214
3215 /*
3216 * If topline has changed (window scrolled) since the last click, reset
3217 * repeated_click, because we don't want starting Visual mode when
3218 * clicking on a different character in the text.
3219 */
3220 if (curwin->w_topline != gui_prev_topline
3221#ifdef FEAT_DIFF
3222 || curwin->w_topfill != gui_prev_topfill
3223#endif
3224 )
3225 repeated_click = FALSE;
3226
3227 string[0] = CSI; /* this sequence is recognized by check_termcode() */
3228 string[1] = KS_MOUSE;
3229 string[2] = KE_FILLER;
3230 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3231 {
3232 if (repeated_click)
3233 {
3234 /*
3235 * Handle multiple clicks. They only count if the mouse is still
3236 * pointing at the same character.
3237 */
3238 if (button != prev_button || row != prev_row || col != prev_col)
3239 num_clicks = 1;
3240 else if (++num_clicks > 4)
3241 num_clicks = 1;
3242 }
3243 else
3244 num_clicks = 1;
3245 prev_button = button;
3246 gui_prev_topline = curwin->w_topline;
3247#ifdef FEAT_DIFF
3248 gui_prev_topfill = curwin->w_topfill;
3249#endif
3250
3251 string[3] = (char_u)(button | 0x20);
3252 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3253 }
3254 else
3255 string[3] = (char_u)button;
3256
3257 string[3] |= modifiers;
3258 fill_mouse_coord(string + 4, col, row);
3259 add_to_input_buf(string, 8);
3260
3261 if (row < 0)
3262 prev_row = 0;
3263 else
3264 prev_row = row;
3265 prev_col = col;
3266
3267 /*
3268 * We need to make sure this is cleared since Athena doesn't tell us when
3269 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3270 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003271#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 gui.dragged_sb = SBAR_NONE;
3273#endif
3274}
3275
3276/*
3277 * Convert x and y coordinate to column and row in text window.
3278 * Corrects for multi-byte character.
3279 * returns column in "*colp" and row as return value;
3280 */
3281 int
3282gui_xy2colrow(x, y, colp)
3283 int x;
3284 int y;
3285 int *colp;
3286{
3287 int col = check_col(X_2_COL(x));
3288 int row = check_row(Y_2_ROW(y));
3289
3290#ifdef FEAT_MBYTE
3291 *colp = mb_fix_col(col, row);
3292#else
3293 *colp = col;
3294#endif
3295 return row;
3296}
3297
3298#if defined(FEAT_MENU) || defined(PROTO)
3299/*
3300 * Callback function for when a menu entry has been selected.
3301 */
3302 void
3303gui_menu_cb(menu)
3304 vimmenu_T *menu;
3305{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003306 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307
3308 /* Don't put events in the input queue now. */
3309 if (hold_gui_events)
3310 return;
3311
3312 bytes[0] = CSI;
3313 bytes[1] = KS_MENU;
3314 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003315 add_to_input_buf(bytes, 3);
3316 add_long_to_buf((long_u)menu, bytes);
3317 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318}
3319#endif
3320
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003321static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323/*
3324 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003325 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 * in p_go.
3327 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 void
3329gui_init_which_components(oldval)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003330 char_u *oldval UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332#ifdef FEAT_MENU
3333 static int prev_menu_is_active = -1;
3334#endif
3335#ifdef FEAT_TOOLBAR
3336 static int prev_toolbar = -1;
3337 int using_toolbar = FALSE;
3338#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003339#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003340 int using_tabline;
3341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342#ifdef FEAT_FOOTER
3343 static int prev_footer = -1;
3344 int using_footer = FALSE;
3345#endif
3346#if defined(FEAT_MENU) && !defined(WIN16)
3347 static int prev_tearoff = -1;
3348 int using_tearoff = FALSE;
3349#endif
3350
3351 char_u *p;
3352 int i;
3353#ifdef FEAT_MENU
3354 int grey_old, grey_new;
3355 char_u *temp;
3356#endif
3357 win_T *wp;
3358 int need_set_size;
3359 int fix_size;
3360
3361#ifdef FEAT_MENU
3362 if (oldval != NULL && gui.in_use)
3363 {
3364 /*
3365 * Check if the menu's go from grey to non-grey or vise versa.
3366 */
3367 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3368 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3369 if (grey_old != grey_new)
3370 {
3371 temp = p_go;
3372 p_go = oldval;
3373 gui_update_menus(MENU_ALL_MODES);
3374 p_go = temp;
3375 }
3376 }
3377 gui.menu_is_active = FALSE;
3378#endif
3379
3380 for (i = 0; i < 3; i++)
3381 gui.which_scrollbars[i] = FALSE;
3382 for (p = p_go; *p; p++)
3383 switch (*p)
3384 {
3385 case GO_LEFT:
3386 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3387 break;
3388 case GO_RIGHT:
3389 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3390 break;
3391#ifdef FEAT_VERTSPLIT
3392 case GO_VLEFT:
3393 if (win_hasvertsplit())
3394 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3395 break;
3396 case GO_VRIGHT:
3397 if (win_hasvertsplit())
3398 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3399 break;
3400#endif
3401 case GO_BOT:
3402 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3403 break;
3404#ifdef FEAT_MENU
3405 case GO_MENUS:
3406 gui.menu_is_active = TRUE;
3407 break;
3408#endif
3409 case GO_GREY:
3410 /* make menu's have grey items, ignored here */
3411 break;
3412#ifdef FEAT_TOOLBAR
3413 case GO_TOOLBAR:
3414 using_toolbar = TRUE;
3415 break;
3416#endif
3417#ifdef FEAT_FOOTER
3418 case GO_FOOTER:
3419 using_footer = TRUE;
3420 break;
3421#endif
3422 case GO_TEAROFF:
3423#if defined(FEAT_MENU) && !defined(WIN16)
3424 using_tearoff = TRUE;
3425#endif
3426 break;
3427 default:
3428 /* Ignore options that are not supported */
3429 break;
3430 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003431
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 if (gui.in_use)
3433 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003434 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003436
3437#ifdef FEAT_GUI_TABLINE
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003438 /* Update the GUI tab line, it may appear or disappear. This may
3439 * cause the non-GUI tab line to disappear or appear. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003440 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003441 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003442 {
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003443 /* We don't want a resize event change "Rows" here, save and
3444 * restore it. Resizing is handled below. */
3445 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003446 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003447 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003448 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003449 if (using_tabline)
3450 fix_size = TRUE;
3451 if (!gui_use_tabline())
3452 redraw_tabline = TRUE; /* may draw non-GUI tab line */
3453 }
3454#endif
3455
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 for (i = 0; i < 3; i++)
3457 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003458 /* The scrollbar needs to be updated when it is shown/unshown and
3459 * when switching tab pages. But the size only changes when it's
3460 * shown/unshown. Thus we need two places to remember whether a
3461 * scrollbar is there or not. */
3462 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar371d5402006-03-20 21:47:49 +00003463#ifdef FEAT_WINDOWS
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003464 || gui.which_scrollbars[i]
3465 != curtab->tp_prev_which_scrollbars[i]
Bram Moolenaar371d5402006-03-20 21:47:49 +00003466#endif
3467 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 {
3469 if (i == SBAR_BOTTOM)
3470 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3471 gui.which_scrollbars[i]);
3472 else
3473 {
3474 FOR_ALL_WINDOWS(wp)
3475 {
3476 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
3477 }
3478 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003479 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3480 {
3481 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003482 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003483 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003484 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003485 if (gui.which_scrollbars[i])
3486 fix_size = TRUE;
3487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003489#ifdef FEAT_WINDOWS
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003490 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar371d5402006-03-20 21:47:49 +00003491#endif
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003492 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 }
3494
3495#ifdef FEAT_MENU
3496 if (gui.menu_is_active != prev_menu_is_active)
3497 {
3498 /* We don't want a resize event change "Rows" here, save and
3499 * restore it. Resizing is handled below. */
3500 i = Rows;
3501 gui_mch_enable_menu(gui.menu_is_active);
3502 Rows = i;
3503 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003504 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 if (gui.menu_is_active)
3506 fix_size = TRUE;
3507 }
3508#endif
3509
3510#ifdef FEAT_TOOLBAR
3511 if (using_toolbar != prev_toolbar)
3512 {
3513 gui_mch_show_toolbar(using_toolbar);
3514 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003515 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 if (using_toolbar)
3517 fix_size = TRUE;
3518 }
3519#endif
3520#ifdef FEAT_FOOTER
3521 if (using_footer != prev_footer)
3522 {
3523 gui_mch_enable_footer(using_footer);
3524 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003525 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 if (using_footer)
3527 fix_size = TRUE;
3528 }
3529#endif
3530#if defined(FEAT_MENU) && !defined(WIN16) && !(defined(WIN3264) && !defined(FEAT_TEAROFF))
3531 if (using_tearoff != prev_tearoff)
3532 {
3533 gui_mch_toggle_tearoffs(using_tearoff);
3534 prev_tearoff = using_tearoff;
3535 }
3536#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003537 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003538 {
3539#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003540 long prev_Columns = Columns;
3541 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 /* Adjust the size of the window to make the text area keep the
3544 * same size and to avoid that part of our window is off-screen
3545 * and a scrollbar can't be used, for example. */
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003546 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003547
3548#ifdef FEAT_GUI_GTK
3549 /* GTK has the annoying habit of sending us resize events when
3550 * changing the window size ourselves. This mostly happens when
3551 * waiting for a character to arrive, quite unpredictably, and may
3552 * change Columns and Rows when we don't want it. Wait for a
3553 * character here to avoid this effect.
3554 * If you remove this, please test this command for resizing
Bram Moolenaara04f10b2005-05-31 22:09:46 +00003555 * effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003556 * Don't do this while starting up though.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003557 * Don't change Rows when adding menu/toolbar/tabline.
3558 * Don't change Columns when adding vertical toolbar. */
3559 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003560 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003561 if ((need_set_size & RESIZE_VERT) == 0)
3562 Rows = prev_Rows;
3563 if ((need_set_size & RESIZE_HOR) == 0)
3564 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003565#endif
3566 }
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003567#ifdef FEAT_WINDOWS
3568 /* When the console tabline appears or disappears the window positions
3569 * change. */
3570 if (firstwin->w_winrow != tabline_height())
3571 shell_new_rows(); /* recompute window positions and heights */
3572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 }
3574}
3575
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003576#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3577/*
3578 * Return TRUE if the GUI is taking care of the tabline.
3579 * It may still be hidden if 'showtabline' is zero.
3580 */
3581 int
3582gui_use_tabline()
3583{
3584 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3585}
3586
3587/*
3588 * Return TRUE if the GUI is showing the tabline.
3589 * This uses 'showtabline'.
3590 */
3591 static int
3592gui_has_tabline()
3593{
3594 if (!gui_use_tabline()
3595 || p_stal == 0
3596 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3597 return FALSE;
3598 return TRUE;
3599}
3600
3601/*
3602 * Update the tabline.
3603 * This may display/undisplay the tabline and update the labels.
3604 */
3605 void
3606gui_update_tabline()
3607{
3608 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003609 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003610
3611 if (!gui.starting && starting == 0)
3612 {
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003613 /* Updating the tabline uses direct GUI commands, flush
3614 * outstanding instructions first. (esp. clear screen) */
3615 out_flush();
3616 gui_mch_flush();
3617
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003618 if (!showit != !shown)
3619 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003620 if (showit != 0)
3621 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003622
3623 /* When the tabs change from hidden to shown or from shown to
3624 * hidden the size of the text area should remain the same. */
3625 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003626 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003627 }
3628}
3629
3630/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003631 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003632 */
3633 void
Bram Moolenaar57657d82006-04-21 22:12:41 +00003634get_tabline_label(tp, tooltip)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003635 tabpage_T *tp;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003636 int tooltip; /* TRUE: get tooltip */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003637{
3638 int modified = FALSE;
3639 char_u buf[40];
3640 int wincount;
3641 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003642 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003643
Bram Moolenaar57657d82006-04-21 22:12:41 +00003644 /* Use 'guitablabel' or 'guitabtooltip' if it's set. */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003645 opt = (tooltip ? &p_gtt : &p_gtl);
3646 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003647 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003648 int use_sandbox = FALSE;
3649 int save_called_emsg = called_emsg;
3650 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003651 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003652 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3653 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003654
3655 called_emsg = FALSE;
3656
3657 printer_page_num = tabpage_index(tp);
3658# ifdef FEAT_EVAL
3659 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003660 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003661# endif
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003662 /* It's almost as going to the tabpage, but without autocommands. */
3663 curtab->tp_firstwin = firstwin;
3664 curtab->tp_lastwin = lastwin;
3665 curtab->tp_curwin = curwin;
3666 save_curtab = curtab;
3667 curtab = tp;
3668 topframe = curtab->tp_topframe;
3669 firstwin = curtab->tp_firstwin;
3670 lastwin = curtab->tp_lastwin;
3671 curwin = curtab->tp_curwin;
3672 curbuf = curwin->w_buffer;
3673
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003674 /* Can't use NameBuff directly, build_stl_str_hl() uses it. */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003675 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003676 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003677 STRCPY(NameBuff, res);
3678
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003679 /* Back to the original curtab. */
3680 curtab = save_curtab;
3681 topframe = curtab->tp_topframe;
3682 firstwin = curtab->tp_firstwin;
3683 lastwin = curtab->tp_lastwin;
3684 curwin = curtab->tp_curwin;
3685 curbuf = curwin->w_buffer;
3686
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003687 if (called_emsg)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003688 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003689 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003690 called_emsg |= save_called_emsg;
3691 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003692
3693 /* If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3694 * use a default label. */
3695 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003696 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003697 /* Get the buffer name into NameBuff[] and shorten it. */
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003698 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003699 if (!tooltip)
3700 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003701
3702 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3703 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3704 if (bufIsChanged(wp->w_buffer))
3705 modified = TRUE;
3706 if (modified || wincount > 1)
3707 {
3708 if (wincount > 1)
3709 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3710 else
3711 buf[0] = NUL;
3712 if (modified)
3713 STRCAT(buf, "+");
3714 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003715 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003716 mch_memmove(NameBuff, buf, STRLEN(buf));
3717 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003718 }
3719}
3720
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003721/*
3722 * Send the event for clicking to select tab page "nr".
3723 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003724 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003725 */
3726 int
3727send_tabline_event(nr)
3728 int nr;
3729{
3730 char_u string[3];
3731
3732 if (nr == tabpage_index(curtab))
3733 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003734
3735 /* Don't put events in the input queue now. */
3736 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003737# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003738 || cmdwin_type != 0
3739# endif
3740 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003741 {
3742 /* Set it back to the current tab page. */
3743 gui_mch_set_curtab(tabpage_index(curtab));
3744 return FALSE;
3745 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003746
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003747 string[0] = CSI;
3748 string[1] = KS_TABLINE;
3749 string[2] = KE_FILLER;
3750 add_to_input_buf(string, 3);
3751 string[0] = nr;
3752 add_to_input_buf_csi(string, 1);
3753 return TRUE;
3754}
3755
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003756/*
3757 * Send a tabline menu event
3758 */
3759 void
3760send_tabline_menu_event(tabidx, event)
3761 int tabidx;
3762 int event;
3763{
3764 char_u string[3];
3765
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003766 /* Don't put events in the input queue now. */
3767 if (hold_gui_events)
3768 return;
3769
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003770 string[0] = CSI;
3771 string[1] = KS_TABMENU;
3772 string[2] = KE_FILLER;
3773 add_to_input_buf(string, 3);
3774 string[0] = tabidx;
3775 string[1] = (char_u)(long)event;
3776 add_to_input_buf_csi(string, 2);
3777}
3778
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780
3781/*
3782 * Scrollbar stuff:
3783 */
3784
Bram Moolenaare45828b2006-02-15 22:12:56 +00003785#if defined(FEAT_WINDOWS) || defined(PROTO)
3786/*
3787 * Remove all scrollbars. Used before switching to another tab page.
3788 */
3789 void
3790gui_remove_scrollbars()
3791{
3792 int i;
3793 win_T *wp;
3794
3795 for (i = 0; i < 3; i++)
3796 {
3797 if (i == SBAR_BOTTOM)
3798 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3799 else
3800 {
3801 FOR_ALL_WINDOWS(wp)
3802 {
3803 gui_do_scrollbar(wp, i, FALSE);
3804 }
3805 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003806 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003807 }
3808}
3809#endif
3810
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 void
3812gui_create_scrollbar(sb, type, wp)
3813 scrollbar_T *sb;
3814 int type;
3815 win_T *wp;
3816{
3817 static int sbar_ident = 0;
3818
3819 sb->ident = sbar_ident++; /* No check for too big, but would it happen? */
3820 sb->wp = wp;
3821 sb->type = type;
3822 sb->value = 0;
3823#ifdef FEAT_GUI_ATHENA
3824 sb->pixval = 0;
3825#endif
3826 sb->size = 1;
3827 sb->max = 1;
3828 sb->top = 0;
3829 sb->height = 0;
3830#ifdef FEAT_VERTSPLIT
3831 sb->width = 0;
3832#endif
3833 sb->status_height = 0;
3834 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3835}
3836
3837/*
3838 * Find the scrollbar with the given index.
3839 */
3840 scrollbar_T *
3841gui_find_scrollbar(ident)
3842 long ident;
3843{
3844 win_T *wp;
3845
3846 if (gui.bottom_sbar.ident == ident)
3847 return &gui.bottom_sbar;
3848 FOR_ALL_WINDOWS(wp)
3849 {
3850 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3851 return &wp->w_scrollbars[SBAR_LEFT];
3852 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3853 return &wp->w_scrollbars[SBAR_RIGHT];
3854 }
3855 return NULL;
3856}
3857
3858/*
3859 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3860 *
3861 * For Win32, Macintosh and GTK+ 2:
3862 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3863 * you stop dragging the scrollbar. We get here each time the scrollbar is
3864 * dragged another pixel, but as far as the rest of vim goes, it thinks
3865 * we're just hanging in the call to DispatchMessage() in
3866 * process_message(). The DispatchMessage() call that hangs was passed a
3867 * mouse button click event in the scrollbar window. -- webb.
3868 *
3869 * Solution: Do the scrolling right here. But only when allowed.
3870 * Ignore the scrollbars while executing an external command or when there
3871 * are still characters to be processed.
3872 */
3873 void
3874gui_drag_scrollbar(sb, value, still_dragging)
3875 scrollbar_T *sb;
3876 long value;
3877 int still_dragging;
3878{
3879#ifdef FEAT_WINDOWS
3880 win_T *wp;
3881#endif
3882 int sb_num;
3883#ifdef USE_ON_FLY_SCROLL
3884 colnr_T old_leftcol = curwin->w_leftcol;
3885# ifdef FEAT_SCROLLBIND
3886 linenr_T old_topline = curwin->w_topline;
3887# endif
3888# ifdef FEAT_DIFF
3889 int old_topfill = curwin->w_topfill;
3890# endif
3891#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003892 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 int byte_count;
3894#endif
3895
3896 if (sb == NULL)
3897 return;
3898
3899 /* Don't put events in the input queue now. */
3900 if (hold_gui_events)
3901 return;
3902
3903#ifdef FEAT_CMDWIN
3904 if (cmdwin_type != 0 && sb->wp != curwin)
3905 return;
3906#endif
3907
3908 if (still_dragging)
3909 {
3910 if (sb->wp == NULL)
3911 gui.dragged_sb = SBAR_BOTTOM;
3912 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3913 gui.dragged_sb = SBAR_LEFT;
3914 else
3915 gui.dragged_sb = SBAR_RIGHT;
3916 gui.dragged_wp = sb->wp;
3917 }
3918 else
3919 {
3920 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003921#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 /* Keep the "dragged_wp" value until after the scrolling, for when the
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003923 * mouse button is released. GTK2 doesn't send the button-up event. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 gui.dragged_wp = NULL;
3925#endif
3926 }
3927
3928 /* Vertical sbar info is kept in the first sbar (the left one) */
3929 if (sb->wp != NULL)
3930 sb = &sb->wp->w_scrollbars[0];
3931
3932 /*
3933 * Check validity of value
3934 */
3935 if (value < 0)
3936 value = 0;
3937#ifdef SCROLL_PAST_END
3938 else if (value > sb->max)
3939 value = sb->max;
3940#else
3941 if (value > sb->max - sb->size + 1)
3942 value = sb->max - sb->size + 1;
3943#endif
3944
3945 sb->value = value;
3946
3947#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar67840782008-01-03 15:15:07 +00003948 /* When not allowed to do the scrolling right now, return.
3949 * This also checked input_available(), but that causes the first click in
3950 * a scrollbar to be ignored when Vim doesn't have focus. */
3951 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 return;
3953#endif
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00003954#ifdef FEAT_INS_EXPAND
3955 /* Disallow scrolling the current window when the completion popup menu is
3956 * visible. */
3957 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
3958 return;
3959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960
3961#ifdef FEAT_RIGHTLEFT
3962 if (sb->wp == NULL && curwin->w_p_rl)
3963 {
3964 value = sb->max + 1 - sb->size - value;
3965 if (value < 0)
3966 value = 0;
3967 }
3968#endif
3969
3970 if (sb->wp != NULL) /* vertical scrollbar */
3971 {
3972 sb_num = 0;
3973#ifdef FEAT_WINDOWS
3974 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
3975 sb_num++;
3976 if (wp == NULL)
3977 return;
3978#else
3979 if (sb->wp != curwin)
3980 return;
3981#endif
3982
3983#ifdef USE_ON_FLY_SCROLL
3984 current_scrollbar = sb_num;
3985 scrollbar_value = value;
3986 if (State & NORMAL)
3987 {
3988 gui_do_scroll();
3989 setcursor();
3990 }
3991 else if (State & INSERT)
3992 {
3993 ins_scroll();
3994 setcursor();
3995 }
3996 else if (State & CMDLINE)
3997 {
3998 if (msg_scrolled == 0)
3999 {
4000 gui_do_scroll();
4001 redrawcmdline();
4002 }
4003 }
4004# ifdef FEAT_FOLDING
4005 /* Value may have been changed for closed fold. */
4006 sb->value = sb->wp->w_topline - 1;
4007# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004008
4009 /* When dragging one scrollbar and there is another one at the other
4010 * side move the thumb of that one too. */
4011 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4012 gui_mch_set_scrollbar_thumb(
4013 &sb->wp->w_scrollbars[
4014 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4015 ? SBAR_LEFT : SBAR_RIGHT],
4016 sb->value, sb->size, sb->max);
4017
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018#else
4019 bytes[0] = CSI;
4020 bytes[1] = KS_VER_SCROLLBAR;
4021 bytes[2] = KE_FILLER;
4022 bytes[3] = (char_u)sb_num;
4023 byte_count = 4;
4024#endif
4025 }
4026 else
4027 {
4028#ifdef USE_ON_FLY_SCROLL
4029 scrollbar_value = value;
4030
4031 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004032 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 else if (State & INSERT)
4034 ins_horscroll();
4035 else if (State & CMDLINE)
4036 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004037 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004039 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 redrawcmdline();
4041 }
4042 }
4043 if (old_leftcol != curwin->w_leftcol)
4044 {
4045 updateWindow(curwin); /* update window, status and cmdline */
4046 setcursor();
4047 }
4048#else
4049 bytes[0] = CSI;
4050 bytes[1] = KS_HOR_SCROLLBAR;
4051 bytes[2] = KE_FILLER;
4052 byte_count = 3;
4053#endif
4054 }
4055
4056#ifdef USE_ON_FLY_SCROLL
4057# ifdef FEAT_SCROLLBIND
4058 /*
4059 * synchronize other windows, as necessary according to 'scrollbind'
4060 */
4061 if (curwin->w_p_scb
4062 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4063 || (sb->wp == curwin && (curwin->w_topline != old_topline
4064# ifdef FEAT_DIFF
4065 || curwin->w_topfill != old_topfill
4066# endif
4067 ))))
4068 {
4069 do_check_scrollbind(TRUE);
4070 /* need to update the window right here */
4071 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4072 if (wp->w_redr_type > 0)
4073 updateWindow(wp);
4074 setcursor();
4075 }
4076# endif
4077 out_flush();
4078 gui_update_cursor(FALSE, TRUE);
4079#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004080 add_to_input_buf(bytes, byte_count);
4081 add_long_to_buf((long_u)value, bytes);
4082 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083#endif
4084}
4085
4086/*
4087 * Scrollbar stuff:
4088 */
4089
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004090#if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004091/*
4092 * Called when something in the window layout has changed.
4093 */
4094 void
4095gui_may_update_scrollbars()
4096{
4097 if (gui.in_use && starting == 0)
4098 {
4099 out_flush();
4100 gui_init_which_components(NULL);
4101 gui_update_scrollbars(TRUE);
4102 }
4103 need_mouse_correct = TRUE;
4104}
Bram Moolenaarfd3e5dc2010-05-30 19:00:15 +02004105#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 void
4108gui_update_scrollbars(force)
4109 int force; /* Force all scrollbars to get updated */
4110{
4111 win_T *wp;
4112 scrollbar_T *sb;
4113 long val, size, max; /* need 32 bits here */
4114 int which_sb;
4115 int h, y;
4116#ifdef FEAT_VERTSPLIT
4117 static win_T *prev_curwin = NULL;
4118#endif
4119
4120 /* Update the horizontal scrollbar */
4121 gui_update_horiz_scrollbar(force);
4122
4123#ifndef WIN3264
4124 /* Return straight away if there is neither a left nor right scrollbar.
4125 * On MS-Windows this is required anyway for scrollwheel messages. */
4126 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4127 return;
4128#endif
4129
4130 /*
4131 * Don't want to update a scrollbar while we're dragging it. But if we
4132 * have both a left and right scrollbar, and we drag one of them, we still
4133 * need to update the other one.
4134 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004135 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4136 && gui.which_scrollbars[SBAR_LEFT]
4137 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 {
4139 /*
4140 * If we have two scrollbars and one of them is being dragged, just
4141 * copy the scrollbar position from the dragged one to the other one.
4142 */
4143 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4144 if (gui.dragged_wp != NULL)
4145 gui_mch_set_scrollbar_thumb(
4146 &gui.dragged_wp->w_scrollbars[which_sb],
4147 gui.dragged_wp->w_scrollbars[0].value,
4148 gui.dragged_wp->w_scrollbars[0].size,
4149 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 }
4151
4152 /* avoid that moving components around generates events */
4153 ++hold_gui_events;
4154
4155 for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
4156 {
4157 if (wp->w_buffer == NULL) /* just in case */
4158 continue;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004159 /* Skip a scrollbar that is being dragged. */
4160 if (!force && (gui.dragged_sb == SBAR_LEFT
4161 || gui.dragged_sb == SBAR_RIGHT)
4162 && gui.dragged_wp == wp)
4163 continue;
4164
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165#ifdef SCROLL_PAST_END
4166 max = wp->w_buffer->b_ml.ml_line_count - 1;
4167#else
4168 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4169#endif
4170 if (max < 0) /* empty buffer */
4171 max = 0;
4172 val = wp->w_topline - 1;
4173 size = wp->w_height;
4174#ifdef SCROLL_PAST_END
4175 if (val > max) /* just in case */
4176 val = max;
4177#else
4178 if (size > max + 1) /* just in case */
4179 size = max + 1;
4180 if (val > max - size + 1)
4181 val = max - size + 1;
4182#endif
4183 if (val < 0) /* minimal value is 0 */
4184 val = 0;
4185
4186 /*
4187 * Scrollbar at index 0 (the left one) contains all the information.
4188 * It would be the same info for left and right so we just store it for
4189 * one of them.
4190 */
4191 sb = &wp->w_scrollbars[0];
4192
4193 /*
4194 * Note: no check for valid w_botline. If it's not valid the
4195 * scrollbars will be updated later anyway.
4196 */
4197 if (size < 1 || wp->w_botline - 2 > max)
4198 {
4199 /*
4200 * This can happen during changing files. Just don't update the
4201 * scrollbar for now.
4202 */
4203 sb->height = 0; /* Force update next time */
4204 if (gui.which_scrollbars[SBAR_LEFT])
4205 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4206 if (gui.which_scrollbars[SBAR_RIGHT])
4207 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4208 continue;
4209 }
4210 if (force || sb->height != wp->w_height
4211#ifdef FEAT_WINDOWS
4212 || sb->top != wp->w_winrow
4213 || sb->status_height != wp->w_status_height
4214# ifdef FEAT_VERTSPLIT
4215 || sb->width != wp->w_width
4216 || prev_curwin != curwin
4217# endif
4218#endif
4219 )
4220 {
4221 /* Height, width or position of scrollbar has changed. For
4222 * vertical split: curwin changed. */
4223 sb->height = wp->w_height;
4224#ifdef FEAT_WINDOWS
4225 sb->top = wp->w_winrow;
4226 sb->status_height = wp->w_status_height;
4227# ifdef FEAT_VERTSPLIT
4228 sb->width = wp->w_width;
4229# endif
4230#endif
4231
4232 /* Calculate height and position in pixels */
4233 h = (sb->height + sb->status_height) * gui.char_height;
4234 y = sb->top * gui.char_height + gui.border_offset;
4235#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4236 if (gui.menu_is_active)
4237 y += gui.menu_height;
4238#endif
4239
4240#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA))
4241 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
4242# ifdef FEAT_GUI_ATHENA
4243 y += gui.toolbar_height;
4244# else
4245# ifdef FEAT_GUI_MSWIN
4246 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4247# endif
4248# endif
4249#endif
4250
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004251#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN)
4252 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004253 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004254#endif
4255
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256#ifdef FEAT_WINDOWS
4257 if (wp->w_winrow == 0)
4258#endif
4259 {
4260 /* Height of top scrollbar includes width of top border */
4261 h += gui.border_offset;
4262 y -= gui.border_offset;
4263 }
4264 if (gui.which_scrollbars[SBAR_LEFT])
4265 {
4266 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4267 gui.left_sbar_x, y,
4268 gui.scrollbar_width, h);
4269 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4270 }
4271 if (gui.which_scrollbars[SBAR_RIGHT])
4272 {
4273 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4274 gui.right_sbar_x, y,
4275 gui.scrollbar_width, h);
4276 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4277 }
4278 }
4279
4280 /* Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4281 * checking if the thumb moved at least a pixel. Only do this for
4282 * Athena, most other GUIs require the update anyway to make the
4283 * arrows work. */
4284#ifdef FEAT_GUI_ATHENA
4285 if (max == 0)
4286 y = 0;
4287 else
4288 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4289 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4290#else
4291 if (force || sb->value != val || sb->size != size || sb->max != max)
4292#endif
4293 {
4294 /* Thumb of scrollbar has moved */
4295 sb->value = val;
4296#ifdef FEAT_GUI_ATHENA
4297 sb->pixval = y;
4298#endif
4299 sb->size = size;
4300 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004301 if (gui.which_scrollbars[SBAR_LEFT]
4302 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4304 val, size, max);
4305 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004306 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4308 val, size, max);
4309 }
4310 }
4311#ifdef FEAT_VERTSPLIT
4312 prev_curwin = curwin;
4313#endif
4314 --hold_gui_events;
4315}
4316
4317/*
4318 * Enable or disable a scrollbar.
4319 * Check for scrollbars for vertically split windows which are not enabled
4320 * sometimes.
4321 */
4322 static void
4323gui_do_scrollbar(wp, which, enable)
4324 win_T *wp;
4325 int which; /* SBAR_LEFT or SBAR_RIGHT */
4326 int enable; /* TRUE to enable scrollbar */
4327{
4328#ifdef FEAT_VERTSPLIT
4329 int midcol = curwin->w_wincol + curwin->w_width / 2;
4330 int has_midcol = (wp->w_wincol <= midcol
4331 && wp->w_wincol + wp->w_width >= midcol);
4332
4333 /* Only enable scrollbars that contain the middle column of the current
4334 * window. */
4335 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4336 {
4337 /* Scrollbars only on one side. Don't enable scrollbars that don't
4338 * contain the middle column of the current window. */
4339 if (!has_midcol)
4340 enable = FALSE;
4341 }
4342 else
4343 {
4344 /* Scrollbars on both sides. Don't enable scrollbars that neither
4345 * contain the middle column of the current window nor are on the far
4346 * side. */
4347 if (midcol > Columns / 2)
4348 {
4349 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4350 enable = FALSE;
4351 }
4352 else
4353 {
4354 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4355 : !has_midcol)
4356 enable = FALSE;
4357 }
4358 }
4359#endif
4360 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4361}
4362
4363/*
4364 * Scroll a window according to the values set in the globals current_scrollbar
4365 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4366 * or FALSE otherwise.
4367 */
4368 int
4369gui_do_scroll()
4370{
4371 win_T *wp, *save_wp;
4372 int i;
4373 long nlines;
4374 pos_T old_cursor;
4375 linenr_T old_topline;
4376#ifdef FEAT_DIFF
4377 int old_topfill;
4378#endif
4379
4380 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4381 if (wp == NULL)
4382 break;
4383 if (wp == NULL)
4384 /* Couldn't find window */
4385 return FALSE;
4386
4387 /*
4388 * Compute number of lines to scroll. If zero, nothing to do.
4389 */
4390 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4391 if (nlines == 0)
4392 return FALSE;
4393
4394 save_wp = curwin;
4395 old_topline = wp->w_topline;
4396#ifdef FEAT_DIFF
4397 old_topfill = wp->w_topfill;
4398#endif
4399 old_cursor = wp->w_cursor;
4400 curwin = wp;
4401 curbuf = wp->w_buffer;
4402 if (nlines < 0)
4403 scrolldown(-nlines, gui.dragged_wp == NULL);
4404 else
4405 scrollup(nlines, gui.dragged_wp == NULL);
4406 /* Reset dragged_wp after using it. "dragged_sb" will have been reset for
4407 * the mouse-up event already, but we still want it to behave like when
4408 * dragging. But not the next click in an arrow. */
4409 if (gui.dragged_sb == SBAR_NONE)
4410 gui.dragged_wp = NULL;
4411
4412 if (old_topline != wp->w_topline
4413#ifdef FEAT_DIFF
4414 || old_topfill != wp->w_topfill
4415#endif
4416 )
4417 {
4418 if (p_so != 0)
4419 {
4420 cursor_correct(); /* fix window for 'so' */
4421 update_topline(); /* avoid up/down jump */
4422 }
4423 if (old_cursor.lnum != wp->w_cursor.lnum)
4424 coladvance(wp->w_curswant);
4425#ifdef FEAT_SCROLLBIND
4426 wp->w_scbind_pos = wp->w_topline;
4427#endif
4428 }
4429
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004430 /* Make sure wp->w_leftcol and wp->w_skipcol are correct. */
4431 validate_cursor();
4432
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 curwin = save_wp;
4434 curbuf = save_wp->w_buffer;
4435
4436 /*
4437 * Don't call updateWindow() when nothing has changed (it will overwrite
4438 * the status line!).
4439 */
4440 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004441 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442#ifdef FEAT_DIFF
4443 || old_topfill != wp->w_topfill
4444#endif
4445 )
4446 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004447 int type = VALID;
4448
4449#ifdef FEAT_INS_EXPAND
4450 if (pum_visible())
4451 {
4452 type = NOT_VALID;
4453 wp->w_lines_valid = 0;
4454 }
4455#endif
4456 /* Don't set must_redraw here, it may cause the popup menu to
4457 * disappear when losing focus after a scrollbar drag. */
4458 if (wp->w_redr_type < type)
4459 wp->w_redr_type = type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 updateWindow(wp); /* update window, status line, and cmdline */
4461 }
4462
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004463#ifdef FEAT_INS_EXPAND
4464 /* May need to redraw the popup menu. */
4465 if (pum_visible())
4466 pum_redraw();
4467#endif
4468
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor));
4470}
4471
4472
4473/*
4474 * Horizontal scrollbar stuff:
4475 */
4476
4477/*
4478 * Return length of line "lnum" for horizontal scrolling.
4479 */
4480 static colnr_T
4481scroll_line_len(lnum)
4482 linenr_T lnum;
4483{
4484 char_u *p;
4485 colnr_T col;
4486 int w;
4487
4488 p = ml_get(lnum);
4489 col = 0;
4490 if (*p != NUL)
4491 for (;;)
4492 {
4493 w = chartabsize(p, col);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004494 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 if (*p == NUL) /* don't count the last character */
4496 break;
4497 col += w;
4498 }
4499 return col;
4500}
4501
4502/* Remember which line is currently the longest, so that we don't have to
4503 * search for it when scrolling horizontally. */
4504static linenr_T longest_lnum = 0;
4505
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004506/*
4507 * Find longest visible line number. If this is not possible (or not desired,
4508 * by setting 'h' in "guioptions") then the current line number is returned.
4509 */
4510 static linenr_T
4511gui_find_longest_lnum()
4512{
4513 linenr_T ret = 0;
4514
4515 /* Calculate maximum for horizontal scrollbar. Check for reasonable
4516 * line numbers, topline and botline can be invalid when displaying is
4517 * postponed. */
4518 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4519 && curwin->w_topline <= curwin->w_cursor.lnum
4520 && curwin->w_botline > curwin->w_cursor.lnum
4521 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4522 {
4523 linenr_T lnum;
4524 colnr_T n;
4525 long max = 0;
4526
4527 /* Use maximum of all visible lines. Remember the lnum of the
4528 * longest line, closest to the cursor line. Used when scrolling
4529 * below. */
4530 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4531 {
4532 n = scroll_line_len(lnum);
4533 if (n > (colnr_T)max)
4534 {
4535 max = n;
4536 ret = lnum;
4537 }
4538 else if (n == (colnr_T)max
4539 && abs((int)(lnum - curwin->w_cursor.lnum))
4540 < abs((int)(ret - curwin->w_cursor.lnum)))
4541 ret = lnum;
4542 }
4543 }
4544 else
4545 /* Use cursor line only. */
4546 ret = curwin->w_cursor.lnum;
4547
4548 return ret;
4549}
4550
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 static void
4552gui_update_horiz_scrollbar(force)
4553 int force;
4554{
4555 long value, size, max; /* need 32 bit ints here */
4556
4557 if (!gui.which_scrollbars[SBAR_BOTTOM])
4558 return;
4559
4560 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4561 return;
4562
4563 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4564 return;
4565
4566 /*
4567 * It is possible for the cursor to be invalid if we're in the middle of
4568 * something (like changing files). If so, don't do anything for now.
4569 */
4570 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4571 {
4572 gui.bottom_sbar.value = -1;
4573 return;
4574 }
4575
4576 size = W_WIDTH(curwin);
4577 if (curwin->w_p_wrap)
4578 {
4579 value = 0;
4580#ifdef SCROLL_PAST_END
4581 max = 0;
4582#else
4583 max = W_WIDTH(curwin) - 1;
4584#endif
4585 }
4586 else
4587 {
4588 value = curwin->w_leftcol;
4589
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004590 longest_lnum = gui_find_longest_lnum();
4591 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593#ifdef FEAT_VIRTUALEDIT
4594 if (virtual_active())
4595 {
4596 /* May move the cursor even further to the right. */
4597 if (curwin->w_virtcol >= (colnr_T)max)
4598 max = curwin->w_virtcol;
4599 }
4600#endif
4601
4602#ifndef SCROLL_PAST_END
4603 max += W_WIDTH(curwin) - 1;
4604#endif
4605 /* The line number isn't scrolled, thus there is less space when
Bram Moolenaar64486672010-05-16 15:46:46 +02004606 * 'number' or 'relativenumber' is set (also for 'foldcolumn'). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 size -= curwin_col_off();
4608#ifndef SCROLL_PAST_END
4609 max -= curwin_col_off();
4610#endif
4611 }
4612
4613#ifndef SCROLL_PAST_END
4614 if (value > max - size + 1)
4615 value = max - size + 1; /* limit the value to allowable range */
4616#endif
4617
4618#ifdef FEAT_RIGHTLEFT
4619 if (curwin->w_p_rl)
4620 {
4621 value = max + 1 - size - value;
4622 if (value < 0)
4623 {
4624 size += value;
4625 value = 0;
4626 }
4627 }
4628#endif
4629 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4630 && max == gui.bottom_sbar.max)
4631 return;
4632
4633 gui.bottom_sbar.value = value;
4634 gui.bottom_sbar.size = size;
4635 gui.bottom_sbar.max = max;
4636 gui.prev_wrap = curwin->w_p_wrap;
4637
4638 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4639}
4640
4641/*
4642 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4643 */
4644 int
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004645gui_do_horiz_scroll(leftcol, compute_longest_lnum)
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004646 long_u leftcol;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004647 int compute_longest_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648{
4649 /* no wrapping, no scrolling */
4650 if (curwin->w_p_wrap)
4651 return FALSE;
4652
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004653 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 return FALSE;
4655
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004656 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
4658 /* When the line of the cursor is too short, move the cursor to the
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004659 * longest visible line. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004661 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004662 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004664 if (compute_longest_lnum)
4665 {
4666 curwin->w_cursor.lnum = gui_find_longest_lnum();
4667 curwin->w_cursor.col = 0;
4668 }
4669 /* Do a sanity check on "longest_lnum", just in case. */
4670 else if (longest_lnum >= curwin->w_topline
4671 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 {
4673 curwin->w_cursor.lnum = longest_lnum;
4674 curwin->w_cursor.col = 0;
4675 }
4676 }
4677
4678 return leftcol_changed();
4679}
4680
4681/*
4682 * Check that none of the colors are the same as the background color
4683 */
4684 void
4685gui_check_colors()
4686{
4687 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4688 {
4689 gui_set_bg_color((char_u *)"White");
4690 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4691 gui_set_fg_color((char_u *)"Black");
4692 }
4693}
4694
Bram Moolenaar3918c952005-03-15 22:34:55 +00004695 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696gui_set_fg_color(name)
4697 char_u *name;
4698{
4699 gui.norm_pixel = gui_get_color(name);
4700 hl_set_fg_color_name(vim_strsave(name));
4701}
4702
Bram Moolenaar3918c952005-03-15 22:34:55 +00004703 static void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704gui_set_bg_color(name)
4705 char_u *name;
4706{
4707 gui.back_pixel = gui_get_color(name);
4708 hl_set_bg_color_name(vim_strsave(name));
4709}
4710
4711/*
4712 * Allocate a color by name.
4713 * Returns INVALCOLOR and gives an error message when failed.
4714 */
4715 guicolor_T
4716gui_get_color(name)
4717 char_u *name;
4718{
4719 guicolor_T t;
4720
4721 if (*name == NUL)
4722 return INVALCOLOR;
4723 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004724
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004726#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 && gui.in_use
4728#endif
4729 )
4730 EMSG2(_("E254: Cannot allocate color %s"), name);
4731 return t;
4732}
4733
4734/*
4735 * Return the grey value of a color (range 0-255).
4736 */
4737 int
4738gui_get_lightness(pixel)
4739 guicolor_T pixel;
4740{
4741 long_u rgb = gui_mch_get_rgb(pixel);
4742
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004743 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004744 + (((rgb >> 8) & 0xff) * 587)
4745 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746}
4747
4748#if defined(FEAT_GUI_X11) || defined(PROTO)
4749 void
4750gui_new_scrollbar_colors()
4751{
4752 win_T *wp;
4753
4754 /* Nothing to do if GUI hasn't started yet. */
4755 if (!gui.in_use)
4756 return;
4757
4758 FOR_ALL_WINDOWS(wp)
4759 {
4760 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4761 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4762 }
4763 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4764}
4765#endif
4766
4767/*
4768 * Call this when focus has changed.
4769 */
4770 void
4771gui_focus_change(in_focus)
4772 int in_focus;
4773{
4774/*
4775 * Skip this code to avoid drawing the cursor when debugging and switching
4776 * between the debugger window and gvim.
4777 */
4778#if 1
4779 gui.in_focus = in_focus;
4780 out_flush(); /* make sure output has been written */
4781 gui_update_cursor(TRUE, FALSE);
4782
4783# ifdef FEAT_XIM
4784 xim_set_focus(in_focus);
4785# endif
4786
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004787 /* Put events in the input queue only when allowed.
4788 * ui_focus_change() isn't called directly, because it invokes
4789 * autocommands and that must not happen asynchronously. */
4790 if (!hold_gui_events)
4791 {
4792 char_u bytes[3];
4793
4794 bytes[0] = CSI;
4795 bytes[1] = KS_EXTRA;
4796 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4797 add_to_input_buf(bytes, 3);
4798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799#endif
4800}
4801
4802/*
4803 * Called when the mouse moved (but not when dragging).
4804 */
4805 void
4806gui_mouse_moved(x, y)
4807 int x;
4808 int y;
4809{
4810 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004811 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
Bram Moolenaard3667a22006-03-16 21:35:52 +00004813 /* Ignore this while still starting up. */
4814 if (!gui.in_use || gui.starting)
4815 return;
4816
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817#ifdef FEAT_MOUSESHAPE
4818 /* Get window pointer, and update mouse shape as well. */
4819 wp = xy2win(x, y);
4820#endif
4821
4822 /* Only handle this when 'mousefocus' set and ... */
4823 if (p_mousef
4824 && !hold_gui_events /* not holding events */
4825 && (State & (NORMAL|INSERT))/* Normal/Visual/Insert mode */
4826 && State != HITRETURN /* but not hit-return prompt */
4827 && msg_scrolled == 0 /* no scrolled message */
4828 && !need_mouse_correct /* not moving the pointer */
4829 && gui.in_focus) /* gvim in focus */
4830 {
4831 /* Don't move the mouse when it's left or right of the Vim window */
4832 if (x < 0 || x > Columns * gui.char_width)
4833 return;
4834#ifndef FEAT_MOUSESHAPE
4835 wp = xy2win(x, y);
4836#endif
4837 if (wp == curwin || wp == NULL)
4838 return; /* still in the same old window, or none at all */
4839
Bram Moolenaar9c102382006-05-03 21:26:49 +00004840#ifdef FEAT_WINDOWS
4841 /* Ignore position in the tab pages line. */
4842 if (Y_2_ROW(y) < tabline_height())
4843 return;
4844#endif
4845
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 /*
4847 * format a mouse click on status line input
4848 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004849 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4850 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 */
4852 if (finish_op)
4853 {
4854 /* abort the current operator first */
4855 st[0] = ESC;
4856 add_to_input_buf(st, 1);
4857 }
4858 st[0] = CSI;
4859 st[1] = KS_MOUSE;
4860 st[2] = KE_FILLER;
4861 st[3] = (char_u)MOUSE_LEFT;
4862 fill_mouse_coord(st + 4,
4863#ifdef FEAT_VERTSPLIT
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004864 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865#else
4866 -1,
4867#endif
4868 wp->w_height + W_WINROW(wp));
4869
4870 add_to_input_buf(st, 8);
4871 st[3] = (char_u)MOUSE_RELEASE;
4872 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873#ifdef FEAT_GUI_GTK
4874 /* Need to wake up the main loop */
4875 if (gtk_main_level() > 0)
4876 gtk_main_quit();
4877#endif
4878 }
4879}
4880
4881/*
4882 * Called when mouse should be moved to window with focus.
4883 */
4884 void
4885gui_mouse_correct()
4886{
4887 int x, y;
4888 win_T *wp = NULL;
4889
4890 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004891
4892 if (!(gui.in_use && p_mousef))
4893 return;
4894
4895 gui_mch_getmouse(&x, &y);
4896 /* Don't move the mouse when it's left or right of the Vim window */
4897 if (x < 0 || x > Columns * gui.char_width)
4898 return;
Bram Moolenaar8798be02006-05-13 10:11:39 +00004899 if (y >= 0
Bram Moolenaar9c102382006-05-03 21:26:49 +00004900# ifdef FEAT_WINDOWS
Bram Moolenaar8798be02006-05-13 10:11:39 +00004901 && Y_2_ROW(y) >= tabline_height()
Bram Moolenaar9c102382006-05-03 21:26:49 +00004902# endif
Bram Moolenaar8798be02006-05-13 10:11:39 +00004903 )
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004904 wp = xy2win(x, y);
4905 if (wp != curwin && wp != NULL) /* If in other than current window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004907 validate_cline_row();
4908 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4909 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 }
4912}
4913
4914/*
4915 * Find window where the mouse pointer "y" coordinate is in.
4916 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 static win_T *
4918xy2win(x, y)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00004919 int x UNUSED;
4920 int y UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921{
4922#ifdef FEAT_WINDOWS
4923 int row;
4924 int col;
4925 win_T *wp;
4926
4927 row = Y_2_ROW(y);
4928 col = X_2_COL(x);
4929 if (row < 0 || col < 0) /* before first window */
4930 return NULL;
4931 wp = mouse_find_win(&row, &col);
4932# ifdef FEAT_MOUSESHAPE
4933 if (State == HITRETURN || State == ASKMORE)
4934 {
4935 if (Y_2_ROW(y) >= msg_row)
4936 update_mouseshape(SHAPE_IDX_MOREL);
4937 else
4938 update_mouseshape(SHAPE_IDX_MORE);
4939 }
4940 else if (row > wp->w_height) /* below status line */
4941 update_mouseshape(SHAPE_IDX_CLINE);
4942# ifdef FEAT_VERTSPLIT
4943 else if (!(State & CMDLINE) && W_VSEP_WIDTH(wp) > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004944 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 update_mouseshape(SHAPE_IDX_VSEP);
4946# endif
4947 else if (!(State & CMDLINE) && W_STATUS_HEIGHT(wp) > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004948 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 update_mouseshape(SHAPE_IDX_STATUS);
4950 else
4951 update_mouseshape(-2);
4952# endif
4953 return wp;
4954#else
4955 return firstwin;
4956#endif
4957}
4958
4959/*
4960 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
4961 * File names may be given to redefine the args list.
4962 */
4963 void
4964ex_gui(eap)
4965 exarg_T *eap;
4966{
4967 char_u *arg = eap->arg;
4968
4969 /*
4970 * Check for "-f" argument: foreground, don't fork.
4971 * Also don't fork when started with "gvim -f".
4972 * Do fork when using "gui -b".
4973 */
4974 if (arg[0] == '-'
4975 && (arg[1] == 'f' || arg[1] == 'b')
4976 && (arg[2] == NUL || vim_iswhite(arg[2])))
4977 {
4978 gui.dofork = (arg[1] == 'b');
4979 eap->arg = skipwhite(eap->arg + 2);
4980 }
4981 if (!gui.in_use)
4982 {
4983 /* Clear the command. Needed for when forking+exiting, to avoid part
4984 * of the argument ending up after the shell prompt. */
4985 msg_clr_eos_force();
4986 gui_start();
Bram Moolenaar67c53842010-05-22 18:28:27 +02004987#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004988 netbeans_gui_register();
Bram Moolenaar67c53842010-05-22 18:28:27 +02004989#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 }
4991 if (!ends_excmd(*eap->arg))
4992 ex_next(eap);
4993}
4994
4995#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00004996 || defined(FEAT_GUI_PHOTON)) && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997/*
4998 * This is shared between Athena, Motif and GTK.
4999 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005000static void gfp_setname __ARGS((char_u *fname, void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001
5002/*
5003 * Callback function for do_in_runtimepath().
5004 */
5005 static void
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005006gfp_setname(fname, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 char_u *fname;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005008 void *cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005010 char_u *gfp_buffer = cookie;
5011
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 if (STRLEN(fname) >= MAXPATHL)
5013 *gfp_buffer = NUL;
5014 else
5015 STRCPY(gfp_buffer, fname);
5016}
5017
5018/*
5019 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5020 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5021 */
5022 int
5023gui_find_bitmap(name, buffer, ext)
5024 char_u *name;
5025 char_u *buffer;
5026 char *ext;
5027{
5028 if (STRLEN(name) > MAXPATHL - 14)
5029 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005030 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005031 if (do_in_runtimepath(buffer, FALSE, gfp_setname, buffer) == FAIL
5032 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 return FAIL;
5034 return OK;
5035}
5036
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005037# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038/*
5039 * Given the name of the "icon=" argument, try finding the bitmap file for the
5040 * icon. If it is an absolute path name, use it as it is. Otherwise append
5041 * "ext" and search for it in 'runtimepath'.
5042 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5043 * contains "name".
5044 */
5045 void
5046gui_find_iconfile(name, buffer, ext)
5047 char_u *name;
5048 char_u *buffer;
5049 char *ext;
5050{
5051 char_u buf[MAXPATHL + 1];
5052
5053 expand_env(name, buffer, MAXPATHL);
5054 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5055 STRCPY(buffer, buf);
5056}
5057# endif
5058#endif
5059
Bram Moolenaar9372a112005-12-06 19:59:18 +00005060#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 void
5062display_errors()
5063{
5064 char_u *p;
5065
5066 if (isatty(2))
5067 fflush(stderr);
5068 else if (error_ga.ga_data != NULL)
5069 {
5070 /* avoid putting up a message box with blanks only */
5071 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5072 if (!isspace(*p))
5073 {
5074 /* Truncate a very long message, it will go off-screen. */
5075 if (STRLEN(p) > 2000)
5076 STRCPY(p + 2000 - 14, "...(truncated)");
5077 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005078 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 break;
5080 }
5081 ga_clear(&error_ga);
5082 }
5083}
5084#endif
5085
5086#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5087/*
5088 * Return TRUE if still starting up and there is no place to enter text.
5089 * For GTK and X11 we check if stderr is not a tty, which means we were
5090 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5091 * allow typing on stdin.
5092 */
5093 int
5094no_console_input()
5095{
5096 return ((!gui.in_use || gui.starting)
5097# ifndef NO_CONSOLE
5098 && !isatty(0) && !isatty(2)
5099# endif
5100 );
5101}
5102#endif
5103
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005104#if defined(FIND_REPLACE_DIALOG) || defined(FEAT_SUN_WORKSHOP) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005105 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005106 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107/*
5108 * Update the current window and the screen.
5109 */
5110 void
5111gui_update_screen()
5112{
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005113#ifdef FEAT_CONCEAL
5114 linenr_T conceal_old_cursor_line = 0;
5115 linenr_T conceal_new_cursor_line = 0;
5116 int conceal_update_lines = FALSE;
5117#endif
5118
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 update_topline();
5120 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005121
5122#if defined(FEAT_AUTOCMD) || defined(FEAT_CONCEAL)
Bram Moolenaarec80df72008-05-07 19:46:51 +00005123 /* Trigger CursorMoved if the cursor moved. */
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005124 if (!finish_op && (
5125# ifdef FEAT_AUTOCMD
5126 has_cursormoved()
5127# endif
5128# if defined(FEAT_AUTOCMD) && defined(FEAT_CONCEAL)
5129 ||
5130# endif
5131# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005132 curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005133# endif
5134 )
5135 && !equalpos(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005136 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005137# ifdef FEAT_AUTOCMD
5138 if (has_cursormoved())
5139 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
5140# endif
5141# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005142 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005143 {
5144 conceal_old_cursor_line = last_cursormoved.lnum;
5145 conceal_new_cursor_line = curwin->w_cursor.lnum;
5146 conceal_update_lines = TRUE;
5147 }
5148# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005149 last_cursormoved = curwin->w_cursor;
5150 }
5151#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005152
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 update_screen(0); /* may need to update the screen */
5154 setcursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005155# if defined(FEAT_CONCEAL)
5156 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005157 && (conceal_old_cursor_line != conceal_new_cursor_line
5158 || conceal_cursor_line(curwin)
5159 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005160 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005161 if (conceal_old_cursor_line != conceal_new_cursor_line)
5162 update_single_line(curwin, conceal_old_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005163 update_single_line(curwin, conceal_new_cursor_line);
5164 curwin->w_valid &= ~VALID_CROW;
5165 }
5166# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167 out_flush(); /* make sure output has been written */
5168 gui_update_cursor(TRUE, FALSE);
5169 gui_mch_flush();
5170}
5171#endif
5172
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005173#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174static void concat_esc __ARGS((garray_T *gap, char_u *text, int what));
5175
5176/*
5177 * Get the text to use in a find/replace dialog. Uses the last search pattern
5178 * if the argument is empty.
5179 * Returns an allocated string.
5180 */
5181 char_u *
5182get_find_dialog_text(arg, wwordp, mcasep)
5183 char_u *arg;
5184 int *wwordp; /* return: TRUE if \< \> found */
5185 int *mcasep; /* return: TRUE if \C found */
5186{
5187 char_u *text;
5188
5189 if (*arg == NUL)
5190 text = last_search_pat();
5191 else
5192 text = arg;
5193 if (text != NULL)
5194 {
5195 text = vim_strsave(text);
5196 if (text != NULL)
5197 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005198 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 int i;
5200
5201 /* Remove "\V" */
5202 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5203 {
5204 mch_memmove(text, text + 2, (size_t)(len - 1));
5205 len -= 2;
5206 }
5207
5208 /* Recognize "\c" and "\C" and remove. */
5209 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5210 {
5211 *mcasep = (text[1] == 'C');
5212 mch_memmove(text, text + 2, (size_t)(len - 1));
5213 len -= 2;
5214 }
5215
5216 /* Recognize "\<text\>" and remove. */
5217 if (len >= 4
5218 && STRNCMP(text, "\\<", 2) == 0
5219 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5220 {
5221 *wwordp = TRUE;
5222 mch_memmove(text, text + 2, (size_t)(len - 4));
5223 text[len - 4] = NUL;
5224 }
5225
5226 /* Recognize "\/" or "\?" and remove. */
5227 for (i = 0; i + 1 < len; ++i)
5228 if (text[i] == '\\' && (text[i + 1] == '/'
5229 || text[i + 1] == '?'))
5230 {
5231 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5232 --len;
5233 }
5234 }
5235 }
5236 return text;
5237}
5238
5239/*
5240 * Concatenate "text" to grow array "gap", escaping "what" with a backslash.
5241 */
5242 static void
5243concat_esc(gap, text, what)
5244 garray_T *gap;
5245 char_u *text;
5246 int what;
5247{
5248 while (*text != NUL)
5249 {
5250#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005251 int l = (*mb_ptr2len)(text);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005252
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 if (l > 1)
5254 {
5255 while (--l >= 0)
5256 ga_append(gap, *text++);
5257 continue;
5258 }
5259#endif
5260 if (*text == what)
5261 ga_append(gap, '\\');
5262 ga_append(gap, *text);
5263 ++text;
5264 }
5265}
5266
5267/*
5268 * Handle the press of a button in the find-replace dialog.
5269 * Return TRUE when something was added to the input buffer.
5270 */
5271 int
5272gui_do_findrepl(flags, find_text, repl_text, down)
5273 int flags; /* one of FRD_REPLACE, FRD_FINDNEXT, etc. */
5274 char_u *find_text;
5275 char_u *repl_text;
5276 int down; /* Search downwards. */
5277{
5278 garray_T ga;
5279 int i;
5280 int type = (flags & FRD_TYPE_MASK);
5281 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005282 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005283 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005284 static int busy = FALSE;
5285
5286 /* When the screen is being updated we should not change buffers and
5287 * windows structures, it may cause freed memory to be used. Also don't
5288 * do this recursively (pressing "Find" quickly several times. */
5289 if (updating_screen || busy)
5290 return FALSE;
5291
5292 /* refuse replace when text cannot be changed */
5293 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5294 return FALSE;
5295
5296 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297
5298 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005299 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 ga_concat(&ga, (char_u *)"%s/");
5301
5302 ga_concat(&ga, (char_u *)"\\V");
5303 if (flags & FRD_MATCH_CASE)
5304 ga_concat(&ga, (char_u *)"\\C");
5305 else
5306 ga_concat(&ga, (char_u *)"\\c");
5307 if (flags & FRD_WHOLE_WORD)
5308 ga_concat(&ga, (char_u *)"\\<");
5309 if (type == FRD_REPLACEALL || down)
5310 concat_esc(&ga, find_text, '/'); /* escape slashes */
5311 else
5312 concat_esc(&ga, find_text, '?'); /* escape '?' */
5313 if (flags & FRD_WHOLE_WORD)
5314 ga_concat(&ga, (char_u *)"\\>");
5315
5316 if (type == FRD_REPLACEALL)
5317 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005319 /* escape / and \ */
5320 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5321 if (p != NULL)
5322 ga_concat(&ga, p);
5323 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005325 }
5326 ga_append(&ga, NUL);
5327
5328 if (type == FRD_REPLACE)
5329 {
5330 /* Do the replacement when the text at the cursor matches. Thus no
5331 * replacement is done if the cursor was moved! */
5332 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5333 regmatch.rm_ic = 0;
5334 if (regmatch.regprog != NULL)
5335 {
5336 p = ml_get_cursor();
5337 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5338 && regmatch.startp[0] == p)
5339 {
5340 /* Clear the command line to remove any old "No match"
5341 * error. */
5342 msg_end_prompt();
5343
5344 if (u_save_cursor() == OK)
5345 {
5346 /* A button was pressed thus undo should be synced. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005347 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005348
5349 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005350 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005351 ins_str(repl_text);
5352 }
5353 }
5354 else
5355 MSG(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005356 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005357 }
5358 }
5359
5360 if (type == FRD_REPLACEALL)
5361 {
5362 /* A button was pressed, thus undo should be synced. */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005363 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 do_cmdline_cmd(ga.ga_data);
5365 }
5366 else
5367 {
5368 /* Search for the next match. */
5369 i = msg_scroll;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 do_search(NULL, down ? '/' : '?', ga.ga_data, 1L,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005371 SEARCH_MSG + SEARCH_MARK, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 msg_scroll = i; /* don't let an error message set msg_scroll */
5373 }
5374
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005375 /* Don't want to pass did_emsg to other code, it may cause disabling
5376 * syntax HL if we were busy redrawing. */
5377 did_emsg = save_did_emsg;
5378
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 if (State & (NORMAL | INSERT))
5380 {
5381 gui_update_screen(); /* update the screen */
5382 msg_didout = 0; /* overwrite any message */
5383 need_wait_return = FALSE; /* don't wait for return */
5384 }
5385
5386 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005387 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 return (ga.ga_len > 0);
5389}
5390
5391#endif
5392
5393#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5394 || defined(FEAT_GUI_MSWIN) \
5395 || defined(FEAT_GUI_MAC) \
5396 || defined(PROTO)
5397
5398#ifdef FEAT_WINDOWS
5399static void gui_wingoto_xy __ARGS((int x, int y));
5400
5401/*
5402 * Jump to the window at specified point (x, y).
5403 */
5404 static void
5405gui_wingoto_xy(x, y)
5406 int x;
5407 int y;
5408{
5409 int row = Y_2_ROW(y);
5410 int col = X_2_COL(x);
5411 win_T *wp;
5412
5413 if (row >= 0 && col >= 0)
5414 {
5415 wp = mouse_find_win(&row, &col);
5416 if (wp != NULL && wp != curwin)
5417 win_goto(wp);
5418 }
5419}
5420#endif
5421
5422/*
5423 * Process file drop. Mouse cursor position, key modifiers, name of files
5424 * and count of files are given. Argument "fnames[count]" has full pathnames
5425 * of dropped files, they will be freed in this function, and caller can't use
5426 * fnames after call this function.
5427 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 void
5429gui_handle_drop(x, y, modifiers, fnames, count)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00005430 int x UNUSED;
5431 int y UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 int_u modifiers;
5433 char_u **fnames;
5434 int count;
5435{
5436 int i;
5437 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005438 static int entered = FALSE;
5439
5440 /*
5441 * This function is called by event handlers. Just in case we get a
5442 * second event before the first one is handled, ignore the second one.
5443 * Not sure if this can ever happen, just in case.
5444 */
5445 if (entered)
5446 return;
5447 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448
5449 /*
5450 * When the cursor is at the command line, add the file names to the
5451 * command line, don't edit the files.
5452 */
5453 if (State & CMDLINE)
5454 {
5455 shorten_filenames(fnames, count);
5456 for (i = 0; i < count; ++i)
5457 {
5458 if (fnames[i] != NULL)
5459 {
5460 if (i > 0)
5461 add_to_input_buf((char_u*)" ", 1);
5462
5463 /* We don't know what command is used thus we can't be sure
5464 * about which characters need to be escaped. Only escape the
5465 * most common ones. */
5466# ifdef BACKSLASH_IN_FILENAME
5467 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5468# else
5469 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5470# endif
5471 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005472 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 vim_free(p);
5474 vim_free(fnames[i]);
5475 }
5476 }
5477 vim_free(fnames);
5478 }
5479 else
5480 {
5481 /* Go to the window under mouse cursor, then shorten given "fnames" by
5482 * current window, because a window can have local current dir. */
5483# ifdef FEAT_WINDOWS
5484 gui_wingoto_xy(x, y);
5485# endif
5486 shorten_filenames(fnames, count);
5487
5488 /* If Shift held down, remember the first item. */
5489 if ((modifiers & MOUSE_SHIFT) != 0)
5490 p = vim_strsave(fnames[0]);
5491 else
5492 p = NULL;
5493
5494 /* Handle the drop, :edit or :split to get to the file. This also
5495 * frees fnames[]. Skip this if there is only one item it's a
5496 * directory and Shift is held down. */
5497 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5498 && mch_isdir(fnames[0]))
5499 {
5500 vim_free(fnames[0]);
5501 vim_free(fnames);
5502 }
5503 else
5504 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0);
5505
5506 /* If Shift held down, change to first file's directory. If the first
5507 * item is a directory, change to that directory (and let the explorer
5508 * plugin show the contents). */
5509 if (p != NULL)
5510 {
5511 if (mch_isdir(p))
5512 {
5513 if (mch_chdir((char *)p) == 0)
5514 shorten_fnames(TRUE);
5515 }
5516 else if (vim_chdirfile(p) == OK)
5517 shorten_fnames(TRUE);
5518 vim_free(p);
5519 }
5520
5521 /* Update the screen display */
5522 update_screen(NOT_VALID);
5523# ifdef FEAT_MENU
5524 gui_update_menus(0);
5525# endif
Bram Moolenaarca7e1f22010-05-22 15:50:12 +02005526#ifdef FEAT_TITLE
5527 maketitle();
5528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 setcursor();
5530 out_flush();
5531 gui_update_cursor(FALSE, FALSE);
5532 gui_mch_flush();
5533 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005534
5535 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536}
5537#endif