blob: eec89d5aa265b0ba1a81e7c475a6878069942568 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI/Motif support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10
11#include "vim.h"
12
Bram Moolenaar30613902019-12-01 22:11:18 +010013// Structure containing all the GUI information
Bram Moolenaar071d4272004-06-13 20:20:40 +000014gui_T gui;
15
Bram Moolenaar13505972019-01-24 15:04:48 +010016#if !defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010017static void set_guifontwide(char_u *font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010019static void gui_check_pos(void);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020020static void gui_reset_scroll_region(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010021static void gui_outstr(char_u *, int);
22static int gui_screenchar(int off, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020023static int gui_outstr_nowrap(char_u *s, int len, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010024static void gui_delete_lines(int row, int count);
25static void gui_insert_lines(int row, int count);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020026static int gui_xy2colrow(int x, int y, int *colp);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000027#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010028static int gui_has_tabline(void);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000029#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010030static void gui_do_scrollbar(win_T *wp, int which, int enable);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010031static void gui_update_horiz_scrollbar(int);
32static void gui_set_fg_color(char_u *name);
33static void gui_set_bg_color(char_u *name);
Bram Moolenaar0630bb62019-11-04 22:52:12 +010034static win_T *xy2win(int x, int y, mouse_find_T popup);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020036#ifdef GUI_MAY_FORK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010037static void gui_do_fork(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020038
Bram Moolenaard25c16e2016-01-29 22:13:30 +010039static int gui_read_child_pipe(int fd);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020040
Bram Moolenaar30613902019-12-01 22:11:18 +010041// Return values for gui_read_child_pipe
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020042enum {
43 GUI_CHILD_IO_ERROR,
44 GUI_CHILD_OK,
45 GUI_CHILD_FAILED
46};
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020047#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020048
Bram Moolenaard25c16e2016-01-29 22:13:30 +010049static void gui_attempt_start(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020050
Bram Moolenaar30613902019-12-01 22:11:18 +010051static int can_update_cursor = TRUE; // can display the cursor
52static int disable_flush = 0; // If > 0, gui_mch_flush() is disabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
54/*
55 * The Athena scrollbars can move the thumb to after the end of the scrollbar,
56 * this makes the thumb indicate the part of the text that is shown. Motif
57 * can't do this.
58 */
59#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MAC)
60# define SCROLL_PAST_END
61#endif
62
63/*
64 * gui_start -- Called when user wants to start the GUI.
65 *
66 * Careful: This function can be called recursively when there is a ":gui"
67 * command in the .gvimrc file. Only the first call should fork, not the
68 * recursive call.
69 */
70 void
Bram Moolenaarafde13b2019-04-28 19:46:49 +020071gui_start(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000072{
73 char_u *old_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +000074 static int recursive = 0;
Bram Moolenaar68cbb142019-05-09 14:14:42 +020075#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaarafde13b2019-04-28 19:46:49 +020076 char *msg = NULL;
77#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
79 old_term = vim_strsave(T_NAME);
80
Bram Moolenaar30613902019-12-01 22:11:18 +010081 settmode(TMODE_COOK); // stop RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000082 if (full_screen)
Bram Moolenaar30613902019-12-01 22:11:18 +010083 cursor_on(); // needed for ":gui" in .vimrc
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 full_screen = FALSE;
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 ++recursive;
87
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020088#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020089 /*
90 * Quit the current process and continue in the child.
91 * Makes "gvim file" disconnect from the shell it was started in.
92 * Don't do this when Vim was started with "-f" or the 'f' flag is present
93 * in 'guioptions'.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020094 * Don't do this when there is a running job, we can only get the status
95 * of a child from the parent.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020096 */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020097 if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1
98# ifdef FEAT_JOB_CHANNEL
99 && !job_any_running()
100# endif
101 )
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200102 {
103 gui_do_fork();
104 }
105 else
106#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200107#ifdef GUI_MAY_SPAWN
108 if (gui.dospawn
109# ifdef EXPERIMENTAL_GUI_CMD
110 && gui.dofork
111# endif
112 && !vim_strchr(p_go, GO_FORG)
113 && !anyBufIsChanged()
114# ifdef FEAT_JOB_CHANNEL
115 && !job_any_running()
116# endif
117 )
118 {
Bram Moolenaar68cbb142019-05-09 14:14:42 +0200119# ifdef EXPERIMENTAL_GUI_CMD
120 msg =
121# endif
122 gui_mch_do_spawn(arg);
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200123 }
124 else
125#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200126 {
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200127#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100128 // If there is 'f' in 'guioptions' and specify -g argument,
129 // gui_mch_init_check() was not called yet.
Bram Moolenaar6a3c1b42012-05-25 14:06:36 +0200130 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100131 getout_preserve_modified(1);
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200132#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200133 gui_attempt_start();
134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
Bram Moolenaar30613902019-12-01 22:11:18 +0100136 if (!gui.in_use) // failed to start GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100138 // Back to old term settings
139 //
140 // FIXME: If we got here because a child process failed and flagged to
141 // the parent to resume, and X11 is enabled with FEAT_TITLE, this will
142 // hit an X11 I/O error and do a longjmp(), leaving recursive
143 // permanently set to 1. This is probably not as big a problem as it
144 // sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c
145 // return "OK" unconditionally, so it would be very difficult to
146 // actually hit this case.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200147 termcapinit(old_term);
Bram Moolenaar30613902019-12-01 22:11:18 +0100148 settmode(TMODE_RAW); // restart RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef FEAT_TITLE
Bram Moolenaar30613902019-12-01 22:11:18 +0100150 set_title_defaults(); // set 'title' and 'icon' again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200152#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
153 if (msg)
154 emsg(msg);
155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 }
157
158 vim_free(old_term);
159
Bram Moolenaar30613902019-12-01 22:11:18 +0100160 // If the GUI started successfully, trigger the GUIEnter event, otherwise
161 // the GUIFailed event.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200162 gui_mch_update();
163 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
164 NULL, NULL, FALSE, curbuf);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200165 --recursive;
166}
167
168/*
169 * Set_termname() will call gui_init() to start the GUI.
170 * Set the "starting" flag, to indicate that the GUI will start.
171 *
172 * We don't want to open the GUI shell until after we've read .gvimrc,
173 * otherwise we don't know what font we will use, and hence we don't know
174 * what size the shell should be. So if there are errors in the .gvimrc
175 * file, they will have to go to the terminal: Set full_screen to FALSE.
176 * full_screen will be set to TRUE again by a successful termcapinit().
177 */
178 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100179gui_attempt_start(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200180{
181 static int recursive = 0;
182
183 ++recursive;
184 gui.starting = TRUE;
185
186#ifdef FEAT_GUI_GTK
187 gui.event_time = GDK_CURRENT_TIME;
188#endif
189
190 termcapinit((char_u *)"builtin_gui");
191 gui.starting = recursive - 1;
192
Bram Moolenaar9372a112005-12-06 19:59:18 +0000193#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 if (gui.in_use)
Bram Moolenaar727c8762010-10-20 19:17:48 +0200195 {
196# ifdef FEAT_EVAL
197 Window x11_window;
198 Display *x11_display;
199
200 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
201 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
202# endif
203
Bram Moolenaar30613902019-12-01 22:11:18 +0100204 // Display error messages in a dialog now.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 display_errors();
Bram Moolenaar727c8762010-10-20 19:17:48 +0200206 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 --recursive;
209}
210
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200211#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200212
Bram Moolenaar30613902019-12-01 22:11:18 +0100213// for waitpid()
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200214# if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
215# include <sys/wait.h>
216# endif
217
218/*
219 * Create a new process, by forking. In the child, start the GUI, and in
220 * the parent, exit.
221 *
222 * If something goes wrong, this will return with gui.in_use still set
223 * to FALSE, in which case the caller should continue execution without
224 * the GUI.
225 *
226 * If the child fails to start the GUI, then the child will exit and the
227 * parent will return. If the child succeeds, then the parent will exit
228 * and the child will return.
229 */
230 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100231gui_do_fork(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200232{
Bram Moolenaar30613902019-12-01 22:11:18 +0100233 int pipefd[2]; // pipe between parent and child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200234 int pipe_error;
235 int status;
236 int exit_status;
237 pid_t pid = -1;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200238
Bram Moolenaar30613902019-12-01 22:11:18 +0100239 // Setup a pipe between the child and the parent, so that the parent
240 // knows when the child has done the setsid() call and is allowed to
241 // exit.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200242 pipe_error = (pipe(pipefd) < 0);
243 pid = fork();
Bram Moolenaar30613902019-12-01 22:11:18 +0100244 if (pid < 0) // Fork error
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200245 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100246 emsg(_("E851: Failed to create a new process for the GUI"));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200247 return;
248 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100249 else if (pid > 0) // Parent
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200250 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100251 // Give the child some time to do the setsid(), otherwise the
252 // exit() may kill the child too (when starting gvim from inside a
253 // gvim).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200254 if (!pipe_error)
255 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100256 // The read returns when the child closes the pipe (or when
257 // the child dies for some reason).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200258 close(pipefd[1]);
259 status = gui_read_child_pipe(pipefd[0]);
260 if (status == GUI_CHILD_FAILED)
261 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100262 // The child failed to start the GUI, so the caller must
263 // continue. There may be more error information written
264 // to stderr by the child.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200265# ifdef __NeXT__
266 wait4(pid, &exit_status, 0, (struct rusage *)0);
267# else
268 waitpid(pid, &exit_status, 0);
269# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100270 emsg(_("E852: The child process failed to start the GUI"));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200271 return;
272 }
273 else if (status == GUI_CHILD_IO_ERROR)
274 {
275 pipe_error = TRUE;
276 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100277 // else GUI_CHILD_OK: parent exit
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200278 }
279
280 if (pipe_error)
Bram Moolenaareda1da02019-11-17 17:06:33 +0100281 ui_delay(301L, TRUE);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200282
Bram Moolenaar30613902019-12-01 22:11:18 +0100283 // When swapping screens we may need to go to the next line, e.g.,
284 // after a hit-enter prompt and using ":gui".
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200285 if (newline_on_exit)
286 mch_errmsg("\r\n");
287
288 /*
289 * The parent must skip the normal exit() processing, the child
290 * will do it. For example, GTK messes up signals when exiting.
291 */
292 _exit(0);
293 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100294 // Child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200295
Bram Moolenaar29695702012-05-18 17:03:18 +0200296#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100297 // Call gtk_init_check() here after fork(). See gui_init_check().
Bram Moolenaar29695702012-05-18 17:03:18 +0200298 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100299 getout_preserve_modified(1);
Bram Moolenaar29695702012-05-18 17:03:18 +0200300#endif
301
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200302# if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
303 /*
304 * Change our process group. On some systems/shells a CTRL-C in the
305 * shell where Vim was started would otherwise kill gvim!
306 */
307# if defined(HAVE_SETSID)
308 (void)setsid();
309# else
310 (void)setpgid(0, 0);
311# endif
312# endif
313 if (!pipe_error)
314 close(pipefd[0]);
315
316# if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +0100317 // Tell the session manager our new PID
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200318 gui_mch_forked();
319# endif
320
Bram Moolenaar30613902019-12-01 22:11:18 +0100321 // Try to start the GUI
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200322 gui_attempt_start();
323
Bram Moolenaar30613902019-12-01 22:11:18 +0100324 // Notify the parent
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200325 if (!pipe_error)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200326 {
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200327 if (gui.in_use)
328 write_eintr(pipefd[1], "ok", 3);
329 else
330 write_eintr(pipefd[1], "fail", 5);
331 close(pipefd[1]);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200332 }
333
Bram Moolenaar30613902019-12-01 22:11:18 +0100334 // If we failed to start the GUI, exit now.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200335 if (!gui.in_use)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100336 getout_preserve_modified(1);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200337}
338
339/*
340 * Read from a pipe assumed to be connected to the child process (this
341 * function is called from the parent).
342 * Return GUI_CHILD_OK if the child successfully started the GUI,
343 * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was
344 * some other error.
345 *
346 * The file descriptor will be closed before the function returns.
347 */
348 static int
349gui_read_child_pipe(int fd)
350{
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200351 long bytes_read;
352#define READ_BUFFER_SIZE 10
353 char buffer[READ_BUFFER_SIZE];
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200354
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200355 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
356#undef READ_BUFFER_SIZE
357 close(fd);
358 if (bytes_read < 0)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200359 return GUI_CHILD_IO_ERROR;
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200360 buffer[bytes_read] = NUL;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200361 if (strcmp(buffer, "ok") == 0)
362 return GUI_CHILD_OK;
363 return GUI_CHILD_FAILED;
364}
365
Bram Moolenaar30613902019-12-01 22:11:18 +0100366#endif // GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200367
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368/*
369 * Call this when vim starts up, whether or not the GUI is started
370 */
371 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100372gui_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373{
Bram Moolenaar30613902019-12-01 22:11:18 +0100374 gui.in_use = FALSE; // No GUI yet (maybe later)
375 gui.starting = FALSE; // No GUI yet (maybe later)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 gui_mch_prepare(argc, argv);
377}
378
379/*
380 * Try initializing the GUI and check if it can be started.
381 * Used from main() to check early if "vim -g" can start the GUI.
382 * Used from gui_init() to prepare for starting the GUI.
383 * Returns FAIL or OK.
384 */
385 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100386gui_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387{
388 static int result = MAYBE;
389
390 if (result != MAYBE)
391 {
392 if (result == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100393 emsg(_("E229: Cannot start the GUI"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 return result;
395 }
396
397 gui.shell_created = FALSE;
398 gui.dying = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +0100399 gui.in_focus = TRUE; // so the guicursor setting works
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 gui.dragged_sb = SBAR_NONE;
401 gui.dragged_wp = NULL;
402 gui.pointer_hidden = FALSE;
403 gui.col = 0;
404 gui.row = 0;
405 gui.num_cols = Columns;
406 gui.num_rows = Rows;
407
408 gui.cursor_is_valid = FALSE;
409 gui.scroll_region_top = 0;
410 gui.scroll_region_bot = Rows - 1;
411 gui.scroll_region_left = 0;
412 gui.scroll_region_right = Columns - 1;
413 gui.highlight_mask = HL_NORMAL;
414 gui.char_width = 1;
415 gui.char_height = 1;
416 gui.char_ascent = 0;
417 gui.border_width = 0;
418
419 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200420#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 gui.bold_font = NOFONT;
422 gui.ital_font = NOFONT;
423 gui.boldital_font = NOFONT;
424# ifdef FEAT_XFONTSET
425 gui.fontset = NOFONTSET;
426# endif
427#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200428 gui.wide_font = NOFONT;
Bram Moolenaar13505972019-01-24 15:04:48 +0100429#ifndef FEAT_GUI_GTK
Bram Moolenaardb250522013-06-17 22:43:25 +0200430 gui.wide_bold_font = NOFONT;
431 gui.wide_ital_font = NOFONT;
432 gui.wide_boldital_font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +0200433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434
435#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200436# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437# ifdef FONTSET_ALWAYS
438 gui.menu_fontset = NOFONTSET;
439# else
440 gui.menu_font = NOFONT;
441# endif
442# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100443 gui.menu_is_active = TRUE; // default: include menu
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444# ifndef FEAT_GUI_GTK
445 gui.menu_height = MENU_DEFAULT_HEIGHT;
446 gui.menu_width = 0;
447# endif
448#endif
449#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
450 gui.toolbar_height = 0;
451#endif
452#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
453 gui.footer_height = 0;
454#endif
455#ifdef FEAT_BEVAL_TIP
456 gui.tooltip_fontset = NOFONTSET;
457#endif
458
459 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
460 gui.prev_wrap = -1;
461
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200462#if defined(ALWAYS_USE_GUI) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 result = OK;
464#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200465# ifdef FEAT_GUI_GTK
466 /*
467 * Note: Don't call gtk_init_check() before fork, it will be called after
468 * the fork. When calling it before fork, it make vim hang for a while.
469 * See gui_do_fork().
470 * Use a simpler check if the GUI window can probably be opened.
471 */
Bram Moolenaar717e1962016-08-10 21:28:44 +0200472 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200473# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200475# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476#endif
477 return result;
478}
479
480/*
481 * This is the call which starts the GUI.
482 */
483 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100484gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485{
486 win_T *wp;
487 static int recursive = 0;
488
489 /*
490 * It's possible to use ":gui" in a .gvimrc file. The first halve of this
491 * function will then be executed at the first call, the rest by the
492 * recursive call. This allow the shell to be opened halfway reading a
493 * gvimrc file.
494 */
495 if (!recursive)
496 {
497 ++recursive;
498
499 clip_init(TRUE);
500
Bram Moolenaar30613902019-12-01 22:11:18 +0100501 // If can't initialize, don't try doing the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 if (gui_init_check() == FAIL)
503 {
504 --recursive;
505 clip_init(FALSE);
506 return;
507 }
508
509 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000510 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
511 * breaks the Paste toolbar button.
512 */
513 set_option_value((char_u *)"paste", 0L, NULL, 0);
514
515 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 * Set up system-wide default menus.
517 */
518#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
519 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
520 {
521 sys_menu = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100522 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 sys_menu = FALSE;
524 }
525#endif
526
527 /*
528 * Switch on the mouse by default, unless the user changed it already.
529 * This can then be changed in the .gvimrc.
530 */
531 if (!option_was_set((char_u *)"mouse"))
532 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000533 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535 /*
536 * If -U option given, use only the initializations from that file and
537 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
538 */
539 if (use_gvimrc != NULL)
540 {
541 if (STRCMP(use_gvimrc, "NONE") != 0
542 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100543 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK)
544 semsg(_("E230: Cannot read from \"%s\""), use_gvimrc, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 }
546 else
547 {
548 /*
549 * Get system wide defaults for gvim, only when file name defined.
550 */
551#ifdef SYS_GVIMRC_FILE
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100552 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553#endif
554
555 /*
556 * Try to read GUI initialization commands from the following
557 * places:
558 * - environment variable GVIMINIT
559 * - the user gvimrc file (~/.gvimrc)
560 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
561 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
562 * The first that exists is used, the rest is ignored.
563 */
564 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000565 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100566 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000568 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100569 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200571#ifdef USR_GVIMRC_FILE3
572 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100573 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 )
576 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200577#ifdef USR_GVIMRC_FILE4
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100578 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE,
579 DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580#endif
581 }
582
583 /*
584 * Read initialization commands from ".gvimrc" in current
585 * directory. This is only done if the 'exrc' option is set.
586 * Because of security reasons we disallow shell and write
587 * commands now, except for unix if the file is owned by the user
588 * or 'secure' option has been reset in environment of global
589 * ".gvimrc".
590 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
591 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
592 */
593 if (p_exrc)
594 {
595#ifdef UNIX
596 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200597 stat_T s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
Bram Moolenaar30613902019-12-01 22:11:18 +0100599 // if ".gvimrc" file is not owned by user, set 'secure'
600 // mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
602 secure = p_secure;
603 }
604#else
605 secure = p_secure;
606#endif
607
608 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200609 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610#ifdef SYS_GVIMRC_FILE
611 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200612 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#endif
614#ifdef USR_GVIMRC_FILE2
615 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200616 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617#endif
618#ifdef USR_GVIMRC_FILE3
619 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200620 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200622#ifdef USR_GVIMRC_FILE4
623 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200624 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100627 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628
629 if (secure == 2)
630 need_wait_return = TRUE;
631 secure = 0;
632 }
633 }
634
635 if (need_wait_return || msg_didany)
636 wait_return(TRUE);
637
638 --recursive;
639 }
640
Bram Moolenaar30613902019-12-01 22:11:18 +0100641 // If recursive call opened the shell, return here from the first call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (gui.in_use)
643 return;
644
645 /*
646 * Create the GUI shell.
647 */
Bram Moolenaar30613902019-12-01 22:11:18 +0100648 gui.in_use = TRUE; // Must be set after menus have been set up
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 if (gui_mch_init() == FAIL)
650 goto error;
651
Bram Moolenaar30613902019-12-01 22:11:18 +0100652 // Avoid a delay for an error message that was printed in the terminal
653 // where Vim was started.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 emsg_on_display = FALSE;
655 msg_scrolled = 0;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100656 clear_sb_text(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 need_wait_return = FALSE;
658 msg_didany = FALSE;
659
660 /*
661 * Check validity of any generic resources that may have been loaded.
662 */
663 if (gui.border_width < 0)
664 gui.border_width = 0;
665
666 /*
667 * Set up the fonts. First use a font specified with "-fn" or "-font".
668 */
669 if (font_argument != NULL)
670 set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
671 if (
672#ifdef FEAT_XFONTSET
673 (*p_guifontset == NUL
674 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
675#endif
676 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
677 : p_guifont, FALSE) == FAIL)
678 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100679 emsg(_("E665: Cannot start GUI, no valid font found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 goto error2;
681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 if (gui_get_wide_font() == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100683 emsg(_("E231: 'guifontwide' invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684
685 gui.num_cols = Columns;
686 gui.num_rows = Rows;
687 gui_reset_scroll_region();
688
Bram Moolenaar30613902019-12-01 22:11:18 +0100689 // Create initial scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 FOR_ALL_WINDOWS(wp)
691 {
692 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
693 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
694 }
695 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
696
697#ifdef FEAT_MENU
698 gui_create_initial_menus(root_menu);
699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700#ifdef FEAT_SIGN_ICONS
701 sign_gui_started();
702#endif
703
Bram Moolenaar30613902019-12-01 22:11:18 +0100704 // Configure the desired menu and scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 gui_init_which_components(NULL);
706
Bram Moolenaar30613902019-12-01 22:11:18 +0100707 // All components of the GUI have been created now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 gui.shell_created = TRUE;
709
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100710#ifdef FEAT_GUI_MSWIN
Bram Moolenaar4814ccb2018-12-22 18:44:53 +0100711 // Set the shell size, adjusted for the screen size. For GTK this only
712 // works after the shell has been opened, thus it is further down.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100713 // If the window is already maximized (e.g. when --windowid is passed in),
714 // we want to use the system-provided dimensions by passing FALSE to
715 // mustset. Otherwise, we want to initialize with the default rows/columns.
716 if (gui_mch_maximized())
717 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
718 else
719 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100720#else
721# ifndef FEAT_GUI_GTK
722 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
723# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724#endif
725#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +0100726 // Need to set the size of the menubar after all the menus have been
727 // created.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 gui_mch_compute_menu_height((Widget)0);
729#endif
730
731 /*
732 * Actually open the GUI shell.
733 */
734 if (gui_mch_open() != FAIL)
735 {
736#ifdef FEAT_TITLE
737 maketitle();
738 resettitle();
739#endif
740 init_gui_options();
741#ifdef FEAT_ARABIC
Bram Moolenaar30613902019-12-01 22:11:18 +0100742 // Our GUI can't do bidi.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 p_tbidi = FALSE;
744#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000745#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100746 // Give GTK+ a chance to put all widget's into place.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000748
749# ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +0100750 // If there is no 'm' in 'guioptions' we need to remove the menu now.
751 // It was still there to make F10 work.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000752 if (vim_strchr(p_go, GO_MENUS) == NULL)
753 {
754 --gui.starting;
755 gui_mch_enable_menu(FALSE);
756 ++gui.starting;
757 gui_mch_update();
758 }
759# endif
760
Bram Moolenaar30613902019-12-01 22:11:18 +0100761 // Now make sure the shell fits on the screen.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100762 if (gui_mch_maximized())
763 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
764 else
765 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100767 // When 'lines' was set while starting up the topframe may have to be
768 // resized.
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000769 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000770
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100771#ifdef FEAT_BEVAL_GUI
Bram Moolenaar30613902019-12-01 22:11:18 +0100772 // Always create the Balloon Evaluation area, but disable it when
773 // 'ballooneval' is off.
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100774 if (balloonEval != NULL)
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200775 {
776# ifdef FEAT_VARTABS
777 vim_free(balloonEval->vts);
778# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100779 vim_free(balloonEval);
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200780 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100781 balloonEvalForTerm = FALSE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000782# ifdef FEAT_GUI_GTK
783 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
784 &general_beval_cb, NULL);
785# else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000786# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000787 {
788 extern Widget textArea;
789 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000790 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000791 }
792# else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100793# ifdef FEAT_GUI_MSWIN
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000794 balloonEval = gui_mch_create_beval_area(NULL, NULL,
795 &general_beval_cb, NULL);
796# endif
797# endif
798# endif
799 if (!p_beval)
800 gui_mch_disable_beval_area(balloonEval);
801#endif
802
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
804 if (!im_xim_isvalid_imactivate())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100805 emsg(_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100807 // When 'cmdheight' was set during startup it may not have taken
808 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000809 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000810 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812 return;
813 }
814
815error2:
816#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100817 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 gui_mch_uninit();
819#endif
820
821error:
822 gui.in_use = FALSE;
823 clip_init(FALSE);
824}
825
826
827 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100828gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829{
Bram Moolenaar30613902019-12-01 22:11:18 +0100830 // don't free the fonts, it leads to a BUS error
831 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 gui.in_use = FALSE;
834 gui_mch_exit(rc);
835}
836
Bram Moolenaar9372a112005-12-06 19:59:18 +0000837#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000839# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840/*
841 * Called when the GUI shell is closed by the user. If there are no changed
842 * files Vim exits, otherwise there will be a dialog to ask the user what to
843 * do.
844 * When this function returns, Vim should NOT exit!
845 */
846 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100847gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848{
849 cmdmod_T save_cmdmod;
850
851 save_cmdmod = cmdmod;
852
Bram Moolenaar30613902019-12-01 22:11:18 +0100853 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 exiting = TRUE;
855# ifdef FEAT_BROWSE
856 cmdmod.browse = TRUE;
857# endif
858# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
859 cmdmod.confirm = TRUE;
860# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100861 // If there are changed buffers, present the user with a dialog if
862 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100863 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 getout(0);
865
866 exiting = FALSE;
867 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100868 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869}
870#endif
871
872/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200873 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 * first font name that works is used. If none is found, use the default
875 * font.
876 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
877 * Return OK when able to set the font. When it failed FAIL is returned and
878 * the fonts are unchanged.
879 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100881gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
883#define FONTLEN 320
884 char_u font_name[FONTLEN];
885 int font_list_empty = FALSE;
886 int ret = FAIL;
887
888 if (!gui.in_use)
889 return FAIL;
890
891 font_name[0] = NUL;
892 if (*font_list == NUL)
893 font_list_empty = TRUE;
894 else
895 {
896#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100897 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 if (fontset)
899 ret = gui_mch_init_font(font_list, TRUE);
900 else
901#endif
902 while (*font_list != NUL)
903 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100904 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
906
Bram Moolenaar30613902019-12-01 22:11:18 +0100907 // Careful!!! The Win32 version of gui_mch_init_font(), when
908 // called with "*" will change p_guifont to the selected font
909 // name, which frees the old value. This makes font_list
910 // invalid. Thus when OK is returned here, font_list must no
911 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 if (gui_mch_init_font(font_name, FALSE) == OK)
913 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100914#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100915 // If it's a Unicode font, try setting 'guifontwide' to a
916 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
918 && strstr((char *)font_name, "10646") != NULL)
919 set_guifontwide(font_name);
920#endif
921 ret = OK;
922 break;
923 }
924 }
925 }
926
927 if (ret != OK
928 && STRCMP(font_list, "*") != 0
929 && (font_list_empty || gui.norm_font == NOFONT))
930 {
931 /*
932 * Couldn't load any font in 'font_list', keep the current font if
933 * there is one. If 'font_list' is empty, or if there is no current
934 * font, tell gui_mch_init_font() to try to find a font we can load.
935 */
936 ret = gui_mch_init_font(NULL, FALSE);
937 }
938
939 if (ret == OK)
940 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200941#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100942 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943# ifdef FEAT_XFONTSET
944 if (gui.fontset != NOFONTSET)
945 gui_mch_set_fontset(gui.fontset);
946 else
947# endif
948 gui_mch_set_font(gui.norm_font);
949#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100950 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 }
952
953 return ret;
954}
955
Bram Moolenaar13505972019-01-24 15:04:48 +0100956#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957/*
958 * Try setting 'guifontwide' to a font twice as wide as "name".
959 */
960 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100961set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962{
963 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100964 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 char_u *wp = NULL;
966 char_u *p;
967 GuiFont font;
968
969 wp = wide_name;
970 for (p = name; *p != NUL; ++p)
971 {
972 *wp++ = *p;
973 if (*p == '-')
974 {
975 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100976 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 {
978 if (p[1] == '-')
979 *wp++ = '*';
980 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100981 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 {
983 ++p;
984 i = getdigits(&p);
985 if (i != 0)
986 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100987 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 sprintf((char *)wp, "%d%s", i * 2, p);
989 font = gui_mch_get_font(wide_name, FALSE);
990 if (font != NOFONT)
991 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000992 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 gui.wide_font = font;
994 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000995 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 }
997 }
998 break;
999 }
1000 }
1001 }
1002}
Bram Moolenaar30613902019-12-01 22:11:18 +01001003#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004
1005/*
1006 * Get the font for 'guifontwide'.
1007 * Return FAIL for an invalid font name.
1008 */
1009 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001010gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011{
1012 GuiFont font = NOFONT;
1013 char_u font_name[FONTLEN];
1014 char_u *p;
1015
Bram Moolenaar30613902019-12-01 22:11:18 +01001016 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1017 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018
1019 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1020 {
1021 for (p = p_guifontwide; *p != NUL; )
1022 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001023 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1025 font = gui_mch_get_font(font_name, FALSE);
1026 if (font != NOFONT)
1027 break;
1028 }
1029 if (font == NOFONT)
1030 return FAIL;
1031 }
1032
1033 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001034#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001035 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 if (font != NOFONT && gui.norm_font != NOFONT
1037 && pango_font_description_equal(font, gui.norm_font))
1038 {
1039 gui.wide_font = NOFONT;
1040 gui_mch_free_font(font);
1041 }
1042 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001045#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001046 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001047#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001048 /*
1049 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1050 * support those fonts for 'guifontwide'.
1051 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001052#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 return OK;
1054}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001056 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001057gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058{
1059 gui.row = row;
1060 gui.col = col;
1061}
1062
1063/*
1064 * gui_check_pos - check if the cursor is on the screen.
1065 */
1066 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001067gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068{
1069 if (gui.row >= screen_Rows)
1070 gui.row = screen_Rows - 1;
1071 if (gui.col >= screen_Columns)
1072 gui.col = screen_Columns - 1;
1073 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1074 gui.cursor_is_valid = FALSE;
1075}
1076
1077/*
1078 * Redraw the cursor if necessary or when forced.
1079 * Careful: The contents of ScreenLines[] must match what is on the screen,
1080 * otherwise this goes wrong. May need to call out_flush() first.
1081 */
1082 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001083gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001084 int force, // when TRUE, update even when not moved
1085 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086{
1087 int cur_width = 0;
1088 int cur_height = 0;
1089 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001090 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001092#ifdef FEAT_TERMINAL
1093 guicolor_T shape_fg = INVALCOLOR;
1094 guicolor_T shape_bg = INVALCOLOR;
1095#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001096 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1097 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 int attr;
1099 attrentry_T *aep = NULL;
1100
Bram Moolenaar30613902019-12-01 22:11:18 +01001101 // Don't update the cursor when halfway busy scrolling or the screen size
1102 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001103 if (!can_update_cursor || screen_Columns != gui.num_cols
1104 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 return;
1106
1107 gui_check_pos();
1108 if (!gui.cursor_is_valid || force
1109 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1110 {
1111 gui_undraw_cursor();
1112 if (gui.row < 0)
1113 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001114#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1116 im_set_position(gui.row, gui.col);
1117#endif
1118 gui.cursor_row = gui.row;
1119 gui.cursor_col = gui.col;
1120
Bram Moolenaar30613902019-12-01 22:11:18 +01001121 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 if (!screen_cleared || ScreenLines == NULL)
1123 return;
1124
Bram Moolenaar30613902019-12-01 22:11:18 +01001125 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 if (clear_selection)
1127 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001128 // Check that the cursor is inside the shell (resizing may have made
1129 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1131 return;
1132
1133 gui.cursor_is_valid = TRUE;
1134
1135 /*
1136 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001137 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001139#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001140 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001141 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001143#endif
1144 shape = &shape_table[get_shape_idx(FALSE)];
1145 if (State & LANGMAP)
1146 id = shape->id_lm;
1147 else
1148 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149
Bram Moolenaar30613902019-12-01 22:11:18 +01001150 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 cfg = INVALCOLOR;
1152 cbg = INVALCOLOR;
1153 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001154 gui_mch_set_blinking(shape->blinkwait,
1155 shape->blinkon,
1156 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001157 if (shape->blinkwait == 0 || shape->blinkon == 0
1158 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001159 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001160#ifdef FEAT_TERMINAL
1161 if (shape_bg != INVALCOLOR)
1162 {
1163 cattr = 0;
1164 cfg = shape_fg;
1165 cbg = shape_bg;
1166 }
1167 else
1168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 if (id > 0)
1170 {
1171 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001172#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 {
1174 static int iid;
1175 guicolor_T fg, bg;
1176
Bram Moolenaarc236c162008-07-13 17:41:49 +00001177 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001178# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001179 preedit_get_status()
1180# else
1181 im_get_status()
1182# endif
1183 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 {
1185 iid = syn_name2id((char_u *)"CursorIM");
1186 if (iid > 0)
1187 {
1188 syn_id2colors(iid, &fg, &bg);
1189 if (bg != INVALCOLOR)
1190 cbg = bg;
1191 if (fg != INVALCOLOR)
1192 cfg = fg;
1193 }
1194 }
1195 }
1196#endif
1197 }
1198
1199 /*
1200 * Get the attributes for the character under the cursor.
1201 * When no cursor color was given, use the character color.
1202 */
1203 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1204 if (attr > HL_ALL)
1205 aep = syn_gui_attr2entry(attr);
1206 if (aep != NULL)
1207 {
1208 attr = aep->ae_attr;
1209 if (cfg == INVALCOLOR)
1210 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1211 : aep->ae_u.gui.fg_color);
1212 if (cbg == INVALCOLOR)
1213 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1214 : aep->ae_u.gui.bg_color);
1215 }
1216 if (cfg == INVALCOLOR)
1217 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1218 if (cbg == INVALCOLOR)
1219 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1220
1221#ifdef FEAT_XIM
1222 if (aep != NULL)
1223 {
1224 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1225 : aep->ae_u.gui.bg_color);
1226 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1227 : aep->ae_u.gui.fg_color);
1228 if (xim_bg_color == INVALCOLOR)
1229 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1230 : gui.back_pixel;
1231 if (xim_fg_color == INVALCOLOR)
1232 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1233 : gui.norm_pixel;
1234 }
1235 else
1236 {
1237 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1238 : gui.back_pixel;
1239 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1240 : gui.norm_pixel;
1241 }
1242#endif
1243
1244 attr &= ~HL_INVERSE;
1245 if (cattr & HL_INVERSE)
1246 {
1247 cc = cbg;
1248 cbg = cfg;
1249 cfg = cc;
1250 }
1251 cattr &= ~HL_INVERSE;
1252
1253 /*
1254 * When we don't have window focus, draw a hollow cursor.
1255 */
1256 if (!gui.in_focus)
1257 {
1258 gui_mch_draw_hollow_cursor(cbg);
1259 return;
1260 }
1261
1262 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001263 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 {
1265 /*
1266 * Draw the text character with the cursor colors. Use the
1267 * character attributes plus the cursor attributes.
1268 */
1269 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001270 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1272 }
1273 else
1274 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001275#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 int col_off = FALSE;
1277#endif
1278 /*
1279 * First draw the partial cursor, then overwrite with the text
1280 * character, using a transparent background.
1281 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001282 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 {
1284 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001285 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 }
1287 else
1288 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001289 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 cur_width = gui.char_width;
1291 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001292 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1293 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001295 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001296 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001298#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (CURSOR_BAR_RIGHT)
1300 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001301 // gui.col points to the left halve of the character but
1302 // the vertical line needs to be on the right halve.
1303 // A double-wide horizontal line is also drawn from the
1304 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 col_off = TRUE;
1306 ++gui.col;
1307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001311#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 if (col_off)
1313 --gui.col;
1314#endif
1315
Bram Moolenaar30613902019-12-01 22:11:18 +01001316#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1318 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1319 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1320 (guicolor_T)0, (guicolor_T)0, 0);
1321#endif
1322 }
1323 gui.highlight_mask = old_hl_mask;
1324 }
1325}
1326
1327#if defined(FEAT_MENU) || defined(PROTO)
1328 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001329gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001331# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 if (gui.menu_is_active && gui.in_use)
1333 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1334# endif
1335}
1336#endif
1337
1338/*
1339 * Position the various GUI components (text area, menu). The vertical
1340 * scrollbars are NOT handled here. See gui_update_scrollbars().
1341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001343gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344{
1345 int text_area_x;
1346 int text_area_y;
1347 int text_area_width;
1348 int text_area_height;
1349
Bram Moolenaar30613902019-12-01 22:11:18 +01001350 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 ++hold_gui_events;
1352
1353 text_area_x = 0;
1354 if (gui.which_scrollbars[SBAR_LEFT])
1355 text_area_x += gui.scrollbar_width;
1356
1357 text_area_y = 0;
1358#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1359 gui.menu_width = total_width;
1360 if (gui.menu_is_active)
1361 text_area_y += gui.menu_height;
1362#endif
1363#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1364 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1365 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1366#endif
1367
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001368# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001369 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001370 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001371 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001372#endif
1373
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA))
1375 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1376 {
1377# ifdef FEAT_GUI_ATHENA
1378 gui_mch_set_toolbar_pos(0, text_area_y,
1379 gui.menu_width, gui.toolbar_height);
1380# endif
1381 text_area_y += gui.toolbar_height;
1382 }
1383#endif
1384
1385 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1386 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1387
1388 gui_mch_set_text_area_pos(text_area_x,
1389 text_area_y,
1390 text_area_width,
1391 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001392#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 + xim_get_status_area_height()
1394#endif
1395 );
1396#ifdef FEAT_MENU
1397 gui_position_menu();
1398#endif
1399 if (gui.which_scrollbars[SBAR_BOTTOM])
1400 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1401 text_area_x,
1402 text_area_y + text_area_height,
1403 text_area_width,
1404 gui.scrollbar_height);
1405 gui.left_sbar_x = 0;
1406 gui.right_sbar_x = text_area_x + text_area_width;
1407
1408 --hold_gui_events;
1409}
1410
Bram Moolenaar02743632005-07-25 20:42:36 +00001411/*
1412 * Get the width of the widgets and decorations to the side of the text area.
1413 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001415gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416{
1417 int base_width;
1418
1419 base_width = 2 * gui.border_offset;
1420 if (gui.which_scrollbars[SBAR_LEFT])
1421 base_width += gui.scrollbar_width;
1422 if (gui.which_scrollbars[SBAR_RIGHT])
1423 base_width += gui.scrollbar_width;
1424 return base_width;
1425}
1426
Bram Moolenaar02743632005-07-25 20:42:36 +00001427/*
1428 * Get the height of the widgets and decorations above and below the text area.
1429 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001431gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432{
1433 int base_height;
1434
1435 base_height = 2 * gui.border_offset;
1436 if (gui.which_scrollbars[SBAR_BOTTOM])
1437 base_height += gui.scrollbar_height;
1438#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001439 // We can't take the sizes properly into account until anything is
1440 // realized. Therefore we recalculate all the values here just before
1441 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442#else
1443# ifdef FEAT_MENU
1444 if (gui.menu_is_active)
1445 base_height += gui.menu_height;
1446# endif
1447# ifdef FEAT_TOOLBAR
1448 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1449# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1450 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1451# else
1452 base_height += gui.toolbar_height;
1453# endif
1454# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001455# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
1456 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001457 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001458 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001459# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460# ifdef FEAT_FOOTER
1461 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1462 base_height += gui.footer_height;
1463# endif
1464# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1465 base_height += gui_mch_text_area_extra_height();
1466# endif
1467#endif
1468 return base_height;
1469}
1470
1471/*
1472 * Should be called after the GUI shell has been resized. Its arguments are
1473 * the new width and height of the shell in pixels.
1474 */
1475 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001476gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477{
1478 static int busy = FALSE;
1479
Bram Moolenaar30613902019-12-01 22:11:18 +01001480 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 return;
1482
1483 /*
1484 * Can't resize the screen while it is being redrawn. Remember the new
1485 * size and handle it later.
1486 */
1487 if (updating_screen || busy)
1488 {
1489 new_pixel_width = pixel_width;
1490 new_pixel_height = pixel_height;
1491 return;
1492 }
1493
1494again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001495 new_pixel_width = 0;
1496 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 busy = TRUE;
1498
Bram Moolenaar30613902019-12-01 22:11:18 +01001499 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 out_flush();
1501
1502 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001503 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504
1505 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001507
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 /*
1509 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1510 * at the last line here (why does it have to be one row too low?).
1511 */
1512 if (State == ASKMORE || State == CONFIRM)
1513 gui.row = gui.num_rows;
1514
Bram Moolenaar30613902019-12-01 22:11:18 +01001515 // Only comparing Rows and Columns may be sufficient, but let's stay on
1516 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1518 || gui.num_rows != Rows || gui.num_cols != Columns)
1519 shell_resized();
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 gui_update_scrollbars(TRUE);
1522 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001523#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 xim_set_status_area();
1525#endif
1526
1527 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001528
Bram Moolenaar30613902019-12-01 22:11:18 +01001529 // We may have been called again while redrawing the screen.
1530 // Need to do it all again with the latest size then. But only if the size
1531 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 if (new_pixel_height)
1533 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001534 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1535 {
1536 new_pixel_width = 0;
1537 new_pixel_height = 0;
1538 }
1539 else
1540 {
1541 pixel_width = new_pixel_width;
1542 pixel_height = new_pixel_height;
1543 goto again;
1544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 }
1546}
1547
1548/*
1549 * Check if gui_resize_shell() must be called.
1550 */
1551 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001552gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001555 // careful: gui_resize_shell() may postpone the resize again if we
1556 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001557 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558}
1559
1560 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001561gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562{
1563 Rows = gui.num_rows;
1564 Columns = gui.num_cols;
1565 return OK;
1566}
1567
1568/*
1569 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001570 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1571 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001572 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1573 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001576gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001577 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001578 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001579 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580{
1581 int base_width;
1582 int base_height;
1583 int width;
1584 int height;
1585 int min_width;
1586 int min_height;
1587 int screen_w;
1588 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001589#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001590 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001591 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001592#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001593 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
1595 if (!gui.shell_created)
1596 return;
1597
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001598#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001599 // If not setting to a user specified size and maximized, calculate the
1600 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001601 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1602 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 {
1604 gui_mch_newfont();
1605 return;
1606 }
1607#endif
1608
1609 base_width = gui_get_base_width();
1610 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001611 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001612 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001613 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001614
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001615 width = Columns * gui.char_width + base_width;
1616 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
1618 if (fit_to_display)
1619 {
1620 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001621 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 {
1623 Columns = (screen_w - base_width) / gui.char_width;
1624 if (Columns < MIN_COLUMNS)
1625 Columns = MIN_COLUMNS;
1626 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001627#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001628 ++did_adjust;
1629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001631 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 {
1633 Rows = (screen_h - base_height) / gui.char_height;
1634 check_shellsize();
1635 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001636#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001637 ++did_adjust;
1638#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001640#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001641 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1642 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001643 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001644 un_maximize = FALSE;
1645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001647 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 gui.num_cols = Columns;
1649 gui.num_rows = Rows;
1650
1651 min_width = base_width + MIN_COLUMNS * gui.char_width;
1652 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001653 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001654
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001655#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001656 if (un_maximize)
1657 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001658 // If the window size is smaller than the screen unmaximize the
1659 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001660 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1661 if ((width + gui.char_width < screen_w
1662 || height + gui.char_height * 2 < screen_h)
1663 && gui_mch_maximized())
1664 gui_mch_unmaximize();
1665 }
1666#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
1668 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001669 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001671 if (fit_to_display && x >= 0 && y >= 0)
1672 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001673 // Some window managers put the Vim window left of/above the screen.
1674 // Only change the position if it wasn't already negative before
1675 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 gui_mch_update();
1677 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1678 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1679 }
1680
1681 gui_position_components(width);
1682 gui_update_scrollbars(TRUE);
1683 gui_reset_scroll_region();
1684}
1685
1686/*
1687 * Called when Rows and/or Columns has changed.
1688 */
1689 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001690gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691{
1692 gui_reset_scroll_region();
1693}
1694
1695/*
1696 * Make scroll region cover whole screen.
1697 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001698 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001699gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700{
1701 gui.scroll_region_top = 0;
1702 gui.scroll_region_bot = gui.num_rows - 1;
1703 gui.scroll_region_left = 0;
1704 gui.scroll_region_right = gui.num_cols - 1;
1705}
1706
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001707 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001708gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709{
Bram Moolenaar30613902019-12-01 22:11:18 +01001710 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001712 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 gui.highlight_mask |= mask;
1714}
1715
1716 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001717gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718{
Bram Moolenaar30613902019-12-01 22:11:18 +01001719 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001721 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 gui.highlight_mask &= ~mask;
1723}
1724
1725/*
1726 * Clear a rectangular region of the screen from text pos (row1, col1) to
1727 * (row2, col2) inclusive.
1728 */
1729 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001730gui_clear_block(
1731 int row1,
1732 int col1,
1733 int row2,
1734 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735{
Bram Moolenaar30613902019-12-01 22:11:18 +01001736 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 clip_may_clear_selection(row1, row2);
1738
1739 gui_mch_clear_block(row1, col1, row2, col2);
1740
Bram Moolenaar30613902019-12-01 22:11:18 +01001741 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1743 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1744 gui.cursor_is_valid = FALSE;
1745}
1746
1747/*
1748 * Write code to update the cursor later. This avoids the need to flush the
1749 * output buffer before calling gui_update_cursor().
1750 */
1751 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001752gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001754 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755}
1756
1757 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001758gui_write(
1759 char_u *s,
1760 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761{
1762 char_u *p;
1763 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001764 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 int force_scrollbar = FALSE;
1766 static win_T *old_curwin = NULL;
1767
Bram Moolenaar30613902019-12-01 22:11:18 +01001768// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769#ifdef DEBUG_GUI_WRITE
1770 {
1771 int i;
1772 char_u *str;
1773
1774 printf("gui_write(%d):\n ", len);
1775 for (i = 0; i < len; i++)
1776 if (s[i] == ESC)
1777 {
1778 if (i != 0)
1779 printf("\n ");
1780 printf("<ESC>");
1781 }
1782 else
1783 {
1784 str = transchar_byte(s[i]);
1785 if (str[0] && str[1])
1786 printf("<%s>", (char *)str);
1787 else
1788 printf("%s", (char *)str);
1789 }
1790 printf("\n");
1791 }
1792#endif
1793 while (len)
1794 {
1795 if (s[0] == ESC && s[1] == '|')
1796 {
1797 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001798 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 {
1800 arg1 = getdigits(&p);
1801 if (p > s + len)
1802 break;
1803 if (*p == ';')
1804 {
1805 ++p;
1806 arg2 = getdigits(&p);
1807 if (p > s + len)
1808 break;
1809 }
1810 }
1811 switch (*p)
1812 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001813 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 clip_scroll_selection(9999);
1815 gui_mch_clear_all();
1816 gui.cursor_is_valid = FALSE;
1817 force_scrollbar = TRUE;
1818 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001819 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 gui_set_cursor(arg1, arg2);
1821 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001822 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 force_cursor = TRUE;
1824 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001825 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 if (arg1 < arg2)
1827 {
1828 gui.scroll_region_top = arg1;
1829 gui.scroll_region_bot = arg2;
1830 }
1831 else
1832 {
1833 gui.scroll_region_top = arg2;
1834 gui.scroll_region_bot = arg1;
1835 }
1836 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001837 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (arg1 < arg2)
1839 {
1840 gui.scroll_region_left = arg1;
1841 gui.scroll_region_right = arg2;
1842 }
1843 else
1844 {
1845 gui.scroll_region_left = arg2;
1846 gui.scroll_region_right = arg1;
1847 }
1848 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001849 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 gui_delete_lines(gui.row, 1);
1851 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001852 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 gui_delete_lines(gui.row, arg1);
1854 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001855 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 gui_insert_lines(gui.row, 1);
1857 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001858 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 gui_insert_lines(gui.row, arg1);
1860 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001861 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 gui_clear_block(gui.row, gui.col, gui.row,
1863 (int)Columns - 1);
1864 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001865 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 gui_start_highlight(arg1);
1867 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001868 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 gui_stop_highlight(arg1);
1870 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001871 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1873 break;
1874 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001875 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 break;
1877 }
1878 len -= (int)(++p - s);
1879 s = p;
1880 }
1881 else if (
1882#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001883 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001885 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886#endif
1887#ifdef FEAT_SIGN_ICONS
1888 && s[0] != SIGN_BYTE
1889# ifdef FEAT_NETBEANS_INTG
1890 && s[0] != MULTISIGN_BYTE
1891# endif
1892#endif
1893 )
1894 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001895 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 {
1897 gui.col = 0;
1898 if (gui.row < gui.scroll_region_bot)
1899 gui.row++;
1900 else
1901 gui_delete_lines(gui.scroll_region_top, 1);
1902 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 {
1905 gui.col = 0;
1906 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001907 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 {
1909 if (gui.col)
1910 --gui.col;
1911 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001912 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 {
1914 ++gui.col;
1915 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001916 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 {
1918 gui_mch_beep();
1919 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001920 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921
Bram Moolenaar30613902019-12-01 22:11:18 +01001922 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 ++s;
1924 }
1925 else
1926 {
1927 p = s;
1928 while (len > 0 && (
1929#ifdef EBCDIC
1930 CtrlChar(*p) == 0
1931#else
1932 *p >= 0x20
1933#endif
1934#ifdef FEAT_SIGN_ICONS
1935 || *p == SIGN_BYTE
1936# ifdef FEAT_NETBEANS_INTG
1937 || *p == MULTISIGN_BYTE
1938# endif
1939#endif
1940 ))
1941 {
1942 len--;
1943 p++;
1944 }
1945 gui_outstr(s, (int)(p - s));
1946 s = p;
1947 }
1948 }
1949
Bram Moolenaar30613902019-12-01 22:11:18 +01001950 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1951 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 if (force_cursor)
1953 gui_update_cursor(TRUE, TRUE);
1954
Bram Moolenaar30613902019-12-01 22:11:18 +01001955 // When switching to another window the dragging must have stopped.
1956 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 if (old_curwin != curwin)
1958 gui.dragged_sb = SBAR_NONE;
1959
Bram Moolenaar30613902019-12-01 22:11:18 +01001960 // Update the scrollbars after clearing the screen or when switched
1961 // to another window.
1962 // Update the horizontal scrollbar always, it's difficult to check all
1963 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 if (force_scrollbar || old_curwin != curwin)
1965 gui_update_scrollbars(force_scrollbar);
1966 else
1967 gui_update_horiz_scrollbar(FALSE);
1968 old_curwin = curwin;
1969
1970 /*
1971 * We need to make sure this is cleared since Athena doesn't tell us when
1972 * he is done dragging. Do the same for GTK.
1973 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00001974#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 gui.dragged_sb = SBAR_NONE;
1976#endif
1977
Bram Moolenaar30613902019-12-01 22:11:18 +01001978 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979}
1980
1981/*
1982 * When ScreenLines[] is invalid, updating the cursor should not be done, it
1983 * produces wrong results. Call gui_dont_update_cursor() before that code and
1984 * gui_can_update_cursor() afterwards.
1985 */
1986 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02001987gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 if (gui.in_use)
1990 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001991 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02001992 if (undraw)
1993 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 can_update_cursor = FALSE;
1995 }
1996}
1997
1998 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001999gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
2001 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002002 // No need to update the cursor right now, there is always more output
2003 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004}
2005
Bram Moolenaara338adc2018-01-31 20:51:47 +01002006/*
2007 * Disable issuing gui_mch_flush().
2008 */
2009 void
2010gui_disable_flush(void)
2011{
2012 ++disable_flush;
2013}
2014
2015/*
2016 * Enable issuing gui_mch_flush().
2017 */
2018 void
2019gui_enable_flush(void)
2020{
2021 --disable_flush;
2022}
2023
2024/*
2025 * Issue gui_mch_flush() if it is not disabled.
2026 */
2027 void
2028gui_may_flush(void)
2029{
2030 if (disable_flush == 0)
2031 gui_mch_flush();
2032}
2033
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002035gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036{
2037 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039
2040 if (len == 0)
2041 return;
2042
2043 if (len < 0)
2044 len = (int)STRLEN(s);
2045
2046 while (len > 0)
2047 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 if (has_mbyte)
2049 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002050 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 cells = 0;
2052 for (this_len = 0; this_len < len; )
2053 {
2054 cells += (*mb_ptr2cells)(s + this_len);
2055 if (gui.col + cells > Columns)
2056 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002057 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 }
2059 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002060 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 }
2062 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 if (gui.col + len > Columns)
2064 this_len = Columns - gui.col;
2065 else
2066 this_len = len;
2067
2068 (void)gui_outstr_nowrap(s, this_len,
2069 0, (guicolor_T)0, (guicolor_T)0, 0);
2070 s += this_len;
2071 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002072 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 if (len > 0 && gui.col < Columns)
2074 (void)gui_outstr_nowrap((char_u *)" ", 1,
2075 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002076 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 if (gui.col >= Columns)
2078 {
2079 gui.col = 0;
2080 gui.row++;
2081 }
2082 }
2083}
2084
2085/*
2086 * Output one character (may be one or two display cells).
2087 * Caller must check for valid "off".
2088 * Returns FAIL or OK, just like gui_outstr_nowrap().
2089 */
2090 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002091gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002092 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002093 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002094 guicolor_T fg, // colors for cursor
2095 guicolor_T bg, // colors for cursor
2096 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 char_u buf[MB_MAXBYTES + 1];
2099
Bram Moolenaar30613902019-12-01 22:11:18 +01002100 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 if (enc_utf8 && ScreenLines[off] == 0)
2102 return OK;
2103
2104 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002105 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2107 flags, fg, bg, back);
2108
2109 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2110 {
2111 buf[0] = ScreenLines[off];
2112 buf[1] = ScreenLines2[off];
2113 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2114 }
2115
Bram Moolenaar30613902019-12-01 22:11:18 +01002116 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002118 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120}
2121
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002122#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123/*
2124 * Output the string at the given screen position. This is used in place
2125 * of gui_screenchar() where possible because Pango needs as much context
2126 * as possible to work nicely. It's a lot faster as well.
2127 */
2128 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002129gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002130 int off, // Offset from start of screen
2131 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002132 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002133 guicolor_T fg, // colors for cursor
2134 guicolor_T bg, // colors for cursor
2135 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136{
2137 char_u *buf;
2138 int outlen = 0;
2139 int i;
2140 int retval;
2141
Bram Moolenaar30613902019-12-01 22:11:18 +01002142 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 return OK;
2144
2145 if (enc_utf8)
2146 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002147 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002149 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150
2151 for (i = off; i < off + len; ++i)
2152 {
2153 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002154 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 if (ScreenLinesUC[i] == 0)
2157 buf[outlen++] = ScreenLines[i];
2158 else
2159 outlen += utfc_char2bytes(i, buf + outlen);
2160 }
2161
Bram Moolenaar30613902019-12-01 22:11:18 +01002162 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2164 vim_free(buf);
2165
2166 return retval;
2167 }
2168 else if (enc_dbcs == DBCS_JPNU)
2169 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002170 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002172 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173
2174 for (i = off; i < off + len; ++i)
2175 {
2176 buf[outlen++] = ScreenLines[i];
2177
Bram Moolenaar30613902019-12-01 22:11:18 +01002178 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 if (ScreenLines[i] == 0x8e)
2180 buf[outlen++] = ScreenLines2[i];
2181 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2182 buf[outlen++] = ScreenLines[++i];
2183 }
2184
Bram Moolenaar30613902019-12-01 22:11:18 +01002185 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2187 vim_free(buf);
2188
2189 return retval;
2190 }
2191 else
2192 {
2193 return gui_outstr_nowrap(&ScreenLines[off], len,
2194 flags, fg, bg, back);
2195 }
2196}
Bram Moolenaar30613902019-12-01 22:11:18 +01002197#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198
2199/*
2200 * Output the given string at the current cursor position. If the string is
2201 * too long to fit on the line, then it is truncated.
2202 * "flags":
2203 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2204 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002205 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 * background.
2207 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2208 * it.
2209 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2210 * FAIL (the caller should start drawing "back" chars back).
2211 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002212 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002213gui_outstr_nowrap(
2214 char_u *s,
2215 int len,
2216 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002217 guicolor_T fg, // colors for cursor
2218 guicolor_T bg, // colors for cursor
2219 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220{
2221 long_u highlight_mask;
2222 long_u hl_mask_todo;
2223 guicolor_T fg_color;
2224 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002225 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002226#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002228 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229# ifdef FEAT_XFONTSET
2230 GuiFontset fontset = NOFONTSET;
2231# endif
2232#endif
2233 attrentry_T *aep = NULL;
2234 int draw_flags;
2235 int col = gui.col;
2236#ifdef FEAT_SIGN_ICONS
2237 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002238 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002239 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240# ifdef FEAT_NETBEANS_INTG
2241 int multi_sign = FALSE;
2242# endif
2243#endif
2244
2245 if (len < 0)
2246 len = (int)STRLEN(s);
2247 if (len == 0)
2248 return OK;
2249
2250#ifdef FEAT_SIGN_ICONS
2251 if (*s == SIGN_BYTE
2252# ifdef FEAT_NETBEANS_INTG
2253 || *s == MULTISIGN_BYTE
2254# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002255 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 {
2257# ifdef FEAT_NETBEANS_INTG
2258 if (*s == MULTISIGN_BYTE)
2259 multi_sign = TRUE;
2260# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002261 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002262 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2263 (curwin->w_p_nu || curwin->w_p_rnu))
2264 {
2265 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2266 s = extra;
2267 }
2268 else
2269 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 if (len == 1 && col > 0)
2271 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002272 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002273 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002274 // right align sign icon in the number column
2275 signcol = col + len - 3;
2276 else
2277 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 draw_sign = TRUE;
2279 highlight_mask = 0;
2280 }
2281 else
2282#endif
2283 if (gui.highlight_mask > HL_ALL)
2284 {
2285 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002286 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 highlight_mask = 0;
2288 else
2289 highlight_mask = aep->ae_attr;
2290 }
2291 else
2292 highlight_mask = gui.highlight_mask;
2293 hl_mask_todo = highlight_mask;
2294
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002295#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002296 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2298 font = aep->ae_u.gui.font;
2299# ifdef FEAT_XFONTSET
2300 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2301 fontset = aep->ae_u.gui.fontset;
2302# endif
2303 else
2304 {
2305# ifdef FEAT_XFONTSET
2306 if (gui.fontset != NOFONTSET)
2307 fontset = gui.fontset;
2308 else
2309# endif
2310 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2311 {
2312 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2313 {
2314 font = gui.boldital_font;
2315 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2316 }
2317 else if (gui.bold_font != NOFONT)
2318 {
2319 font = gui.bold_font;
2320 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2321 }
2322 else
2323 font = gui.norm_font;
2324 }
2325 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2326 {
2327 font = gui.ital_font;
2328 hl_mask_todo &= ~HL_ITALIC;
2329 }
2330 else
2331 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002332
Bram Moolenaardb250522013-06-17 22:43:25 +02002333 /*
2334 * Choose correct wide_font by font. wide_font should be set with font
2335 * at same time in above block. But it will make many "ifdef" nasty
2336 * blocks. So we do it here.
2337 */
2338 if (font == gui.boldital_font && gui.wide_boldital_font)
2339 wide_font = gui.wide_boldital_font;
2340 else if (font == gui.bold_font && gui.wide_bold_font)
2341 wide_font = gui.wide_bold_font;
2342 else if (font == gui.ital_font && gui.wide_ital_font)
2343 wide_font = gui.wide_ital_font;
2344 else if (font == gui.norm_font && gui.wide_font)
2345 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 }
2347# ifdef FEAT_XFONTSET
2348 if (fontset != NOFONTSET)
2349 gui_mch_set_fontset(fontset);
2350 else
2351# endif
2352 gui_mch_set_font(font);
2353#endif
2354
2355 draw_flags = 0;
2356
Bram Moolenaar30613902019-12-01 22:11:18 +01002357 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 bg_color = gui.back_pixel;
2359 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2360 {
2361 draw_flags |= DRAW_CURSOR;
2362 fg_color = fg;
2363 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002364 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 }
2366 else if (aep != NULL)
2367 {
2368 fg_color = aep->ae_u.gui.fg_color;
2369 if (fg_color == INVALCOLOR)
2370 fg_color = gui.norm_pixel;
2371 bg_color = aep->ae_u.gui.bg_color;
2372 if (bg_color == INVALCOLOR)
2373 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002374 sp_color = aep->ae_u.gui.sp_color;
2375 if (sp_color == INVALCOLOR)
2376 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 }
2378 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002379 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002381 sp_color = fg_color;
2382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
2384 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2385 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002386#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 gui_mch_set_colors(bg_color, fg_color);
2388#else
2389 gui_mch_set_fg_color(bg_color);
2390 gui_mch_set_bg_color(fg_color);
2391#endif
2392 }
2393 else
2394 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002395#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 gui_mch_set_colors(fg_color, bg_color);
2397#else
2398 gui_mch_set_fg_color(fg_color);
2399 gui_mch_set_bg_color(bg_color);
2400#endif
2401 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002402 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403
Bram Moolenaar30613902019-12-01 22:11:18 +01002404 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 if (!(flags & GUI_MON_NOCLEAR))
2406 clip_may_clear_selection(gui.row, gui.row);
2407
2408
Bram Moolenaar30613902019-12-01 22:11:18 +01002409 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2411 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412
2413 /*
2414 * When drawing bold or italic characters the spill-over from the left
2415 * neighbor may be destroyed. Let the caller backup to start redrawing
2416 * just after a blank.
2417 */
2418 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2419 return FAIL;
2420
Bram Moolenaare60acc12011-05-10 16:41:25 +02002421#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002422 // If there's no italic font, then fake it.
2423 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 if (hl_mask_todo & HL_ITALIC)
2425 draw_flags |= DRAW_ITALIC;
2426
Bram Moolenaar30613902019-12-01 22:11:18 +01002427 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (hl_mask_todo & HL_UNDERLINE)
2429 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002430
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002432 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002433 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 draw_flags |= DRAW_UNDERL;
2435#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002436 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002437 if (hl_mask_todo & HL_UNDERCURL)
2438 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
Bram Moolenaar30613902019-12-01 22:11:18 +01002440 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002441 if (hl_mask_todo & HL_STRIKETHROUGH)
2442 draw_flags |= DRAW_STRIKE;
2443
Bram Moolenaar30613902019-12-01 22:11:18 +01002444 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 if (flags & GUI_MON_TRS_CURSOR)
2446 draw_flags |= DRAW_TRANSP;
2447
2448 /*
2449 * Draw the text.
2450 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002451#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002452 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2454#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 if (enc_utf8)
2456 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002457 int start; // index of bytes to be drawn
2458 int cells; // cellwidth of bytes to be drawn
2459 int thislen; // length of bytes to be drawn
2460 int cn; // cellwidth of current char
2461 int i; // index of current char
2462 int c; // current char value
2463 int cl; // byte length of current char
2464 int comping; // current char is composing
2465 int scol = col; // screen column
2466 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002467 int prev_wide = FALSE;
2468 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002469# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002470 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002471# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002472 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002473# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474
Bram Moolenaar30613902019-12-01 22:11:18 +01002475 // Break the string at a composing character, it has to be drawn on
2476 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 start = 0;
2478 cells = 0;
2479 for (i = 0; i < len; i += cl)
2480 {
2481 c = utf_ptr2char(s + i);
2482 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002484 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002486 if (!comping || sep_comp)
2487 {
2488 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002489# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002490 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002491# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002492 && wide_font != NOFONT)
2493 curr_wide = TRUE;
2494 else
2495 curr_wide = FALSE;
2496 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002497 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002498 if (cl == 0) // hit end of string
2499 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
Bram Moolenaar45933962013-01-23 17:43:57 +01002501 wide_changed = curr_wide != prev_wide;
2502
Bram Moolenaar30613902019-12-01 22:11:18 +01002503 // Print the string so far if it's the last character or there is
2504 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002505 if (i + cl >= len || (comping && sep_comp && i > start)
2506 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002507# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002509# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002510 // No fontset: At least draw char after wide char at
2511 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002514 )
2515# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 )
2517 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002518 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 thislen = i - start;
2520 else
2521 thislen = i - start + cl;
2522 if (thislen > 0)
2523 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002524 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002525 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2527 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002528 if (prev_wide)
2529 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 start += thislen;
2531 }
2532 scol += cells;
2533 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002534 // Adjust to not draw a character which width is changed
2535 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002536 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002538 scol -= cn;
2539 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 }
2541
Bram Moolenaar13505972019-01-24 15:04:48 +01002542# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002543 // No fontset: draw a space to fill the gap after a wide char
2544 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002546# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002548# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002549 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2551 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002554 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002555 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002557# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002558 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002559 gui_mch_draw_string(gui.row, scol, s + i, cl,
2560 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002561# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002562 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2563 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002564# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 start = i + cl;
2566 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002567 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002569 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 len = scol - col;
2571 }
2572 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 {
2574 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 if (enc_dbcs == DBCS_JPNU)
2576 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002577 // Get the length in display cells, this can be different from the
2578 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002579 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002582#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583
2584 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2585 gui.col = col + len;
2586
Bram Moolenaar30613902019-12-01 22:11:18 +01002587 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 if (flags & GUI_MON_NOCLEAR)
2589 clip_may_redraw_selection(gui.row, col, len);
2590
2591 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2592 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002593 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 if (gui.cursor_row == gui.row
2595 && gui.cursor_col >= col
2596 && gui.cursor_col < col + len)
2597 gui.cursor_is_valid = FALSE;
2598 }
2599
2600#ifdef FEAT_SIGN_ICONS
2601 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002602 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002603 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002604# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002605 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 if (multi_sign)
2607 netbeans_draw_multisign_indicator(gui.row);
2608# endif
2609#endif
2610
2611 return OK;
2612}
2613
2614/*
2615 * Un-draw the cursor. Actually this just redraws the character at the given
2616 * position. The character just before it too, for when it was in bold.
2617 */
2618 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002619gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620{
2621 if (gui.cursor_is_valid)
2622 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 if (gui_redraw_block(gui.cursor_row, gui.cursor_col,
2624 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR)
2625 && gui.cursor_col > 0)
2626 (void)gui_redraw_block(gui.cursor_row, gui.cursor_col - 1,
2627 gui.cursor_row, gui.cursor_col - 1, GUI_MON_NOCLEAR);
Bram Moolenaar54612582019-11-21 17:13:31 +01002628 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2629 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 gui.cursor_is_valid = FALSE;
2631 }
2632}
2633
2634 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002635gui_redraw(
2636 int x,
2637 int y,
2638 int w,
2639 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 int row1, col1, row2, col2;
2642
2643 row1 = Y_2_ROW(y);
2644 col1 = X_2_COL(x);
2645 row2 = Y_2_ROW(y + h - 1);
2646 col2 = X_2_COL(x + w - 1);
2647
2648 (void)gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
2649
2650 /*
2651 * We may need to redraw the cursor, but don't take it upon us to change
2652 * its location after a scroll.
2653 * (maybe be more strict even and test col too?)
2654 * These things may be outside the update/clipping region and reality may
2655 * not reflect Vims internal ideas if these operations are clipped away.
2656 */
2657 if (gui.row == gui.cursor_row)
2658 gui_update_cursor(TRUE, TRUE);
2659}
2660
2661/*
2662 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2663 * from col1 to col2 (inclusive).
2664 * Return TRUE when the character before the first drawn character has
2665 * different attributes (may have to be redrawn too).
2666 */
2667 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002668gui_redraw_block(
2669 int row1,
2670 int col1,
2671 int row2,
2672 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002673 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674{
2675 int old_row, old_col;
2676 long_u old_hl_mask;
2677 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002678 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 int idx, len;
2680 int back, nback;
2681 int retval = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
Bram Moolenaar30613902019-12-01 22:11:18 +01002684 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 if (!screen_cleared || ScreenLines == NULL)
2686 return retval;
2687
Bram Moolenaar30613902019-12-01 22:11:18 +01002688 // Don't try to draw outside the shell!
2689 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 col1 = check_col(col1);
2691 col2 = check_col(col2);
2692 row1 = check_row(row1);
2693 row2 = check_row(row2);
2694
Bram Moolenaar30613902019-12-01 22:11:18 +01002695 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 old_row = gui.row;
2697 old_col = gui.col;
2698 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 orig_col1 = col1;
2700 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
2702 for (gui.row = row1; gui.row <= row2; gui.row++)
2703 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002704 // When only half of a double-wide character is in the block, include
2705 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 col1 = orig_col1;
2707 col2 = orig_col2;
2708 off = LineOffset[gui.row];
2709 if (enc_dbcs != 0)
2710 {
2711 if (col1 > 0)
2712 col1 -= dbcs_screen_head_off(ScreenLines + off,
2713 ScreenLines + off + col1);
2714 col2 += dbcs_screen_tail_off(ScreenLines + off,
2715 ScreenLines + off + col2);
2716 }
2717 else if (enc_utf8)
2718 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002719 if (ScreenLines[off + col1] == 0)
2720 {
2721 if (col1 > 0)
2722 --col1;
2723 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002724 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002725 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002726 // Make this IEMSGN when it no longer breaks Travis CI.
2727 vim_snprintf((char *)IObuff, IOSIZE,
2728 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2729 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002730 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002731 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002732 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002733#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2735 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 gui.col = col1;
2739 off = LineOffset[gui.row] + gui.col;
2740 len = col2 - col1 + 1;
2741
Bram Moolenaar30613902019-12-01 22:11:18 +01002742 // Find how many chars back this highlighting starts, or where a space
2743 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 for (back = 0; back < col1; ++back)
2745 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2746 || ScreenLines[off - 1 - back] == ' ')
2747 break;
2748 retval = (col1 > 0 && ScreenAttrs[off - 1] != 0 && back == 0
2749 && ScreenLines[off - 1] != ' ');
2750
Bram Moolenaar30613902019-12-01 22:11:18 +01002751 // Break it up in strings of characters with the same attributes.
2752 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 while (len > 0)
2754 {
2755 first_attr = ScreenAttrs[off];
2756 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002757#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 if (enc_utf8 && ScreenLinesUC[off] != 0)
2759 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002760 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 nback = gui_screenchar(off, flags,
2762 (guicolor_T)0, (guicolor_T)0, back);
2763 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2764 idx = 2;
2765 else
2766 idx = 1;
2767 }
2768 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2769 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002770 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 nback = gui_screenchar(off, flags,
2772 (guicolor_T)0, (guicolor_T)0, back);
2773 idx = 1;
2774 }
2775 else
2776#endif
2777 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002778#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 for (idx = 0; idx < len; ++idx)
2780 {
2781 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002782 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 if (ScreenAttrs[off + idx] != first_attr)
2784 break;
2785 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002786 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 nback = gui_screenstr(off, idx, flags,
2788 (guicolor_T)0, (guicolor_T)0, back);
2789#else
2790 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2791 idx++)
2792 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002793 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2795 break;
2796 if (enc_dbcs == DBCS_JPNU)
2797 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002798 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 if (ScreenLines[off + idx] == 0x8e)
2800 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002801 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002803 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 }
2806 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2807 (guicolor_T)0, (guicolor_T)0, back);
2808#endif
2809 }
2810 if (nback == FAIL)
2811 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002812 // Must back up to start drawing where a bold or italic word
2813 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 off -= back;
2815 len += back;
2816 gui.col -= back;
2817 }
2818 else
2819 {
2820 off += idx;
2821 len -= idx;
2822 }
2823 back = 0;
2824 }
2825 }
2826
Bram Moolenaar30613902019-12-01 22:11:18 +01002827 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 gui.row = old_row;
2829 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002830 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831
2832 return retval;
2833}
2834
2835 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002836gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837{
2838 if (count <= 0)
2839 return;
2840
2841 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002842 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 gui_clear_block(row, gui.scroll_region_left,
2844 gui.scroll_region_bot, gui.scroll_region_right);
2845 else
2846 {
2847 gui_mch_delete_lines(row, count);
2848
Bram Moolenaar30613902019-12-01 22:11:18 +01002849 // If the cursor was in the deleted lines it's now gone. If the
2850 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 if (gui.cursor_row >= row
2852 && gui.cursor_col >= gui.scroll_region_left
2853 && gui.cursor_col <= gui.scroll_region_right)
2854 {
2855 if (gui.cursor_row < row + count)
2856 gui.cursor_is_valid = FALSE;
2857 else if (gui.cursor_row <= gui.scroll_region_bot)
2858 gui.cursor_row -= count;
2859 }
2860 }
2861}
2862
2863 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002864gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865{
2866 if (count <= 0)
2867 return;
2868
2869 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002870 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 gui_clear_block(row, gui.scroll_region_left,
2872 gui.scroll_region_bot, gui.scroll_region_right);
2873 else
2874 {
2875 gui_mch_insert_lines(row, count);
2876
2877 if (gui.cursor_row >= gui.row
2878 && gui.cursor_col >= gui.scroll_region_left
2879 && gui.cursor_col <= gui.scroll_region_right)
2880 {
2881 if (gui.cursor_row <= gui.scroll_region_bot - count)
2882 gui.cursor_row += count;
2883 else if (gui.cursor_row <= gui.scroll_region_bot)
2884 gui.cursor_is_valid = FALSE;
2885 }
2886 }
2887}
2888
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002889#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002890/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002891 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2892 */
2893 static int
2894gui_wait_for_chars_3(
2895 long wtime,
2896 int *interrupted UNUSED,
2897 int ignore_input UNUSED)
2898{
2899 return gui_mch_wait_for_chars(wtime);
2900}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002901#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002902
2903/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002904 * Returns OK if a character was found to be available within the given time,
2905 * or FAIL otherwise.
2906 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002907 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002908gui_wait_for_chars_or_timer(
2909 long wtime,
2910 int *interrupted UNUSED,
2911 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002912{
2913#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002914 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2915 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002916#else
2917 return gui_mch_wait_for_chars(wtime);
2918#endif
2919}
2920
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921/*
2922 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002923 * "wtime" == -1 Wait forever.
2924 * "wtime" == 0 Don't wait.
2925 * "wtime" > 0 Wait wtime milliseconds for a character.
2926 *
2927 * Returns the number of characters read or zero when timed out or interrupted.
2928 * "buf" may be NULL, in which case a non-zero number is returned if characters
2929 * are available.
2930 */
2931 static int
2932gui_wait_for_chars_buf(
2933 char_u *buf,
2934 int maxlen,
2935 long wtime, // don't use "time", MIPS cannot handle it
2936 int tb_change_cnt)
2937{
2938 int retval;
2939
2940#ifdef FEAT_MENU
2941 // If we're going to wait a bit, update the menus and mouse shape for the
2942 // current State.
2943 if (wtime != 0)
2944 gui_update_menus(0);
2945#endif
2946
2947 gui_mch_update();
2948 if (input_available()) // Got char, return immediately
2949 {
2950 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2951 return read_from_input_buf(buf, (long)maxlen);
2952 return 0;
2953 }
2954 if (wtime == 0) // Don't wait for char
2955 return FAIL;
2956
2957 // Before waiting, flush any output to the screen.
2958 gui_mch_flush();
2959
2960 // Blink while waiting for a character.
2961 gui_mch_start_blink();
2962
2963 // Common function to loop until "wtime" is met, while handling timers and
2964 // other callbacks.
2965 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2966 gui_wait_for_chars_or_timer, NULL);
2967
2968 gui_mch_stop_blink(TRUE);
2969
2970 return retval;
2971}
2972
2973/*
2974 * Wait for a character from the keyboard without actually reading it.
2975 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 * wtime == -1 Wait forever.
2977 * wtime == 0 Don't wait.
2978 * wtime > 0 Wait wtime milliseconds for a character.
2979 * Returns OK if a character was found to be available within the given time,
2980 * or FAIL otherwise.
2981 */
2982 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002983gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002985 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986}
2987
2988/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002989 * Equivalent of mch_inchar() for the GUI.
2990 */
2991 int
2992gui_inchar(
2993 char_u *buf,
2994 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01002995 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002996 int tb_change_cnt)
2997{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002998 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002999}
3000
3001/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003002 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 */
3004 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003005fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006{
3007 p[0] = (char_u)(col / 128 + ' ' + 1);
3008 p[1] = (char_u)(col % 128 + ' ' + 1);
3009 p[2] = (char_u)(row / 128 + ' ' + 1);
3010 p[3] = (char_u)(row % 128 + ' ' + 1);
3011}
3012
3013/*
3014 * Generic mouse support function. Add a mouse event to the input buffer with
3015 * the given properties.
3016 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3017 * MOUSE_X1, MOUSE_X2
3018 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003019 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3020 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 * x, y --- Coordinates of mouse in pixels.
3022 * repeated_click --- TRUE if this click comes only a short time after a
3023 * previous click.
3024 * modifiers --- Bit field which may be any of the following modifiers
3025 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3026 * This function will ignore drag events where the mouse has not moved to a new
3027 * character.
3028 */
3029 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003030gui_send_mouse_event(
3031 int button,
3032 int x,
3033 int y,
3034 int repeated_click,
3035 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
3037 static int prev_row = 0, prev_col = 0;
3038 static int prev_button = -1;
3039 static int num_clicks = 1;
3040 char_u string[10];
3041 enum key_extra button_char;
3042 int row, col;
3043#ifdef FEAT_CLIPBOARD
3044 int checkfor;
3045 int did_clip = FALSE;
3046#endif
3047
3048 /*
3049 * Scrolling may happen at any time, also while a selection is present.
3050 */
3051 switch (button)
3052 {
3053 case MOUSE_X1:
3054 button_char = KE_X1MOUSE;
3055 goto button_set;
3056 case MOUSE_X2:
3057 button_char = KE_X2MOUSE;
3058 goto button_set;
3059 case MOUSE_4:
3060 button_char = KE_MOUSEDOWN;
3061 goto button_set;
3062 case MOUSE_5:
3063 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003064 goto button_set;
3065 case MOUSE_6:
3066 button_char = KE_MOUSELEFT;
3067 goto button_set;
3068 case MOUSE_7:
3069 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070button_set:
3071 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003072 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 if (hold_gui_events)
3074 return;
3075
3076 string[3] = CSI;
3077 string[4] = KS_EXTRA;
3078 string[5] = (int)button_char;
3079
Bram Moolenaar30613902019-12-01 22:11:18 +01003080 // Pass the pointer coordinates of the scroll event so that we
3081 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 row = gui_xy2colrow(x, y, &col);
3083 string[6] = (char_u)(col / 128 + ' ' + 1);
3084 string[7] = (char_u)(col % 128 + ' ' + 1);
3085 string[8] = (char_u)(row / 128 + ' ' + 1);
3086 string[9] = (char_u)(row % 128 + ' ' + 1);
3087
3088 if (modifiers == 0)
3089 add_to_input_buf(string + 3, 7);
3090 else
3091 {
3092 string[0] = CSI;
3093 string[1] = KS_MODIFIER;
3094 string[2] = 0;
3095 if (modifiers & MOUSE_SHIFT)
3096 string[2] |= MOD_MASK_SHIFT;
3097 if (modifiers & MOUSE_CTRL)
3098 string[2] |= MOD_MASK_CTRL;
3099 if (modifiers & MOUSE_ALT)
3100 string[2] |= MOD_MASK_ALT;
3101 add_to_input_buf(string, 10);
3102 }
3103 return;
3104 }
3105 }
3106
3107#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003108 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 if (clip_star.state == SELECT_IN_PROGRESS)
3110 {
3111 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003112
3113 // A release event may still need to be sent if the position is equal.
3114 row = gui_xy2colrow(x, y, &col);
3115 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3116 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118
Bram Moolenaar30613902019-12-01 22:11:18 +01003119 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 switch (get_real_state())
3121 {
3122 case NORMAL_BUSY:
3123 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003124# ifdef FEAT_TERMINAL
3125 case TERMINAL:
3126# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 case NORMAL: checkfor = MOUSE_NORMAL; break;
3128 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003129 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 case REPLACE:
3131 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 case VREPLACE:
3133 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 case INSERT:
3135 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3136 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003137 case HITRETURN: // At the more- and hit-enter prompt pass the
3138 // mouse event for a click on or below the
3139 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 if (Y_2_ROW(y) >= msg_row)
3141 checkfor = MOUSE_NORMAL;
3142 else
3143 checkfor = MOUSE_RETURN;
3144 break;
3145
3146 /*
3147 * On the command line, use the clipboard selection on all lines
3148 * but the command line. But not when pasting.
3149 */
3150 case CMDLINE:
3151 case CMDLINE+LANGMAP:
3152 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3153 checkfor = MOUSE_NONE;
3154 else
3155 checkfor = MOUSE_COMMAND;
3156 break;
3157
3158 default:
3159 checkfor = MOUSE_NONE;
3160 break;
3161 };
3162
3163 /*
3164 * Allow clipboard selection of text on the command line in "normal"
3165 * modes. Don't do this when dragging the status line, or extending a
3166 * Visual selection.
3167 */
3168 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003169 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 && button != MOUSE_DRAG
3171# ifdef FEAT_MOUSESHAPE
3172 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174# endif
3175 )
3176 checkfor = MOUSE_NONE;
3177
3178 /*
3179 * Use modeless selection when holding CTRL and SHIFT pressed.
3180 */
3181 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3182 checkfor = MOUSE_NONEF;
3183
3184 /*
3185 * In Ex mode, always use modeless selection.
3186 */
3187 if (exmode_active)
3188 checkfor = MOUSE_NONE;
3189
3190 /*
3191 * If the mouse settings say to not use the mouse, use the modeless
3192 * selection. But if Visual is active, assume that only the Visual area
3193 * will be selected.
3194 * Exception: On the command line, both the selection is used and a mouse
3195 * key is send.
3196 */
3197 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3198 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003199 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3201 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202
3203 /*
3204 * When 'mousemodel' is "popup", shift-left is translated to right.
3205 * But not when also using Ctrl.
3206 */
3207 if (mouse_model_popup() && button == MOUSE_LEFT
3208 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3209 {
3210 button = MOUSE_RIGHT;
3211 modifiers &= ~ MOUSE_SHIFT;
3212 }
3213
Bram Moolenaar30613902019-12-01 22:11:18 +01003214 // If the selection is done, allow the right button to extend it.
3215 // If the selection is cleared, allow the right button to start it
3216 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 if (button == MOUSE_RIGHT)
3218 {
3219 if (clip_star.state == SELECT_CLEARED)
3220 {
3221 if (State & CMDLINE)
3222 {
3223 col = msg_col;
3224 row = msg_row;
3225 }
3226 else
3227 {
3228 col = curwin->w_wcol;
3229 row = curwin->w_wrow + W_WINROW(curwin);
3230 }
3231 clip_start_selection(col, row, FALSE);
3232 }
3233 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3234 repeated_click);
3235 did_clip = TRUE;
3236 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003237 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003238 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 {
3240 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3241 did_clip = TRUE;
3242 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243
Bram Moolenaar30613902019-12-01 22:11:18 +01003244 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 if (button != MOUSE_MIDDLE)
3246 {
3247 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3248 return;
3249 if (checkfor != MOUSE_COMMAND)
3250 button = MOUSE_LEFT;
3251 }
3252 repeated_click = FALSE;
3253 }
3254
3255 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003256 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257#endif
3258
Bram Moolenaar30613902019-12-01 22:11:18 +01003259 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 if (hold_gui_events)
3261 return;
3262
3263 row = gui_xy2colrow(x, y, &col);
3264
3265 /*
3266 * If we are dragging and the mouse hasn't moved far enough to be on a
3267 * different character, then don't send an event to vim.
3268 */
3269 if (button == MOUSE_DRAG)
3270 {
3271 if (row == prev_row && col == prev_col)
3272 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003273 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 if (y < 0)
3275 row = -1;
3276 }
3277
3278 /*
3279 * If topline has changed (window scrolled) since the last click, reset
3280 * repeated_click, because we don't want starting Visual mode when
3281 * clicking on a different character in the text.
3282 */
3283 if (curwin->w_topline != gui_prev_topline
3284#ifdef FEAT_DIFF
3285 || curwin->w_topfill != gui_prev_topfill
3286#endif
3287 )
3288 repeated_click = FALSE;
3289
Bram Moolenaar30613902019-12-01 22:11:18 +01003290 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 string[1] = KS_MOUSE;
3292 string[2] = KE_FILLER;
3293 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3294 {
3295 if (repeated_click)
3296 {
3297 /*
3298 * Handle multiple clicks. They only count if the mouse is still
3299 * pointing at the same character.
3300 */
3301 if (button != prev_button || row != prev_row || col != prev_col)
3302 num_clicks = 1;
3303 else if (++num_clicks > 4)
3304 num_clicks = 1;
3305 }
3306 else
3307 num_clicks = 1;
3308 prev_button = button;
3309 gui_prev_topline = curwin->w_topline;
3310#ifdef FEAT_DIFF
3311 gui_prev_topfill = curwin->w_topfill;
3312#endif
3313
3314 string[3] = (char_u)(button | 0x20);
3315 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3316 }
3317 else
3318 string[3] = (char_u)button;
3319
3320 string[3] |= modifiers;
3321 fill_mouse_coord(string + 4, col, row);
3322 add_to_input_buf(string, 8);
3323
3324 if (row < 0)
3325 prev_row = 0;
3326 else
3327 prev_row = row;
3328 prev_col = col;
3329
3330 /*
3331 * We need to make sure this is cleared since Athena doesn't tell us when
3332 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3333 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003334#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 gui.dragged_sb = SBAR_NONE;
3336#endif
3337}
3338
3339/*
3340 * Convert x and y coordinate to column and row in text window.
3341 * Corrects for multi-byte character.
3342 * returns column in "*colp" and row as return value;
3343 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003344 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003345gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346{
3347 int col = check_col(X_2_COL(x));
3348 int row = check_row(Y_2_ROW(y));
3349
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 return row;
3352}
3353
3354#if defined(FEAT_MENU) || defined(PROTO)
3355/*
3356 * Callback function for when a menu entry has been selected.
3357 */
3358 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003359gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003361 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362
Bram Moolenaar30613902019-12-01 22:11:18 +01003363 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 if (hold_gui_events)
3365 return;
3366
3367 bytes[0] = CSI;
3368 bytes[1] = KS_MENU;
3369 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003370 add_to_input_buf(bytes, 3);
3371 add_long_to_buf((long_u)menu, bytes);
3372 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373}
3374#endif
3375
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003376static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003377
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378/*
3379 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003380 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 * in p_go.
3382 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003384gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003386#ifdef FEAT_GUI_DARKTHEME
3387 static int prev_dark_theme = -1;
3388 int using_dark_theme = FALSE;
3389#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390#ifdef FEAT_MENU
3391 static int prev_menu_is_active = -1;
3392#endif
3393#ifdef FEAT_TOOLBAR
3394 static int prev_toolbar = -1;
3395 int using_toolbar = FALSE;
3396#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003397#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003398 int using_tabline;
3399#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400#ifdef FEAT_FOOTER
3401 static int prev_footer = -1;
3402 int using_footer = FALSE;
3403#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003404#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 static int prev_tearoff = -1;
3406 int using_tearoff = FALSE;
3407#endif
3408
3409 char_u *p;
3410 int i;
3411#ifdef FEAT_MENU
3412 int grey_old, grey_new;
3413 char_u *temp;
3414#endif
3415 win_T *wp;
3416 int need_set_size;
3417 int fix_size;
3418
3419#ifdef FEAT_MENU
3420 if (oldval != NULL && gui.in_use)
3421 {
3422 /*
3423 * Check if the menu's go from grey to non-grey or vise versa.
3424 */
3425 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3426 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3427 if (grey_old != grey_new)
3428 {
3429 temp = p_go;
3430 p_go = oldval;
3431 gui_update_menus(MENU_ALL_MODES);
3432 p_go = temp;
3433 }
3434 }
3435 gui.menu_is_active = FALSE;
3436#endif
3437
3438 for (i = 0; i < 3; i++)
3439 gui.which_scrollbars[i] = FALSE;
3440 for (p = p_go; *p; p++)
3441 switch (*p)
3442 {
3443 case GO_LEFT:
3444 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3445 break;
3446 case GO_RIGHT:
3447 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3448 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 case GO_VLEFT:
3450 if (win_hasvertsplit())
3451 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3452 break;
3453 case GO_VRIGHT:
3454 if (win_hasvertsplit())
3455 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3456 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 case GO_BOT:
3458 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3459 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003460#ifdef FEAT_GUI_DARKTHEME
3461 case GO_DARKTHEME:
3462 using_dark_theme = TRUE;
3463 break;
3464#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465#ifdef FEAT_MENU
3466 case GO_MENUS:
3467 gui.menu_is_active = TRUE;
3468 break;
3469#endif
3470 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003471 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 break;
3473#ifdef FEAT_TOOLBAR
3474 case GO_TOOLBAR:
3475 using_toolbar = TRUE;
3476 break;
3477#endif
3478#ifdef FEAT_FOOTER
3479 case GO_FOOTER:
3480 using_footer = TRUE;
3481 break;
3482#endif
3483 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003484#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 using_tearoff = TRUE;
3486#endif
3487 break;
3488 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003489 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 break;
3491 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003492
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 if (gui.in_use)
3494 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003495 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003497
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003498#ifdef FEAT_GUI_DARKTHEME
3499 if (using_dark_theme != prev_dark_theme)
3500 {
3501 gui_mch_set_dark_theme(using_dark_theme);
3502 prev_dark_theme = using_dark_theme;
3503 }
3504#endif
3505
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003506#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003507 // Update the GUI tab line, it may appear or disappear. This may
3508 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003509 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003510 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003511 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003512 // We don't want a resize event change "Rows" here, save and
3513 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003514 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003515 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003516 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003517 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003518 if (using_tabline)
3519 fix_size = TRUE;
3520 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003521 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003522 }
3523#endif
3524
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 for (i = 0; i < 3; i++)
3526 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003527 // The scrollbar needs to be updated when it is shown/unshown and
3528 // when switching tab pages. But the size only changes when it's
3529 // shown/unshown. Thus we need two places to remember whether a
3530 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003531 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003532 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003533 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 {
3535 if (i == SBAR_BOTTOM)
3536 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3537 gui.which_scrollbars[i]);
3538 else
3539 {
3540 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003543 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3544 {
3545 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003546 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003547 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003548 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003549 if (gui.which_scrollbars[i])
3550 fix_size = TRUE;
3551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003553 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003554 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 }
3556
3557#ifdef FEAT_MENU
3558 if (gui.menu_is_active != prev_menu_is_active)
3559 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003560 // We don't want a resize event change "Rows" here, save and
3561 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 i = Rows;
3563 gui_mch_enable_menu(gui.menu_is_active);
3564 Rows = i;
3565 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003566 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 if (gui.menu_is_active)
3568 fix_size = TRUE;
3569 }
3570#endif
3571
3572#ifdef FEAT_TOOLBAR
3573 if (using_toolbar != prev_toolbar)
3574 {
3575 gui_mch_show_toolbar(using_toolbar);
3576 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003577 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 if (using_toolbar)
3579 fix_size = TRUE;
3580 }
3581#endif
3582#ifdef FEAT_FOOTER
3583 if (using_footer != prev_footer)
3584 {
3585 gui_mch_enable_footer(using_footer);
3586 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003587 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 if (using_footer)
3589 fix_size = TRUE;
3590 }
3591#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003592#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 if (using_tearoff != prev_tearoff)
3594 {
3595 gui_mch_toggle_tearoffs(using_tearoff);
3596 prev_tearoff = using_tearoff;
3597 }
3598#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003599 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003600 {
3601#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003602 long prev_Columns = Columns;
3603 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003604#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003605 // Adjust the size of the window to make the text area keep the
3606 // same size and to avoid that part of our window is off-screen
3607 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003608 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003609
3610#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003611 // GTK has the annoying habit of sending us resize events when
3612 // changing the window size ourselves. This mostly happens when
3613 // waiting for a character to arrive, quite unpredictably, and may
3614 // change Columns and Rows when we don't want it. Wait for a
3615 // character here to avoid this effect.
3616 // If you remove this, please test this command for resizing
3617 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3618 // Don't do this while starting up though.
3619 // Don't change Rows when adding menu/toolbar/tabline.
3620 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003621 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003622 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003623 if ((need_set_size & RESIZE_VERT) == 0)
3624 Rows = prev_Rows;
3625 if ((need_set_size & RESIZE_HOR) == 0)
3626 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003627#endif
3628 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003629 // When the console tabline appears or disappears the window positions
3630 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003631 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003632 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 }
3634}
3635
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003636#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3637/*
3638 * Return TRUE if the GUI is taking care of the tabline.
3639 * It may still be hidden if 'showtabline' is zero.
3640 */
3641 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003642gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003643{
3644 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3645}
3646
3647/*
3648 * Return TRUE if the GUI is showing the tabline.
3649 * This uses 'showtabline'.
3650 */
3651 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003652gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003653{
3654 if (!gui_use_tabline()
3655 || p_stal == 0
3656 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3657 return FALSE;
3658 return TRUE;
3659}
3660
3661/*
3662 * Update the tabline.
3663 * This may display/undisplay the tabline and update the labels.
3664 */
3665 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003666gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003667{
3668 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003669 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003670
3671 if (!gui.starting && starting == 0)
3672 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003673 // Updating the tabline uses direct GUI commands, flush
3674 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003675 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003676
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003677 if (!showit != !shown)
3678 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003679 if (showit != 0)
3680 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003681
Bram Moolenaar30613902019-12-01 22:11:18 +01003682 // When the tabs change from hidden to shown or from shown to
3683 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003684 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003685 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003686 }
3687}
3688
3689/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003690 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691 */
3692 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003693get_tabline_label(
3694 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003695 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003696{
3697 int modified = FALSE;
3698 char_u buf[40];
3699 int wincount;
3700 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003701 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003702
Bram Moolenaar30613902019-12-01 22:11:18 +01003703 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003704 opt = (tooltip ? &p_gtt : &p_gtl);
3705 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003706 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003707 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003708 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003709 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003710 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003711 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3712 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003713
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003714 printer_page_num = tabpage_index(tp);
3715# ifdef FEAT_EVAL
3716 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003717 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003718# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003719 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003720 curtab->tp_firstwin = firstwin;
3721 curtab->tp_lastwin = lastwin;
3722 curtab->tp_curwin = curwin;
3723 save_curtab = curtab;
3724 curtab = tp;
3725 topframe = curtab->tp_topframe;
3726 firstwin = curtab->tp_firstwin;
3727 lastwin = curtab->tp_lastwin;
3728 curwin = curtab->tp_curwin;
3729 curbuf = curwin->w_buffer;
3730
Bram Moolenaar30613902019-12-01 22:11:18 +01003731 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003732 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003733 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003734 STRCPY(NameBuff, res);
3735
Bram Moolenaar30613902019-12-01 22:11:18 +01003736 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003737 curtab = save_curtab;
3738 topframe = curtab->tp_topframe;
3739 firstwin = curtab->tp_firstwin;
3740 lastwin = curtab->tp_lastwin;
3741 curwin = curtab->tp_curwin;
3742 curbuf = curwin->w_buffer;
3743
Bram Moolenaar53989552019-12-23 22:59:18 +01003744 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003745 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003746 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003747 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003748
Bram Moolenaar30613902019-12-01 22:11:18 +01003749 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3750 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003751 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003752 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003753 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003754 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003755 if (!tooltip)
3756 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003757
3758 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3759 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3760 if (bufIsChanged(wp->w_buffer))
3761 modified = TRUE;
3762 if (modified || wincount > 1)
3763 {
3764 if (wincount > 1)
3765 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3766 else
3767 buf[0] = NUL;
3768 if (modified)
3769 STRCAT(buf, "+");
3770 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003771 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003772 mch_memmove(NameBuff, buf, STRLEN(buf));
3773 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003774 }
3775}
3776
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003777/*
3778 * Send the event for clicking to select tab page "nr".
3779 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003780 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003781 */
3782 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003783send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003784{
3785 char_u string[3];
3786
3787 if (nr == tabpage_index(curtab))
3788 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003789
Bram Moolenaar30613902019-12-01 22:11:18 +01003790 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003791 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003792# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003793 || cmdwin_type != 0
3794# endif
3795 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003796 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003797 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003798 gui_mch_set_curtab(tabpage_index(curtab));
3799 return FALSE;
3800 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003801
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003802 string[0] = CSI;
3803 string[1] = KS_TABLINE;
3804 string[2] = KE_FILLER;
3805 add_to_input_buf(string, 3);
3806 string[0] = nr;
3807 add_to_input_buf_csi(string, 1);
3808 return TRUE;
3809}
3810
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003811/*
3812 * Send a tabline menu event
3813 */
3814 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003815send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003816{
3817 char_u string[3];
3818
Bram Moolenaar29547192018-12-11 20:39:19 +01003819 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003820 if (hold_gui_events)
3821 return;
3822
Bram Moolenaar29547192018-12-11 20:39:19 +01003823 // Cannot close the last tabpage.
3824 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3825 return;
3826
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003827 string[0] = CSI;
3828 string[1] = KS_TABMENU;
3829 string[2] = KE_FILLER;
3830 add_to_input_buf(string, 3);
3831 string[0] = tabidx;
3832 string[1] = (char_u)(long)event;
3833 add_to_input_buf_csi(string, 2);
3834}
3835
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837
3838/*
3839 * Scrollbar stuff:
3840 */
3841
Bram Moolenaare45828b2006-02-15 22:12:56 +00003842/*
3843 * Remove all scrollbars. Used before switching to another tab page.
3844 */
3845 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003846gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003847{
3848 int i;
3849 win_T *wp;
3850
3851 for (i = 0; i < 3; i++)
3852 {
3853 if (i == SBAR_BOTTOM)
3854 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3855 else
3856 {
3857 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003858 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003859 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003860 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003861 }
3862}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003863
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003865gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866{
3867 static int sbar_ident = 0;
3868
Bram Moolenaar30613902019-12-01 22:11:18 +01003869 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 sb->wp = wp;
3871 sb->type = type;
3872 sb->value = 0;
3873#ifdef FEAT_GUI_ATHENA
3874 sb->pixval = 0;
3875#endif
3876 sb->size = 1;
3877 sb->max = 1;
3878 sb->top = 0;
3879 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 sb->status_height = 0;
3882 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3883}
3884
3885/*
3886 * Find the scrollbar with the given index.
3887 */
3888 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003889gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
3891 win_T *wp;
3892
3893 if (gui.bottom_sbar.ident == ident)
3894 return &gui.bottom_sbar;
3895 FOR_ALL_WINDOWS(wp)
3896 {
3897 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3898 return &wp->w_scrollbars[SBAR_LEFT];
3899 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3900 return &wp->w_scrollbars[SBAR_RIGHT];
3901 }
3902 return NULL;
3903}
3904
3905/*
3906 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3907 *
3908 * For Win32, Macintosh and GTK+ 2:
3909 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3910 * you stop dragging the scrollbar. We get here each time the scrollbar is
3911 * dragged another pixel, but as far as the rest of vim goes, it thinks
3912 * we're just hanging in the call to DispatchMessage() in
3913 * process_message(). The DispatchMessage() call that hangs was passed a
3914 * mouse button click event in the scrollbar window. -- webb.
3915 *
3916 * Solution: Do the scrolling right here. But only when allowed.
3917 * Ignore the scrollbars while executing an external command or when there
3918 * are still characters to be processed.
3919 */
3920 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003921gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 int sb_num;
3925#ifdef USE_ON_FLY_SCROLL
3926 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928# ifdef FEAT_DIFF
3929 int old_topfill = curwin->w_topfill;
3930# endif
3931#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003932 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 int byte_count;
3934#endif
3935
3936 if (sb == NULL)
3937 return;
3938
Bram Moolenaar30613902019-12-01 22:11:18 +01003939 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 if (hold_gui_events)
3941 return;
3942
3943#ifdef FEAT_CMDWIN
3944 if (cmdwin_type != 0 && sb->wp != curwin)
3945 return;
3946#endif
3947
3948 if (still_dragging)
3949 {
3950 if (sb->wp == NULL)
3951 gui.dragged_sb = SBAR_BOTTOM;
3952 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3953 gui.dragged_sb = SBAR_LEFT;
3954 else
3955 gui.dragged_sb = SBAR_RIGHT;
3956 gui.dragged_wp = sb->wp;
3957 }
3958 else
3959 {
3960 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003961#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003962 // Keep the "dragged_wp" value until after the scrolling, for when the
3963 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 gui.dragged_wp = NULL;
3965#endif
3966 }
3967
Bram Moolenaar30613902019-12-01 22:11:18 +01003968 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 if (sb->wp != NULL)
3970 sb = &sb->wp->w_scrollbars[0];
3971
3972 /*
3973 * Check validity of value
3974 */
3975 if (value < 0)
3976 value = 0;
3977#ifdef SCROLL_PAST_END
3978 else if (value > sb->max)
3979 value = sb->max;
3980#else
3981 if (value > sb->max - sb->size + 1)
3982 value = sb->max - sb->size + 1;
3983#endif
3984
3985 sb->value = value;
3986
3987#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01003988 // When not allowed to do the scrolling right now, return.
3989 // This also checked input_available(), but that causes the first click in
3990 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00003991 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 return;
3993#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003994 // Disallow scrolling the current window when the completion popup menu is
3995 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00003996 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
3997 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998
3999#ifdef FEAT_RIGHTLEFT
4000 if (sb->wp == NULL && curwin->w_p_rl)
4001 {
4002 value = sb->max + 1 - sb->size - value;
4003 if (value < 0)
4004 value = 0;
4005 }
4006#endif
4007
Bram Moolenaar30613902019-12-01 22:11:18 +01004008 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 {
4010 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4012 sb_num++;
4013 if (wp == NULL)
4014 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015
4016#ifdef USE_ON_FLY_SCROLL
4017 current_scrollbar = sb_num;
4018 scrollbar_value = value;
4019 if (State & NORMAL)
4020 {
4021 gui_do_scroll();
4022 setcursor();
4023 }
4024 else if (State & INSERT)
4025 {
4026 ins_scroll();
4027 setcursor();
4028 }
4029 else if (State & CMDLINE)
4030 {
4031 if (msg_scrolled == 0)
4032 {
4033 gui_do_scroll();
4034 redrawcmdline();
4035 }
4036 }
4037# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004038 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 sb->value = sb->wp->w_topline - 1;
4040# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004041
Bram Moolenaar30613902019-12-01 22:11:18 +01004042 // When dragging one scrollbar and there is another one at the other
4043 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004044 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4045 gui_mch_set_scrollbar_thumb(
4046 &sb->wp->w_scrollbars[
4047 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4048 ? SBAR_LEFT : SBAR_RIGHT],
4049 sb->value, sb->size, sb->max);
4050
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051#else
4052 bytes[0] = CSI;
4053 bytes[1] = KS_VER_SCROLLBAR;
4054 bytes[2] = KE_FILLER;
4055 bytes[3] = (char_u)sb_num;
4056 byte_count = 4;
4057#endif
4058 }
4059 else
4060 {
4061#ifdef USE_ON_FLY_SCROLL
4062 scrollbar_value = value;
4063
4064 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004065 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 else if (State & INSERT)
4067 ins_horscroll();
4068 else if (State & CMDLINE)
4069 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004070 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004072 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 redrawcmdline();
4074 }
4075 }
4076 if (old_leftcol != curwin->w_leftcol)
4077 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004078 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 setcursor();
4080 }
4081#else
4082 bytes[0] = CSI;
4083 bytes[1] = KS_HOR_SCROLLBAR;
4084 bytes[2] = KE_FILLER;
4085 byte_count = 3;
4086#endif
4087 }
4088
4089#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 /*
4091 * synchronize other windows, as necessary according to 'scrollbind'
4092 */
4093 if (curwin->w_p_scb
4094 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4095 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004096# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004098# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 ))))
4100 {
4101 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004102 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004103 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if (wp->w_redr_type > 0)
4105 updateWindow(wp);
4106 setcursor();
4107 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004108 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004110 add_to_input_buf(bytes, byte_count);
4111 add_long_to_buf((long_u)value, bytes);
4112 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113#endif
4114}
4115
4116/*
4117 * Scrollbar stuff:
4118 */
4119
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004120/*
4121 * Called when something in the window layout has changed.
4122 */
4123 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004124gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004125{
4126 if (gui.in_use && starting == 0)
4127 {
4128 out_flush();
4129 gui_init_which_components(NULL);
4130 gui_update_scrollbars(TRUE);
4131 }
4132 need_mouse_correct = TRUE;
4133}
4134
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004136gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004137 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138{
4139 win_T *wp;
4140 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004141 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 int which_sb;
4143 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145
Bram Moolenaar30613902019-12-01 22:11:18 +01004146 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 gui_update_horiz_scrollbar(force);
4148
Bram Moolenaar4f974752019-02-17 17:44:42 +01004149#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004150 // Return straight away if there is neither a left nor right scrollbar.
4151 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4153 return;
4154#endif
4155
4156 /*
4157 * Don't want to update a scrollbar while we're dragging it. But if we
4158 * have both a left and right scrollbar, and we drag one of them, we still
4159 * need to update the other one.
4160 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004161 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4162 && gui.which_scrollbars[SBAR_LEFT]
4163 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 {
4165 /*
4166 * If we have two scrollbars and one of them is being dragged, just
4167 * copy the scrollbar position from the dragged one to the other one.
4168 */
4169 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4170 if (gui.dragged_wp != NULL)
4171 gui_mch_set_scrollbar_thumb(
4172 &gui.dragged_wp->w_scrollbars[which_sb],
4173 gui.dragged_wp->w_scrollbars[0].value,
4174 gui.dragged_wp->w_scrollbars[0].size,
4175 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 }
4177
Bram Moolenaar30613902019-12-01 22:11:18 +01004178 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 ++hold_gui_events;
4180
Bram Moolenaar45a24952016-07-24 22:25:15 +02004181 for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004183 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004185 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004186 if (!force && (gui.dragged_sb == SBAR_LEFT
4187 || gui.dragged_sb == SBAR_RIGHT)
4188 && gui.dragged_wp == wp)
4189 continue;
4190
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191#ifdef SCROLL_PAST_END
4192 max = wp->w_buffer->b_ml.ml_line_count - 1;
4193#else
4194 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4195#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004196 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 max = 0;
4198 val = wp->w_topline - 1;
4199 size = wp->w_height;
4200#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004201 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 val = max;
4203#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004204 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 size = max + 1;
4206 if (val > max - size + 1)
4207 val = max - size + 1;
4208#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004209 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 val = 0;
4211
4212 /*
4213 * Scrollbar at index 0 (the left one) contains all the information.
4214 * It would be the same info for left and right so we just store it for
4215 * one of them.
4216 */
4217 sb = &wp->w_scrollbars[0];
4218
4219 /*
4220 * Note: no check for valid w_botline. If it's not valid the
4221 * scrollbars will be updated later anyway.
4222 */
4223 if (size < 1 || wp->w_botline - 2 > max)
4224 {
4225 /*
4226 * This can happen during changing files. Just don't update the
4227 * scrollbar for now.
4228 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004229 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 if (gui.which_scrollbars[SBAR_LEFT])
4231 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4232 if (gui.which_scrollbars[SBAR_RIGHT])
4233 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4234 continue;
4235 }
4236 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 || sb->top != wp->w_winrow
4238 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004240 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004242 // Height, width or position of scrollbar has changed. For
4243 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 sb->top = wp->w_winrow;
4246 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248
Bram Moolenaar30613902019-12-01 22:11:18 +01004249 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 h = (sb->height + sb->status_height) * gui.char_height;
4251 y = sb->top * gui.char_height + gui.border_offset;
4252#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4253 if (gui.menu_is_active)
4254 y += gui.menu_height;
4255#endif
4256
4257#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA))
4258 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
4259# ifdef FEAT_GUI_ATHENA
4260 y += gui.toolbar_height;
4261# else
4262# ifdef FEAT_GUI_MSWIN
4263 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4264# endif
4265# endif
4266#endif
4267
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004268#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN)
4269 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004270 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004271#endif
4272
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004275 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 h += gui.border_offset;
4277 y -= gui.border_offset;
4278 }
4279 if (gui.which_scrollbars[SBAR_LEFT])
4280 {
4281 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4282 gui.left_sbar_x, y,
4283 gui.scrollbar_width, h);
4284 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4285 }
4286 if (gui.which_scrollbars[SBAR_RIGHT])
4287 {
4288 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4289 gui.right_sbar_x, y,
4290 gui.scrollbar_width, h);
4291 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4292 }
4293 }
4294
Bram Moolenaar30613902019-12-01 22:11:18 +01004295 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4296 // checking if the thumb moved at least a pixel. Only do this for
4297 // Athena, most other GUIs require the update anyway to make the
4298 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299#ifdef FEAT_GUI_ATHENA
4300 if (max == 0)
4301 y = 0;
4302 else
4303 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4304 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4305#else
4306 if (force || sb->value != val || sb->size != size || sb->max != max)
4307#endif
4308 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004309 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 sb->value = val;
4311#ifdef FEAT_GUI_ATHENA
4312 sb->pixval = y;
4313#endif
4314 sb->size = size;
4315 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004316 if (gui.which_scrollbars[SBAR_LEFT]
4317 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4319 val, size, max);
4320 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004321 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4323 val, size, max);
4324 }
4325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 --hold_gui_events;
4328}
4329
4330/*
4331 * Enable or disable a scrollbar.
4332 * Check for scrollbars for vertically split windows which are not enabled
4333 * sometimes.
4334 */
4335 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004336gui_do_scrollbar(
4337 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004338 int which, // SBAR_LEFT or SBAR_RIGHT
4339 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 int midcol = curwin->w_wincol + curwin->w_width / 2;
4342 int has_midcol = (wp->w_wincol <= midcol
4343 && wp->w_wincol + wp->w_width >= midcol);
4344
Bram Moolenaar30613902019-12-01 22:11:18 +01004345 // Only enable scrollbars that contain the middle column of the current
4346 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4348 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004349 // Scrollbars only on one side. Don't enable scrollbars that don't
4350 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 if (!has_midcol)
4352 enable = FALSE;
4353 }
4354 else
4355 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004356 // Scrollbars on both sides. Don't enable scrollbars that neither
4357 // contain the middle column of the current window nor are on the far
4358 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 if (midcol > Columns / 2)
4360 {
4361 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4362 enable = FALSE;
4363 }
4364 else
4365 {
4366 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4367 : !has_midcol)
4368 enable = FALSE;
4369 }
4370 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4372}
4373
4374/*
4375 * Scroll a window according to the values set in the globals current_scrollbar
4376 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4377 * or FALSE otherwise.
4378 */
4379 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004380gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381{
4382 win_T *wp, *save_wp;
4383 int i;
4384 long nlines;
4385 pos_T old_cursor;
4386 linenr_T old_topline;
4387#ifdef FEAT_DIFF
4388 int old_topfill;
4389#endif
4390
4391 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4392 if (wp == NULL)
4393 break;
4394 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004395 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 return FALSE;
4397
4398 /*
4399 * Compute number of lines to scroll. If zero, nothing to do.
4400 */
4401 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4402 if (nlines == 0)
4403 return FALSE;
4404
4405 save_wp = curwin;
4406 old_topline = wp->w_topline;
4407#ifdef FEAT_DIFF
4408 old_topfill = wp->w_topfill;
4409#endif
4410 old_cursor = wp->w_cursor;
4411 curwin = wp;
4412 curbuf = wp->w_buffer;
4413 if (nlines < 0)
4414 scrolldown(-nlines, gui.dragged_wp == NULL);
4415 else
4416 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004417 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4418 // the mouse-up event already, but we still want it to behave like when
4419 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 if (gui.dragged_sb == SBAR_NONE)
4421 gui.dragged_wp = NULL;
4422
4423 if (old_topline != wp->w_topline
4424#ifdef FEAT_DIFF
4425 || old_topfill != wp->w_topfill
4426#endif
4427 )
4428 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004429 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004431 cursor_correct(); // fix window for 'so'
4432 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 }
4434 if (old_cursor.lnum != wp->w_cursor.lnum)
4435 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 }
4438
Bram Moolenaar30613902019-12-01 22:11:18 +01004439 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004440 validate_cursor();
4441
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 curwin = save_wp;
4443 curbuf = save_wp->w_buffer;
4444
4445 /*
4446 * Don't call updateWindow() when nothing has changed (it will overwrite
4447 * the status line!).
4448 */
4449 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004450 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451#ifdef FEAT_DIFF
4452 || old_topfill != wp->w_topfill
4453#endif
4454 )
4455 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004456 int type = VALID;
4457
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004458 if (pum_visible())
4459 {
4460 type = NOT_VALID;
4461 wp->w_lines_valid = 0;
4462 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004463
Bram Moolenaar30613902019-12-01 22:11:18 +01004464 // Don't set must_redraw here, it may cause the popup menu to
4465 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004466 if (wp->w_redr_type < type)
4467 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004468 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004469 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004470 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 }
4472
Bram Moolenaar30613902019-12-01 22:11:18 +01004473 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004474 if (pum_visible())
4475 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004476
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004477 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478}
4479
4480
4481/*
4482 * Horizontal scrollbar stuff:
4483 */
4484
4485/*
4486 * Return length of line "lnum" for horizontal scrolling.
4487 */
4488 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004489scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490{
4491 char_u *p;
4492 colnr_T col;
4493 int w;
4494
4495 p = ml_get(lnum);
4496 col = 0;
4497 if (*p != NUL)
4498 for (;;)
4499 {
4500 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004501 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004502 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 break;
4504 col += w;
4505 }
4506 return col;
4507}
4508
Bram Moolenaar30613902019-12-01 22:11:18 +01004509// Remember which line is currently the longest, so that we don't have to
4510// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511static linenr_T longest_lnum = 0;
4512
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004513/*
4514 * Find longest visible line number. If this is not possible (or not desired,
4515 * by setting 'h' in "guioptions") then the current line number is returned.
4516 */
4517 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004518gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004519{
4520 linenr_T ret = 0;
4521
Bram Moolenaar30613902019-12-01 22:11:18 +01004522 // Calculate maximum for horizontal scrollbar. Check for reasonable
4523 // line numbers, topline and botline can be invalid when displaying is
4524 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004525 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4526 && curwin->w_topline <= curwin->w_cursor.lnum
4527 && curwin->w_botline > curwin->w_cursor.lnum
4528 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4529 {
4530 linenr_T lnum;
4531 colnr_T n;
4532 long max = 0;
4533
Bram Moolenaar30613902019-12-01 22:11:18 +01004534 // Use maximum of all visible lines. Remember the lnum of the
4535 // longest line, closest to the cursor line. Used when scrolling
4536 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004537 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4538 {
4539 n = scroll_line_len(lnum);
4540 if (n > (colnr_T)max)
4541 {
4542 max = n;
4543 ret = lnum;
4544 }
4545 else if (n == (colnr_T)max
4546 && abs((int)(lnum - curwin->w_cursor.lnum))
4547 < abs((int)(ret - curwin->w_cursor.lnum)))
4548 ret = lnum;
4549 }
4550 }
4551 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004552 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004553 ret = curwin->w_cursor.lnum;
4554
4555 return ret;
4556}
4557
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004559gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560{
Bram Moolenaar30613902019-12-01 22:11:18 +01004561 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
4563 if (!gui.which_scrollbars[SBAR_BOTTOM])
4564 return;
4565
4566 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4567 return;
4568
4569 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4570 return;
4571
4572 /*
4573 * It is possible for the cursor to be invalid if we're in the middle of
4574 * something (like changing files). If so, don't do anything for now.
4575 */
4576 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4577 {
4578 gui.bottom_sbar.value = -1;
4579 return;
4580 }
4581
Bram Moolenaar02631462017-09-22 15:20:32 +02004582 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 if (curwin->w_p_wrap)
4584 {
4585 value = 0;
4586#ifdef SCROLL_PAST_END
4587 max = 0;
4588#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004589 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590#endif
4591 }
4592 else
4593 {
4594 value = curwin->w_leftcol;
4595
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004596 longest_lnum = gui_find_longest_lnum();
4597 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 if (virtual_active())
4600 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004601 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 if (curwin->w_virtcol >= (colnr_T)max)
4603 max = curwin->w_virtcol;
4604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605
4606#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004607 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004609 // The line number isn't scrolled, thus there is less space when
4610 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 size -= curwin_col_off();
4612#ifndef SCROLL_PAST_END
4613 max -= curwin_col_off();
4614#endif
4615 }
4616
4617#ifndef SCROLL_PAST_END
4618 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004619 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620#endif
4621
4622#ifdef FEAT_RIGHTLEFT
4623 if (curwin->w_p_rl)
4624 {
4625 value = max + 1 - size - value;
4626 if (value < 0)
4627 {
4628 size += value;
4629 value = 0;
4630 }
4631 }
4632#endif
4633 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4634 && max == gui.bottom_sbar.max)
4635 return;
4636
4637 gui.bottom_sbar.value = value;
4638 gui.bottom_sbar.size = size;
4639 gui.bottom_sbar.max = max;
4640 gui.prev_wrap = curwin->w_p_wrap;
4641
4642 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4643}
4644
4645/*
4646 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4647 */
4648 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004649gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650{
Bram Moolenaar30613902019-12-01 22:11:18 +01004651 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 if (curwin->w_p_wrap)
4653 return FALSE;
4654
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004655 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 return FALSE;
4657
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004658 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659
Bram Moolenaar30613902019-12-01 22:11:18 +01004660 // When the line of the cursor is too short, move the cursor to the
4661 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004663 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004664 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004666 if (compute_longest_lnum)
4667 {
4668 curwin->w_cursor.lnum = gui_find_longest_lnum();
4669 curwin->w_cursor.col = 0;
4670 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004671 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004672 else if (longest_lnum >= curwin->w_topline
4673 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 {
4675 curwin->w_cursor.lnum = longest_lnum;
4676 curwin->w_cursor.col = 0;
4677 }
4678 }
4679
4680 return leftcol_changed();
4681}
4682
4683/*
4684 * Check that none of the colors are the same as the background color
4685 */
4686 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004687gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688{
4689 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4690 {
4691 gui_set_bg_color((char_u *)"White");
4692 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4693 gui_set_fg_color((char_u *)"Black");
4694 }
4695}
4696
Bram Moolenaar3918c952005-03-15 22:34:55 +00004697 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004698gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699{
4700 gui.norm_pixel = gui_get_color(name);
4701 hl_set_fg_color_name(vim_strsave(name));
4702}
4703
Bram Moolenaar3918c952005-03-15 22:34:55 +00004704 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004705gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706{
4707 gui.back_pixel = gui_get_color(name);
4708 hl_set_bg_color_name(vim_strsave(name));
4709}
4710
4711/*
4712 * Allocate a color by name.
4713 * Returns INVALCOLOR and gives an error message when failed.
4714 */
4715 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004716gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717{
4718 guicolor_T t;
4719
4720 if (*name == NUL)
4721 return INVALCOLOR;
4722 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004723
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004725#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 && gui.in_use
4727#endif
4728 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004729 semsg(_("E254: Cannot allocate color %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 return t;
4731}
4732
4733/*
4734 * Return the grey value of a color (range 0-255).
4735 */
4736 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004737gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004739 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004741 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004742 + (((rgb >> 8) & 0xff) * 587)
4743 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744}
4745
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004746 char_u *
4747gui_bg_default(void)
4748{
4749 if (gui_get_lightness(gui.back_pixel) < 127)
4750 return (char_u *)"dark";
4751 return (char_u *)"light";
4752}
4753
4754/*
4755 * Option initializations that can only be done after opening the GUI window.
4756 */
4757 void
4758init_gui_options(void)
4759{
Bram Moolenaar30613902019-12-01 22:11:18 +01004760 // Set the 'background' option according to the lightness of the
4761 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004762 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4763 {
4764 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4765 highlight_changed();
4766 }
4767}
4768
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769#if defined(FEAT_GUI_X11) || defined(PROTO)
4770 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004771gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772{
4773 win_T *wp;
4774
Bram Moolenaar30613902019-12-01 22:11:18 +01004775 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 if (!gui.in_use)
4777 return;
4778
4779 FOR_ALL_WINDOWS(wp)
4780 {
4781 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4782 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4783 }
4784 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4785}
4786#endif
4787
4788/*
4789 * Call this when focus has changed.
4790 */
4791 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004792gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793{
4794/*
4795 * Skip this code to avoid drawing the cursor when debugging and switching
4796 * between the debugger window and gvim.
4797 */
4798#if 1
4799 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004800 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801
4802# ifdef FEAT_XIM
4803 xim_set_focus(in_focus);
4804# endif
4805
Bram Moolenaar30613902019-12-01 22:11:18 +01004806 // Put events in the input queue only when allowed.
4807 // ui_focus_change() isn't called directly, because it invokes
4808 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004809 if (!hold_gui_events)
4810 {
4811 char_u bytes[3];
4812
4813 bytes[0] = CSI;
4814 bytes[1] = KS_EXTRA;
4815 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4816 add_to_input_buf(bytes, 3);
4817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818#endif
4819}
4820
4821/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004822 * When mouse moved: apply 'mousefocus'.
4823 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004825 static void
4826gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827{
4828 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004829 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830
4831#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004832 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004833 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834#endif
4835
Bram Moolenaar30613902019-12-01 22:11:18 +01004836 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004838 && !hold_gui_events // not holding events
4839 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4840 && State != HITRETURN // but not hit-return prompt
4841 && msg_scrolled == 0 // no scrolled message
4842 && !need_mouse_correct // not moving the pointer
4843 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004845 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 if (x < 0 || x > Columns * gui.char_width)
4847 return;
4848#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004849 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850#endif
4851 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004852 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853
Bram Moolenaar30613902019-12-01 22:11:18 +01004854 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004855 if (Y_2_ROW(y) < tabline_height())
4856 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004857
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 /*
4859 * format a mouse click on status line input
4860 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004861 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4862 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 */
4864 if (finish_op)
4865 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004866 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 st[0] = ESC;
4868 add_to_input_buf(st, 1);
4869 }
4870 st[0] = CSI;
4871 st[1] = KS_MOUSE;
4872 st[2] = KE_FILLER;
4873 st[3] = (char_u)MOUSE_LEFT;
4874 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004875 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 wp->w_height + W_WINROW(wp));
4877
4878 add_to_input_buf(st, 8);
4879 st[3] = (char_u)MOUSE_RELEASE;
4880 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004882 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 if (gtk_main_level() > 0)
4884 gtk_main_quit();
4885#endif
4886 }
4887}
4888
4889/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004890 * Called when the mouse moved (but not when dragging).
4891 */
4892 void
4893gui_mouse_moved(int x, int y)
4894{
4895 // Ignore this while still starting up.
4896 if (!gui.in_use || gui.starting)
4897 return;
4898
4899 // apply 'mousefocus' and pointer shape
4900 gui_mouse_focus(x, y);
4901
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004902#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004903 if (popup_visible)
4904 // Generate a mouse-moved event, so that the popup can perhaps be
4905 // closed, just like in the terminal.
4906 gui_send_mouse_event(MOUSE_DRAG, x, y, FALSE, 0);
4907#endif
4908}
4909
4910/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004911 * Get the window where the mouse pointer is on.
4912 * Returns NULL if not found.
4913 */
4914 win_T *
4915gui_mouse_window(mouse_find_T popup)
4916{
4917 int x, y;
4918
4919 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4920 return NULL;
4921 gui_mch_getmouse(&x, &y);
4922
4923 // Only use the mouse when it's on the Vim window
4924 if (x >= 0 && x <= Columns * gui.char_width
4925 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4926 return xy2win(x, y, popup);
4927 return NULL;
4928}
4929
4930/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 * Called when mouse should be moved to window with focus.
4932 */
4933 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004934gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 win_T *wp = NULL;
4937
4938 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004939
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004940 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004941 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004943 validate_cline_row();
4944 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4945 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 }
4948}
4949
4950/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004951 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004952 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004955xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 int row;
4958 int col;
4959 win_T *wp;
4960
4961 row = Y_2_ROW(y);
4962 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004963 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004965 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004966 if (wp == NULL)
4967 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004968#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 if (State == HITRETURN || State == ASKMORE)
4970 {
4971 if (Y_2_ROW(y) >= msg_row)
4972 update_mouseshape(SHAPE_IDX_MOREL);
4973 else
4974 update_mouseshape(SHAPE_IDX_MORE);
4975 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004976 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004978 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004979 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004981 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004982 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 update_mouseshape(SHAPE_IDX_STATUS);
4984 else
4985 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02004987 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988}
4989
4990/*
4991 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
4992 * File names may be given to redefine the args list.
4993 */
4994 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004995ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996{
4997 char_u *arg = eap->arg;
4998
4999 /*
5000 * Check for "-f" argument: foreground, don't fork.
5001 * Also don't fork when started with "gvim -f".
5002 * Do fork when using "gui -b".
5003 */
5004 if (arg[0] == '-'
5005 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005006 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
5008 gui.dofork = (arg[1] == 'b');
5009 eap->arg = skipwhite(eap->arg + 2);
5010 }
5011 if (!gui.in_use)
5012 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005013#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005014 if (!gui.starting)
5015 {
5016 emsg(_(e_nogvim));
5017 return;
5018 }
5019#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005020 // Clear the command. Needed for when forking+exiting, to avoid part
5021 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005023#ifdef GUI_MAY_SPAWN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005024 if (!ends_excmd(*eap->arg))
5025 gui_start(eap->arg);
5026 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005027#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005028 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005029#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005030 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005031#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 }
5033 if (!ends_excmd(*eap->arg))
5034 ex_next(eap);
5035}
5036
Bram Moolenaar4f974752019-02-17 17:44:42 +01005037#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
5038 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON)) \
5039 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040/*
5041 * This is shared between Athena, Motif and GTK.
5042 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043
5044/*
5045 * Callback function for do_in_runtimepath().
5046 */
5047 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005048gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005050 char_u *gfp_buffer = cookie;
5051
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 if (STRLEN(fname) >= MAXPATHL)
5053 *gfp_buffer = NUL;
5054 else
5055 STRCPY(gfp_buffer, fname);
5056}
5057
5058/*
5059 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5060 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5061 */
5062 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005063gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064{
5065 if (STRLEN(name) > MAXPATHL - 14)
5066 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005067 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005068 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005069 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 return FAIL;
5071 return OK;
5072}
5073
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005074# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075/*
5076 * Given the name of the "icon=" argument, try finding the bitmap file for the
5077 * icon. If it is an absolute path name, use it as it is. Otherwise append
5078 * "ext" and search for it in 'runtimepath'.
5079 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5080 * contains "name".
5081 */
5082 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005083gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084{
5085 char_u buf[MAXPATHL + 1];
5086
5087 expand_env(name, buffer, MAXPATHL);
5088 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5089 STRCPY(buffer, buf);
5090}
5091# endif
5092#endif
5093
Bram Moolenaar9372a112005-12-06 19:59:18 +00005094#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005096display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097{
5098 char_u *p;
5099
5100 if (isatty(2))
5101 fflush(stderr);
5102 else if (error_ga.ga_data != NULL)
5103 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005104 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5106 if (!isspace(*p))
5107 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005108 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (STRLEN(p) > 2000)
5110 STRCPY(p + 2000 - 14, "...(truncated)");
5111 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005112 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 break;
5114 }
5115 ga_clear(&error_ga);
5116 }
5117}
5118#endif
5119
5120#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5121/*
5122 * Return TRUE if still starting up and there is no place to enter text.
5123 * For GTK and X11 we check if stderr is not a tty, which means we were
5124 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5125 * allow typing on stdin.
5126 */
5127 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005128no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129{
5130 return ((!gui.in_use || gui.starting)
5131# ifndef NO_CONSOLE
5132 && !isatty(0) && !isatty(2)
5133# endif
5134 );
5135}
5136#endif
5137
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005138#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005139 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005140 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141/*
5142 * Update the current window and the screen.
5143 */
5144 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005145gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005147# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005148 linenr_T conceal_old_cursor_line = 0;
5149 linenr_T conceal_new_cursor_line = 0;
5150 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005151# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005152
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 update_topline();
5154 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005155
Bram Moolenaar30613902019-12-01 22:11:18 +01005156 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005157 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005158# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005159 || popup_visible
5160# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005161# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005162 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005163# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005164 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005165 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005166 if (has_cursormoved())
5167 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005168#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005169 if (popup_visible)
5170 popup_check_cursor_pos();
5171#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005172# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005173 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005174 {
5175 conceal_old_cursor_line = last_cursormoved.lnum;
5176 conceal_new_cursor_line = curwin->w_cursor.lnum;
5177 conceal_update_lines = TRUE;
5178 }
5179# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005180 last_cursormoved = curwin->w_cursor;
5181 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005182
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005183# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005184 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005185 && (conceal_old_cursor_line != conceal_new_cursor_line
5186 || conceal_cursor_line(curwin)
5187 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005188 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005189 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005190 redrawWinline(curwin, conceal_old_cursor_line);
5191 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005192 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005193 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005194 }
5195# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005196 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005197 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005198 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199}
5200#endif
5201
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005202#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203/*
5204 * Get the text to use in a find/replace dialog. Uses the last search pattern
5205 * if the argument is empty.
5206 * Returns an allocated string.
5207 */
5208 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005209get_find_dialog_text(
5210 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005211 int *wwordp, // return: TRUE if \< \> found
5212 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213{
5214 char_u *text;
5215
5216 if (*arg == NUL)
5217 text = last_search_pat();
5218 else
5219 text = arg;
5220 if (text != NULL)
5221 {
5222 text = vim_strsave(text);
5223 if (text != NULL)
5224 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005225 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 int i;
5227
Bram Moolenaar30613902019-12-01 22:11:18 +01005228 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5230 {
5231 mch_memmove(text, text + 2, (size_t)(len - 1));
5232 len -= 2;
5233 }
5234
Bram Moolenaar30613902019-12-01 22:11:18 +01005235 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5237 {
5238 *mcasep = (text[1] == 'C');
5239 mch_memmove(text, text + 2, (size_t)(len - 1));
5240 len -= 2;
5241 }
5242
Bram Moolenaar30613902019-12-01 22:11:18 +01005243 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 if (len >= 4
5245 && STRNCMP(text, "\\<", 2) == 0
5246 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5247 {
5248 *wwordp = TRUE;
5249 mch_memmove(text, text + 2, (size_t)(len - 4));
5250 text[len - 4] = NUL;
5251 }
5252
Bram Moolenaar30613902019-12-01 22:11:18 +01005253 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 for (i = 0; i + 1 < len; ++i)
5255 if (text[i] == '\\' && (text[i + 1] == '/'
5256 || text[i + 1] == '?'))
5257 {
5258 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5259 --len;
5260 }
5261 }
5262 }
5263 return text;
5264}
5265
5266/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 * Handle the press of a button in the find-replace dialog.
5268 * Return TRUE when something was added to the input buffer.
5269 */
5270 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005271gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005272 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005273 char_u *find_text,
5274 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005275 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276{
5277 garray_T ga;
5278 int i;
5279 int type = (flags & FRD_TYPE_MASK);
5280 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005281 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005282 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005283 static int busy = FALSE;
5284
Bram Moolenaar30613902019-12-01 22:11:18 +01005285 // When the screen is being updated we should not change buffers and
5286 // windows structures, it may cause freed memory to be used. Also don't
5287 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005288 if (updating_screen || busy)
5289 return FALSE;
5290
Bram Moolenaar30613902019-12-01 22:11:18 +01005291 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005292 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5293 return FALSE;
5294
5295 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296
5297 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005298 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 ga_concat(&ga, (char_u *)"%s/");
5300
5301 ga_concat(&ga, (char_u *)"\\V");
5302 if (flags & FRD_MATCH_CASE)
5303 ga_concat(&ga, (char_u *)"\\C");
5304 else
5305 ga_concat(&ga, (char_u *)"\\c");
5306 if (flags & FRD_WHOLE_WORD)
5307 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005308 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005309 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5310 if (p != NULL)
5311 ga_concat(&ga, p);
5312 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 if (flags & FRD_WHOLE_WORD)
5314 ga_concat(&ga, (char_u *)"\\>");
5315
5316 if (type == FRD_REPLACEALL)
5317 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005319 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005320 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5321 if (p != NULL)
5322 ga_concat(&ga, p);
5323 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005325 }
5326 ga_append(&ga, NUL);
5327
5328 if (type == FRD_REPLACE)
5329 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005330 // Do the replacement when the text at the cursor matches. Thus no
5331 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005332 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5333 regmatch.rm_ic = 0;
5334 if (regmatch.regprog != NULL)
5335 {
5336 p = ml_get_cursor();
5337 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5338 && regmatch.startp[0] == p)
5339 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005340 // Clear the command line to remove any old "No match"
5341 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005342 msg_end_prompt();
5343
5344 if (u_save_cursor() == OK)
5345 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005346 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005347 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005348
5349 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005350 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005351 ins_str(repl_text);
5352 }
5353 }
5354 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005355 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005356 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005357 }
5358 }
5359
5360 if (type == FRD_REPLACEALL)
5361 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005362 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005363 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 do_cmdline_cmd(ga.ga_data);
5365 }
5366 else
5367 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005368 int searchflags = SEARCH_MSG + SEARCH_MARK;
5369
Bram Moolenaar30613902019-12-01 22:11:18 +01005370 // Search for the next match.
5371 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005372 if (type == FRD_REPLACE)
5373 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005375 if (down)
5376 {
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02005377 (void)do_search(NULL, '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005378 }
5379 else
5380 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005381 // We need to escape '?' if and only if we are searching in the up
5382 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005383 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5384 if (p != NULL)
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02005385 (void)do_search(NULL, '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005386 vim_free(p);
5387 }
5388
Bram Moolenaar30613902019-12-01 22:11:18 +01005389 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 }
5391
Bram Moolenaar30613902019-12-01 22:11:18 +01005392 // Don't want to pass did_emsg to other code, it may cause disabling
5393 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005394 did_emsg = save_did_emsg;
5395
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 if (State & (NORMAL | INSERT))
5397 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005398 gui_update_screen(); // update the screen
5399 msg_didout = 0; // overwrite any message
5400 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 }
5402
5403 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005404 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 return (ga.ga_len > 0);
5406}
5407
5408#endif
5409
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005410#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411/*
5412 * Jump to the window at specified point (x, y).
5413 */
5414 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005415gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416{
5417 int row = Y_2_ROW(y);
5418 int col = X_2_COL(x);
5419 win_T *wp;
5420
5421 if (row >= 0 && col >= 0)
5422 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005423 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 if (wp != NULL && wp != curwin)
5425 win_goto(wp);
5426 }
5427}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
5429/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005430 * Function passed to handle_drop() for the actions to be done after the
5431 * argument list has been updated.
5432 */
5433 static void
5434drop_callback(void *cookie)
5435{
5436 char_u *p = cookie;
5437
Bram Moolenaar30613902019-12-01 22:11:18 +01005438 // If Shift held down, change to first file's directory. If the first
5439 // item is a directory, change to that directory (and let the explorer
5440 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005441 if (p != NULL)
5442 {
5443 if (mch_isdir(p))
5444 {
5445 if (mch_chdir((char *)p) == 0)
5446 shorten_fnames(TRUE);
5447 }
5448 else if (vim_chdirfile(p, "drop") == OK)
5449 shorten_fnames(TRUE);
5450 vim_free(p);
5451 }
5452
Bram Moolenaar30613902019-12-01 22:11:18 +01005453 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005454 update_screen(NOT_VALID);
5455# ifdef FEAT_MENU
5456 gui_update_menus(0);
5457# endif
5458#ifdef FEAT_TITLE
5459 maketitle();
5460#endif
5461 setcursor();
5462 out_flush_cursor(FALSE, FALSE);
5463}
5464
5465/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 * Process file drop. Mouse cursor position, key modifiers, name of files
5467 * and count of files are given. Argument "fnames[count]" has full pathnames
5468 * of dropped files, they will be freed in this function, and caller can't use
5469 * fnames after call this function.
5470 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005472gui_handle_drop(
5473 int x UNUSED,
5474 int y UNUSED,
5475 int_u modifiers,
5476 char_u **fnames,
5477 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478{
5479 int i;
5480 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005481 static int entered = FALSE;
5482
5483 /*
5484 * This function is called by event handlers. Just in case we get a
5485 * second event before the first one is handled, ignore the second one.
5486 * Not sure if this can ever happen, just in case.
5487 */
5488 if (entered)
5489 return;
5490 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491
5492 /*
5493 * When the cursor is at the command line, add the file names to the
5494 * command line, don't edit the files.
5495 */
5496 if (State & CMDLINE)
5497 {
5498 shorten_filenames(fnames, count);
5499 for (i = 0; i < count; ++i)
5500 {
5501 if (fnames[i] != NULL)
5502 {
5503 if (i > 0)
5504 add_to_input_buf((char_u*)" ", 1);
5505
Bram Moolenaar30613902019-12-01 22:11:18 +01005506 // We don't know what command is used thus we can't be sure
5507 // about which characters need to be escaped. Only escape the
5508 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509# ifdef BACKSLASH_IN_FILENAME
5510 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5511# else
5512 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5513# endif
5514 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005515 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 vim_free(p);
5517 vim_free(fnames[i]);
5518 }
5519 }
5520 vim_free(fnames);
5521 }
5522 else
5523 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005524 // Go to the window under mouse cursor, then shorten given "fnames" by
5525 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 shorten_filenames(fnames, count);
5528
Bram Moolenaar30613902019-12-01 22:11:18 +01005529 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 if ((modifiers & MOUSE_SHIFT) != 0)
5531 p = vim_strsave(fnames[0]);
5532 else
5533 p = NULL;
5534
Bram Moolenaar30613902019-12-01 22:11:18 +01005535 // Handle the drop, :edit or :split to get to the file. This also
5536 // frees fnames[]. Skip this if there is only one item, it's a
5537 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5539 && mch_isdir(fnames[0]))
5540 {
5541 vim_free(fnames[0]);
5542 vim_free(fnames);
5543 }
5544 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005545 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5546 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005548
5549 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550}
5551#endif