Output build results in $(PROJECT_DIR)/build
[MacVim.git] / src / gui.c
blob393943ec06b6e775d210b841d682cef7b875c908
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI/Motif support by Robert Webb
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 */
11 #include "vim.h"
13 /* Structure containing all the GUI information */
14 gui_T gui;
16 #if defined(FEAT_MBYTE) && !defined(HAVE_GTK2)
17 static void set_guifontwide __ARGS((char_u *font_name));
18 #endif
19 static void gui_check_pos __ARGS((void));
20 static void gui_position_components __ARGS((int));
21 static void gui_outstr __ARGS((char_u *, int));
22 static int gui_screenchar __ARGS((int off, int flags, guicolor_T fg, guicolor_T bg, int back));
23 #ifdef HAVE_GTK2
24 static int gui_screenstr __ARGS((int off, int len, int flags, guicolor_T fg, guicolor_T bg, int back));
25 #endif
26 static void gui_delete_lines __ARGS((int row, int count));
27 static void gui_insert_lines __ARGS((int row, int count));
28 static void fill_mouse_coord __ARGS((char_u *p, int col, int row));
29 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
30 static int gui_has_tabline __ARGS((void));
31 #endif
32 static void gui_do_scrollbar __ARGS((win_T *wp, int which, int enable));
33 static colnr_T scroll_line_len __ARGS((linenr_T lnum));
34 static void gui_update_horiz_scrollbar __ARGS((int));
35 static void gui_set_fg_color __ARGS((char_u *name));
36 static void gui_set_bg_color __ARGS((char_u *name));
37 static win_T *xy2win __ARGS((int x, int y));
39 static int can_update_cursor = TRUE; /* can display the cursor */
42 * The Athena scrollbars can move the thumb to after the end of the scrollbar,
43 * this makes the thumb indicate the part of the text that is shown. Motif
44 * can't do this.
46 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MAC)
47 # define SCROLL_PAST_END
48 #endif
51 * gui_start -- Called when user wants to start the GUI.
53 * Careful: This function can be called recursively when there is a ":gui"
54 * command in the .gvimrc file. Only the first call should fork, not the
55 * recursive call.
57 void
58 gui_start()
60 char_u *old_term;
61 #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOS_X)
62 /* By the time we get here Mac OS X will already have forked (it does so
63 * right after scanning the command line) so don't do anything here. This
64 * means that "f" in 'guioptions' cannot be supported.
66 # define MAY_FORK
67 int dofork = TRUE;
68 #endif
69 static int recursive = 0;
71 old_term = vim_strsave(T_NAME);
74 * Set_termname() will call gui_init() to start the GUI.
75 * Set the "starting" flag, to indicate that the GUI will start.
77 * We don't want to open the GUI shell until after we've read .gvimrc,
78 * otherwise we don't know what font we will use, and hence we don't know
79 * what size the shell should be. So if there are errors in the .gvimrc
80 * file, they will have to go to the terminal: Set full_screen to FALSE.
81 * full_screen will be set to TRUE again by a successful termcapinit().
83 settmode(TMODE_COOK); /* stop RAW mode */
84 if (full_screen)
85 cursor_on(); /* needed for ":gui" in .vimrc */
86 gui.starting = TRUE;
87 full_screen = FALSE;
89 #ifdef MAY_FORK
90 if (!gui.dofork || vim_strchr(p_go, GO_FORG) || recursive)
91 dofork = FALSE;
92 #endif
93 ++recursive;
95 termcapinit((char_u *)"builtin_gui");
96 gui.starting = recursive - 1;
98 if (!gui.in_use) /* failed to start GUI */
100 termcapinit(old_term); /* back to old term settings */
101 settmode(TMODE_RAW); /* restart RAW mode */
102 #ifdef FEAT_TITLE
103 set_title_defaults(); /* set 'title' and 'icon' again */
104 #endif
107 vim_free(old_term);
109 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
110 if (gui.in_use)
111 /* Display error messages in a dialog now. */
112 display_errors();
113 #endif
115 #if defined(MAY_FORK) && !defined(__QNXNTO__)
117 * Quit the current process and continue in the child.
118 * Makes "gvim file" disconnect from the shell it was started in.
119 * Don't do this when Vim was started with "-f" or the 'f' flag is present
120 * in 'guioptions'.
122 if (gui.in_use && dofork)
124 int pipefd[2]; /* pipe between parent and child */
125 int pipe_error;
126 char dummy;
127 pid_t pid = -1;
129 /* Setup a pipe between the child and the parent, so that the parent
130 * knows when the child has done the setsid() call and is allowed to
131 * exit. */
132 pipe_error = (pipe(pipefd) < 0);
133 pid = fork();
134 if (pid > 0) /* Parent */
136 /* Give the child some time to do the setsid(), otherwise the
137 * exit() may kill the child too (when starting gvim from inside a
138 * gvim). */
139 if (pipe_error)
140 ui_delay(300L, TRUE);
141 else
143 /* The read returns when the child closes the pipe (or when
144 * the child dies for some reason). */
145 close(pipefd[1]);
146 ignored = (int)read(pipefd[0], &dummy, (size_t)1);
147 close(pipefd[0]);
150 /* When swapping screens we may need to go to the next line, e.g.,
151 * after a hit-enter prompt and using ":gui". */
152 if (newline_on_exit)
153 mch_errmsg("\r\n");
156 * The parent must skip the normal exit() processing, the child
157 * will do it. For example, GTK messes up signals when exiting.
159 _exit(0);
162 # if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
164 * Change our process group. On some systems/shells a CTRL-C in the
165 * shell where Vim was started would otherwise kill gvim!
167 if (pid == 0) /* child */
168 # if defined(HAVE_SETSID)
169 (void)setsid();
170 # else
171 (void)setpgid(0, 0);
172 # endif
173 # endif
174 if (!pipe_error)
176 close(pipefd[0]);
177 close(pipefd[1]);
180 # if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
181 /* Tell the session manager our new PID */
182 gui_mch_forked();
183 # endif
185 #else
186 # if defined(__QNXNTO__)
187 if (gui.in_use && dofork)
188 procmgr_daemon(0, PROCMGR_DAEMON_KEEPUMASK | PROCMGR_DAEMON_NOCHDIR |
189 PROCMGR_DAEMON_NOCLOSE | PROCMGR_DAEMON_NODEVNULL);
190 # endif
191 #endif
193 #ifdef FEAT_AUTOCMD
194 /* If the GUI started successfully, trigger the GUIEnter event, otherwise
195 * the GUIFailed event. */
196 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
197 NULL, NULL, FALSE, curbuf);
198 #endif
200 --recursive;
204 * Call this when vim starts up, whether or not the GUI is started
206 void
207 gui_prepare(argc, argv)
208 int *argc;
209 char **argv;
211 gui.in_use = FALSE; /* No GUI yet (maybe later) */
212 gui.starting = FALSE; /* No GUI yet (maybe later) */
213 gui_mch_prepare(argc, argv);
217 * Try initializing the GUI and check if it can be started.
218 * Used from main() to check early if "vim -g" can start the GUI.
219 * Used from gui_init() to prepare for starting the GUI.
220 * Returns FAIL or OK.
223 gui_init_check()
225 static int result = MAYBE;
227 if (result != MAYBE)
229 if (result == FAIL)
230 EMSG(_("E229: Cannot start the GUI"));
231 return result;
234 gui.shell_created = FALSE;
235 gui.dying = FALSE;
236 gui.in_focus = TRUE; /* so the guicursor setting works */
237 gui.dragged_sb = SBAR_NONE;
238 gui.dragged_wp = NULL;
239 gui.pointer_hidden = FALSE;
240 gui.col = 0;
241 gui.row = 0;
242 gui.num_cols = Columns;
243 gui.num_rows = Rows;
245 gui.cursor_is_valid = FALSE;
246 gui.scroll_region_top = 0;
247 gui.scroll_region_bot = Rows - 1;
248 gui.scroll_region_left = 0;
249 gui.scroll_region_right = Columns - 1;
250 gui.highlight_mask = HL_NORMAL;
251 gui.char_width = 1;
252 gui.char_height = 1;
253 gui.char_ascent = 0;
254 gui.border_width = 0;
256 gui.norm_font = NOFONT;
257 #ifndef HAVE_GTK2
258 gui.bold_font = NOFONT;
259 gui.ital_font = NOFONT;
260 gui.boldital_font = NOFONT;
261 # ifdef FEAT_XFONTSET
262 gui.fontset = NOFONTSET;
263 # endif
264 #endif
266 #ifdef FEAT_MENU
267 # ifndef HAVE_GTK2
268 # ifdef FONTSET_ALWAYS
269 gui.menu_fontset = NOFONTSET;
270 # else
271 gui.menu_font = NOFONT;
272 # endif
273 # endif
274 gui.menu_is_active = TRUE; /* default: include menu */
275 # if !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM))
276 gui.menu_height = MENU_DEFAULT_HEIGHT;
277 gui.menu_width = 0;
278 # endif
279 #endif
280 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
281 gui.toolbar_height = 0;
282 #endif
283 #if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
284 gui.footer_height = 0;
285 #endif
286 #ifdef FEAT_BEVAL_TIP
287 gui.tooltip_fontset = NOFONTSET;
288 #endif
290 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
291 gui.prev_wrap = -1;
293 #ifdef ALWAYS_USE_GUI
294 result = OK;
295 #else
296 result = gui_mch_init_check();
297 #endif
298 return result;
302 * This is the call which starts the GUI.
304 void
305 gui_init()
307 win_T *wp;
308 static int recursive = 0;
311 * It's possible to use ":gui" in a .gvimrc file. The first halve of this
312 * function will then be executed at the first call, the rest by the
313 * recursive call. This allow the shell to be opened halfway reading a
314 * gvimrc file.
316 if (!recursive)
318 ++recursive;
320 clip_init(TRUE);
322 /* If can't initialize, don't try doing the rest */
323 if (gui_init_check() == FAIL)
325 --recursive;
326 clip_init(FALSE);
327 return;
331 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
332 * breaks the Paste toolbar button.
334 set_option_value((char_u *)"paste", 0L, NULL, 0);
337 * Set up system-wide default menus.
339 #if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
340 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
342 sys_menu = TRUE;
343 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE);
344 sys_menu = FALSE;
346 #endif
349 * Switch on the mouse by default, unless the user changed it already.
350 * This can then be changed in the .gvimrc.
352 if (!option_was_set((char_u *)"mouse"))
353 set_string_option_direct((char_u *)"mouse", -1,
354 (char_u *)"a", OPT_FREE, SID_NONE);
357 * If -U option given, use only the initializations from that file and
358 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
360 if (use_gvimrc != NULL)
362 if (STRCMP(use_gvimrc, "NONE") != 0
363 && STRCMP(use_gvimrc, "NORC") != 0
364 && do_source(use_gvimrc, FALSE, DOSO_NONE) != OK)
365 EMSG2(_("E230: Cannot read from \"%s\""), use_gvimrc);
367 else
370 * Get system wide defaults for gvim, only when file name defined.
372 #ifdef SYS_GVIMRC_FILE
373 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE);
374 #endif
377 * Try to read GUI initialization commands from the following
378 * places:
379 * - environment variable GVIMINIT
380 * - the user gvimrc file (~/.gvimrc)
381 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
382 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
383 * The first that exists is used, the rest is ignored.
385 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
386 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
387 DOSO_GVIMRC) == FAIL
388 #ifdef USR_GVIMRC_FILE2
389 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
390 DOSO_GVIMRC) == FAIL
391 #endif
394 #ifdef USR_GVIMRC_FILE3
395 (void)do_source((char_u *)USR_GVIMRC_FILE3, TRUE, DOSO_GVIMRC);
396 #endif
400 * Read initialization commands from ".gvimrc" in current
401 * directory. This is only done if the 'exrc' option is set.
402 * Because of security reasons we disallow shell and write
403 * commands now, except for unix if the file is owned by the user
404 * or 'secure' option has been reset in environment of global
405 * ".gvimrc".
406 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
407 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
409 if (p_exrc)
411 #ifdef UNIX
413 struct stat s;
415 /* if ".gvimrc" file is not owned by user, set 'secure'
416 * mode */
417 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
418 secure = p_secure;
420 #else
421 secure = p_secure;
422 #endif
424 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
425 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
426 #ifdef SYS_GVIMRC_FILE
427 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
428 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
429 #endif
430 #ifdef USR_GVIMRC_FILE2
431 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
432 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
433 #endif
434 #ifdef USR_GVIMRC_FILE3
435 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
436 (char_u *)GVIMRC_FILE, FALSE) != FPC_SAME
437 #endif
439 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC);
441 if (secure == 2)
442 need_wait_return = TRUE;
443 secure = 0;
447 if (need_wait_return || msg_didany)
448 wait_return(TRUE);
450 --recursive;
453 /* If recursive call opened the shell, return here from the first call */
454 if (gui.in_use)
455 return;
458 * Create the GUI shell.
460 gui.in_use = TRUE; /* Must be set after menus have been set up */
461 if (gui_mch_init() == FAIL)
462 goto error;
464 /* Avoid a delay for an error message that was printed in the terminal
465 * where Vim was started. */
466 emsg_on_display = FALSE;
467 msg_scrolled = 0;
468 clear_sb_text();
469 need_wait_return = FALSE;
470 msg_didany = FALSE;
473 * Check validity of any generic resources that may have been loaded.
475 if (gui.border_width < 0)
476 gui.border_width = 0;
479 * Set up the fonts. First use a font specified with "-fn" or "-font".
481 if (font_argument != NULL)
482 set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
483 if (
484 #ifdef FEAT_XFONTSET
485 (*p_guifontset == NUL
486 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
487 #endif
488 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
489 : p_guifont, FALSE) == FAIL)
491 EMSG(_("E665: Cannot start GUI, no valid font found"));
492 goto error2;
494 #ifdef FEAT_MBYTE
495 if (gui_get_wide_font() == FAIL)
496 EMSG(_("E231: 'guifontwide' invalid"));
497 #endif
499 gui.num_cols = Columns;
500 gui.num_rows = Rows;
501 gui_reset_scroll_region();
503 /* Create initial scrollbars */
504 FOR_ALL_WINDOWS(wp)
506 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
507 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
509 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
511 #ifdef FEAT_MENU
512 gui_create_initial_menus(root_menu);
513 #endif
514 #ifdef FEAT_SUN_WORKSHOP
515 if (usingSunWorkShop)
516 workshop_init();
517 #endif
518 #ifdef FEAT_SIGN_ICONS
519 sign_gui_started();
520 #endif
522 /* Configure the desired menu and scrollbars */
523 gui_init_which_components(NULL);
525 /* All components of the GUI have been created now */
526 gui.shell_created = TRUE;
528 #ifndef FEAT_GUI_GTK
529 /* Set the shell size, adjusted for the screen size. For GTK this only
530 * works after the shell has been opened, thus it is further down. */
531 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
532 #endif
533 #if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
534 /* Need to set the size of the menubar after all the menus have been
535 * created. */
536 gui_mch_compute_menu_height((Widget)0);
537 #endif
540 * Actually open the GUI shell.
542 if (gui_mch_open() != FAIL)
544 #ifdef FEAT_TITLE
545 maketitle();
546 resettitle();
547 #endif
548 init_gui_options();
549 #ifdef FEAT_ARABIC
550 /* Our GUI can't do bidi. */
551 p_tbidi = FALSE;
552 #endif
553 #if defined(FEAT_GUI_GTK)
554 /* Give GTK+ a chance to put all widget's into place. */
555 gui_mch_update();
557 # ifdef FEAT_MENU
558 /* If there is no 'm' in 'guioptions' we need to remove the menu now.
559 * It was still there to make F10 work. */
560 if (vim_strchr(p_go, GO_MENUS) == NULL)
562 --gui.starting;
563 gui_mch_enable_menu(FALSE);
564 ++gui.starting;
565 gui_mch_update();
567 # endif
569 /* Now make sure the shell fits on the screen. */
570 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
571 #endif
572 /* When 'lines' was set while starting up the topframe may have to be
573 * resized. */
574 win_new_shellsize();
576 #ifdef FEAT_BEVAL
577 /* Always create the Balloon Evaluation area, but disable it when
578 * 'ballooneval' is off */
579 # ifdef FEAT_GUI_GTK
580 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
581 &general_beval_cb, NULL);
582 # else
583 # if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
585 extern Widget textArea;
586 balloonEval = gui_mch_create_beval_area(textArea, NULL,
587 &general_beval_cb, NULL);
589 # else
590 # ifdef FEAT_GUI_W32
591 balloonEval = gui_mch_create_beval_area(NULL, NULL,
592 &general_beval_cb, NULL);
593 # endif
594 # endif
595 # endif
596 if (!p_beval)
597 gui_mch_disable_beval_area(balloonEval);
598 #endif
600 #ifdef FEAT_NETBEANS_INTG
601 if (starting == 0 && usingNetbeans)
602 /* Tell the client that it can start sending commands. */
603 netbeans_startup_done();
604 #endif
605 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
606 if (!im_xim_isvalid_imactivate())
607 EMSG(_("E599: Value of 'imactivatekey' is invalid"));
608 #endif
609 /* When 'cmdheight' was set during startup it may not have taken
610 * effect yet. */
611 if (p_ch != 1L)
612 command_height();
614 return;
617 error2:
618 #ifdef FEAT_GUI_X11
619 /* undo gui_mch_init() */
620 gui_mch_uninit();
621 #endif
623 error:
624 gui.in_use = FALSE;
625 clip_init(FALSE);
629 void
630 gui_exit(rc)
631 int rc;
633 #ifndef __BEOS__
634 /* don't free the fonts, it leads to a BUS error
635 * richard@whitequeen.com Jul 99 */
636 free_highlight_fonts();
637 #endif
638 gui.in_use = FALSE;
639 gui_mch_exit(rc);
642 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
643 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
644 || defined(PROTO) || defined(FEAT_GUI_MACVIM)
645 # define NEED_GUI_UPDATE_SCREEN 1
647 * Called when the GUI shell is closed by the user. If there are no changed
648 * files Vim exits, otherwise there will be a dialog to ask the user what to
649 * do.
650 * When this function returns, Vim should NOT exit!
652 void
653 gui_shell_closed()
655 cmdmod_T save_cmdmod;
657 save_cmdmod = cmdmod;
659 /* Only exit when there are no changed files */
660 exiting = TRUE;
661 # ifdef FEAT_BROWSE
662 cmdmod.browse = TRUE;
663 # endif
664 # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
665 cmdmod.confirm = TRUE;
666 # endif
667 /* If there are changed buffers, present the user with a dialog if
668 * possible, otherwise give an error message. */
669 if (!check_changed_any(FALSE))
670 getout(0);
672 exiting = FALSE;
673 cmdmod = save_cmdmod;
674 gui_update_screen(); /* redraw, window may show changed buffer */
676 #endif
679 * Set the font. "font_list" is a a comma separated list of font names. The
680 * first font name that works is used. If none is found, use the default
681 * font.
682 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
683 * Return OK when able to set the font. When it failed FAIL is returned and
684 * the fonts are unchanged.
687 gui_init_font(font_list, fontset)
688 char_u *font_list;
689 int fontset UNUSED;
691 #define FONTLEN 320
692 char_u font_name[FONTLEN];
693 int font_list_empty = FALSE;
694 int ret = FAIL;
696 if (!gui.in_use)
697 return FAIL;
699 font_name[0] = NUL;
700 if (*font_list == NUL)
701 font_list_empty = TRUE;
702 else
704 #ifdef FEAT_XFONTSET
705 /* When using a fontset, the whole list of fonts is one name. */
706 if (fontset)
707 ret = gui_mch_init_font(font_list, TRUE);
708 else
709 #endif
710 while (*font_list != NUL)
712 /* Isolate one comma separated font name. */
713 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
715 #if defined(FEAT_GUI_MACVIM)
716 /* The font dialog is modeless in Mac OS X, so when
717 * gui_mch_init_font() is called with "*" it brings up the
718 * dialog and returns immediately. In this case we don't want
719 * it to be called again with NULL, so return here. */
720 if (STRCMP(font_name, "*") == 0) {
721 gui_mch_init_font(font_name, FALSE);
722 return FALSE;
724 #endif
726 /* Careful!!! The Win32 version of gui_mch_init_font(), when
727 * called with "*" will change p_guifont to the selected font
728 * name, which frees the old value. This makes font_list
729 * invalid. Thus when OK is returned here, font_list must no
730 * longer be used! */
731 if (gui_mch_init_font(font_name, FALSE) == OK)
733 #if defined(FEAT_MBYTE) && !defined(HAVE_GTK2)
734 /* If it's a Unicode font, try setting 'guifontwide' to a
735 * similar double-width font. */
736 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
737 && strstr((char *)font_name, "10646") != NULL)
738 set_guifontwide(font_name);
739 #endif
740 ret = OK;
741 break;
746 if (ret != OK
747 && STRCMP(font_list, "*") != 0
748 && (font_list_empty || gui.norm_font == NOFONT))
751 * Couldn't load any font in 'font_list', keep the current font if
752 * there is one. If 'font_list' is empty, or if there is no current
753 * font, tell gui_mch_init_font() to try to find a font we can load.
755 ret = gui_mch_init_font(NULL, FALSE);
758 if (ret == OK)
760 #ifndef HAVE_GTK2
761 /* Set normal font as current font */
762 # ifdef FEAT_XFONTSET
763 if (gui.fontset != NOFONTSET)
764 gui_mch_set_fontset(gui.fontset);
765 else
766 # endif
767 gui_mch_set_font(gui.norm_font);
768 #endif
769 gui_set_shellsize(FALSE,
770 #ifdef MSWIN
771 TRUE
772 #else
773 FALSE
774 #endif
775 , RESIZE_BOTH);
778 return ret;
781 #if defined(FEAT_MBYTE) || defined(PROTO)
782 # ifndef HAVE_GTK2
784 * Try setting 'guifontwide' to a font twice as wide as "name".
786 static void
787 set_guifontwide(name)
788 char_u *name;
790 int i = 0;
791 char_u wide_name[FONTLEN + 10]; /* room for 2 * width and '*' */
792 char_u *wp = NULL;
793 char_u *p;
794 GuiFont font;
796 wp = wide_name;
797 for (p = name; *p != NUL; ++p)
799 *wp++ = *p;
800 if (*p == '-')
802 ++i;
803 if (i == 6) /* font type: change "--" to "-*-" */
805 if (p[1] == '-')
806 *wp++ = '*';
808 else if (i == 12) /* found the width */
810 ++p;
811 i = getdigits(&p);
812 if (i != 0)
814 /* Double the width specification. */
815 sprintf((char *)wp, "%d%s", i * 2, p);
816 font = gui_mch_get_font(wide_name, FALSE);
817 if (font != NOFONT)
819 gui_mch_free_font(gui.wide_font);
820 gui.wide_font = font;
821 set_string_option_direct((char_u *)"gfw", -1,
822 wide_name, OPT_FREE, 0);
825 break;
830 # endif /* !HAVE_GTK2 */
833 * Get the font for 'guifontwide'.
834 * Return FAIL for an invalid font name.
837 gui_get_wide_font()
839 GuiFont font = NOFONT;
840 char_u font_name[FONTLEN];
841 char_u *p;
843 if (!gui.in_use) /* Can't allocate font yet, assume it's OK. */
844 return OK; /* Will give an error message later. */
846 if (p_guifontwide != NULL && *p_guifontwide != NUL)
848 for (p = p_guifontwide; *p != NUL; )
850 /* Isolate one comma separated font name. */
851 (void)copy_option_part(&p, font_name, FONTLEN, ",");
852 font = gui_mch_get_font(font_name, FALSE);
853 if (font != NOFONT)
854 break;
856 if (font == NOFONT)
857 return FAIL;
860 gui_mch_free_font(gui.wide_font);
861 #ifdef HAVE_GTK2
862 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
863 if (font != NOFONT && gui.norm_font != NOFONT
864 && pango_font_description_equal(font, gui.norm_font))
866 gui.wide_font = NOFONT;
867 gui_mch_free_font(font);
869 else
870 #endif
871 gui.wide_font = font;
872 return OK;
874 #endif
876 void
877 gui_set_cursor(row, col)
878 int row;
879 int col;
881 gui.row = row;
882 gui.col = col;
886 * gui_check_pos - check if the cursor is on the screen.
888 static void
889 gui_check_pos()
891 if (gui.row >= screen_Rows)
892 gui.row = screen_Rows - 1;
893 if (gui.col >= screen_Columns)
894 gui.col = screen_Columns - 1;
895 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
896 gui.cursor_is_valid = FALSE;
900 * Redraw the cursor if necessary or when forced.
901 * Careful: The contents of ScreenLines[] must match what is on the screen,
902 * otherwise this goes wrong. May need to call out_flush() first.
904 void
905 gui_update_cursor(force, clear_selection)
906 int force; /* when TRUE, update even when not moved */
907 int clear_selection;/* clear selection under cursor */
909 int cur_width = 0;
910 int cur_height = 0;
911 int old_hl_mask;
912 int idx;
913 int id;
914 guicolor_T cfg, cbg, cc; /* cursor fore-/background color */
915 int cattr; /* cursor attributes */
916 int attr;
917 attrentry_T *aep = NULL;
919 /* Don't update the cursor when halfway busy scrolling or the screen size
920 * doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then. */
921 if (!can_update_cursor || screen_Columns != gui.num_cols
922 || screen_Rows != gui.num_rows)
923 return;
925 gui_check_pos();
926 if (!gui.cursor_is_valid || force
927 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
929 gui_undraw_cursor();
930 if (gui.row < 0)
931 return;
932 #ifdef USE_IM_CONTROL
933 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
934 im_set_position(gui.row, gui.col);
935 #endif
936 gui.cursor_row = gui.row;
937 gui.cursor_col = gui.col;
939 /* Only write to the screen after ScreenLines[] has been initialized */
940 if (!screen_cleared || ScreenLines == NULL)
941 return;
943 /* Clear the selection if we are about to write over it */
944 if (clear_selection)
945 clip_may_clear_selection(gui.row, gui.row);
946 /* Check that the cursor is inside the shell (resizing may have made
947 * it invalid) */
948 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
949 return;
951 gui.cursor_is_valid = TRUE;
954 * How the cursor is drawn depends on the current mode.
956 idx = get_shape_idx(FALSE);
957 if (State & LANGMAP)
958 id = shape_table[idx].id_lm;
959 else
960 id = shape_table[idx].id;
962 /* get the colors and attributes for the cursor. Default is inverted */
963 cfg = INVALCOLOR;
964 cbg = INVALCOLOR;
965 cattr = HL_INVERSE;
966 gui_mch_set_blinking(shape_table[idx].blinkwait,
967 shape_table[idx].blinkon,
968 shape_table[idx].blinkoff);
969 if (id > 0)
971 cattr = syn_id2colors(id, &cfg, &cbg);
972 #if defined(USE_IM_CONTROL) || defined(FEAT_HANGULIN)
974 static int iid;
975 guicolor_T fg, bg;
977 if (
978 # if defined(HAVE_GTK2) && !defined(FEAT_HANGULIN)
979 preedit_get_status()
980 # else
981 im_get_status()
982 # endif
985 iid = syn_name2id((char_u *)"CursorIM");
986 if (iid > 0)
988 syn_id2colors(iid, &fg, &bg);
989 if (bg != INVALCOLOR)
990 cbg = bg;
991 if (fg != INVALCOLOR)
992 cfg = fg;
996 #endif
1000 * Get the attributes for the character under the cursor.
1001 * When no cursor color was given, use the character color.
1003 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1004 if (attr > HL_ALL)
1005 aep = syn_gui_attr2entry(attr);
1006 if (aep != NULL)
1008 attr = aep->ae_attr;
1009 if (cfg == INVALCOLOR)
1010 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1011 : aep->ae_u.gui.fg_color);
1012 if (cbg == INVALCOLOR)
1013 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1014 : aep->ae_u.gui.bg_color);
1016 if (cfg == INVALCOLOR)
1017 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1018 if (cbg == INVALCOLOR)
1019 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1021 #ifdef FEAT_XIM
1022 if (aep != NULL)
1024 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1025 : aep->ae_u.gui.bg_color);
1026 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1027 : aep->ae_u.gui.fg_color);
1028 if (xim_bg_color == INVALCOLOR)
1029 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1030 : gui.back_pixel;
1031 if (xim_fg_color == INVALCOLOR)
1032 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1033 : gui.norm_pixel;
1035 else
1037 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1038 : gui.back_pixel;
1039 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1040 : gui.norm_pixel;
1042 #endif
1044 attr &= ~HL_INVERSE;
1045 if (cattr & HL_INVERSE)
1047 cc = cbg;
1048 cbg = cfg;
1049 cfg = cc;
1051 cattr &= ~HL_INVERSE;
1054 * When we don't have window focus, draw a hollow cursor.
1056 if (!gui.in_focus)
1058 gui_mch_draw_hollow_cursor(cbg);
1059 return;
1062 old_hl_mask = gui.highlight_mask;
1063 if (shape_table[idx].shape == SHAPE_BLOCK
1064 #ifdef FEAT_HANGULIN
1065 || composing_hangul
1066 #endif
1070 * Draw the text character with the cursor colors. Use the
1071 * character attributes plus the cursor attributes.
1073 gui.highlight_mask = (cattr | attr);
1074 #ifdef FEAT_HANGULIN
1075 if (composing_hangul)
1076 (void)gui_outstr_nowrap(composing_hangul_buffer, 2,
1077 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1078 else
1079 #endif
1080 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1081 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1083 else
1085 #if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1086 int col_off = FALSE;
1087 #endif
1089 * First draw the partial cursor, then overwrite with the text
1090 * character, using a transparent background.
1092 if (shape_table[idx].shape == SHAPE_VER)
1094 cur_height = gui.char_height;
1095 cur_width = (gui.char_width * shape_table[idx].percentage
1096 + 99) / 100;
1098 else
1100 cur_height = (gui.char_height * shape_table[idx].percentage
1101 + 99) / 100;
1102 cur_width = gui.char_width;
1104 #ifdef FEAT_MBYTE
1105 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1106 LineOffset[gui.row] + screen_Columns) > 1)
1108 /* Double wide character. */
1109 if (shape_table[idx].shape != SHAPE_VER)
1110 cur_width += gui.char_width;
1111 # ifdef FEAT_RIGHTLEFT
1112 if (CURSOR_BAR_RIGHT)
1114 /* gui.col points to the left halve of the character but
1115 * the vertical line needs to be on the right halve.
1116 * A double-wide horizontal line is also drawn from the
1117 * right halve in gui_mch_draw_part_cursor(). */
1118 col_off = TRUE;
1119 ++gui.col;
1121 # endif
1123 #endif
1124 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
1125 #if defined(FEAT_MBYTE) && defined(FEAT_RIGHTLEFT)
1126 if (col_off)
1127 --gui.col;
1128 #endif
1130 #ifndef FEAT_GUI_MSWIN /* doesn't seem to work for MSWindows */
1131 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1132 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1133 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1134 (guicolor_T)0, (guicolor_T)0, 0);
1135 #endif
1137 gui.highlight_mask = old_hl_mask;
1141 #if defined(FEAT_MENU) || defined(PROTO)
1142 void
1143 gui_position_menu()
1145 # if !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MOTIF) \
1146 || defined(FEAT_GUI_MACVIM))
1147 if (gui.menu_is_active && gui.in_use)
1148 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1149 # endif
1151 #endif
1154 * Position the various GUI components (text area, menu). The vertical
1155 * scrollbars are NOT handled here. See gui_update_scrollbars().
1157 static void
1158 gui_position_components(total_width)
1159 int total_width UNUSED;
1161 int text_area_x;
1162 int text_area_y;
1163 int text_area_width;
1164 int text_area_height;
1166 /* avoid that moving components around generates events */
1167 ++hold_gui_events;
1169 text_area_x = 0;
1170 if (gui.which_scrollbars[SBAR_LEFT])
1171 text_area_x += gui.scrollbar_width;
1173 text_area_y = 0;
1174 #if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON) \
1175 || defined(FEAT_GUI_MACVIM))
1176 gui.menu_width = total_width;
1177 if (gui.menu_is_active)
1178 text_area_y += gui.menu_height;
1179 #endif
1180 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1181 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1182 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1183 #endif
1185 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1186 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
1187 if (gui_has_tabline())
1188 text_area_y += gui.tabline_height;
1189 #endif
1191 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1192 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1194 # ifdef FEAT_GUI_ATHENA
1195 gui_mch_set_toolbar_pos(0, text_area_y,
1196 gui.menu_width, gui.toolbar_height);
1197 # endif
1198 text_area_y += gui.toolbar_height;
1200 #endif
1202 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1203 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1205 gui_mch_set_text_area_pos(text_area_x,
1206 text_area_y,
1207 text_area_width,
1208 text_area_height
1209 #if defined(FEAT_XIM) && !(defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM))
1210 + xim_get_status_area_height()
1211 #endif
1213 #ifdef FEAT_MENU
1214 gui_position_menu();
1215 #endif
1216 if (gui.which_scrollbars[SBAR_BOTTOM])
1217 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1218 text_area_x,
1219 text_area_y + text_area_height,
1220 text_area_width,
1221 gui.scrollbar_height);
1222 gui.left_sbar_x = 0;
1223 gui.right_sbar_x = text_area_x + text_area_width;
1225 --hold_gui_events;
1229 * Get the width of the widgets and decorations to the side of the text area.
1232 gui_get_base_width()
1234 int base_width;
1236 base_width = 2 * gui.border_offset;
1237 if (gui.which_scrollbars[SBAR_LEFT])
1238 base_width += gui.scrollbar_width;
1239 if (gui.which_scrollbars[SBAR_RIGHT])
1240 base_width += gui.scrollbar_width;
1241 return base_width;
1245 * Get the height of the widgets and decorations above and below the text area.
1248 gui_get_base_height()
1250 int base_height;
1252 base_height = 2 * gui.border_offset;
1253 if (gui.which_scrollbars[SBAR_BOTTOM])
1254 base_height += gui.scrollbar_height;
1255 #ifdef FEAT_GUI_GTK
1256 /* We can't take the sizes properly into account until anything is
1257 * realized. Therefore we recalculate all the values here just before
1258 * setting the size. (--mdcki) */
1259 #elif !defined(FEAT_GUI_MACVIM)
1260 # ifdef FEAT_MENU
1261 if (gui.menu_is_active)
1262 base_height += gui.menu_height;
1263 # endif
1264 # ifdef FEAT_TOOLBAR
1265 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1266 # if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1267 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1268 # else
1269 base_height += gui.toolbar_height;
1270 # endif
1271 # endif
1272 # if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1273 || defined(FEAT_GUI_MOTIF))
1274 if (gui_has_tabline())
1275 base_height += gui.tabline_height;
1276 # endif
1277 # ifdef FEAT_FOOTER
1278 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1279 base_height += gui.footer_height;
1280 # endif
1281 # if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1282 base_height += gui_mch_text_area_extra_height();
1283 # endif
1284 #endif
1285 return base_height;
1289 * Should be called after the GUI shell has been resized. Its arguments are
1290 * the new width and height of the shell in pixels.
1292 void
1293 gui_resize_shell(pixel_width, pixel_height)
1294 int pixel_width;
1295 int pixel_height;
1297 static int busy = FALSE;
1299 if (!gui.shell_created) /* ignore when still initializing */
1300 return;
1303 * Can't resize the screen while it is being redrawn. Remember the new
1304 * size and handle it later.
1306 if (updating_screen || busy)
1308 new_pixel_width = pixel_width;
1309 new_pixel_height = pixel_height;
1310 return;
1313 again:
1314 busy = TRUE;
1316 /* Flush pending output before redrawing */
1317 out_flush();
1319 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
1320 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
1322 gui_position_components(pixel_width);
1324 gui_reset_scroll_region();
1326 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1327 * at the last line here (why does it have to be one row too low?).
1329 if (State == ASKMORE || State == CONFIRM)
1330 gui.row = gui.num_rows;
1332 /* Only comparing Rows and Columns may be sufficient, but let's stay on
1333 * the safe side. */
1334 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1335 || gui.num_rows != Rows || gui.num_cols != Columns)
1336 shell_resized();
1338 gui_update_scrollbars(TRUE);
1339 gui_update_cursor(FALSE, TRUE);
1340 #if defined(FEAT_XIM) && !(defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM))
1341 xim_set_status_area();
1342 #endif
1344 busy = FALSE;
1347 * We could have been called again while redrawing the screen.
1348 * Need to do it all again with the latest size then.
1350 if (new_pixel_height)
1352 pixel_width = new_pixel_width;
1353 pixel_height = new_pixel_height;
1354 new_pixel_width = 0;
1355 new_pixel_height = 0;
1356 goto again;
1361 * Check if gui_resize_shell() must be called.
1363 void
1364 gui_may_resize_shell()
1366 int h, w;
1368 if (new_pixel_height)
1370 /* careful: gui_resize_shell() may postpone the resize again if we
1371 * were called indirectly by it */
1372 w = new_pixel_width;
1373 h = new_pixel_height;
1374 new_pixel_width = 0;
1375 new_pixel_height = 0;
1376 gui_resize_shell(w, h);
1381 gui_get_shellsize()
1383 Rows = gui.num_rows;
1384 Columns = gui.num_cols;
1385 return OK;
1389 * Set the size of the Vim shell according to Rows and Columns.
1390 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1391 * on the screen.
1393 void
1394 gui_set_shellsize(mustset, fit_to_display, direction)
1395 int mustset UNUSED; /* set by the user */
1396 int fit_to_display;
1397 int direction; /* RESIZE_HOR, RESIZE_VER */
1399 int base_width;
1400 int base_height;
1401 int width;
1402 int height;
1403 int min_width;
1404 int min_height;
1405 int screen_w;
1406 int screen_h;
1407 #ifdef HAVE_GTK2
1408 int un_maximize = mustset;
1409 int did_adjust = 0;
1410 #endif
1411 int x = -1, y = -1;
1413 if (!gui.shell_created)
1414 return;
1416 #ifdef MSWIN
1417 /* If not setting to a user specified size and maximized, calculate the
1418 * number of characters that fit in the maximized window. */
1419 if (!mustset && gui_mch_maximized())
1421 gui_mch_newfont();
1422 return;
1424 #endif
1426 base_width = gui_get_base_width();
1427 base_height = gui_get_base_height();
1428 if (fit_to_display)
1429 /* Remember the original window position. */
1430 gui_mch_get_winpos(&x, &y);
1432 #ifdef USE_SUN_WORKSHOP
1433 if (!mustset && usingSunWorkShop
1434 && workshop_get_width_height(&width, &height))
1436 Columns = (width - base_width + gui.char_width - 1) / gui.char_width;
1437 Rows = (height - base_height + gui.char_height - 1) / gui.char_height;
1439 else
1440 #endif
1442 width = Columns * gui.char_width + base_width;
1443 height = Rows * gui.char_height + base_height;
1446 if (fit_to_display)
1448 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1449 if ((direction & RESIZE_HOR) && width > screen_w)
1451 Columns = (screen_w - base_width) / gui.char_width;
1452 if (Columns < MIN_COLUMNS)
1453 Columns = MIN_COLUMNS;
1454 width = Columns * gui.char_width + base_width;
1455 #ifdef HAVE_GTK2
1456 ++did_adjust;
1457 #endif
1459 if ((direction & RESIZE_VERT) && height > screen_h)
1461 Rows = (screen_h - base_height) / gui.char_height;
1462 check_shellsize();
1463 height = Rows * gui.char_height + base_height;
1464 #ifdef HAVE_GTK2
1465 ++did_adjust;
1466 #endif
1468 #ifdef HAVE_GTK2
1469 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1470 && height + gui.char_height >= screen_h))
1471 /* don't unmaximize if at maximum size */
1472 un_maximize = FALSE;
1473 #endif
1475 gui.num_cols = Columns;
1476 gui.num_rows = Rows;
1478 min_width = base_width + MIN_COLUMNS * gui.char_width;
1479 min_height = base_height + MIN_LINES * gui.char_height;
1480 #ifdef FEAT_WINDOWS
1481 min_height += tabline_height() * gui.char_height;
1482 #endif
1484 #ifdef HAVE_GTK2
1485 if (un_maximize)
1487 /* If the window size is smaller than the screen unmaximize the
1488 * window, otherwise resizing won't work. */
1489 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1490 if ((width + gui.char_width < screen_w
1491 || height + gui.char_height * 2 < screen_h)
1492 && gui_mch_maximized())
1493 gui_mch_unmaximize();
1495 #endif
1497 gui_mch_set_shellsize(width, height, min_width, min_height,
1498 base_width, base_height, direction);
1500 if (fit_to_display && x >= 0 && y >= 0)
1502 /* Some window managers put the Vim window left of/above the screen.
1503 * Only change the position if it wasn't already negative before
1504 * (happens on MS-Windows with a secondary monitor). */
1505 gui_mch_update();
1506 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1507 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1510 gui_position_components(width);
1511 gui_update_scrollbars(TRUE);
1512 gui_reset_scroll_region();
1516 * Called when Rows and/or Columns has changed.
1518 void
1519 gui_new_shellsize()
1521 gui_reset_scroll_region();
1525 * Make scroll region cover whole screen.
1527 void
1528 gui_reset_scroll_region()
1530 gui.scroll_region_top = 0;
1531 gui.scroll_region_bot = gui.num_rows - 1;
1532 gui.scroll_region_left = 0;
1533 gui.scroll_region_right = gui.num_cols - 1;
1536 void
1537 gui_start_highlight(mask)
1538 int mask;
1540 if (mask > HL_ALL) /* highlight code */
1541 gui.highlight_mask = mask;
1542 else /* mask */
1543 gui.highlight_mask |= mask;
1546 void
1547 gui_stop_highlight(mask)
1548 int mask;
1550 if (mask > HL_ALL) /* highlight code */
1551 gui.highlight_mask = HL_NORMAL;
1552 else /* mask */
1553 gui.highlight_mask &= ~mask;
1557 * Clear a rectangular region of the screen from text pos (row1, col1) to
1558 * (row2, col2) inclusive.
1560 void
1561 gui_clear_block(row1, col1, row2, col2)
1562 int row1;
1563 int col1;
1564 int row2;
1565 int col2;
1567 /* Clear the selection if we are about to write over it */
1568 clip_may_clear_selection(row1, row2);
1570 gui_mch_clear_block(row1, col1, row2, col2);
1572 /* Invalidate cursor if it was in this block */
1573 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1574 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1575 gui.cursor_is_valid = FALSE;
1579 * Write code to update the cursor later. This avoids the need to flush the
1580 * output buffer before calling gui_update_cursor().
1582 void
1583 gui_update_cursor_later()
1585 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
1588 void
1589 gui_write(s, len)
1590 char_u *s;
1591 int len;
1593 char_u *p;
1594 int arg1 = 0, arg2 = 0;
1595 /* this doesn't make sense, disabled until someone can explain why it
1596 * would be needed */
1597 #if 0 && (defined(RISCOS) || defined(WIN16))
1598 int force_cursor = TRUE; /* JK230798, stop Vim being smart or
1599 our redraw speed will suffer */
1600 #else
1601 int force_cursor = FALSE; /* force cursor update */
1602 #endif
1603 int force_scrollbar = FALSE;
1604 static win_T *old_curwin = NULL;
1606 /* #define DEBUG_GUI_WRITE */
1607 #ifdef DEBUG_GUI_WRITE
1609 int i;
1610 char_u *str;
1612 printf("gui_write(%d):\n ", len);
1613 for (i = 0; i < len; i++)
1614 if (s[i] == ESC)
1616 if (i != 0)
1617 printf("\n ");
1618 printf("<ESC>");
1620 else
1622 str = transchar_byte(s[i]);
1623 if (str[0] && str[1])
1624 printf("<%s>", (char *)str);
1625 else
1626 printf("%s", (char *)str);
1628 printf("\n");
1630 #endif
1631 while (len)
1633 if (s[0] == ESC && s[1] == '|')
1635 p = s + 2;
1636 if (VIM_ISDIGIT(*p))
1638 arg1 = getdigits(&p);
1639 if (p > s + len)
1640 break;
1641 if (*p == ';')
1643 ++p;
1644 arg2 = getdigits(&p);
1645 if (p > s + len)
1646 break;
1649 switch (*p)
1651 case 'C': /* Clear screen */
1652 clip_scroll_selection(9999);
1653 gui_mch_clear_all();
1654 gui.cursor_is_valid = FALSE;
1655 force_scrollbar = TRUE;
1656 break;
1657 case 'M': /* Move cursor */
1658 gui_set_cursor(arg1, arg2);
1659 break;
1660 case 's': /* force cursor (shape) update */
1661 force_cursor = TRUE;
1662 break;
1663 case 'R': /* Set scroll region */
1664 if (arg1 < arg2)
1666 gui.scroll_region_top = arg1;
1667 gui.scroll_region_bot = arg2;
1669 else
1671 gui.scroll_region_top = arg2;
1672 gui.scroll_region_bot = arg1;
1674 break;
1675 #ifdef FEAT_VERTSPLIT
1676 case 'V': /* Set vertical scroll region */
1677 if (arg1 < arg2)
1679 gui.scroll_region_left = arg1;
1680 gui.scroll_region_right = arg2;
1682 else
1684 gui.scroll_region_left = arg2;
1685 gui.scroll_region_right = arg1;
1687 break;
1688 #endif
1689 case 'd': /* Delete line */
1690 gui_delete_lines(gui.row, 1);
1691 break;
1692 case 'D': /* Delete lines */
1693 gui_delete_lines(gui.row, arg1);
1694 break;
1695 case 'i': /* Insert line */
1696 gui_insert_lines(gui.row, 1);
1697 break;
1698 case 'I': /* Insert lines */
1699 gui_insert_lines(gui.row, arg1);
1700 break;
1701 case '$': /* Clear to end-of-line */
1702 gui_clear_block(gui.row, gui.col, gui.row,
1703 (int)Columns - 1);
1704 break;
1705 case 'h': /* Turn on highlighting */
1706 gui_start_highlight(arg1);
1707 break;
1708 case 'H': /* Turn off highlighting */
1709 gui_stop_highlight(arg1);
1710 break;
1711 case 'f': /* flash the window (visual bell) */
1712 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1713 break;
1714 default:
1715 p = s + 1; /* Skip the ESC */
1716 break;
1718 len -= (int)(++p - s);
1719 s = p;
1721 else if (
1722 #ifdef EBCDIC
1723 CtrlChar(s[0]) != 0 /* Ctrl character */
1724 #else
1725 s[0] < 0x20 /* Ctrl character */
1726 #endif
1727 #ifdef FEAT_SIGN_ICONS
1728 && s[0] != SIGN_BYTE
1729 # ifdef FEAT_NETBEANS_INTG
1730 && s[0] != MULTISIGN_BYTE
1731 # endif
1732 #endif
1735 if (s[0] == '\n') /* NL */
1737 gui.col = 0;
1738 if (gui.row < gui.scroll_region_bot)
1739 gui.row++;
1740 else
1741 gui_delete_lines(gui.scroll_region_top, 1);
1743 else if (s[0] == '\r') /* CR */
1745 gui.col = 0;
1747 else if (s[0] == '\b') /* Backspace */
1749 if (gui.col)
1750 --gui.col;
1752 else if (s[0] == Ctrl_L) /* cursor-right */
1754 ++gui.col;
1756 else if (s[0] == Ctrl_G) /* Beep */
1758 gui_mch_beep();
1760 /* Other Ctrl character: shouldn't happen! */
1762 --len; /* Skip this char */
1763 ++s;
1765 else
1767 p = s;
1768 while (len > 0 && (
1769 #ifdef EBCDIC
1770 CtrlChar(*p) == 0
1771 #else
1772 *p >= 0x20
1773 #endif
1774 #ifdef FEAT_SIGN_ICONS
1775 || *p == SIGN_BYTE
1776 # ifdef FEAT_NETBEANS_INTG
1777 || *p == MULTISIGN_BYTE
1778 # endif
1779 #endif
1782 len--;
1783 p++;
1785 gui_outstr(s, (int)(p - s));
1786 s = p;
1790 /* Postponed update of the cursor (won't work if "can_update_cursor" isn't
1791 * set). */
1792 if (force_cursor)
1793 gui_update_cursor(TRUE, TRUE);
1795 /* When switching to another window the dragging must have stopped.
1796 * Required for GTK, dragged_sb isn't reset. */
1797 if (old_curwin != curwin)
1798 gui.dragged_sb = SBAR_NONE;
1800 /* Update the scrollbars after clearing the screen or when switched
1801 * to another window.
1802 * Update the horizontal scrollbar always, it's difficult to check all
1803 * situations where it might change. */
1804 if (force_scrollbar || old_curwin != curwin)
1805 gui_update_scrollbars(force_scrollbar);
1806 else
1807 gui_update_horiz_scrollbar(FALSE);
1808 old_curwin = curwin;
1811 * We need to make sure this is cleared since Athena doesn't tell us when
1812 * he is done dragging. Do the same for GTK.
1814 #if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
1815 gui.dragged_sb = SBAR_NONE;
1816 #endif
1818 gui_mch_flush(); /* In case vim decides to take a nap */
1822 * When ScreenLines[] is invalid, updating the cursor should not be done, it
1823 * produces wrong results. Call gui_dont_update_cursor() before that code and
1824 * gui_can_update_cursor() afterwards.
1826 void
1827 gui_dont_update_cursor()
1829 if (gui.in_use)
1831 /* Undraw the cursor now, we probably can't do it after the change. */
1832 gui_undraw_cursor();
1833 can_update_cursor = FALSE;
1837 void
1838 gui_can_update_cursor()
1840 can_update_cursor = TRUE;
1841 /* No need to update the cursor right now, there is always more output
1842 * after scrolling. */
1845 static void
1846 gui_outstr(s, len)
1847 char_u *s;
1848 int len;
1850 int this_len;
1851 #ifdef FEAT_MBYTE
1852 int cells;
1853 #endif
1855 if (len == 0)
1856 return;
1858 if (len < 0)
1859 len = (int)STRLEN(s);
1861 while (len > 0)
1863 #ifdef FEAT_MBYTE
1864 if (has_mbyte)
1866 /* Find out how many chars fit in the current line. */
1867 cells = 0;
1868 for (this_len = 0; this_len < len; )
1870 cells += (*mb_ptr2cells)(s + this_len);
1871 if (gui.col + cells > Columns)
1872 break;
1873 this_len += (*mb_ptr2len)(s + this_len);
1875 if (this_len > len)
1876 this_len = len; /* don't include following composing char */
1878 else
1879 #endif
1880 if (gui.col + len > Columns)
1881 this_len = Columns - gui.col;
1882 else
1883 this_len = len;
1885 (void)gui_outstr_nowrap(s, this_len,
1886 0, (guicolor_T)0, (guicolor_T)0, 0);
1887 s += this_len;
1888 len -= this_len;
1889 #ifdef FEAT_MBYTE
1890 /* fill up for a double-width char that doesn't fit. */
1891 if (len > 0 && gui.col < Columns)
1892 (void)gui_outstr_nowrap((char_u *)" ", 1,
1893 0, (guicolor_T)0, (guicolor_T)0, 0);
1894 #endif
1895 /* The cursor may wrap to the next line. */
1896 if (gui.col >= Columns)
1898 gui.col = 0;
1899 gui.row++;
1905 * Output one character (may be one or two display cells).
1906 * Caller must check for valid "off".
1907 * Returns FAIL or OK, just like gui_outstr_nowrap().
1909 static int
1910 gui_screenchar(off, flags, fg, bg, back)
1911 int off; /* Offset from start of screen */
1912 int flags;
1913 guicolor_T fg, bg; /* colors for cursor */
1914 int back; /* backup this many chars when using bold trick */
1916 #ifdef FEAT_MBYTE
1917 char_u buf[MB_MAXBYTES + 1];
1919 /* Don't draw right halve of a double-width UTF-8 char. "cannot happen" */
1920 if (enc_utf8 && ScreenLines[off] == 0)
1921 return OK;
1923 if (enc_utf8 && ScreenLinesUC[off] != 0)
1924 /* Draw UTF-8 multi-byte character. */
1925 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
1926 flags, fg, bg, back);
1928 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1930 buf[0] = ScreenLines[off];
1931 buf[1] = ScreenLines2[off];
1932 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
1935 /* Draw non-multi-byte character or DBCS character. */
1936 return gui_outstr_nowrap(ScreenLines + off,
1937 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
1938 flags, fg, bg, back);
1939 #else
1940 return gui_outstr_nowrap(ScreenLines + off, 1, flags, fg, bg, back);
1941 #endif
1944 #ifdef HAVE_GTK2
1946 * Output the string at the given screen position. This is used in place
1947 * of gui_screenchar() where possible because Pango needs as much context
1948 * as possible to work nicely. It's a lot faster as well.
1950 static int
1951 gui_screenstr(off, len, flags, fg, bg, back)
1952 int off; /* Offset from start of screen */
1953 int len; /* string length in screen cells */
1954 int flags;
1955 guicolor_T fg, bg; /* colors for cursor */
1956 int back; /* backup this many chars when using bold trick */
1958 char_u *buf;
1959 int outlen = 0;
1960 int i;
1961 int retval;
1963 if (len <= 0) /* "cannot happen"? */
1964 return OK;
1966 if (enc_utf8)
1968 buf = alloc((unsigned)(len * MB_MAXBYTES + 1));
1969 if (buf == NULL)
1970 return OK; /* not much we could do here... */
1972 for (i = off; i < off + len; ++i)
1974 if (ScreenLines[i] == 0)
1975 continue; /* skip second half of double-width char */
1977 if (ScreenLinesUC[i] == 0)
1978 buf[outlen++] = ScreenLines[i];
1979 else
1980 outlen += utfc_char2bytes(i, buf + outlen);
1983 buf[outlen] = NUL; /* only to aid debugging */
1984 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
1985 vim_free(buf);
1987 return retval;
1989 else if (enc_dbcs == DBCS_JPNU)
1991 buf = alloc((unsigned)(len * 2 + 1));
1992 if (buf == NULL)
1993 return OK; /* not much we could do here... */
1995 for (i = off; i < off + len; ++i)
1997 buf[outlen++] = ScreenLines[i];
1999 /* handle double-byte single-width char */
2000 if (ScreenLines[i] == 0x8e)
2001 buf[outlen++] = ScreenLines2[i];
2002 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2003 buf[outlen++] = ScreenLines[++i];
2006 buf[outlen] = NUL; /* only to aid debugging */
2007 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2008 vim_free(buf);
2010 return retval;
2012 else
2014 return gui_outstr_nowrap(&ScreenLines[off], len,
2015 flags, fg, bg, back);
2018 #endif /* HAVE_GTK2 */
2021 * Output the given string at the current cursor position. If the string is
2022 * too long to fit on the line, then it is truncated.
2023 * "flags":
2024 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2025 * actually draw (an inverted) cursor.
2026 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
2027 * background.
2028 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2029 * it.
2030 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2031 * FAIL (the caller should start drawing "back" chars back).
2034 gui_outstr_nowrap(s, len, flags, fg, bg, back)
2035 char_u *s;
2036 int len;
2037 int flags;
2038 guicolor_T fg, bg; /* colors for cursor */
2039 int back; /* backup this many chars when using bold trick */
2041 long_u highlight_mask;
2042 long_u hl_mask_todo;
2043 guicolor_T fg_color;
2044 guicolor_T bg_color;
2045 guicolor_T sp_color;
2046 #if !defined(MSWIN16_FASTTEXT) && !defined(HAVE_GTK2)
2047 GuiFont font = NOFONT;
2048 # ifdef FEAT_XFONTSET
2049 GuiFontset fontset = NOFONTSET;
2050 # endif
2051 #endif
2052 attrentry_T *aep = NULL;
2053 int draw_flags;
2054 int col = gui.col;
2055 #ifdef FEAT_SIGN_ICONS
2056 int draw_sign = FALSE;
2057 # ifdef FEAT_NETBEANS_INTG
2058 int multi_sign = FALSE;
2059 # endif
2060 #endif
2062 if (len < 0)
2063 len = (int)STRLEN(s);
2064 if (len == 0)
2065 return OK;
2067 #ifdef FEAT_SIGN_ICONS
2068 if (*s == SIGN_BYTE
2069 # ifdef FEAT_NETBEANS_INTG
2070 || *s == MULTISIGN_BYTE
2071 # endif
2074 # ifdef FEAT_NETBEANS_INTG
2075 if (*s == MULTISIGN_BYTE)
2076 multi_sign = TRUE;
2077 # endif
2078 /* draw spaces instead */
2079 s = (char_u *)" ";
2080 if (len == 1 && col > 0)
2081 --col;
2082 len = 2;
2083 draw_sign = TRUE;
2084 highlight_mask = 0;
2086 else
2087 #endif
2088 if (gui.highlight_mask > HL_ALL)
2090 aep = syn_gui_attr2entry(gui.highlight_mask);
2091 if (aep == NULL) /* highlighting not set */
2092 highlight_mask = 0;
2093 else
2094 highlight_mask = aep->ae_attr;
2096 else
2097 highlight_mask = gui.highlight_mask;
2098 hl_mask_todo = highlight_mask;
2100 #if !defined(MSWIN16_FASTTEXT) && !defined(HAVE_GTK2)
2101 /* Set the font */
2102 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2103 font = aep->ae_u.gui.font;
2104 # ifdef FEAT_XFONTSET
2105 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2106 fontset = aep->ae_u.gui.fontset;
2107 # endif
2108 else
2110 # ifdef FEAT_XFONTSET
2111 if (gui.fontset != NOFONTSET)
2112 fontset = gui.fontset;
2113 else
2114 # endif
2115 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2117 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2119 font = gui.boldital_font;
2120 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2122 else if (gui.bold_font != NOFONT)
2124 font = gui.bold_font;
2125 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2127 else
2128 font = gui.norm_font;
2130 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2132 font = gui.ital_font;
2133 hl_mask_todo &= ~HL_ITALIC;
2135 else
2136 font = gui.norm_font;
2138 # ifdef FEAT_XFONTSET
2139 if (fontset != NOFONTSET)
2140 gui_mch_set_fontset(fontset);
2141 else
2142 # endif
2143 gui_mch_set_font(font);
2144 #endif
2146 draw_flags = 0;
2148 /* Set the color */
2149 bg_color = gui.back_pixel;
2150 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2152 draw_flags |= DRAW_CURSOR;
2153 fg_color = fg;
2154 bg_color = bg;
2155 sp_color = fg;
2157 else if (aep != NULL)
2159 fg_color = aep->ae_u.gui.fg_color;
2160 if (fg_color == INVALCOLOR)
2161 fg_color = gui.norm_pixel;
2162 bg_color = aep->ae_u.gui.bg_color;
2163 if (bg_color == INVALCOLOR)
2164 bg_color = gui.back_pixel;
2165 sp_color = aep->ae_u.gui.sp_color;
2166 if (sp_color == INVALCOLOR)
2167 sp_color = fg_color;
2169 else
2171 fg_color = gui.norm_pixel;
2172 sp_color = fg_color;
2175 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2177 #if defined(AMIGA) || defined(RISCOS)
2178 gui_mch_set_colors(bg_color, fg_color);
2179 #else
2180 gui_mch_set_fg_color(bg_color);
2181 gui_mch_set_bg_color(fg_color);
2182 #endif
2184 else
2186 #if defined(AMIGA) || defined(RISCOS)
2187 gui_mch_set_colors(fg_color, bg_color);
2188 #else
2189 gui_mch_set_fg_color(fg_color);
2190 gui_mch_set_bg_color(bg_color);
2191 #endif
2193 gui_mch_set_sp_color(sp_color);
2195 /* Clear the selection if we are about to write over it */
2196 if (!(flags & GUI_MON_NOCLEAR))
2197 clip_may_clear_selection(gui.row, gui.row);
2200 #ifndef MSWIN16_FASTTEXT
2201 /* If there's no bold font, then fake it */
2202 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2203 draw_flags |= DRAW_BOLD;
2204 #endif
2207 * When drawing bold or italic characters the spill-over from the left
2208 * neighbor may be destroyed. Let the caller backup to start redrawing
2209 * just after a blank.
2211 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2212 return FAIL;
2214 #if defined(RISCOS) || defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)
2215 /* If there's no italic font, then fake it.
2216 * For GTK2, we don't need a different font for italic style. */
2217 if (hl_mask_todo & HL_ITALIC)
2218 draw_flags |= DRAW_ITALIC;
2220 /* Do we underline the text? */
2221 if (hl_mask_todo & HL_UNDERLINE)
2222 draw_flags |= DRAW_UNDERL;
2223 #else
2224 /* Do we underline the text? */
2225 if ((hl_mask_todo & HL_UNDERLINE)
2226 # ifndef MSWIN16_FASTTEXT
2227 || (hl_mask_todo & HL_ITALIC)
2228 # endif
2230 draw_flags |= DRAW_UNDERL;
2231 #endif
2232 /* Do we undercurl the text? */
2233 if (hl_mask_todo & HL_UNDERCURL)
2234 draw_flags |= DRAW_UNDERC;
2236 /* Do we draw transparently? */
2237 if (flags & GUI_MON_TRS_CURSOR)
2238 draw_flags |= DRAW_TRANSP;
2241 * Draw the text.
2243 #ifdef HAVE_GTK2
2244 /* The value returned is the length in display cells */
2245 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2246 #else
2247 # ifdef FEAT_MBYTE
2248 # ifdef FEAT_GUI_MACVIM
2249 if (use_gui_macvim_draw_string)
2251 /* The value returned is the length in display cells */
2252 len = gui_macvim_draw_string(gui.row, col, s, len, draw_flags);
2254 else
2255 # endif
2256 if (enc_utf8)
2258 int start; /* index of bytes to be drawn */
2259 int cells; /* cellwidth of bytes to be drawn */
2260 int thislen; /* length of bytes to be drawin */
2261 int cn; /* cellwidth of current char */
2262 int i; /* index of current char */
2263 int c; /* current char value */
2264 int cl; /* byte length of current char */
2265 int comping; /* current char is composing */
2266 int scol = col; /* screen column */
2267 int dowide; /* use 'guifontwide' */
2269 /* Break the string at a composing character, it has to be drawn on
2270 * top of the previous character. */
2271 start = 0;
2272 cells = 0;
2273 for (i = 0; i < len; i += cl)
2275 c = utf_ptr2char(s + i);
2276 cn = utf_char2cells(c);
2277 comping = utf_iscomposing(c);
2278 if (!comping) /* count cells from non-composing chars */
2279 cells += cn;
2280 cl = utf_ptr2len(s + i);
2281 if (cl == 0) /* hit end of string */
2282 len = i + cl; /* len must be wrong "cannot happen" */
2284 # ifdef FEAT_GUI_MACVIM
2285 dowide = (cn > 1);
2286 # else
2287 if (cn > 1
2288 # ifdef FEAT_XFONTSET
2289 && fontset == NOFONTSET
2290 # endif
2291 && gui.wide_font != NOFONT)
2292 dowide = TRUE;
2293 else
2294 dowide = FALSE;
2295 # endif
2297 /* print the string so far if it's the last character or there is
2298 * a composing character. */
2299 if (i + cl >= len || (comping && i > start) || dowide
2300 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
2301 || (cn > 1
2302 # ifdef FEAT_XFONTSET
2303 /* No fontset: At least draw char after wide char at
2304 * right position. */
2305 && fontset == NOFONTSET
2306 # endif
2308 # endif
2311 if (comping || dowide)
2312 thislen = i - start;
2313 else
2314 thislen = i - start + cl;
2315 if (thislen > 0)
2317 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2318 # ifdef FEAT_GUI_MACVIM
2319 cells,
2320 # endif
2321 draw_flags);
2322 start += thislen;
2324 scol += cells;
2325 cells = 0;
2326 if (dowide)
2328 gui_mch_set_font(gui.wide_font);
2329 gui_mch_draw_string(gui.row, scol - cn, s + start, cl,
2330 # ifdef FEAT_GUI_MACVIM
2332 # endif
2333 draw_flags | DRAW_WIDE);
2334 gui_mch_set_font(font);
2335 start += cl;
2338 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
2339 /* No fontset: draw a space to fill the gap after a wide char
2340 * */
2341 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
2342 # ifdef FEAT_XFONTSET
2343 && fontset == NOFONTSET
2344 # endif
2345 && !dowide)
2346 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2347 1, draw_flags);
2348 # endif
2350 /* Draw a composing char on top of the previous char. */
2351 if (comping)
2353 # if !defined(FEAT_GUI_MACVIM) && \
2354 (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
2355 /* Carbon ATSUI autodraws composing char over previous char */
2356 gui_mch_draw_string(gui.row, scol, s + i, cl,
2357 draw_flags | DRAW_TRANSP);
2358 # else
2359 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2360 # ifdef FEAT_GUI_MACVIM
2362 # endif
2363 draw_flags | DRAW_TRANSP | DRAW_COMP);
2364 # endif
2365 start = i + cl;
2368 /* The stuff below assumes "len" is the length in screen columns. */
2369 len = scol - col;
2371 else
2372 # endif
2374 gui_mch_draw_string(gui.row, col, s, len,
2375 # ifdef FEAT_GUI_MACVIM
2376 len,
2377 # endif
2378 draw_flags);
2379 # ifdef FEAT_MBYTE
2380 if (enc_dbcs == DBCS_JPNU)
2382 int clen = 0;
2383 int i;
2385 /* Get the length in display cells, this can be different from the
2386 * number of bytes for "euc-jp". */
2387 for (i = 0; i < len; i += (*mb_ptr2len)(s + i))
2388 clen += (*mb_ptr2cells)(s + i);
2389 len = clen;
2391 # endif
2393 #endif /* !HAVE_GTK2 */
2395 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2396 gui.col = col + len;
2398 /* May need to invert it when it's part of the selection. */
2399 if (flags & GUI_MON_NOCLEAR)
2400 clip_may_redraw_selection(gui.row, col, len);
2402 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2404 /* Invalidate the old physical cursor position if we wrote over it */
2405 if (gui.cursor_row == gui.row
2406 && gui.cursor_col >= col
2407 && gui.cursor_col < col + len)
2408 gui.cursor_is_valid = FALSE;
2411 #ifdef FEAT_SIGN_ICONS
2412 if (draw_sign)
2413 /* Draw the sign on top of the spaces. */
2414 gui_mch_drawsign(gui.row, col, gui.highlight_mask);
2415 # ifdef FEAT_NETBEANS_INTG
2416 if (multi_sign)
2417 netbeans_draw_multisign_indicator(gui.row);
2418 # endif
2419 #endif
2421 return OK;
2425 * Un-draw the cursor. Actually this just redraws the character at the given
2426 * position. The character just before it too, for when it was in bold.
2428 void
2429 gui_undraw_cursor()
2431 if (gui.cursor_is_valid)
2433 #ifdef FEAT_HANGULIN
2434 if (composing_hangul
2435 && gui.col == gui.cursor_col && gui.row == gui.cursor_row)
2436 (void)gui_outstr_nowrap(composing_hangul_buffer, 2,
2437 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR,
2438 gui.norm_pixel, gui.back_pixel, 0);
2439 else
2441 #endif
2442 if (gui_redraw_block(gui.cursor_row, gui.cursor_col,
2443 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR)
2444 && gui.cursor_col > 0)
2445 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col - 1,
2446 gui.cursor_row, gui.cursor_col - 1, GUI_MON_NOCLEAR);
2447 #ifdef FEAT_HANGULIN
2448 if (composing_hangul)
2449 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col + 1,
2450 gui.cursor_row, gui.cursor_col + 1, GUI_MON_NOCLEAR);
2452 #endif
2453 /* Cursor_is_valid is reset when the cursor is undrawn, also reset it
2454 * here in case it wasn't needed to undraw it. */
2455 gui.cursor_is_valid = FALSE;
2459 void
2460 gui_redraw(x, y, w, h)
2461 int x;
2462 int y;
2463 int w;
2464 int h;
2466 int row1, col1, row2, col2;
2468 row1 = Y_2_ROW(y);
2469 col1 = X_2_COL(x);
2470 row2 = Y_2_ROW(y + h - 1);
2471 col2 = X_2_COL(x + w - 1);
2473 (void)gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
2476 * We may need to redraw the cursor, but don't take it upon us to change
2477 * its location after a scroll.
2478 * (maybe be more strict even and test col too?)
2479 * These things may be outside the update/clipping region and reality may
2480 * not reflect Vims internal ideas if these operations are clipped away.
2482 if (gui.row == gui.cursor_row)
2483 gui_update_cursor(TRUE, TRUE);
2487 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2488 * from col1 to col2 (inclusive).
2489 * Return TRUE when the character before the first drawn character has
2490 * different attributes (may have to be redrawn too).
2493 gui_redraw_block(row1, col1, row2, col2, flags)
2494 int row1;
2495 int col1;
2496 int row2;
2497 int col2;
2498 int flags; /* flags for gui_outstr_nowrap() */
2500 int old_row, old_col;
2501 long_u old_hl_mask;
2502 int off;
2503 sattr_T first_attr;
2504 int idx, len;
2505 int back, nback;
2506 int retval = FALSE;
2507 #ifdef FEAT_MBYTE
2508 int orig_col1, orig_col2;
2509 #endif
2511 /* Don't try to update when ScreenLines is not valid */
2512 if (!screen_cleared || ScreenLines == NULL)
2513 return retval;
2515 /* Don't try to draw outside the shell! */
2516 /* Check everything, strange values may be caused by a big border width */
2517 col1 = check_col(col1);
2518 col2 = check_col(col2);
2519 row1 = check_row(row1);
2520 row2 = check_row(row2);
2522 /* Remember where our cursor was */
2523 old_row = gui.row;
2524 old_col = gui.col;
2525 old_hl_mask = gui.highlight_mask;
2526 #ifdef FEAT_MBYTE
2527 orig_col1 = col1;
2528 orig_col2 = col2;
2529 #endif
2531 for (gui.row = row1; gui.row <= row2; gui.row++)
2533 #ifdef FEAT_MBYTE
2534 /* When only half of a double-wide character is in the block, include
2535 * the other half. */
2536 col1 = orig_col1;
2537 col2 = orig_col2;
2538 off = LineOffset[gui.row];
2539 if (enc_dbcs != 0)
2541 if (col1 > 0)
2542 col1 -= dbcs_screen_head_off(ScreenLines + off,
2543 ScreenLines + off + col1);
2544 col2 += dbcs_screen_tail_off(ScreenLines + off,
2545 ScreenLines + off + col2);
2547 else if (enc_utf8)
2549 if (ScreenLines[off + col1] == 0)
2550 --col1;
2551 # ifdef HAVE_GTK2
2552 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2553 ++col2;
2554 # endif
2556 #endif
2557 gui.col = col1;
2558 off = LineOffset[gui.row] + gui.col;
2559 len = col2 - col1 + 1;
2561 /* Find how many chars back this highlighting starts, or where a space
2562 * is. Needed for when the bold trick is used */
2563 for (back = 0; back < col1; ++back)
2564 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2565 || ScreenLines[off - 1 - back] == ' ')
2566 break;
2567 retval = (col1 > 0 && ScreenAttrs[off - 1] != 0 && back == 0
2568 && ScreenLines[off - 1] != ' ');
2570 /* Break it up in strings of characters with the same attributes. */
2571 /* Print UTF-8 characters individually. */
2572 while (len > 0)
2574 first_attr = ScreenAttrs[off];
2575 gui.highlight_mask = first_attr;
2576 #if defined(FEAT_MBYTE) && !defined(HAVE_GTK2)
2577 if (enc_utf8 && ScreenLinesUC[off] != 0)
2579 /* output multi-byte character separately */
2580 nback = gui_screenchar(off, flags,
2581 (guicolor_T)0, (guicolor_T)0, back);
2582 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2583 idx = 2;
2584 else
2585 idx = 1;
2587 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2589 /* output double-byte, single-width character separately */
2590 nback = gui_screenchar(off, flags,
2591 (guicolor_T)0, (guicolor_T)0, back);
2592 idx = 1;
2594 else
2595 #endif
2597 #ifdef HAVE_GTK2
2598 for (idx = 0; idx < len; ++idx)
2600 if (enc_utf8 && ScreenLines[off + idx] == 0)
2601 continue; /* skip second half of double-width char */
2602 if (ScreenAttrs[off + idx] != first_attr)
2603 break;
2605 /* gui_screenstr() takes care of multibyte chars */
2606 nback = gui_screenstr(off, idx, flags,
2607 (guicolor_T)0, (guicolor_T)0, back);
2608 #else
2609 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2610 idx++)
2612 # ifdef FEAT_MBYTE
2613 /* Stop at a multi-byte Unicode character. */
2614 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2615 break;
2616 if (enc_dbcs == DBCS_JPNU)
2618 /* Stop at a double-byte single-width char. */
2619 if (ScreenLines[off + idx] == 0x8e)
2620 break;
2621 if (len > 1 && (*mb_ptr2len)(ScreenLines
2622 + off + idx) == 2)
2623 ++idx; /* skip second byte of double-byte char */
2625 # endif
2627 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2628 (guicolor_T)0, (guicolor_T)0, back);
2629 #endif
2631 if (nback == FAIL)
2633 /* Must back up to start drawing where a bold or italic word
2634 * starts. */
2635 off -= back;
2636 len += back;
2637 gui.col -= back;
2639 else
2641 off += idx;
2642 len -= idx;
2644 back = 0;
2648 /* Put the cursor back where it was */
2649 gui.row = old_row;
2650 gui.col = old_col;
2651 gui.highlight_mask = (int)old_hl_mask;
2653 return retval;
2656 static void
2657 gui_delete_lines(row, count)
2658 int row;
2659 int count;
2661 if (count <= 0)
2662 return;
2664 if (row + count > gui.scroll_region_bot)
2665 /* Scrolled out of region, just blank the lines out */
2666 gui_clear_block(row, gui.scroll_region_left,
2667 gui.scroll_region_bot, gui.scroll_region_right);
2668 else
2670 gui_mch_delete_lines(row, count);
2672 /* If the cursor was in the deleted lines it's now gone. If the
2673 * cursor was in the scrolled lines adjust its position. */
2674 if (gui.cursor_row >= row
2675 && gui.cursor_col >= gui.scroll_region_left
2676 && gui.cursor_col <= gui.scroll_region_right)
2678 if (gui.cursor_row < row + count)
2679 gui.cursor_is_valid = FALSE;
2680 else if (gui.cursor_row <= gui.scroll_region_bot)
2681 gui.cursor_row -= count;
2686 static void
2687 gui_insert_lines(row, count)
2688 int row;
2689 int count;
2691 if (count <= 0)
2692 return;
2694 if (row + count > gui.scroll_region_bot)
2695 /* Scrolled out of region, just blank the lines out */
2696 gui_clear_block(row, gui.scroll_region_left,
2697 gui.scroll_region_bot, gui.scroll_region_right);
2698 else
2700 gui_mch_insert_lines(row, count);
2702 if (gui.cursor_row >= gui.row
2703 && gui.cursor_col >= gui.scroll_region_left
2704 && gui.cursor_col <= gui.scroll_region_right)
2706 if (gui.cursor_row <= gui.scroll_region_bot - count)
2707 gui.cursor_row += count;
2708 else if (gui.cursor_row <= gui.scroll_region_bot)
2709 gui.cursor_is_valid = FALSE;
2715 * The main GUI input routine. Waits for a character from the keyboard.
2716 * wtime == -1 Wait forever.
2717 * wtime == 0 Don't wait.
2718 * wtime > 0 Wait wtime milliseconds for a character.
2719 * Returns OK if a character was found to be available within the given time,
2720 * or FAIL otherwise.
2723 gui_wait_for_chars(wtime)
2724 long wtime;
2726 int retval;
2729 * If we're going to wait a bit, update the menus and mouse shape for the
2730 * current State.
2732 if (wtime != 0)
2734 #ifdef FEAT_MENU
2735 gui_update_menus(0);
2736 #endif
2739 gui_mch_update();
2740 if (input_available()) /* Got char, return immediately */
2741 return OK;
2742 if (wtime == 0) /* Don't wait for char */
2743 return FAIL;
2745 /* Before waiting, flush any output to the screen. */
2746 gui_mch_flush();
2748 if (wtime > 0)
2750 /* Blink when waiting for a character. Probably only does something
2751 * for showmatch() */
2752 gui_mch_start_blink();
2753 retval = gui_mch_wait_for_chars(wtime);
2754 gui_mch_stop_blink();
2755 return retval;
2759 * While we are waiting indefinitely for a character, blink the cursor.
2761 gui_mch_start_blink();
2763 retval = FAIL;
2765 * We may want to trigger the CursorHold event. First wait for
2766 * 'updatetime' and if nothing is typed within that time put the
2767 * K_CURSORHOLD key in the input buffer.
2769 if (gui_mch_wait_for_chars(p_ut) == OK)
2770 retval = OK;
2771 #ifdef FEAT_AUTOCMD
2772 else if (trigger_cursorhold())
2774 char_u buf[3];
2776 /* Put K_CURSORHOLD in the input buffer. */
2777 buf[0] = CSI;
2778 buf[1] = KS_EXTRA;
2779 buf[2] = (int)KE_CURSORHOLD;
2780 add_to_input_buf(buf, 3);
2782 retval = OK;
2784 #endif
2786 if (retval == FAIL)
2788 /* Blocking wait. */
2789 before_blocking();
2790 retval = gui_mch_wait_for_chars(-1L);
2793 gui_mch_stop_blink();
2794 return retval;
2798 * Fill p[4] with mouse coordinates encoded for check_termcode().
2800 static void
2801 fill_mouse_coord(p, col, row)
2802 char_u *p;
2803 int col;
2804 int row;
2806 p[0] = (char_u)(col / 128 + ' ' + 1);
2807 p[1] = (char_u)(col % 128 + ' ' + 1);
2808 p[2] = (char_u)(row / 128 + ' ' + 1);
2809 p[3] = (char_u)(row % 128 + ' ' + 1);
2813 * Generic mouse support function. Add a mouse event to the input buffer with
2814 * the given properties.
2815 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
2816 * MOUSE_X1, MOUSE_X2
2817 * MOUSE_DRAG, or MOUSE_RELEASE.
2818 * MOUSE_4 and MOUSE_5 are used for a scroll wheel.
2819 * x, y --- Coordinates of mouse in pixels.
2820 * repeated_click --- TRUE if this click comes only a short time after a
2821 * previous click.
2822 * modifiers --- Bit field which may be any of the following modifiers
2823 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
2824 * This function will ignore drag events where the mouse has not moved to a new
2825 * character.
2827 void
2828 gui_send_mouse_event(button, x, y, repeated_click, modifiers)
2829 int button;
2830 int x;
2831 int y;
2832 int repeated_click;
2833 int_u modifiers;
2835 static int prev_row = 0, prev_col = 0;
2836 static int prev_button = -1;
2837 static int num_clicks = 1;
2838 char_u string[10];
2839 enum key_extra button_char;
2840 int row, col;
2841 #ifdef FEAT_CLIPBOARD
2842 int checkfor;
2843 int did_clip = FALSE;
2844 #endif
2847 * Scrolling may happen at any time, also while a selection is present.
2849 switch (button)
2851 case MOUSE_X1:
2852 button_char = KE_X1MOUSE;
2853 goto button_set;
2854 case MOUSE_X2:
2855 button_char = KE_X2MOUSE;
2856 goto button_set;
2857 case MOUSE_4:
2858 button_char = KE_MOUSEDOWN;
2859 goto button_set;
2860 case MOUSE_5:
2861 button_char = KE_MOUSEUP;
2862 button_set:
2864 /* Don't put events in the input queue now. */
2865 if (hold_gui_events)
2866 return;
2868 string[3] = CSI;
2869 string[4] = KS_EXTRA;
2870 string[5] = (int)button_char;
2872 /* Pass the pointer coordinates of the scroll event so that we
2873 * know which window to scroll. */
2874 row = gui_xy2colrow(x, y, &col);
2875 string[6] = (char_u)(col / 128 + ' ' + 1);
2876 string[7] = (char_u)(col % 128 + ' ' + 1);
2877 string[8] = (char_u)(row / 128 + ' ' + 1);
2878 string[9] = (char_u)(row % 128 + ' ' + 1);
2880 if (modifiers == 0)
2881 add_to_input_buf(string + 3, 7);
2882 else
2884 string[0] = CSI;
2885 string[1] = KS_MODIFIER;
2886 string[2] = 0;
2887 if (modifiers & MOUSE_SHIFT)
2888 string[2] |= MOD_MASK_SHIFT;
2889 if (modifiers & MOUSE_CTRL)
2890 string[2] |= MOD_MASK_CTRL;
2891 if (modifiers & MOUSE_ALT)
2892 string[2] |= MOD_MASK_ALT;
2893 add_to_input_buf(string, 10);
2895 return;
2899 #ifdef FEAT_CLIPBOARD
2900 /* If a clipboard selection is in progress, handle it */
2901 if (clip_star.state == SELECT_IN_PROGRESS)
2903 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
2904 return;
2907 /* Determine which mouse settings to look for based on the current mode */
2908 switch (get_real_state())
2910 case NORMAL_BUSY:
2911 case OP_PENDING:
2912 case NORMAL: checkfor = MOUSE_NORMAL; break;
2913 case VISUAL: checkfor = MOUSE_VISUAL; break;
2914 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
2915 case REPLACE:
2916 case REPLACE+LANGMAP:
2917 #ifdef FEAT_VREPLACE
2918 case VREPLACE:
2919 case VREPLACE+LANGMAP:
2920 #endif
2921 case INSERT:
2922 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
2923 case ASKMORE:
2924 case HITRETURN: /* At the more- and hit-enter prompt pass the
2925 mouse event for a click on or below the
2926 message line. */
2927 if (Y_2_ROW(y) >= msg_row)
2928 checkfor = MOUSE_NORMAL;
2929 else
2930 checkfor = MOUSE_RETURN;
2931 break;
2934 * On the command line, use the clipboard selection on all lines
2935 * but the command line. But not when pasting.
2937 case CMDLINE:
2938 case CMDLINE+LANGMAP:
2939 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
2940 checkfor = MOUSE_NONE;
2941 else
2942 checkfor = MOUSE_COMMAND;
2943 break;
2945 default:
2946 checkfor = MOUSE_NONE;
2947 break;
2951 * Allow clipboard selection of text on the command line in "normal"
2952 * modes. Don't do this when dragging the status line, or extending a
2953 * Visual selection.
2955 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
2956 && Y_2_ROW(y) >= topframe->fr_height
2957 # ifdef FEAT_WINDOWS
2958 + firstwin->w_winrow
2959 # endif
2960 && button != MOUSE_DRAG
2961 # ifdef FEAT_MOUSESHAPE
2962 && !drag_status_line
2963 # ifdef FEAT_VERTSPLIT
2964 && !drag_sep_line
2965 # endif
2966 # endif
2968 checkfor = MOUSE_NONE;
2971 * Use modeless selection when holding CTRL and SHIFT pressed.
2973 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
2974 checkfor = MOUSE_NONEF;
2977 * In Ex mode, always use modeless selection.
2979 if (exmode_active)
2980 checkfor = MOUSE_NONE;
2983 * If the mouse settings say to not use the mouse, use the modeless
2984 * selection. But if Visual is active, assume that only the Visual area
2985 * will be selected.
2986 * Exception: On the command line, both the selection is used and a mouse
2987 * key is send.
2989 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
2991 #ifdef FEAT_VISUAL
2992 /* Don't do modeless selection in Visual mode. */
2993 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
2994 return;
2995 #endif
2998 * When 'mousemodel' is "popup", shift-left is translated to right.
2999 * But not when also using Ctrl.
3001 if (mouse_model_popup() && button == MOUSE_LEFT
3002 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3004 button = MOUSE_RIGHT;
3005 modifiers &= ~ MOUSE_SHIFT;
3008 /* If the selection is done, allow the right button to extend it.
3009 * If the selection is cleared, allow the right button to start it
3010 * from the cursor position. */
3011 if (button == MOUSE_RIGHT)
3013 if (clip_star.state == SELECT_CLEARED)
3015 if (State & CMDLINE)
3017 col = msg_col;
3018 row = msg_row;
3020 else
3022 col = curwin->w_wcol;
3023 row = curwin->w_wrow + W_WINROW(curwin);
3025 clip_start_selection(col, row, FALSE);
3027 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3028 repeated_click);
3029 did_clip = TRUE;
3031 /* Allow the left button to start the selection */
3032 else if (button ==
3033 # ifdef RISCOS
3034 /* Only start a drag on a drag event. Otherwise
3035 * we don't get a release event. */
3036 MOUSE_DRAG
3037 # else
3038 MOUSE_LEFT
3039 # endif
3042 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3043 did_clip = TRUE;
3045 # ifdef RISCOS
3046 else if (button == MOUSE_LEFT)
3048 clip_clear_selection();
3049 did_clip = TRUE;
3051 # endif
3053 /* Always allow pasting */
3054 if (button != MOUSE_MIDDLE)
3056 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3057 return;
3058 if (checkfor != MOUSE_COMMAND)
3059 button = MOUSE_LEFT;
3061 repeated_click = FALSE;
3064 if (clip_star.state != SELECT_CLEARED && !did_clip)
3065 clip_clear_selection();
3066 #endif
3068 /* Don't put events in the input queue now. */
3069 if (hold_gui_events)
3070 return;
3072 row = gui_xy2colrow(x, y, &col);
3075 * If we are dragging and the mouse hasn't moved far enough to be on a
3076 * different character, then don't send an event to vim.
3078 if (button == MOUSE_DRAG)
3080 if (row == prev_row && col == prev_col)
3081 return;
3082 /* Dragging above the window, set "row" to -1 to cause a scroll. */
3083 if (y < 0)
3084 row = -1;
3088 * If topline has changed (window scrolled) since the last click, reset
3089 * repeated_click, because we don't want starting Visual mode when
3090 * clicking on a different character in the text.
3092 if (curwin->w_topline != gui_prev_topline
3093 #ifdef FEAT_DIFF
3094 || curwin->w_topfill != gui_prev_topfill
3095 #endif
3097 repeated_click = FALSE;
3099 string[0] = CSI; /* this sequence is recognized by check_termcode() */
3100 string[1] = KS_MOUSE;
3101 string[2] = KE_FILLER;
3102 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3104 if (repeated_click)
3107 * Handle multiple clicks. They only count if the mouse is still
3108 * pointing at the same character.
3110 if (button != prev_button || row != prev_row || col != prev_col)
3111 num_clicks = 1;
3112 else if (++num_clicks > 4)
3113 num_clicks = 1;
3115 else
3116 num_clicks = 1;
3117 prev_button = button;
3118 gui_prev_topline = curwin->w_topline;
3119 #ifdef FEAT_DIFF
3120 gui_prev_topfill = curwin->w_topfill;
3121 #endif
3123 string[3] = (char_u)(button | 0x20);
3124 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3126 else
3127 string[3] = (char_u)button;
3129 string[3] |= modifiers;
3130 fill_mouse_coord(string + 4, col, row);
3131 add_to_input_buf(string, 8);
3133 if (row < 0)
3134 prev_row = 0;
3135 else
3136 prev_row = row;
3137 prev_col = col;
3140 * We need to make sure this is cleared since Athena doesn't tell us when
3141 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3143 #if defined(FEAT_GUI_ATHENA) || defined(HAVE_GTK2)
3144 gui.dragged_sb = SBAR_NONE;
3145 #endif
3149 * Convert x and y coordinate to column and row in text window.
3150 * Corrects for multi-byte character.
3151 * returns column in "*colp" and row as return value;
3154 gui_xy2colrow(x, y, colp)
3155 int x;
3156 int y;
3157 int *colp;
3159 int col = check_col(X_2_COL(x));
3160 int row = check_row(Y_2_ROW(y));
3162 #ifdef FEAT_MBYTE
3163 *colp = mb_fix_col(col, row);
3164 #else
3165 *colp = col;
3166 #endif
3167 return row;
3170 #if defined(FEAT_MENU) || defined(PROTO)
3172 * Callback function for when a menu entry has been selected.
3174 void
3175 gui_menu_cb(menu)
3176 vimmenu_T *menu;
3178 char_u bytes[sizeof(long_u)];
3180 /* Don't put events in the input queue now. */
3181 if (hold_gui_events)
3182 return;
3184 bytes[0] = CSI;
3185 bytes[1] = KS_MENU;
3186 bytes[2] = KE_FILLER;
3187 add_to_input_buf(bytes, 3);
3188 add_long_to_buf((long_u)menu, bytes);
3189 add_to_input_buf_csi(bytes, sizeof(long_u));
3191 #endif
3193 static int prev_which_scrollbars[3];
3196 * Set which components are present.
3197 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
3198 * in p_go.
3200 void
3201 gui_init_which_components(oldval)
3202 char_u *oldval UNUSED;
3204 #ifdef FEAT_MENU
3205 static int prev_menu_is_active = -1;
3206 #endif
3207 #ifdef FEAT_TOOLBAR
3208 static int prev_toolbar = -1;
3209 int using_toolbar = FALSE;
3210 #endif
3211 #ifdef FEAT_GUI_TABLINE
3212 int using_tabline;
3213 #endif
3214 #ifdef FEAT_FOOTER
3215 static int prev_footer = -1;
3216 int using_footer = FALSE;
3217 #endif
3218 #if defined(FEAT_MENU) && !defined(WIN16)
3219 static int prev_tearoff = -1;
3220 int using_tearoff = FALSE;
3221 #endif
3223 char_u *p;
3224 int i;
3225 #ifdef FEAT_MENU
3226 int grey_old, grey_new;
3227 char_u *temp;
3228 #endif
3229 win_T *wp;
3230 int need_set_size;
3231 int fix_size;
3233 #ifdef FEAT_MENU
3234 if (oldval != NULL && gui.in_use)
3237 * Check if the menu's go from grey to non-grey or vise versa.
3239 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3240 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3241 if (grey_old != grey_new)
3243 temp = p_go;
3244 p_go = oldval;
3245 gui_update_menus(MENU_ALL_MODES);
3246 p_go = temp;
3249 gui.menu_is_active = FALSE;
3250 #endif
3252 for (i = 0; i < 3; i++)
3253 gui.which_scrollbars[i] = FALSE;
3254 for (p = p_go; *p; p++)
3255 switch (*p)
3257 case GO_LEFT:
3258 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3259 break;
3260 case GO_RIGHT:
3261 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3262 break;
3263 #ifdef FEAT_VERTSPLIT
3264 case GO_VLEFT:
3265 if (win_hasvertsplit())
3266 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3267 break;
3268 case GO_VRIGHT:
3269 if (win_hasvertsplit())
3270 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3271 break;
3272 #endif
3273 case GO_BOT:
3274 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3275 break;
3276 #ifdef FEAT_MENU
3277 case GO_MENUS:
3278 gui.menu_is_active = TRUE;
3279 break;
3280 #endif
3281 case GO_GREY:
3282 /* make menu's have grey items, ignored here */
3283 break;
3284 #ifdef FEAT_TOOLBAR
3285 case GO_TOOLBAR:
3286 using_toolbar = TRUE;
3287 break;
3288 #endif
3289 #ifdef FEAT_FOOTER
3290 case GO_FOOTER:
3291 using_footer = TRUE;
3292 break;
3293 #endif
3294 case GO_TEAROFF:
3295 #if defined(FEAT_MENU) && !defined(WIN16)
3296 using_tearoff = TRUE;
3297 #endif
3298 break;
3299 default:
3300 /* Ignore options that are not supported */
3301 break;
3304 if (gui.in_use)
3306 need_set_size = 0;
3307 fix_size = FALSE;
3309 #ifdef FEAT_GUI_TABLINE
3310 /* Update the GUI tab line, it may appear or disappear. This may
3311 * cause the non-GUI tab line to disappear or appear. */
3312 using_tabline = gui_has_tabline();
3313 if (!gui_mch_showing_tabline() != !using_tabline)
3315 /* We don't want a resize event change "Rows" here, save and
3316 * restore it. Resizing is handled below. */
3317 i = Rows;
3318 gui_update_tabline();
3319 Rows = i;
3320 need_set_size |= RESIZE_VERT;
3321 if (using_tabline)
3322 fix_size = TRUE;
3323 if (!gui_use_tabline())
3324 redraw_tabline = TRUE; /* may draw non-GUI tab line */
3326 #endif
3328 for (i = 0; i < 3; i++)
3330 /* The scrollbar needs to be updated when it is shown/unshown and
3331 * when switching tab pages. But the size only changes when it's
3332 * shown/unshown. Thus we need two places to remember whether a
3333 * scrollbar is there or not. */
3334 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
3335 #ifdef FEAT_WINDOWS
3336 || gui.which_scrollbars[i]
3337 != curtab->tp_prev_which_scrollbars[i]
3338 #endif
3341 if (i == SBAR_BOTTOM)
3342 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3343 gui.which_scrollbars[i]);
3344 else
3346 FOR_ALL_WINDOWS(wp)
3348 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
3351 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3353 if (i == SBAR_BOTTOM)
3354 need_set_size |= RESIZE_VERT;
3355 else
3356 need_set_size |= RESIZE_HOR;
3357 if (gui.which_scrollbars[i])
3358 fix_size = TRUE;
3361 #ifdef FEAT_WINDOWS
3362 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
3363 #endif
3364 prev_which_scrollbars[i] = gui.which_scrollbars[i];
3367 #ifdef FEAT_MENU
3368 if (gui.menu_is_active != prev_menu_is_active)
3370 /* We don't want a resize event change "Rows" here, save and
3371 * restore it. Resizing is handled below. */
3372 i = Rows;
3373 gui_mch_enable_menu(gui.menu_is_active);
3374 Rows = i;
3375 prev_menu_is_active = gui.menu_is_active;
3376 need_set_size |= RESIZE_VERT;
3377 if (gui.menu_is_active)
3378 fix_size = TRUE;
3380 #endif
3382 #ifdef FEAT_TOOLBAR
3383 if (using_toolbar != prev_toolbar)
3385 gui_mch_show_toolbar(using_toolbar);
3386 prev_toolbar = using_toolbar;
3387 need_set_size |= RESIZE_VERT;
3388 if (using_toolbar)
3389 fix_size = TRUE;
3391 #endif
3392 #ifdef FEAT_FOOTER
3393 if (using_footer != prev_footer)
3395 gui_mch_enable_footer(using_footer);
3396 prev_footer = using_footer;
3397 need_set_size |= RESIZE_VERT;
3398 if (using_footer)
3399 fix_size = TRUE;
3401 #endif
3402 #if defined(FEAT_MENU) && !defined(WIN16) && !(defined(WIN3264) && !defined(FEAT_TEAROFF))
3403 if (using_tearoff != prev_tearoff)
3405 gui_mch_toggle_tearoffs(using_tearoff);
3406 prev_tearoff = using_tearoff;
3408 #endif
3409 if (need_set_size != 0)
3411 #ifdef FEAT_GUI_GTK
3412 long prev_Columns = Columns;
3413 long prev_Rows = Rows;
3414 #endif
3415 /* Adjust the size of the window to make the text area keep the
3416 * same size and to avoid that part of our window is off-screen
3417 * and a scrollbar can't be used, for example. */
3418 gui_set_shellsize(FALSE, fix_size, need_set_size);
3420 #ifdef FEAT_GUI_GTK
3421 /* GTK has the annoying habit of sending us resize events when
3422 * changing the window size ourselves. This mostly happens when
3423 * waiting for a character to arrive, quite unpredictably, and may
3424 * change Columns and Rows when we don't want it. Wait for a
3425 * character here to avoid this effect.
3426 * If you remove this, please test this command for resizing
3427 * effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3428 * Don't do this while starting up though.
3429 * Don't change Rows when adding menu/toolbar/tabline.
3430 * Don't change Columns when adding vertical toolbar. */
3431 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
3432 (void)char_avail();
3433 if ((need_set_size & RESIZE_VERT) == 0)
3434 Rows = prev_Rows;
3435 if ((need_set_size & RESIZE_HOR) == 0)
3436 Columns = prev_Columns;
3437 #endif
3439 #ifdef FEAT_WINDOWS
3440 /* When the console tabline appears or disappears the window positions
3441 * change. */
3442 if (firstwin->w_winrow != tabline_height())
3443 shell_new_rows(); /* recompute window positions and heights */
3444 #endif
3448 #if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3450 * Return TRUE if the GUI is taking care of the tabline.
3451 * It may still be hidden if 'showtabline' is zero.
3454 gui_use_tabline()
3456 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3460 * Return TRUE if the GUI is showing the tabline.
3461 * This uses 'showtabline'.
3463 static int
3464 gui_has_tabline()
3466 if (!gui_use_tabline()
3467 || p_stal == 0
3468 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3469 return FALSE;
3470 return TRUE;
3474 * Update the tabline.
3475 * This may display/undisplay the tabline and update the labels.
3477 void
3478 gui_update_tabline()
3480 int showit = gui_has_tabline();
3481 int shown = gui_mch_showing_tabline();
3483 if (!gui.starting && starting == 0)
3485 /* Updating the tabline uses direct GUI commands, flush
3486 * outstanding instructions first. (esp. clear screen) */
3487 out_flush();
3488 gui_mch_flush();
3490 if (!showit != !shown)
3491 gui_mch_show_tabline(showit);
3492 if (showit != 0)
3493 gui_mch_update_tabline();
3495 /* When the tabs change from hidden to shown or from shown to
3496 * hidden the size of the text area should remain the same. */
3497 if (!showit != !shown)
3498 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
3503 * Get the label or tooltip for tab page "tp" into NameBuff[].
3505 void
3506 get_tabline_label(tp, tooltip)
3507 tabpage_T *tp;
3508 int tooltip; /* TRUE: get tooltip */
3510 int modified = FALSE;
3511 char_u buf[40];
3512 int wincount;
3513 win_T *wp;
3514 char_u **opt;
3516 /* Use 'guitablabel' or 'guitabtooltip' if it's set. */
3517 opt = (tooltip ? &p_gtt : &p_gtl);
3518 if (**opt != NUL)
3520 int use_sandbox = FALSE;
3521 int save_called_emsg = called_emsg;
3522 char_u res[MAXPATHL];
3523 tabpage_T *save_curtab;
3524 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3525 : "guitablabel");
3527 called_emsg = FALSE;
3529 printer_page_num = tabpage_index(tp);
3530 # ifdef FEAT_EVAL
3531 set_vim_var_nr(VV_LNUM, printer_page_num);
3532 use_sandbox = was_set_insecurely(opt_name, 0);
3533 # endif
3534 /* It's almost as going to the tabpage, but without autocommands. */
3535 curtab->tp_firstwin = firstwin;
3536 curtab->tp_lastwin = lastwin;
3537 curtab->tp_curwin = curwin;
3538 save_curtab = curtab;
3539 curtab = tp;
3540 topframe = curtab->tp_topframe;
3541 firstwin = curtab->tp_firstwin;
3542 lastwin = curtab->tp_lastwin;
3543 curwin = curtab->tp_curwin;
3544 curbuf = curwin->w_buffer;
3546 /* Can't use NameBuff directly, build_stl_str_hl() uses it. */
3547 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
3548 0, (int)Columns, NULL, NULL);
3549 STRCPY(NameBuff, res);
3551 /* Back to the original curtab. */
3552 curtab = save_curtab;
3553 topframe = curtab->tp_topframe;
3554 firstwin = curtab->tp_firstwin;
3555 lastwin = curtab->tp_lastwin;
3556 curwin = curtab->tp_curwin;
3557 curbuf = curwin->w_buffer;
3559 if (called_emsg)
3560 set_string_option_direct(opt_name, -1,
3561 (char_u *)"", OPT_FREE, SID_ERROR);
3562 called_emsg |= save_called_emsg;
3565 /* If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3566 * use a default label. */
3567 if (**opt == NUL || *NameBuff == NUL)
3569 /* Get the buffer name into NameBuff[] and shorten it. */
3570 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
3571 if (!tooltip)
3572 shorten_dir(NameBuff);
3574 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3575 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3576 if (bufIsChanged(wp->w_buffer))
3577 modified = TRUE;
3578 if (modified || wincount > 1)
3580 if (wincount > 1)
3581 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3582 else
3583 buf[0] = NUL;
3584 if (modified)
3585 STRCAT(buf, "+");
3586 STRCAT(buf, " ");
3587 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
3588 mch_memmove(NameBuff, buf, STRLEN(buf));
3594 * Send the event for clicking to select tab page "nr".
3595 * Returns TRUE if it was done, FALSE when skipped because we are already at
3596 * that tab page or the cmdline window is open.
3599 send_tabline_event(nr)
3600 int nr;
3602 char_u string[3];
3604 if (nr == tabpage_index(curtab))
3605 return FALSE;
3607 /* Don't put events in the input queue now. */
3608 if (hold_gui_events
3609 # ifdef FEAT_CMDWIN
3610 || cmdwin_type != 0
3611 # endif
3614 /* Set it back to the current tab page. */
3615 gui_mch_set_curtab(tabpage_index(curtab));
3616 return FALSE;
3619 string[0] = CSI;
3620 string[1] = KS_TABLINE;
3621 string[2] = KE_FILLER;
3622 add_to_input_buf(string, 3);
3623 string[0] = nr;
3624 add_to_input_buf_csi(string, 1);
3625 return TRUE;
3629 * Send a tabline menu event
3631 void
3632 send_tabline_menu_event(tabidx, event)
3633 int tabidx;
3634 int event;
3636 char_u string[3];
3638 /* Don't put events in the input queue now. */
3639 if (hold_gui_events)
3640 return;
3642 string[0] = CSI;
3643 string[1] = KS_TABMENU;
3644 string[2] = KE_FILLER;
3645 add_to_input_buf(string, 3);
3646 string[0] = tabidx;
3647 string[1] = (char_u)(long)event;
3648 add_to_input_buf_csi(string, 2);
3651 #endif
3654 * Scrollbar stuff:
3657 #if defined(FEAT_WINDOWS) || defined(PROTO)
3659 * Remove all scrollbars. Used before switching to another tab page.
3661 void
3662 gui_remove_scrollbars()
3664 int i;
3665 win_T *wp;
3667 for (i = 0; i < 3; i++)
3669 if (i == SBAR_BOTTOM)
3670 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3671 else
3673 FOR_ALL_WINDOWS(wp)
3675 gui_do_scrollbar(wp, i, FALSE);
3678 curtab->tp_prev_which_scrollbars[i] = -1;
3681 #endif
3683 void
3684 gui_create_scrollbar(sb, type, wp)
3685 scrollbar_T *sb;
3686 int type;
3687 win_T *wp;
3689 #ifdef FEAT_GUI_MACVIM
3690 /* This is passed over to another process, make sure it fits in 32 bit */
3691 static int32_t sbar_ident = 0;
3692 #else
3693 static int sbar_ident = 0;
3694 #endif
3696 sb->ident = sbar_ident++; /* No check for too big, but would it happen? */
3697 sb->wp = wp;
3698 sb->type = type;
3699 sb->value = 0;
3700 #ifdef FEAT_GUI_ATHENA
3701 sb->pixval = 0;
3702 #endif
3703 sb->size = 1;
3704 sb->max = 1;
3705 sb->top = 0;
3706 sb->height = 0;
3707 #ifdef FEAT_VERTSPLIT
3708 sb->width = 0;
3709 #endif
3710 sb->status_height = 0;
3711 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3715 * Find the scrollbar with the given index.
3717 scrollbar_T *
3718 gui_find_scrollbar(ident)
3719 long ident;
3721 win_T *wp;
3723 if (gui.bottom_sbar.ident == ident)
3724 return &gui.bottom_sbar;
3725 FOR_ALL_WINDOWS(wp)
3727 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3728 return &wp->w_scrollbars[SBAR_LEFT];
3729 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3730 return &wp->w_scrollbars[SBAR_RIGHT];
3732 return NULL;
3736 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3738 * For Win32, Macintosh and GTK+ 2:
3739 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3740 * you stop dragging the scrollbar. We get here each time the scrollbar is
3741 * dragged another pixel, but as far as the rest of vim goes, it thinks
3742 * we're just hanging in the call to DispatchMessage() in
3743 * process_message(). The DispatchMessage() call that hangs was passed a
3744 * mouse button click event in the scrollbar window. -- webb.
3746 * Solution: Do the scrolling right here. But only when allowed.
3747 * Ignore the scrollbars while executing an external command or when there
3748 * are still characters to be processed.
3750 void
3751 gui_drag_scrollbar(sb, value, still_dragging)
3752 scrollbar_T *sb;
3753 long value;
3754 int still_dragging;
3756 #ifdef FEAT_WINDOWS
3757 win_T *wp;
3758 #endif
3759 int sb_num;
3760 #ifdef USE_ON_FLY_SCROLL
3761 colnr_T old_leftcol = curwin->w_leftcol;
3762 # ifdef FEAT_SCROLLBIND
3763 linenr_T old_topline = curwin->w_topline;
3764 # endif
3765 # ifdef FEAT_DIFF
3766 int old_topfill = curwin->w_topfill;
3767 # endif
3768 #else
3769 char_u bytes[sizeof(long_u)];
3770 int byte_count;
3771 #endif
3773 if (sb == NULL)
3774 return;
3776 /* Don't put events in the input queue now. */
3777 if (hold_gui_events)
3778 return;
3780 #ifdef FEAT_CMDWIN
3781 if (cmdwin_type != 0 && sb->wp != curwin)
3782 return;
3783 #endif
3785 if (still_dragging)
3787 if (sb->wp == NULL)
3788 gui.dragged_sb = SBAR_BOTTOM;
3789 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3790 gui.dragged_sb = SBAR_LEFT;
3791 else
3792 gui.dragged_sb = SBAR_RIGHT;
3793 gui.dragged_wp = sb->wp;
3795 else
3797 gui.dragged_sb = SBAR_NONE;
3798 #ifdef HAVE_GTK2
3799 /* Keep the "dragged_wp" value until after the scrolling, for when the
3800 * moust button is released. GTK2 doesn't send the button-up event. */
3801 gui.dragged_wp = NULL;
3802 #endif
3805 /* Vertical sbar info is kept in the first sbar (the left one) */
3806 if (sb->wp != NULL)
3807 sb = &sb->wp->w_scrollbars[0];
3810 * Check validity of value
3812 if (value < 0)
3813 value = 0;
3814 #ifdef SCROLL_PAST_END
3815 else if (value > sb->max)
3816 value = sb->max;
3817 #else
3818 if (value > sb->max - sb->size + 1)
3819 value = sb->max - sb->size + 1;
3820 #endif
3822 sb->value = value;
3824 #ifdef USE_ON_FLY_SCROLL
3825 /* When not allowed to do the scrolling right now, return.
3826 * This also checked input_available(), but that causes the first click in
3827 * a scrollbar to be ignored when Vim doesn't have focus. */
3828 if (dont_scroll)
3829 return;
3830 #endif
3831 #ifdef FEAT_INS_EXPAND
3832 /* Disallow scrolling the current window when the completion popup menu is
3833 * visible. */
3834 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
3835 return;
3836 #endif
3838 #ifdef FEAT_RIGHTLEFT
3839 if (sb->wp == NULL && curwin->w_p_rl)
3841 value = sb->max + 1 - sb->size - value;
3842 if (value < 0)
3843 value = 0;
3845 #endif
3847 if (sb->wp != NULL) /* vertical scrollbar */
3849 sb_num = 0;
3850 #ifdef FEAT_WINDOWS
3851 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
3852 sb_num++;
3853 if (wp == NULL)
3854 return;
3855 #else
3856 if (sb->wp != curwin)
3857 return;
3858 #endif
3860 #ifdef USE_ON_FLY_SCROLL
3861 current_scrollbar = sb_num;
3862 scrollbar_value = value;
3863 if (State & NORMAL)
3865 gui_do_scroll();
3866 setcursor();
3868 else if (State & INSERT)
3870 ins_scroll();
3871 setcursor();
3873 else if (State & CMDLINE)
3875 if (msg_scrolled == 0)
3877 gui_do_scroll();
3878 redrawcmdline();
3881 # ifdef FEAT_FOLDING
3882 /* Value may have been changed for closed fold. */
3883 sb->value = sb->wp->w_topline - 1;
3884 # endif
3886 /* When dragging one scrollbar and there is another one at the other
3887 * side move the thumb of that one too. */
3888 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
3889 gui_mch_set_scrollbar_thumb(
3890 &sb->wp->w_scrollbars[
3891 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
3892 ? SBAR_LEFT : SBAR_RIGHT],
3893 sb->value, sb->size, sb->max);
3895 #else
3896 bytes[0] = CSI;
3897 bytes[1] = KS_VER_SCROLLBAR;
3898 bytes[2] = KE_FILLER;
3899 bytes[3] = (char_u)sb_num;
3900 byte_count = 4;
3901 #endif
3903 else
3905 #ifdef USE_ON_FLY_SCROLL
3906 scrollbar_value = value;
3908 if (State & NORMAL)
3909 gui_do_horiz_scroll();
3910 else if (State & INSERT)
3911 ins_horscroll();
3912 else if (State & CMDLINE)
3914 if (msg_scrolled == 0)
3916 gui_do_horiz_scroll();
3917 redrawcmdline();
3920 if (old_leftcol != curwin->w_leftcol)
3922 updateWindow(curwin); /* update window, status and cmdline */
3923 setcursor();
3925 #else
3926 bytes[0] = CSI;
3927 bytes[1] = KS_HOR_SCROLLBAR;
3928 bytes[2] = KE_FILLER;
3929 byte_count = 3;
3930 #endif
3933 #ifdef USE_ON_FLY_SCROLL
3934 # ifdef FEAT_SCROLLBIND
3936 * synchronize other windows, as necessary according to 'scrollbind'
3938 if (curwin->w_p_scb
3939 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
3940 || (sb->wp == curwin && (curwin->w_topline != old_topline
3941 # ifdef FEAT_DIFF
3942 || curwin->w_topfill != old_topfill
3943 # endif
3944 ))))
3946 do_check_scrollbind(TRUE);
3947 /* need to update the window right here */
3948 for (wp = firstwin; wp != NULL; wp = wp->w_next)
3949 if (wp->w_redr_type > 0)
3950 updateWindow(wp);
3951 setcursor();
3953 # endif
3954 out_flush();
3955 gui_update_cursor(FALSE, TRUE);
3956 #else
3957 add_to_input_buf(bytes, byte_count);
3958 add_long_to_buf((long_u)value, bytes);
3959 add_to_input_buf_csi(bytes, sizeof(long_u));
3960 #endif
3964 * Scrollbar stuff:
3968 * Called when something in the window layout has changed.
3970 void
3971 gui_may_update_scrollbars()
3973 if (gui.in_use && starting == 0)
3975 out_flush();
3976 gui_init_which_components(NULL);
3977 gui_update_scrollbars(TRUE);
3979 need_mouse_correct = TRUE;
3982 void
3983 gui_update_scrollbars(force)
3984 int force; /* Force all scrollbars to get updated */
3986 win_T *wp;
3987 scrollbar_T *sb;
3988 long val, size, max; /* need 32 bits here */
3989 int which_sb;
3990 int h, y;
3991 #ifdef FEAT_VERTSPLIT
3992 static win_T *prev_curwin = NULL;
3993 #endif
3995 /* Update the horizontal scrollbar */
3996 gui_update_horiz_scrollbar(force);
3998 #ifndef WIN3264
3999 /* Return straight away if there is neither a left nor right scrollbar.
4000 * On MS-Windows this is required anyway for scrollwheel messages. */
4001 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4002 return;
4003 #endif
4006 * Don't want to update a scrollbar while we're dragging it. But if we
4007 * have both a left and right scrollbar, and we drag one of them, we still
4008 * need to update the other one.
4010 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4011 && gui.which_scrollbars[SBAR_LEFT]
4012 && gui.which_scrollbars[SBAR_RIGHT])
4015 * If we have two scrollbars and one of them is being dragged, just
4016 * copy the scrollbar position from the dragged one to the other one.
4018 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4019 if (gui.dragged_wp != NULL)
4020 gui_mch_set_scrollbar_thumb(
4021 &gui.dragged_wp->w_scrollbars[which_sb],
4022 gui.dragged_wp->w_scrollbars[0].value,
4023 gui.dragged_wp->w_scrollbars[0].size,
4024 gui.dragged_wp->w_scrollbars[0].max);
4027 /* avoid that moving components around generates events */
4028 ++hold_gui_events;
4030 for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
4032 if (wp->w_buffer == NULL) /* just in case */
4033 continue;
4034 /* Skip a scrollbar that is being dragged. */
4035 if (!force && (gui.dragged_sb == SBAR_LEFT
4036 || gui.dragged_sb == SBAR_RIGHT)
4037 && gui.dragged_wp == wp)
4038 continue;
4040 #ifdef SCROLL_PAST_END
4041 max = wp->w_buffer->b_ml.ml_line_count - 1;
4042 #else
4043 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4044 #endif
4045 if (max < 0) /* empty buffer */
4046 max = 0;
4047 val = wp->w_topline - 1;
4048 size = wp->w_height;
4049 #ifdef SCROLL_PAST_END
4050 if (val > max) /* just in case */
4051 val = max;
4052 #else
4053 if (size > max + 1) /* just in case */
4054 size = max + 1;
4055 if (val > max - size + 1)
4056 val = max - size + 1;
4057 #endif
4058 if (val < 0) /* minimal value is 0 */
4059 val = 0;
4062 * Scrollbar at index 0 (the left one) contains all the information.
4063 * It would be the same info for left and right so we just store it for
4064 * one of them.
4066 sb = &wp->w_scrollbars[0];
4069 * Note: no check for valid w_botline. If it's not valid the
4070 * scrollbars will be updated later anyway.
4072 if (size < 1 || wp->w_botline - 2 > max)
4075 * This can happen during changing files. Just don't update the
4076 * scrollbar for now.
4078 sb->height = 0; /* Force update next time */
4079 if (gui.which_scrollbars[SBAR_LEFT])
4080 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4081 if (gui.which_scrollbars[SBAR_RIGHT])
4082 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4083 continue;
4085 if (force || sb->height != wp->w_height
4086 #ifdef FEAT_WINDOWS
4087 || sb->top != wp->w_winrow
4088 || sb->status_height != wp->w_status_height
4089 # ifdef FEAT_VERTSPLIT
4090 || sb->width != wp->w_width
4091 || prev_curwin != curwin
4092 # endif
4093 #endif
4096 /* Height, width or position of scrollbar has changed. For
4097 * vertical split: curwin changed. */
4098 sb->height = wp->w_height;
4099 #ifdef FEAT_WINDOWS
4100 sb->top = wp->w_winrow;
4101 sb->status_height = wp->w_status_height;
4102 # ifdef FEAT_VERTSPLIT
4103 sb->width = wp->w_width;
4104 # endif
4105 #endif
4107 /* Calculate height and position in pixels */
4108 h = (sb->height + sb->status_height) * gui.char_height;
4109 y = sb->top * gui.char_height + gui.border_offset;
4110 #if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MOTIF) \
4111 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MACVIM))
4112 if (gui.menu_is_active)
4113 y += gui.menu_height;
4114 #endif
4116 #if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA))
4117 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
4118 # ifdef FEAT_GUI_ATHENA
4119 y += gui.toolbar_height;
4120 # else
4121 # ifdef FEAT_GUI_MSWIN
4122 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4123 # endif
4124 # endif
4125 #endif
4127 #if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN)
4128 if (gui_has_tabline())
4129 y += gui.tabline_height;
4130 #endif
4132 #ifdef FEAT_WINDOWS
4133 if (wp->w_winrow == 0)
4134 #endif
4136 /* Height of top scrollbar includes width of top border */
4137 h += gui.border_offset;
4138 y -= gui.border_offset;
4140 if (gui.which_scrollbars[SBAR_LEFT])
4142 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4143 gui.left_sbar_x, y,
4144 gui.scrollbar_width, h);
4145 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4147 if (gui.which_scrollbars[SBAR_RIGHT])
4149 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4150 gui.right_sbar_x, y,
4151 gui.scrollbar_width, h);
4152 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4156 /* Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4157 * checking if the thumb moved at least a pixel. Only do this for
4158 * Athena, most other GUIs require the update anyway to make the
4159 * arrows work. */
4160 #ifdef FEAT_GUI_ATHENA
4161 if (max == 0)
4162 y = 0;
4163 else
4164 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4165 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4166 #else
4167 if (force || sb->value != val || sb->size != size || sb->max != max)
4168 #endif
4170 /* Thumb of scrollbar has moved */
4171 sb->value = val;
4172 #ifdef FEAT_GUI_ATHENA
4173 sb->pixval = y;
4174 #endif
4175 sb->size = size;
4176 sb->max = max;
4177 if (gui.which_scrollbars[SBAR_LEFT]
4178 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
4179 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4180 val, size, max);
4181 if (gui.which_scrollbars[SBAR_RIGHT]
4182 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
4183 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4184 val, size, max);
4187 #ifdef FEAT_VERTSPLIT
4188 prev_curwin = curwin;
4189 #endif
4190 --hold_gui_events;
4194 * Enable or disable a scrollbar.
4195 * Check for scrollbars for vertically split windows which are not enabled
4196 * sometimes.
4198 static void
4199 gui_do_scrollbar(wp, which, enable)
4200 win_T *wp;
4201 int which; /* SBAR_LEFT or SBAR_RIGHT */
4202 int enable; /* TRUE to enable scrollbar */
4204 #ifdef FEAT_VERTSPLIT
4205 int midcol = curwin->w_wincol + curwin->w_width / 2;
4206 int has_midcol = (wp->w_wincol <= midcol
4207 && wp->w_wincol + wp->w_width >= midcol);
4209 /* Only enable scrollbars that contain the middle column of the current
4210 * window. */
4211 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4213 /* Scrollbars only on one side. Don't enable scrollbars that don't
4214 * contain the middle column of the current window. */
4215 if (!has_midcol)
4216 enable = FALSE;
4218 else
4220 /* Scrollbars on both sides. Don't enable scrollbars that neither
4221 * contain the middle column of the current window nor are on the far
4222 * side. */
4223 if (midcol > Columns / 2)
4225 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4226 enable = FALSE;
4228 else
4230 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4231 : !has_midcol)
4232 enable = FALSE;
4235 #endif
4236 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4240 * Scroll a window according to the values set in the globals current_scrollbar
4241 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4242 * or FALSE otherwise.
4245 gui_do_scroll()
4247 win_T *wp, *save_wp;
4248 int i;
4249 long nlines;
4250 pos_T old_cursor;
4251 linenr_T old_topline;
4252 #ifdef FEAT_DIFF
4253 int old_topfill;
4254 #endif
4256 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4257 if (wp == NULL)
4258 break;
4259 if (wp == NULL)
4260 /* Couldn't find window */
4261 return FALSE;
4264 * Compute number of lines to scroll. If zero, nothing to do.
4266 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4267 if (nlines == 0)
4268 return FALSE;
4270 save_wp = curwin;
4271 old_topline = wp->w_topline;
4272 #ifdef FEAT_DIFF
4273 old_topfill = wp->w_topfill;
4274 #endif
4275 old_cursor = wp->w_cursor;
4276 curwin = wp;
4277 curbuf = wp->w_buffer;
4278 if (nlines < 0)
4279 scrolldown(-nlines, gui.dragged_wp == NULL);
4280 else
4281 scrollup(nlines, gui.dragged_wp == NULL);
4282 /* Reset dragged_wp after using it. "dragged_sb" will have been reset for
4283 * the mouse-up event already, but we still want it to behave like when
4284 * dragging. But not the next click in an arrow. */
4285 if (gui.dragged_sb == SBAR_NONE)
4286 gui.dragged_wp = NULL;
4288 if (old_topline != wp->w_topline
4289 #ifdef FEAT_DIFF
4290 || old_topfill != wp->w_topfill
4291 #endif
4294 if (p_so != 0)
4296 cursor_correct(); /* fix window for 'so' */
4297 update_topline(); /* avoid up/down jump */
4299 if (old_cursor.lnum != wp->w_cursor.lnum)
4300 coladvance(wp->w_curswant);
4301 #ifdef FEAT_SCROLLBIND
4302 wp->w_scbind_pos = wp->w_topline;
4303 #endif
4306 /* Make sure wp->w_leftcol and wp->w_skipcol are correct. */
4307 validate_cursor();
4309 curwin = save_wp;
4310 curbuf = save_wp->w_buffer;
4313 * Don't call updateWindow() when nothing has changed (it will overwrite
4314 * the status line!).
4316 if (old_topline != wp->w_topline
4317 || wp->w_redr_type != 0
4318 #ifdef FEAT_DIFF
4319 || old_topfill != wp->w_topfill
4320 #endif
4323 int type = VALID;
4325 #ifdef FEAT_INS_EXPAND
4326 if (pum_visible())
4328 type = NOT_VALID;
4329 wp->w_lines_valid = 0;
4331 #endif
4332 /* Don't set must_redraw here, it may cause the popup menu to
4333 * disappear when losing focus after a scrollbar drag. */
4334 if (wp->w_redr_type < type)
4335 wp->w_redr_type = type;
4336 updateWindow(wp); /* update window, status line, and cmdline */
4339 #ifdef FEAT_INS_EXPAND
4340 /* May need to redraw the popup menu. */
4341 if (pum_visible())
4342 pum_redraw();
4343 #endif
4345 return (wp == curwin && !equalpos(curwin->w_cursor, old_cursor));
4350 * Horizontal scrollbar stuff:
4354 * Return length of line "lnum" for horizontal scrolling.
4356 static colnr_T
4357 scroll_line_len(lnum)
4358 linenr_T lnum;
4360 char_u *p;
4361 colnr_T col;
4362 int w;
4364 p = ml_get(lnum);
4365 col = 0;
4366 if (*p != NUL)
4367 for (;;)
4369 w = chartabsize(p, col);
4370 mb_ptr_adv(p);
4371 if (*p == NUL) /* don't count the last character */
4372 break;
4373 col += w;
4375 return col;
4378 /* Remember which line is currently the longest, so that we don't have to
4379 * search for it when scrolling horizontally. */
4380 static linenr_T longest_lnum = 0;
4382 static void
4383 gui_update_horiz_scrollbar(force)
4384 int force;
4386 long value, size, max; /* need 32 bit ints here */
4388 if (!gui.which_scrollbars[SBAR_BOTTOM])
4389 return;
4391 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4392 return;
4394 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4395 return;
4398 * It is possible for the cursor to be invalid if we're in the middle of
4399 * something (like changing files). If so, don't do anything for now.
4401 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4403 gui.bottom_sbar.value = -1;
4404 return;
4407 size = W_WIDTH(curwin);
4408 if (curwin->w_p_wrap)
4410 value = 0;
4411 #ifdef SCROLL_PAST_END
4412 max = 0;
4413 #else
4414 max = W_WIDTH(curwin) - 1;
4415 #endif
4417 else
4419 value = curwin->w_leftcol;
4421 /* Calculate maximum for horizontal scrollbar. Check for reasonable
4422 * line numbers, topline and botline can be invalid when displaying is
4423 * postponed. */
4424 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4425 && curwin->w_topline <= curwin->w_cursor.lnum
4426 && curwin->w_botline > curwin->w_cursor.lnum
4427 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4429 linenr_T lnum;
4430 colnr_T n;
4432 /* Use maximum of all visible lines. Remember the lnum of the
4433 * longest line, clostest to the cursor line. Used when scrolling
4434 * below. */
4435 max = 0;
4436 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4438 n = scroll_line_len(lnum);
4439 if (n > (colnr_T)max)
4441 max = n;
4442 longest_lnum = lnum;
4444 else if (n == (colnr_T)max
4445 && abs((int)(lnum - curwin->w_cursor.lnum))
4446 < abs((int)(longest_lnum - curwin->w_cursor.lnum)))
4447 longest_lnum = lnum;
4450 else
4451 /* Use cursor line only. */
4452 max = scroll_line_len(curwin->w_cursor.lnum);
4453 #ifdef FEAT_VIRTUALEDIT
4454 if (virtual_active())
4456 /* May move the cursor even further to the right. */
4457 if (curwin->w_virtcol >= (colnr_T)max)
4458 max = curwin->w_virtcol;
4460 #endif
4462 #ifndef SCROLL_PAST_END
4463 max += W_WIDTH(curwin) - 1;
4464 #endif
4465 /* The line number isn't scrolled, thus there is less space when
4466 * 'number' is set (also for 'foldcolumn'). */
4467 size -= curwin_col_off();
4468 #ifndef SCROLL_PAST_END
4469 max -= curwin_col_off();
4470 #endif
4473 #ifndef SCROLL_PAST_END
4474 if (value > max - size + 1)
4475 value = max - size + 1; /* limit the value to allowable range */
4476 #endif
4478 #ifdef FEAT_RIGHTLEFT
4479 if (curwin->w_p_rl)
4481 value = max + 1 - size - value;
4482 if (value < 0)
4484 size += value;
4485 value = 0;
4488 #endif
4489 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4490 && max == gui.bottom_sbar.max)
4491 return;
4493 gui.bottom_sbar.value = value;
4494 gui.bottom_sbar.size = size;
4495 gui.bottom_sbar.max = max;
4496 gui.prev_wrap = curwin->w_p_wrap;
4498 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4502 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4505 gui_do_horiz_scroll()
4507 /* no wrapping, no scrolling */
4508 if (curwin->w_p_wrap)
4509 return FALSE;
4511 if ((long_u)curwin->w_leftcol == scrollbar_value)
4512 return FALSE;
4514 curwin->w_leftcol = (colnr_T)scrollbar_value;
4516 /* When the line of the cursor is too short, move the cursor to the
4517 * longest visible line. Do a sanity check on "longest_lnum", just in
4518 * case. */
4519 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4520 && longest_lnum >= curwin->w_topline
4521 && longest_lnum < curwin->w_botline
4522 && !virtual_active())
4524 if (scrollbar_value > (long_u)scroll_line_len(curwin->w_cursor.lnum))
4526 curwin->w_cursor.lnum = longest_lnum;
4527 curwin->w_cursor.col = 0;
4531 return leftcol_changed();
4535 * Check that none of the colors are the same as the background color
4537 void
4538 gui_check_colors()
4540 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4542 gui_set_bg_color((char_u *)"White");
4543 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4544 gui_set_fg_color((char_u *)"Black");
4548 static void
4549 gui_set_fg_color(name)
4550 char_u *name;
4552 gui.norm_pixel = gui_get_color(name);
4553 hl_set_fg_color_name(vim_strsave(name));
4556 static void
4557 gui_set_bg_color(name)
4558 char_u *name;
4560 gui.back_pixel = gui_get_color(name);
4561 hl_set_bg_color_name(vim_strsave(name));
4565 * Allocate a color by name.
4566 * Returns INVALCOLOR and gives an error message when failed.
4568 guicolor_T
4569 gui_get_color(name)
4570 char_u *name;
4572 guicolor_T t;
4574 if (*name == NUL)
4575 return INVALCOLOR;
4576 t = gui_mch_get_color(name);
4578 if (t == INVALCOLOR
4579 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
4580 && gui.in_use
4581 #endif
4583 EMSG2(_("E254: Cannot allocate color %s"), name);
4584 return t;
4588 * Return the grey value of a color (range 0-255).
4591 gui_get_lightness(pixel)
4592 guicolor_T pixel;
4594 long_u rgb = gui_mch_get_rgb(pixel);
4596 return (int)( (((rgb >> 16) & 0xff) * 299)
4597 + (((rgb >> 8) & 0xff) * 587)
4598 + ((rgb & 0xff) * 114)) / 1000;
4601 #if defined(FEAT_GUI_X11) || defined(PROTO)
4602 void
4603 gui_new_scrollbar_colors()
4605 win_T *wp;
4607 /* Nothing to do if GUI hasn't started yet. */
4608 if (!gui.in_use)
4609 return;
4611 FOR_ALL_WINDOWS(wp)
4613 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4614 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4616 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4618 #endif
4621 * Call this when focus has changed.
4623 void
4624 gui_focus_change(in_focus)
4625 int in_focus;
4628 * Skip this code to avoid drawing the cursor when debugging and switching
4629 * between the debugger window and gvim.
4631 #if 1
4632 gui.in_focus = in_focus;
4633 out_flush(); /* make sure output has been written */
4634 gui_update_cursor(TRUE, FALSE);
4636 # ifdef FEAT_XIM
4637 xim_set_focus(in_focus);
4638 # endif
4640 /* Put events in the input queue only when allowed.
4641 * ui_focus_change() isn't called directly, because it invokes
4642 * autocommands and that must not happen asynchronously. */
4643 if (!hold_gui_events)
4645 char_u bytes[3];
4647 bytes[0] = CSI;
4648 bytes[1] = KS_EXTRA;
4649 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4650 add_to_input_buf(bytes, 3);
4652 #endif
4656 * Called when the mouse moved (but not when dragging).
4658 void
4659 gui_mouse_moved(x, y)
4660 int x;
4661 int y;
4663 win_T *wp;
4664 char_u st[8];
4666 /* Ignore this while still starting up. */
4667 if (!gui.in_use || gui.starting)
4668 return;
4670 #ifdef FEAT_MOUSESHAPE
4671 /* Get window pointer, and update mouse shape as well. */
4672 wp = xy2win(x, y);
4673 #endif
4675 /* Only handle this when 'mousefocus' set and ... */
4676 if (p_mousef
4677 && !hold_gui_events /* not holding events */
4678 && (State & (NORMAL|INSERT))/* Normal/Visual/Insert mode */
4679 && State != HITRETURN /* but not hit-return prompt */
4680 && msg_scrolled == 0 /* no scrolled message */
4681 && !need_mouse_correct /* not moving the pointer */
4682 && gui.in_focus) /* gvim in focus */
4684 /* Don't move the mouse when it's left or right of the Vim window */
4685 if (x < 0 || x > Columns * gui.char_width)
4686 return;
4687 #ifndef FEAT_MOUSESHAPE
4688 wp = xy2win(x, y);
4689 #endif
4690 if (wp == curwin || wp == NULL)
4691 return; /* still in the same old window, or none at all */
4693 #ifdef FEAT_WINDOWS
4694 /* Ignore position in the tab pages line. */
4695 if (Y_2_ROW(y) < tabline_height())
4696 return;
4697 #endif
4700 * format a mouse click on status line input
4701 * ala gui_send_mouse_event(0, x, y, 0, 0);
4702 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4703 * generate a K_LEFTMOUSE_NM key code.
4705 if (finish_op)
4707 /* abort the current operator first */
4708 st[0] = ESC;
4709 add_to_input_buf(st, 1);
4711 st[0] = CSI;
4712 st[1] = KS_MOUSE;
4713 st[2] = KE_FILLER;
4714 st[3] = (char_u)MOUSE_LEFT;
4715 fill_mouse_coord(st + 4,
4716 #ifdef FEAT_VERTSPLIT
4717 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
4718 #else
4720 #endif
4721 wp->w_height + W_WINROW(wp));
4723 add_to_input_buf(st, 8);
4724 st[3] = (char_u)MOUSE_RELEASE;
4725 add_to_input_buf(st, 8);
4726 #ifdef FEAT_GUI_GTK
4727 /* Need to wake up the main loop */
4728 if (gtk_main_level() > 0)
4729 gtk_main_quit();
4730 #endif
4735 * Called when mouse should be moved to window with focus.
4737 void
4738 gui_mouse_correct()
4740 int x, y;
4741 win_T *wp = NULL;
4743 need_mouse_correct = FALSE;
4745 if (!(gui.in_use && p_mousef))
4746 return;
4748 gui_mch_getmouse(&x, &y);
4749 /* Don't move the mouse when it's left or right of the Vim window */
4750 if (x < 0 || x > Columns * gui.char_width)
4751 return;
4752 if (y >= 0
4753 # ifdef FEAT_WINDOWS
4754 && Y_2_ROW(y) >= tabline_height()
4755 # endif
4757 wp = xy2win(x, y);
4758 if (wp != curwin && wp != NULL) /* If in other than current window */
4760 validate_cline_row();
4761 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4762 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
4763 + (gui.char_height) / 2);
4768 * Find window where the mouse pointer "y" coordinate is in.
4770 static win_T *
4771 xy2win(x, y)
4772 int x UNUSED;
4773 int y UNUSED;
4775 #ifdef FEAT_WINDOWS
4776 int row;
4777 int col;
4778 win_T *wp;
4780 row = Y_2_ROW(y);
4781 col = X_2_COL(x);
4782 if (row < 0 || col < 0) /* before first window */
4783 return NULL;
4784 wp = mouse_find_win(&row, &col);
4785 # ifdef FEAT_MOUSESHAPE
4786 if (State == HITRETURN || State == ASKMORE)
4788 if (Y_2_ROW(y) >= msg_row)
4789 update_mouseshape(SHAPE_IDX_MOREL);
4790 else
4791 update_mouseshape(SHAPE_IDX_MORE);
4793 else if (row > wp->w_height) /* below status line */
4794 update_mouseshape(SHAPE_IDX_CLINE);
4795 # ifdef FEAT_VERTSPLIT
4796 else if (!(State & CMDLINE) && W_VSEP_WIDTH(wp) > 0 && col == wp->w_width
4797 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
4798 update_mouseshape(SHAPE_IDX_VSEP);
4799 # endif
4800 else if (!(State & CMDLINE) && W_STATUS_HEIGHT(wp) > 0
4801 && row == wp->w_height && msg_scrolled == 0)
4802 update_mouseshape(SHAPE_IDX_STATUS);
4803 else
4804 update_mouseshape(-2);
4805 # endif
4806 return wp;
4807 #else
4808 return firstwin;
4809 #endif
4813 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
4814 * File names may be given to redefine the args list.
4816 void
4817 ex_gui(eap)
4818 exarg_T *eap;
4820 char_u *arg = eap->arg;
4823 * Check for "-f" argument: foreground, don't fork.
4824 * Also don't fork when started with "gvim -f".
4825 * Do fork when using "gui -b".
4826 * Note that Mac OS X will never fork on :gui since it can only fork on
4827 * startup right after scanning the command line.
4829 if (arg[0] == '-'
4830 && (arg[1] == 'f' || arg[1] == 'b')
4831 && (arg[2] == NUL || vim_iswhite(arg[2])))
4833 gui.dofork = (arg[1] == 'b');
4834 eap->arg = skipwhite(eap->arg + 2);
4836 if (!gui.in_use)
4838 /* Clear the command. Needed for when forking+exiting, to avoid part
4839 * of the argument ending up after the shell prompt. */
4840 msg_clr_eos_force();
4841 gui_start();
4843 if (!ends_excmd(*eap->arg))
4844 ex_next(eap);
4847 #if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_W32) \
4848 || defined(FEAT_GUI_PHOTON)) && defined(FEAT_TOOLBAR) \
4849 || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
4851 * This is shared between Athena, Motif and GTK.
4853 static void gfp_setname __ARGS((char_u *fname, void *cookie));
4856 * Callback function for do_in_runtimepath().
4858 static void
4859 gfp_setname(fname, cookie)
4860 char_u *fname;
4861 void *cookie;
4863 char_u *gfp_buffer = cookie;
4865 if (STRLEN(fname) >= MAXPATHL)
4866 *gfp_buffer = NUL;
4867 else
4868 STRCPY(gfp_buffer, fname);
4872 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
4873 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
4876 gui_find_bitmap(name, buffer, ext)
4877 char_u *name;
4878 char_u *buffer;
4879 char *ext;
4881 if (STRLEN(name) > MAXPATHL - 14)
4882 return FAIL;
4883 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
4884 if (do_in_runtimepath(buffer, FALSE, gfp_setname, buffer) == FAIL
4885 || *buffer == NUL)
4886 return FAIL;
4887 return OK;
4890 # if !defined(HAVE_GTK2) || defined(PROTO)
4892 * Given the name of the "icon=" argument, try finding the bitmap file for the
4893 * icon. If it is an absolute path name, use it as it is. Otherwise append
4894 * "ext" and search for it in 'runtimepath'.
4895 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
4896 * contains "name".
4898 void
4899 gui_find_iconfile(name, buffer, ext)
4900 char_u *name;
4901 char_u *buffer;
4902 char *ext;
4904 char_u buf[MAXPATHL + 1];
4906 expand_env(name, buffer, MAXPATHL);
4907 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
4908 STRCPY(buffer, buf);
4910 # endif
4911 #endif
4913 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
4914 void
4915 display_errors()
4917 char_u *p;
4919 if (isatty(2))
4920 fflush(stderr);
4921 else if (error_ga.ga_data != NULL)
4923 /* avoid putting up a message box with blanks only */
4924 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
4925 if (!isspace(*p))
4927 /* Truncate a very long message, it will go off-screen. */
4928 if (STRLEN(p) > 2000)
4929 STRCPY(p + 2000 - 14, "...(truncated)");
4930 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
4931 p, (char_u *)_("&Ok"), 1, NULL);
4932 break;
4934 ga_clear(&error_ga);
4937 #endif
4939 #if defined(NO_CONSOLE_INPUT) || defined(PROTO)
4941 * Return TRUE if still starting up and there is no place to enter text.
4942 * For GTK and X11 we check if stderr is not a tty, which means we were
4943 * (probably) started from the desktop. Also check stdin, "vim >& file" does
4944 * allow typing on stdin.
4947 no_console_input()
4949 return ((!gui.in_use || gui.starting)
4950 # ifndef NO_CONSOLE
4951 && !isatty(0) && !isatty(2)
4952 # endif
4955 #endif
4957 #if defined(FIND_REPLACE_DIALOG) || defined(FEAT_SUN_WORKSHOP) \
4958 || defined(NEED_GUI_UPDATE_SCREEN) \
4959 || defined(PROTO)
4961 * Update the current window and the screen.
4963 void
4964 gui_update_screen()
4966 update_topline();
4967 validate_cursor();
4968 #ifdef FEAT_AUTOCMD
4969 /* Trigger CursorMoved if the cursor moved. */
4970 if (!finish_op && has_cursormoved()
4971 && !equalpos(last_cursormoved, curwin->w_cursor))
4973 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
4974 last_cursormoved = curwin->w_cursor;
4976 #endif
4977 update_screen(0); /* may need to update the screen */
4978 setcursor();
4979 out_flush(); /* make sure output has been written */
4980 gui_update_cursor(TRUE, FALSE);
4981 gui_mch_flush();
4983 #endif
4985 #if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
4986 static void concat_esc __ARGS((garray_T *gap, char_u *text, int what));
4989 * Get the text to use in a find/replace dialog. Uses the last search pattern
4990 * if the argument is empty.
4991 * Returns an allocated string.
4993 char_u *
4994 get_find_dialog_text(arg, wwordp, mcasep)
4995 char_u *arg;
4996 int *wwordp; /* return: TRUE if \< \> found */
4997 int *mcasep; /* return: TRUE if \C found */
4999 char_u *text;
5001 if (*arg == NUL)
5002 text = last_search_pat();
5003 else
5004 text = arg;
5005 if (text != NULL)
5007 text = vim_strsave(text);
5008 if (text != NULL)
5010 int len = (int)STRLEN(text);
5011 int i;
5013 /* Remove "\V" */
5014 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5016 mch_memmove(text, text + 2, (size_t)(len - 1));
5017 len -= 2;
5020 /* Recognize "\c" and "\C" and remove. */
5021 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5023 *mcasep = (text[1] == 'C');
5024 mch_memmove(text, text + 2, (size_t)(len - 1));
5025 len -= 2;
5028 /* Recognize "\<text\>" and remove. */
5029 if (len >= 4
5030 && STRNCMP(text, "\\<", 2) == 0
5031 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5033 *wwordp = TRUE;
5034 mch_memmove(text, text + 2, (size_t)(len - 4));
5035 text[len - 4] = NUL;
5038 /* Recognize "\/" or "\?" and remove. */
5039 for (i = 0; i + 1 < len; ++i)
5040 if (text[i] == '\\' && (text[i + 1] == '/'
5041 || text[i + 1] == '?'))
5043 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5044 --len;
5048 return text;
5052 * Concatenate "text" to grow array "gap", escaping "what" with a backslash.
5054 static void
5055 concat_esc(gap, text, what)
5056 garray_T *gap;
5057 char_u *text;
5058 int what;
5060 while (*text != NUL)
5062 #ifdef FEAT_MBYTE
5063 int l = (*mb_ptr2len)(text);
5065 if (l > 1)
5067 while (--l >= 0)
5068 ga_append(gap, *text++);
5069 continue;
5071 #endif
5072 if (*text == what)
5073 ga_append(gap, '\\');
5074 ga_append(gap, *text);
5075 ++text;
5080 * Handle the press of a button in the find-replace dialog.
5081 * Return TRUE when something was added to the input buffer.
5084 gui_do_findrepl(flags, find_text, repl_text, down)
5085 int flags; /* one of FRD_REPLACE, FRD_FINDNEXT, etc. */
5086 char_u *find_text;
5087 char_u *repl_text;
5088 int down; /* Search downwards. */
5090 garray_T ga;
5091 int i;
5092 int type = (flags & FRD_TYPE_MASK);
5093 char_u *p;
5094 regmatch_T regmatch;
5095 int save_did_emsg = did_emsg;
5096 static int busy = FALSE;
5098 /* When the screen is being updated we should not change buffers and
5099 * windows structures, it may cause freed memory to be used. Also don't
5100 * do this recursively (pressing "Find" quickly several times. */
5101 if (updating_screen || busy)
5102 return FALSE;
5104 /* refuse replace when text cannot be changed */
5105 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5106 return FALSE;
5108 busy = TRUE;
5110 ga_init2(&ga, 1, 100);
5111 if (type == FRD_REPLACEALL)
5112 ga_concat(&ga, (char_u *)"%s/");
5114 ga_concat(&ga, (char_u *)"\\V");
5115 if (flags & FRD_MATCH_CASE)
5116 ga_concat(&ga, (char_u *)"\\C");
5117 else
5118 ga_concat(&ga, (char_u *)"\\c");
5119 if (flags & FRD_WHOLE_WORD)
5120 ga_concat(&ga, (char_u *)"\\<");
5121 if (type == FRD_REPLACEALL || down)
5122 concat_esc(&ga, find_text, '/'); /* escape slashes */
5123 else
5124 concat_esc(&ga, find_text, '?'); /* escape '?' */
5125 if (flags & FRD_WHOLE_WORD)
5126 ga_concat(&ga, (char_u *)"\\>");
5128 if (type == FRD_REPLACEALL)
5130 ga_concat(&ga, (char_u *)"/");
5131 /* escape / and \ */
5132 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5133 if (p != NULL)
5134 ga_concat(&ga, p);
5135 vim_free(p);
5136 ga_concat(&ga, (char_u *)"/g");
5138 ga_append(&ga, NUL);
5140 if (type == FRD_REPLACE)
5142 /* Do the replacement when the text at the cursor matches. Thus no
5143 * replacement is done if the cursor was moved! */
5144 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5145 regmatch.rm_ic = 0;
5146 if (regmatch.regprog != NULL)
5148 p = ml_get_cursor();
5149 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5150 && regmatch.startp[0] == p)
5152 /* Clear the command line to remove any old "No match"
5153 * error. */
5154 msg_end_prompt();
5156 if (u_save_cursor() == OK)
5158 /* A button was pressed thus undo should be synced. */
5159 u_sync(FALSE);
5161 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
5162 FALSE, FALSE);
5163 ins_str(repl_text);
5166 else
5167 MSG(_("No match at cursor, finding next"));
5168 vim_free(regmatch.regprog);
5172 if (type == FRD_REPLACEALL)
5174 /* A button was pressed, thus undo should be synced. */
5175 u_sync(FALSE);
5176 do_cmdline_cmd(ga.ga_data);
5178 else
5180 /* Search for the next match. */
5181 i = msg_scroll;
5182 do_search(NULL, down ? '/' : '?', ga.ga_data, 1L,
5183 SEARCH_MSG + SEARCH_MARK, NULL);
5184 msg_scroll = i; /* don't let an error message set msg_scroll */
5187 /* Don't want to pass did_emsg to other code, it may cause disabling
5188 * syntax HL if we were busy redrawing. */
5189 did_emsg = save_did_emsg;
5191 if (State & (NORMAL | INSERT))
5193 gui_update_screen(); /* update the screen */
5194 msg_didout = 0; /* overwrite any message */
5195 need_wait_return = FALSE; /* don't wait for return */
5198 vim_free(ga.ga_data);
5199 busy = FALSE;
5200 return (ga.ga_len > 0);
5203 #endif
5205 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5206 || defined(FEAT_GUI_MSWIN) \
5207 || defined(FEAT_GUI_MAC) \
5208 || defined(PROTO) \
5209 || defined(FEAT_GUI_MACVIM)
5211 #ifdef FEAT_WINDOWS
5212 static void gui_wingoto_xy __ARGS((int x, int y));
5215 * Jump to the window at specified point (x, y).
5217 static void
5218 gui_wingoto_xy(x, y)
5219 int x;
5220 int y;
5222 int row = Y_2_ROW(y);
5223 int col = X_2_COL(x);
5224 win_T *wp;
5226 if (row >= 0 && col >= 0)
5228 wp = mouse_find_win(&row, &col);
5229 if (wp != NULL && wp != curwin)
5230 win_goto(wp);
5233 #endif
5236 * Process file drop. Mouse cursor position, key modifiers, name of files
5237 * and count of files are given. Argument "fnames[count]" has full pathnames
5238 * of dropped files, they will be freed in this function, and caller can't use
5239 * fnames after call this function.
5241 void
5242 gui_handle_drop(x, y, modifiers, fnames, count)
5243 int x UNUSED;
5244 int y UNUSED;
5245 int_u modifiers;
5246 char_u **fnames;
5247 int count;
5249 int i;
5250 char_u *p;
5251 static int entered = FALSE;
5254 * This function is called by event handlers. Just in case we get a
5255 * second event before the first one is handled, ignore the second one.
5256 * Not sure if this can ever happen, just in case.
5258 if (entered)
5259 return;
5260 entered = TRUE;
5263 * When the cursor is at the command line, add the file names to the
5264 * command line, don't edit the files.
5266 if (State & CMDLINE)
5268 shorten_filenames(fnames, count);
5269 for (i = 0; i < count; ++i)
5271 if (fnames[i] != NULL)
5273 if (i > 0)
5274 add_to_input_buf((char_u*)" ", 1);
5276 /* We don't know what command is used thus we can't be sure
5277 * about which characters need to be escaped. Only escape the
5278 * most common ones. */
5279 # ifdef BACKSLASH_IN_FILENAME
5280 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5281 # else
5282 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5283 # endif
5284 if (p != NULL)
5285 add_to_input_buf_csi(p, (int)STRLEN(p));
5286 vim_free(p);
5287 vim_free(fnames[i]);
5290 vim_free(fnames);
5292 else
5294 /* Go to the window under mouse cursor, then shorten given "fnames" by
5295 * current window, because a window can have local current dir. */
5296 # ifdef FEAT_WINDOWS
5297 gui_wingoto_xy(x, y);
5298 # endif
5299 shorten_filenames(fnames, count);
5301 /* If Shift held down, remember the first item. */
5302 if ((modifiers & MOUSE_SHIFT) != 0)
5303 p = vim_strsave(fnames[0]);
5304 else
5305 p = NULL;
5307 /* Handle the drop, :edit or :split to get to the file. This also
5308 * frees fnames[]. Skip this if there is only one item it's a
5309 * directory and Shift is held down. */
5310 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5311 && mch_isdir(fnames[0]))
5313 vim_free(fnames[0]);
5314 vim_free(fnames);
5316 else
5317 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0);
5319 /* If Shift held down, change to first file's directory. If the first
5320 * item is a directory, change to that directory (and let the explorer
5321 * plugin show the contents). */
5322 if (p != NULL)
5324 if (mch_isdir(p))
5326 if (mch_chdir((char *)p) == 0)
5327 shorten_fnames(TRUE);
5329 else if (vim_chdirfile(p) == OK)
5330 shorten_fnames(TRUE);
5331 vim_free(p);
5334 /* Update the screen display */
5335 update_screen(NOT_VALID);
5336 # ifdef FEAT_MENU
5337 gui_update_menus(0);
5338 # endif
5339 setcursor();
5340 out_flush();
5341 gui_update_cursor(FALSE, FALSE);
5342 gui_mch_flush();
5345 entered = FALSE;
5347 #endif