blob: c748fae4cea0a115ec86bf169b7f9c0f0fa99670 [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 */
Bram Moolenaar097148e2020-08-11 21:58:20 +020059#if defined(FEAT_GUI_ATHENA)
Bram Moolenaar071d4272004-06-13 20:20:40 +000060# 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
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100449#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
450 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 gui.toolbar_height = 0;
452#endif
453#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
454 gui.footer_height = 0;
455#endif
456#ifdef FEAT_BEVAL_TIP
457 gui.tooltip_fontset = NOFONTSET;
458#endif
459
460 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
461 gui.prev_wrap = -1;
462
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200463#if defined(ALWAYS_USE_GUI) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 result = OK;
465#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200466# ifdef FEAT_GUI_GTK
467 /*
468 * Note: Don't call gtk_init_check() before fork, it will be called after
469 * the fork. When calling it before fork, it make vim hang for a while.
470 * See gui_do_fork().
471 * Use a simpler check if the GUI window can probably be opened.
472 */
Bram Moolenaar717e1962016-08-10 21:28:44 +0200473 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200474# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200476# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477#endif
478 return result;
479}
480
481/*
482 * This is the call which starts the GUI.
483 */
484 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100485gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486{
487 win_T *wp;
488 static int recursive = 0;
489
490 /*
491 * It's possible to use ":gui" in a .gvimrc file. The first halve of this
492 * function will then be executed at the first call, the rest by the
493 * recursive call. This allow the shell to be opened halfway reading a
494 * gvimrc file.
495 */
496 if (!recursive)
497 {
498 ++recursive;
499
500 clip_init(TRUE);
501
Bram Moolenaar30613902019-12-01 22:11:18 +0100502 // If can't initialize, don't try doing the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 if (gui_init_check() == FAIL)
504 {
505 --recursive;
506 clip_init(FALSE);
507 return;
508 }
509
510 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000511 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
512 * breaks the Paste toolbar button.
513 */
514 set_option_value((char_u *)"paste", 0L, NULL, 0);
515
Bram Moolenaaracc770a2020-04-12 15:11:06 +0200516 // Set t_Co to the number of colors: RGB.
517 set_color_count(256 * 256 * 256);
518
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000519 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 * Set up system-wide default menus.
521 */
522#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
523 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
524 {
525 sys_menu = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100526 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 sys_menu = FALSE;
528 }
529#endif
530
531 /*
532 * Switch on the mouse by default, unless the user changed it already.
533 * This can then be changed in the .gvimrc.
534 */
535 if (!option_was_set((char_u *)"mouse"))
536 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000537 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538
539 /*
540 * If -U option given, use only the initializations from that file and
541 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
542 */
543 if (use_gvimrc != NULL)
544 {
545 if (STRCMP(use_gvimrc, "NONE") != 0
546 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100547 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +0100548 semsg(_("E230: Cannot read from \"%s\""), use_gvimrc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 }
550 else
551 {
552 /*
553 * Get system wide defaults for gvim, only when file name defined.
554 */
555#ifdef SYS_GVIMRC_FILE
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100556 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557#endif
558
559 /*
560 * Try to read GUI initialization commands from the following
561 * places:
562 * - environment variable GVIMINIT
563 * - the user gvimrc file (~/.gvimrc)
564 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
565 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
566 * The first that exists is used, the rest is ignored.
567 */
568 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000569 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100570 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000572 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100573 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200575#ifdef USR_GVIMRC_FILE3
576 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100577 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 )
580 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200581#ifdef USR_GVIMRC_FILE4
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100582 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE,
583 DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584#endif
585 }
586
587 /*
588 * Read initialization commands from ".gvimrc" in current
589 * directory. This is only done if the 'exrc' option is set.
590 * Because of security reasons we disallow shell and write
591 * commands now, except for unix if the file is owned by the user
592 * or 'secure' option has been reset in environment of global
593 * ".gvimrc".
594 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
595 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
596 */
597 if (p_exrc)
598 {
599#ifdef UNIX
600 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200601 stat_T s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602
Bram Moolenaar30613902019-12-01 22:11:18 +0100603 // if ".gvimrc" file is not owned by user, set 'secure'
604 // mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
606 secure = p_secure;
607 }
608#else
609 secure = p_secure;
610#endif
611
612 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200613 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614#ifdef SYS_GVIMRC_FILE
615 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
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_FILE2
619 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
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
622#ifdef USR_GVIMRC_FILE3
623 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200624 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200626#ifdef USR_GVIMRC_FILE4
627 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200628 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100631 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632
633 if (secure == 2)
634 need_wait_return = TRUE;
635 secure = 0;
636 }
637 }
638
639 if (need_wait_return || msg_didany)
640 wait_return(TRUE);
641
642 --recursive;
643 }
644
Bram Moolenaar30613902019-12-01 22:11:18 +0100645 // If recursive call opened the shell, return here from the first call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 if (gui.in_use)
647 return;
648
649 /*
650 * Create the GUI shell.
651 */
Bram Moolenaar30613902019-12-01 22:11:18 +0100652 gui.in_use = TRUE; // Must be set after menus have been set up
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 if (gui_mch_init() == FAIL)
654 goto error;
655
Bram Moolenaar30613902019-12-01 22:11:18 +0100656 // Avoid a delay for an error message that was printed in the terminal
657 // where Vim was started.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 emsg_on_display = FALSE;
659 msg_scrolled = 0;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100660 clear_sb_text(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 need_wait_return = FALSE;
662 msg_didany = FALSE;
663
664 /*
665 * Check validity of any generic resources that may have been loaded.
666 */
667 if (gui.border_width < 0)
668 gui.border_width = 0;
669
670 /*
671 * Set up the fonts. First use a font specified with "-fn" or "-font".
672 */
673 if (font_argument != NULL)
674 set_option_value((char_u *)"gfn", 0L, (char_u *)font_argument, 0);
675 if (
676#ifdef FEAT_XFONTSET
677 (*p_guifontset == NUL
678 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
679#endif
680 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
681 : p_guifont, FALSE) == FAIL)
682 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100683 emsg(_("E665: Cannot start GUI, no valid font found"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 goto error2;
685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 if (gui_get_wide_font() == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100687 emsg(_("E231: 'guifontwide' invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688
689 gui.num_cols = Columns;
690 gui.num_rows = Rows;
691 gui_reset_scroll_region();
692
Bram Moolenaar30613902019-12-01 22:11:18 +0100693 // Create initial scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 FOR_ALL_WINDOWS(wp)
695 {
696 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
697 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
698 }
699 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
700
701#ifdef FEAT_MENU
702 gui_create_initial_menus(root_menu);
703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704#ifdef FEAT_SIGN_ICONS
705 sign_gui_started();
706#endif
707
Bram Moolenaar30613902019-12-01 22:11:18 +0100708 // Configure the desired menu and scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 gui_init_which_components(NULL);
710
Bram Moolenaar30613902019-12-01 22:11:18 +0100711 // All components of the GUI have been created now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 gui.shell_created = TRUE;
713
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100714#ifdef FEAT_GUI_MSWIN
Bram Moolenaar4814ccb2018-12-22 18:44:53 +0100715 // Set the shell size, adjusted for the screen size. For GTK this only
716 // works after the shell has been opened, thus it is further down.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100717 // If the window is already maximized (e.g. when --windowid is passed in),
718 // we want to use the system-provided dimensions by passing FALSE to
719 // mustset. Otherwise, we want to initialize with the default rows/columns.
720 if (gui_mch_maximized())
721 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
722 else
723 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100724#else
725# ifndef FEAT_GUI_GTK
726 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
727# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728#endif
729#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +0100730 // Need to set the size of the menubar after all the menus have been
731 // created.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 gui_mch_compute_menu_height((Widget)0);
733#endif
734
735 /*
736 * Actually open the GUI shell.
737 */
738 if (gui_mch_open() != FAIL)
739 {
740#ifdef FEAT_TITLE
741 maketitle();
742 resettitle();
743#endif
744 init_gui_options();
745#ifdef FEAT_ARABIC
Bram Moolenaar30613902019-12-01 22:11:18 +0100746 // Our GUI can't do bidi.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 p_tbidi = FALSE;
748#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000749#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100750 // Give GTK+ a chance to put all widget's into place.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000752
753# ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +0100754 // If there is no 'm' in 'guioptions' we need to remove the menu now.
755 // It was still there to make F10 work.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000756 if (vim_strchr(p_go, GO_MENUS) == NULL)
757 {
758 --gui.starting;
759 gui_mch_enable_menu(FALSE);
760 ++gui.starting;
761 gui_mch_update();
762 }
763# endif
764
Bram Moolenaar30613902019-12-01 22:11:18 +0100765 // Now make sure the shell fits on the screen.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100766 if (gui_mch_maximized())
767 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
768 else
769 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100771 // When 'lines' was set while starting up the topframe may have to be
772 // resized.
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000773 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000774
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100775#ifdef FEAT_BEVAL_GUI
Bram Moolenaar30613902019-12-01 22:11:18 +0100776 // Always create the Balloon Evaluation area, but disable it when
777 // 'ballooneval' is off.
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100778 if (balloonEval != NULL)
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200779 {
780# ifdef FEAT_VARTABS
781 vim_free(balloonEval->vts);
782# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100783 vim_free(balloonEval);
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200784 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100785 balloonEvalForTerm = FALSE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000786# ifdef FEAT_GUI_GTK
787 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
788 &general_beval_cb, NULL);
789# else
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000790# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000791 {
792 extern Widget textArea;
793 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000794 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000795 }
796# else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100797# ifdef FEAT_GUI_MSWIN
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000798 balloonEval = gui_mch_create_beval_area(NULL, NULL,
799 &general_beval_cb, NULL);
800# endif
801# endif
802# endif
803 if (!p_beval)
804 gui_mch_disable_beval_area(balloonEval);
805#endif
Bram Moolenaarad772a62020-06-01 14:07:49 +0200806
807#ifndef FEAT_GUI_MSWIN
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200808 // In the GUI modifiers are prepended to keys.
Bram Moolenaarad772a62020-06-01 14:07:49 +0200809 // Don't do this for MS-Windows yet, it sends CTRL-K without the
810 // modifier.
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200811 seenModifyOtherKeys = TRUE;
Bram Moolenaarad772a62020-06-01 14:07:49 +0200812#endif
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000813
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
815 if (!im_xim_isvalid_imactivate())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100816 emsg(_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100818 // When 'cmdheight' was set during startup it may not have taken
819 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000820 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000821 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822
823 return;
824 }
825
826error2:
827#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100828 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 gui_mch_uninit();
830#endif
831
832error:
833 gui.in_use = FALSE;
834 clip_init(FALSE);
835}
836
837
838 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100839gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840{
Bram Moolenaar30613902019-12-01 22:11:18 +0100841 // don't free the fonts, it leads to a BUS error
842 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 gui.in_use = FALSE;
845 gui_mch_exit(rc);
846}
847
Bram Moolenaar9372a112005-12-06 19:59:18 +0000848#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200849 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000850# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851/*
852 * Called when the GUI shell is closed by the user. If there are no changed
853 * files Vim exits, otherwise there will be a dialog to ask the user what to
854 * do.
855 * When this function returns, Vim should NOT exit!
856 */
857 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100858gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
Bram Moolenaar3552e742021-05-29 12:21:58 +0200860 cmdmod_T save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861
Bram Moolenaar3552e742021-05-29 12:21:58 +0200862 if (before_quit_autocmds(curwin, TRUE, FALSE))
863 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864
Bram Moolenaar30613902019-12-01 22:11:18 +0100865 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 exiting = TRUE;
867# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +0200868 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869# endif
870# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +0200871 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100873 // If there are changed buffers, present the user with a dialog if
874 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100875 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 getout(0);
877
878 exiting = FALSE;
879 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100880 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881}
882#endif
883
884/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200885 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 * first font name that works is used. If none is found, use the default
887 * font.
888 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
889 * Return OK when able to set the font. When it failed FAIL is returned and
890 * the fonts are unchanged.
891 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100893gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894{
895#define FONTLEN 320
896 char_u font_name[FONTLEN];
897 int font_list_empty = FALSE;
898 int ret = FAIL;
899
900 if (!gui.in_use)
901 return FAIL;
902
903 font_name[0] = NUL;
904 if (*font_list == NUL)
905 font_list_empty = TRUE;
906 else
907 {
908#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100909 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 if (fontset)
911 ret = gui_mch_init_font(font_list, TRUE);
912 else
913#endif
914 while (*font_list != NUL)
915 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100916 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
918
Bram Moolenaar30613902019-12-01 22:11:18 +0100919 // Careful!!! The Win32 version of gui_mch_init_font(), when
920 // called with "*" will change p_guifont to the selected font
921 // name, which frees the old value. This makes font_list
922 // invalid. Thus when OK is returned here, font_list must no
923 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 if (gui_mch_init_font(font_name, FALSE) == OK)
925 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100926#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100927 // If it's a Unicode font, try setting 'guifontwide' to a
928 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
930 && strstr((char *)font_name, "10646") != NULL)
931 set_guifontwide(font_name);
932#endif
933 ret = OK;
934 break;
935 }
936 }
937 }
938
939 if (ret != OK
940 && STRCMP(font_list, "*") != 0
941 && (font_list_empty || gui.norm_font == NOFONT))
942 {
943 /*
944 * Couldn't load any font in 'font_list', keep the current font if
945 * there is one. If 'font_list' is empty, or if there is no current
946 * font, tell gui_mch_init_font() to try to find a font we can load.
947 */
948 ret = gui_mch_init_font(NULL, FALSE);
949 }
950
951 if (ret == OK)
952 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200953#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100954 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955# ifdef FEAT_XFONTSET
956 if (gui.fontset != NOFONTSET)
957 gui_mch_set_fontset(gui.fontset);
958 else
959# endif
960 gui_mch_set_font(gui.norm_font);
961#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100962 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964
965 return ret;
966}
967
Bram Moolenaar13505972019-01-24 15:04:48 +0100968#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969/*
970 * Try setting 'guifontwide' to a font twice as wide as "name".
971 */
972 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100973set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100976 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 char_u *wp = NULL;
978 char_u *p;
979 GuiFont font;
980
981 wp = wide_name;
982 for (p = name; *p != NUL; ++p)
983 {
984 *wp++ = *p;
985 if (*p == '-')
986 {
987 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100988 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 {
990 if (p[1] == '-')
991 *wp++ = '*';
992 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100993 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 {
995 ++p;
996 i = getdigits(&p);
997 if (i != 0)
998 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100999 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 sprintf((char *)wp, "%d%s", i * 2, p);
1001 font = gui_mch_get_font(wide_name, FALSE);
1002 if (font != NOFONT)
1003 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001004 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 gui.wide_font = font;
1006 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001007 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 }
1009 }
1010 break;
1011 }
1012 }
1013 }
1014}
Bram Moolenaar30613902019-12-01 22:11:18 +01001015#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
1017/*
1018 * Get the font for 'guifontwide'.
1019 * Return FAIL for an invalid font name.
1020 */
1021 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001022gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
1024 GuiFont font = NOFONT;
1025 char_u font_name[FONTLEN];
1026 char_u *p;
1027
Bram Moolenaar30613902019-12-01 22:11:18 +01001028 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1029 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
1031 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1032 {
1033 for (p = p_guifontwide; *p != NUL; )
1034 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001035 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1037 font = gui_mch_get_font(font_name, FALSE);
1038 if (font != NOFONT)
1039 break;
1040 }
1041 if (font == NOFONT)
1042 return FAIL;
1043 }
1044
1045 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001046#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001047 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 if (font != NOFONT && gui.norm_font != NOFONT
1049 && pango_font_description_equal(font, gui.norm_font))
1050 {
1051 gui.wide_font = NOFONT;
1052 gui_mch_free_font(font);
1053 }
1054 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001057#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001058 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001059#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001060 /*
1061 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1062 * support those fonts for 'guifontwide'.
1063 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 return OK;
1066}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001068 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001069gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
1071 gui.row = row;
1072 gui.col = col;
1073}
1074
1075/*
1076 * gui_check_pos - check if the cursor is on the screen.
1077 */
1078 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001079gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
1081 if (gui.row >= screen_Rows)
1082 gui.row = screen_Rows - 1;
1083 if (gui.col >= screen_Columns)
1084 gui.col = screen_Columns - 1;
1085 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1086 gui.cursor_is_valid = FALSE;
1087}
1088
1089/*
1090 * Redraw the cursor if necessary or when forced.
1091 * Careful: The contents of ScreenLines[] must match what is on the screen,
1092 * otherwise this goes wrong. May need to call out_flush() first.
1093 */
1094 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001095gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001096 int force, // when TRUE, update even when not moved
1097 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098{
1099 int cur_width = 0;
1100 int cur_height = 0;
1101 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001102 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001104#ifdef FEAT_TERMINAL
1105 guicolor_T shape_fg = INVALCOLOR;
1106 guicolor_T shape_bg = INVALCOLOR;
1107#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001108 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1109 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 int attr;
1111 attrentry_T *aep = NULL;
1112
Bram Moolenaar30613902019-12-01 22:11:18 +01001113 // Don't update the cursor when halfway busy scrolling or the screen size
1114 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001115 if (!can_update_cursor || screen_Columns != gui.num_cols
1116 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 return;
1118
1119 gui_check_pos();
1120 if (!gui.cursor_is_valid || force
1121 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1122 {
1123 gui_undraw_cursor();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02001124
1125 // If a cursor-less sleep is ongoing, leave the cursor invisible
1126 if (cursor_is_sleeping())
1127 return;
1128
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 if (gui.row < 0)
1130 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001131#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1133 im_set_position(gui.row, gui.col);
1134#endif
1135 gui.cursor_row = gui.row;
1136 gui.cursor_col = gui.col;
1137
Bram Moolenaar30613902019-12-01 22:11:18 +01001138 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 if (!screen_cleared || ScreenLines == NULL)
1140 return;
1141
Bram Moolenaar30613902019-12-01 22:11:18 +01001142 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if (clear_selection)
1144 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001145 // Check that the cursor is inside the shell (resizing may have made
1146 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1148 return;
1149
1150 gui.cursor_is_valid = TRUE;
1151
1152 /*
1153 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001154 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001156#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001157 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001158 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001160#endif
1161 shape = &shape_table[get_shape_idx(FALSE)];
1162 if (State & LANGMAP)
1163 id = shape->id_lm;
1164 else
1165 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166
Bram Moolenaar30613902019-12-01 22:11:18 +01001167 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 cfg = INVALCOLOR;
1169 cbg = INVALCOLOR;
1170 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001171 gui_mch_set_blinking(shape->blinkwait,
1172 shape->blinkon,
1173 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001174 if (shape->blinkwait == 0 || shape->blinkon == 0
1175 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001176 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001177#ifdef FEAT_TERMINAL
1178 if (shape_bg != INVALCOLOR)
1179 {
1180 cattr = 0;
1181 cfg = shape_fg;
1182 cbg = shape_bg;
1183 }
1184 else
1185#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 if (id > 0)
1187 {
1188 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001189#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
1191 static int iid;
1192 guicolor_T fg, bg;
1193
Bram Moolenaarc236c162008-07-13 17:41:49 +00001194 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001195# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001196 preedit_get_status()
1197# else
1198 im_get_status()
1199# endif
1200 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
1202 iid = syn_name2id((char_u *)"CursorIM");
1203 if (iid > 0)
1204 {
1205 syn_id2colors(iid, &fg, &bg);
1206 if (bg != INVALCOLOR)
1207 cbg = bg;
1208 if (fg != INVALCOLOR)
1209 cfg = fg;
1210 }
1211 }
1212 }
1213#endif
1214 }
1215
1216 /*
1217 * Get the attributes for the character under the cursor.
1218 * When no cursor color was given, use the character color.
1219 */
1220 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1221 if (attr > HL_ALL)
1222 aep = syn_gui_attr2entry(attr);
1223 if (aep != NULL)
1224 {
1225 attr = aep->ae_attr;
1226 if (cfg == INVALCOLOR)
1227 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1228 : aep->ae_u.gui.fg_color);
1229 if (cbg == INVALCOLOR)
1230 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1231 : aep->ae_u.gui.bg_color);
1232 }
1233 if (cfg == INVALCOLOR)
1234 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1235 if (cbg == INVALCOLOR)
1236 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1237
1238#ifdef FEAT_XIM
1239 if (aep != NULL)
1240 {
1241 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1242 : aep->ae_u.gui.bg_color);
1243 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1244 : aep->ae_u.gui.fg_color);
1245 if (xim_bg_color == INVALCOLOR)
1246 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1247 : gui.back_pixel;
1248 if (xim_fg_color == INVALCOLOR)
1249 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1250 : gui.norm_pixel;
1251 }
1252 else
1253 {
1254 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1255 : gui.back_pixel;
1256 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1257 : gui.norm_pixel;
1258 }
1259#endif
1260
1261 attr &= ~HL_INVERSE;
1262 if (cattr & HL_INVERSE)
1263 {
1264 cc = cbg;
1265 cbg = cfg;
1266 cfg = cc;
1267 }
1268 cattr &= ~HL_INVERSE;
1269
1270 /*
1271 * When we don't have window focus, draw a hollow cursor.
1272 */
1273 if (!gui.in_focus)
1274 {
1275 gui_mch_draw_hollow_cursor(cbg);
1276 return;
1277 }
1278
1279 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001280 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 {
1282 /*
1283 * Draw the text character with the cursor colors. Use the
1284 * character attributes plus the cursor attributes.
1285 */
1286 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001287 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1289 }
1290 else
1291 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001292#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 int col_off = FALSE;
1294#endif
1295 /*
1296 * First draw the partial cursor, then overwrite with the text
1297 * character, using a transparent background.
1298 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001299 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 {
1301 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001302 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 }
1304 else
1305 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001306 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 cur_width = gui.char_width;
1308 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001309 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1310 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001312 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001313 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001315#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if (CURSOR_BAR_RIGHT)
1317 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001318 // gui.col points to the left halve of the character but
1319 // the vertical line needs to be on the right halve.
1320 // A double-wide horizontal line is also drawn from the
1321 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 col_off = TRUE;
1323 ++gui.col;
1324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001328#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 if (col_off)
1330 --gui.col;
1331#endif
1332
Bram Moolenaar30613902019-12-01 22:11:18 +01001333#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1335 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1336 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1337 (guicolor_T)0, (guicolor_T)0, 0);
1338#endif
1339 }
1340 gui.highlight_mask = old_hl_mask;
1341 }
1342}
1343
1344#if defined(FEAT_MENU) || defined(PROTO)
1345 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001346gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001348# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 if (gui.menu_is_active && gui.in_use)
1350 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1351# endif
1352}
1353#endif
1354
1355/*
1356 * Position the various GUI components (text area, menu). The vertical
1357 * scrollbars are NOT handled here. See gui_update_scrollbars().
1358 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001360gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361{
1362 int text_area_x;
1363 int text_area_y;
1364 int text_area_width;
1365 int text_area_height;
1366
Bram Moolenaar30613902019-12-01 22:11:18 +01001367 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 ++hold_gui_events;
1369
1370 text_area_x = 0;
1371 if (gui.which_scrollbars[SBAR_LEFT])
1372 text_area_x += gui.scrollbar_width;
1373
1374 text_area_y = 0;
1375#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1376 gui.menu_width = total_width;
1377 if (gui.menu_is_active)
1378 text_area_y += gui.menu_height;
1379#endif
1380#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1381 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1382 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1383#endif
1384
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001385# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +02001386 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001387 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001388 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001389#endif
1390
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001391#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1392 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1394 {
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001395# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 gui_mch_set_toolbar_pos(0, text_area_y,
1397 gui.menu_width, gui.toolbar_height);
1398# endif
1399 text_area_y += gui.toolbar_height;
1400 }
1401#endif
1402
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001403# if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
1404 gui_mch_set_tabline_pos(0, text_area_y,
1405 gui.menu_width, gui.tabline_height);
1406 if (gui_has_tabline())
1407 text_area_y += gui.tabline_height;
1408#endif
1409
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1411 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1412
1413 gui_mch_set_text_area_pos(text_area_x,
1414 text_area_y,
1415 text_area_width,
1416 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001417#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 + xim_get_status_area_height()
1419#endif
1420 );
1421#ifdef FEAT_MENU
1422 gui_position_menu();
1423#endif
1424 if (gui.which_scrollbars[SBAR_BOTTOM])
1425 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1426 text_area_x,
Bram Moolenaar203ec772020-07-17 20:43:43 +02001427 text_area_y + text_area_height
1428 + gui_mch_get_scrollbar_ypadding(),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 text_area_width,
1430 gui.scrollbar_height);
1431 gui.left_sbar_x = 0;
Bram Moolenaar203ec772020-07-17 20:43:43 +02001432 gui.right_sbar_x = text_area_x + text_area_width
1433 + gui_mch_get_scrollbar_xpadding();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434
1435 --hold_gui_events;
1436}
1437
Bram Moolenaar02743632005-07-25 20:42:36 +00001438/*
1439 * Get the width of the widgets and decorations to the side of the text area.
1440 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001442gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443{
1444 int base_width;
1445
1446 base_width = 2 * gui.border_offset;
1447 if (gui.which_scrollbars[SBAR_LEFT])
1448 base_width += gui.scrollbar_width;
1449 if (gui.which_scrollbars[SBAR_RIGHT])
1450 base_width += gui.scrollbar_width;
1451 return base_width;
1452}
1453
Bram Moolenaar02743632005-07-25 20:42:36 +00001454/*
1455 * Get the height of the widgets and decorations above and below the text area.
1456 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001458gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459{
1460 int base_height;
1461
1462 base_height = 2 * gui.border_offset;
1463 if (gui.which_scrollbars[SBAR_BOTTOM])
1464 base_height += gui.scrollbar_height;
1465#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001466 // We can't take the sizes properly into account until anything is
1467 // realized. Therefore we recalculate all the values here just before
1468 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469#else
1470# ifdef FEAT_MENU
1471 if (gui.menu_is_active)
1472 base_height += gui.menu_height;
1473# endif
1474# ifdef FEAT_TOOLBAR
1475 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1476# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1477 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1478# else
1479 base_height += gui.toolbar_height;
1480# endif
1481# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001482# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001483 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001484 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001485 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001486# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487# ifdef FEAT_FOOTER
1488 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1489 base_height += gui.footer_height;
1490# endif
1491# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1492 base_height += gui_mch_text_area_extra_height();
1493# endif
1494#endif
1495 return base_height;
1496}
1497
1498/*
1499 * Should be called after the GUI shell has been resized. Its arguments are
1500 * the new width and height of the shell in pixels.
1501 */
1502 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001503gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504{
1505 static int busy = FALSE;
1506
Bram Moolenaar30613902019-12-01 22:11:18 +01001507 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 return;
1509
1510 /*
1511 * Can't resize the screen while it is being redrawn. Remember the new
1512 * size and handle it later.
1513 */
1514 if (updating_screen || busy)
1515 {
1516 new_pixel_width = pixel_width;
1517 new_pixel_height = pixel_height;
1518 return;
1519 }
1520
1521again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001522 new_pixel_width = 0;
1523 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 busy = TRUE;
1525
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001526#ifdef FEAT_GUI_HAIKU
1527 vim_lock_screen();
1528#endif
1529
Bram Moolenaar30613902019-12-01 22:11:18 +01001530 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 out_flush();
1532
1533 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001534 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
1536 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001538
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 /*
1540 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1541 * at the last line here (why does it have to be one row too low?).
1542 */
1543 if (State == ASKMORE || State == CONFIRM)
1544 gui.row = gui.num_rows;
1545
Bram Moolenaar30613902019-12-01 22:11:18 +01001546 // Only comparing Rows and Columns may be sufficient, but let's stay on
1547 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1549 || gui.num_rows != Rows || gui.num_cols != Columns)
1550 shell_resized();
1551
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001552#ifdef FEAT_GUI_HAIKU
1553 vim_unlock_screen();
1554#endif
1555
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 gui_update_scrollbars(TRUE);
1557 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001558#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 xim_set_status_area();
1560#endif
1561
1562 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001563
Bram Moolenaar30613902019-12-01 22:11:18 +01001564 // We may have been called again while redrawing the screen.
1565 // Need to do it all again with the latest size then. But only if the size
1566 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 if (new_pixel_height)
1568 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001569 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1570 {
1571 new_pixel_width = 0;
1572 new_pixel_height = 0;
1573 }
1574 else
1575 {
1576 pixel_width = new_pixel_width;
1577 pixel_height = new_pixel_height;
1578 goto again;
1579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 }
1581}
1582
1583/*
1584 * Check if gui_resize_shell() must be called.
1585 */
1586 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001587gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001590 // careful: gui_resize_shell() may postpone the resize again if we
1591 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001592 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593}
1594
1595 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001596gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597{
1598 Rows = gui.num_rows;
1599 Columns = gui.num_cols;
1600 return OK;
1601}
1602
1603/*
1604 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001605 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1606 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001607 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1608 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001611gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001612 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001613 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001614 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615{
1616 int base_width;
1617 int base_height;
1618 int width;
1619 int height;
1620 int min_width;
1621 int min_height;
1622 int screen_w;
1623 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001624#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001625 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001626 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001627#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001628 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
1630 if (!gui.shell_created)
1631 return;
1632
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001633#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001634 // If not setting to a user specified size and maximized, calculate the
1635 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001636 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1637 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 {
1639 gui_mch_newfont();
1640 return;
1641 }
1642#endif
1643
1644 base_width = gui_get_base_width();
1645 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001646 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001647 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001648 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001649
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001650 width = Columns * gui.char_width + base_width;
1651 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652
1653 if (fit_to_display)
1654 {
1655 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001656 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 {
1658 Columns = (screen_w - base_width) / gui.char_width;
1659 if (Columns < MIN_COLUMNS)
1660 Columns = MIN_COLUMNS;
1661 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001662#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001663 ++did_adjust;
1664#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001666 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 {
1668 Rows = (screen_h - base_height) / gui.char_height;
1669 check_shellsize();
1670 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001671#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001672 ++did_adjust;
1673#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001675#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001676 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1677 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001678 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001679 un_maximize = FALSE;
1680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001682 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 gui.num_cols = Columns;
1684 gui.num_rows = Rows;
1685
1686 min_width = base_width + MIN_COLUMNS * gui.char_width;
1687 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001688 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001689
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001690#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001691 if (un_maximize)
1692 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001693 // If the window size is smaller than the screen unmaximize the
1694 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001695 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1696 if ((width + gui.char_width < screen_w
1697 || height + gui.char_height * 2 < screen_h)
1698 && gui_mch_maximized())
1699 gui_mch_unmaximize();
1700 }
1701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702
1703 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001704 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001706 if (fit_to_display && x >= 0 && y >= 0)
1707 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001708 // Some window managers put the Vim window left of/above the screen.
1709 // Only change the position if it wasn't already negative before
1710 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 gui_mch_update();
1712 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1713 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1714 }
1715
1716 gui_position_components(width);
1717 gui_update_scrollbars(TRUE);
1718 gui_reset_scroll_region();
1719}
1720
1721/*
1722 * Called when Rows and/or Columns has changed.
1723 */
1724 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001725gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
1727 gui_reset_scroll_region();
1728}
1729
1730/*
1731 * Make scroll region cover whole screen.
1732 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001733 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001734gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735{
1736 gui.scroll_region_top = 0;
1737 gui.scroll_region_bot = gui.num_rows - 1;
1738 gui.scroll_region_left = 0;
1739 gui.scroll_region_right = gui.num_cols - 1;
1740}
1741
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001742 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001743gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744{
Bram Moolenaar30613902019-12-01 22:11:18 +01001745 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001747 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 gui.highlight_mask |= mask;
1749}
1750
1751 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001752gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753{
Bram Moolenaar30613902019-12-01 22:11:18 +01001754 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001756 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 gui.highlight_mask &= ~mask;
1758}
1759
1760/*
1761 * Clear a rectangular region of the screen from text pos (row1, col1) to
1762 * (row2, col2) inclusive.
1763 */
1764 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001765gui_clear_block(
1766 int row1,
1767 int col1,
1768 int row2,
1769 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770{
Bram Moolenaar30613902019-12-01 22:11:18 +01001771 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 clip_may_clear_selection(row1, row2);
1773
1774 gui_mch_clear_block(row1, col1, row2, col2);
1775
Bram Moolenaar30613902019-12-01 22:11:18 +01001776 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1778 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1779 gui.cursor_is_valid = FALSE;
1780}
1781
1782/*
1783 * Write code to update the cursor later. This avoids the need to flush the
1784 * output buffer before calling gui_update_cursor().
1785 */
1786 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001787gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001789 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790}
1791
1792 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001793gui_write(
1794 char_u *s,
1795 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796{
1797 char_u *p;
1798 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001799 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 int force_scrollbar = FALSE;
1801 static win_T *old_curwin = NULL;
1802
Bram Moolenaar30613902019-12-01 22:11:18 +01001803// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804#ifdef DEBUG_GUI_WRITE
1805 {
1806 int i;
1807 char_u *str;
1808
1809 printf("gui_write(%d):\n ", len);
1810 for (i = 0; i < len; i++)
1811 if (s[i] == ESC)
1812 {
1813 if (i != 0)
1814 printf("\n ");
1815 printf("<ESC>");
1816 }
1817 else
1818 {
1819 str = transchar_byte(s[i]);
1820 if (str[0] && str[1])
1821 printf("<%s>", (char *)str);
1822 else
1823 printf("%s", (char *)str);
1824 }
1825 printf("\n");
1826 }
1827#endif
1828 while (len)
1829 {
1830 if (s[0] == ESC && s[1] == '|')
1831 {
1832 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001833 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 {
1835 arg1 = getdigits(&p);
1836 if (p > s + len)
1837 break;
1838 if (*p == ';')
1839 {
1840 ++p;
1841 arg2 = getdigits(&p);
1842 if (p > s + len)
1843 break;
1844 }
1845 }
1846 switch (*p)
1847 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001848 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 clip_scroll_selection(9999);
1850 gui_mch_clear_all();
1851 gui.cursor_is_valid = FALSE;
1852 force_scrollbar = TRUE;
1853 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001854 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 gui_set_cursor(arg1, arg2);
1856 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001857 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 force_cursor = TRUE;
1859 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001860 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 if (arg1 < arg2)
1862 {
1863 gui.scroll_region_top = arg1;
1864 gui.scroll_region_bot = arg2;
1865 }
1866 else
1867 {
1868 gui.scroll_region_top = arg2;
1869 gui.scroll_region_bot = arg1;
1870 }
1871 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001872 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 if (arg1 < arg2)
1874 {
1875 gui.scroll_region_left = arg1;
1876 gui.scroll_region_right = arg2;
1877 }
1878 else
1879 {
1880 gui.scroll_region_left = arg2;
1881 gui.scroll_region_right = arg1;
1882 }
1883 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001884 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 gui_delete_lines(gui.row, 1);
1886 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001887 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 gui_delete_lines(gui.row, arg1);
1889 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001890 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 gui_insert_lines(gui.row, 1);
1892 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001893 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 gui_insert_lines(gui.row, arg1);
1895 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001896 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 gui_clear_block(gui.row, gui.col, gui.row,
1898 (int)Columns - 1);
1899 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001900 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 gui_start_highlight(arg1);
1902 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 gui_stop_highlight(arg1);
1905 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001906 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1908 break;
1909 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001910 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 break;
1912 }
1913 len -= (int)(++p - s);
1914 s = p;
1915 }
1916 else if (
1917#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001918 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001920 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921#endif
1922#ifdef FEAT_SIGN_ICONS
1923 && s[0] != SIGN_BYTE
1924# ifdef FEAT_NETBEANS_INTG
1925 && s[0] != MULTISIGN_BYTE
1926# endif
1927#endif
1928 )
1929 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001930 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 {
1932 gui.col = 0;
1933 if (gui.row < gui.scroll_region_bot)
1934 gui.row++;
1935 else
1936 gui_delete_lines(gui.scroll_region_top, 1);
1937 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001938 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 gui.col = 0;
1941 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001942 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
1944 if (gui.col)
1945 --gui.col;
1946 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001947 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 {
1949 ++gui.col;
1950 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001951 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 {
1953 gui_mch_beep();
1954 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001955 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956
Bram Moolenaar30613902019-12-01 22:11:18 +01001957 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 ++s;
1959 }
1960 else
1961 {
1962 p = s;
1963 while (len > 0 && (
1964#ifdef EBCDIC
1965 CtrlChar(*p) == 0
1966#else
1967 *p >= 0x20
1968#endif
1969#ifdef FEAT_SIGN_ICONS
1970 || *p == SIGN_BYTE
1971# ifdef FEAT_NETBEANS_INTG
1972 || *p == MULTISIGN_BYTE
1973# endif
1974#endif
1975 ))
1976 {
1977 len--;
1978 p++;
1979 }
1980 gui_outstr(s, (int)(p - s));
1981 s = p;
1982 }
1983 }
1984
Bram Moolenaar30613902019-12-01 22:11:18 +01001985 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1986 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if (force_cursor)
1988 gui_update_cursor(TRUE, TRUE);
1989
Bram Moolenaar30613902019-12-01 22:11:18 +01001990 // When switching to another window the dragging must have stopped.
1991 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 if (old_curwin != curwin)
1993 gui.dragged_sb = SBAR_NONE;
1994
Bram Moolenaar30613902019-12-01 22:11:18 +01001995 // Update the scrollbars after clearing the screen or when switched
1996 // to another window.
1997 // Update the horizontal scrollbar always, it's difficult to check all
1998 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 if (force_scrollbar || old_curwin != curwin)
2000 gui_update_scrollbars(force_scrollbar);
2001 else
2002 gui_update_horiz_scrollbar(FALSE);
2003 old_curwin = curwin;
2004
2005 /*
2006 * We need to make sure this is cleared since Athena doesn't tell us when
2007 * he is done dragging. Do the same for GTK.
2008 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00002009#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 gui.dragged_sb = SBAR_NONE;
2011#endif
2012
Bram Moolenaar30613902019-12-01 22:11:18 +01002013 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014}
2015
2016/*
2017 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2018 * produces wrong results. Call gui_dont_update_cursor() before that code and
2019 * gui_can_update_cursor() afterwards.
2020 */
2021 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002022gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023{
2024 if (gui.in_use)
2025 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002026 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002027 if (undraw)
2028 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 can_update_cursor = FALSE;
2030 }
2031}
2032
2033 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002034gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035{
2036 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002037 // No need to update the cursor right now, there is always more output
2038 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039}
2040
Bram Moolenaara338adc2018-01-31 20:51:47 +01002041/*
2042 * Disable issuing gui_mch_flush().
2043 */
2044 void
2045gui_disable_flush(void)
2046{
2047 ++disable_flush;
2048}
2049
2050/*
2051 * Enable issuing gui_mch_flush().
2052 */
2053 void
2054gui_enable_flush(void)
2055{
2056 --disable_flush;
2057}
2058
2059/*
2060 * Issue gui_mch_flush() if it is not disabled.
2061 */
2062 void
2063gui_may_flush(void)
2064{
2065 if (disable_flush == 0)
2066 gui_mch_flush();
2067}
2068
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002070gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
2072 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
2075 if (len == 0)
2076 return;
2077
2078 if (len < 0)
2079 len = (int)STRLEN(s);
2080
2081 while (len > 0)
2082 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (has_mbyte)
2084 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002085 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 cells = 0;
2087 for (this_len = 0; this_len < len; )
2088 {
2089 cells += (*mb_ptr2cells)(s + this_len);
2090 if (gui.col + cells > Columns)
2091 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002092 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 }
2094 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002095 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 }
2097 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (gui.col + len > Columns)
2099 this_len = Columns - gui.col;
2100 else
2101 this_len = len;
2102
2103 (void)gui_outstr_nowrap(s, this_len,
2104 0, (guicolor_T)0, (guicolor_T)0, 0);
2105 s += this_len;
2106 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002107 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 if (len > 0 && gui.col < Columns)
2109 (void)gui_outstr_nowrap((char_u *)" ", 1,
2110 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002111 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 if (gui.col >= Columns)
2113 {
2114 gui.col = 0;
2115 gui.row++;
2116 }
2117 }
2118}
2119
2120/*
2121 * Output one character (may be one or two display cells).
2122 * Caller must check for valid "off".
2123 * Returns FAIL or OK, just like gui_outstr_nowrap().
2124 */
2125 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002126gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002127 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002128 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002129 guicolor_T fg, // colors for cursor
2130 guicolor_T bg, // colors for cursor
2131 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 char_u buf[MB_MAXBYTES + 1];
2134
Bram Moolenaar30613902019-12-01 22:11:18 +01002135 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 if (enc_utf8 && ScreenLines[off] == 0)
2137 return OK;
2138
2139 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002140 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2142 flags, fg, bg, back);
2143
2144 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2145 {
2146 buf[0] = ScreenLines[off];
2147 buf[1] = ScreenLines2[off];
2148 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2149 }
2150
Bram Moolenaar30613902019-12-01 22:11:18 +01002151 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002153 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155}
2156
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002157#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158/*
2159 * Output the string at the given screen position. This is used in place
2160 * of gui_screenchar() where possible because Pango needs as much context
2161 * as possible to work nicely. It's a lot faster as well.
2162 */
2163 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002164gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002165 int off, // Offset from start of screen
2166 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002167 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002168 guicolor_T fg, // colors for cursor
2169 guicolor_T bg, // colors for cursor
2170 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171{
2172 char_u *buf;
2173 int outlen = 0;
2174 int i;
2175 int retval;
2176
Bram Moolenaar30613902019-12-01 22:11:18 +01002177 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 return OK;
2179
2180 if (enc_utf8)
2181 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002182 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002184 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
2186 for (i = off; i < off + len; ++i)
2187 {
2188 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002189 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190
2191 if (ScreenLinesUC[i] == 0)
2192 buf[outlen++] = ScreenLines[i];
2193 else
2194 outlen += utfc_char2bytes(i, buf + outlen);
2195 }
2196
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2199 vim_free(buf);
2200
2201 return retval;
2202 }
2203 else if (enc_dbcs == DBCS_JPNU)
2204 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002205 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002207 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
2209 for (i = off; i < off + len; ++i)
2210 {
2211 buf[outlen++] = ScreenLines[i];
2212
Bram Moolenaar30613902019-12-01 22:11:18 +01002213 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 if (ScreenLines[i] == 0x8e)
2215 buf[outlen++] = ScreenLines2[i];
2216 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2217 buf[outlen++] = ScreenLines[++i];
2218 }
2219
Bram Moolenaar30613902019-12-01 22:11:18 +01002220 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2222 vim_free(buf);
2223
2224 return retval;
2225 }
2226 else
2227 {
2228 return gui_outstr_nowrap(&ScreenLines[off], len,
2229 flags, fg, bg, back);
2230 }
2231}
Bram Moolenaar30613902019-12-01 22:11:18 +01002232#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233
2234/*
2235 * Output the given string at the current cursor position. If the string is
2236 * too long to fit on the line, then it is truncated.
2237 * "flags":
2238 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2239 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002240 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 * background.
2242 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2243 * it.
2244 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2245 * FAIL (the caller should start drawing "back" chars back).
2246 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002247 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002248gui_outstr_nowrap(
2249 char_u *s,
2250 int len,
2251 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002252 guicolor_T fg, // colors for cursor
2253 guicolor_T bg, // colors for cursor
2254 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255{
2256 long_u highlight_mask;
2257 long_u hl_mask_todo;
2258 guicolor_T fg_color;
2259 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002260 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002261#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002263 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264# ifdef FEAT_XFONTSET
2265 GuiFontset fontset = NOFONTSET;
2266# endif
2267#endif
2268 attrentry_T *aep = NULL;
2269 int draw_flags;
2270 int col = gui.col;
2271#ifdef FEAT_SIGN_ICONS
2272 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002273 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002274 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275# ifdef FEAT_NETBEANS_INTG
2276 int multi_sign = FALSE;
2277# endif
2278#endif
2279
2280 if (len < 0)
2281 len = (int)STRLEN(s);
2282 if (len == 0)
2283 return OK;
2284
2285#ifdef FEAT_SIGN_ICONS
2286 if (*s == SIGN_BYTE
2287# ifdef FEAT_NETBEANS_INTG
2288 || *s == MULTISIGN_BYTE
2289# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002290 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 {
2292# ifdef FEAT_NETBEANS_INTG
2293 if (*s == MULTISIGN_BYTE)
2294 multi_sign = TRUE;
2295# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002296 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002297 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2298 (curwin->w_p_nu || curwin->w_p_rnu))
2299 {
2300 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2301 s = extra;
2302 }
2303 else
2304 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 if (len == 1 && col > 0)
2306 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002307 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002308 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002309 // right align sign icon in the number column
2310 signcol = col + len - 3;
2311 else
2312 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 draw_sign = TRUE;
2314 highlight_mask = 0;
2315 }
2316 else
2317#endif
2318 if (gui.highlight_mask > HL_ALL)
2319 {
2320 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002321 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 highlight_mask = 0;
2323 else
2324 highlight_mask = aep->ae_attr;
2325 }
2326 else
2327 highlight_mask = gui.highlight_mask;
2328 hl_mask_todo = highlight_mask;
2329
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002330#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002331 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2333 font = aep->ae_u.gui.font;
2334# ifdef FEAT_XFONTSET
2335 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2336 fontset = aep->ae_u.gui.fontset;
2337# endif
2338 else
2339 {
2340# ifdef FEAT_XFONTSET
2341 if (gui.fontset != NOFONTSET)
2342 fontset = gui.fontset;
2343 else
2344# endif
2345 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2346 {
2347 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2348 {
2349 font = gui.boldital_font;
2350 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2351 }
2352 else if (gui.bold_font != NOFONT)
2353 {
2354 font = gui.bold_font;
2355 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2356 }
2357 else
2358 font = gui.norm_font;
2359 }
2360 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2361 {
2362 font = gui.ital_font;
2363 hl_mask_todo &= ~HL_ITALIC;
2364 }
2365 else
2366 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002367
Bram Moolenaardb250522013-06-17 22:43:25 +02002368 /*
2369 * Choose correct wide_font by font. wide_font should be set with font
2370 * at same time in above block. But it will make many "ifdef" nasty
2371 * blocks. So we do it here.
2372 */
2373 if (font == gui.boldital_font && gui.wide_boldital_font)
2374 wide_font = gui.wide_boldital_font;
2375 else if (font == gui.bold_font && gui.wide_bold_font)
2376 wide_font = gui.wide_bold_font;
2377 else if (font == gui.ital_font && gui.wide_ital_font)
2378 wide_font = gui.wide_ital_font;
2379 else if (font == gui.norm_font && gui.wide_font)
2380 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 }
2382# ifdef FEAT_XFONTSET
2383 if (fontset != NOFONTSET)
2384 gui_mch_set_fontset(fontset);
2385 else
2386# endif
2387 gui_mch_set_font(font);
2388#endif
2389
2390 draw_flags = 0;
2391
Bram Moolenaar30613902019-12-01 22:11:18 +01002392 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 bg_color = gui.back_pixel;
2394 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2395 {
2396 draw_flags |= DRAW_CURSOR;
2397 fg_color = fg;
2398 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002399 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 }
2401 else if (aep != NULL)
2402 {
2403 fg_color = aep->ae_u.gui.fg_color;
2404 if (fg_color == INVALCOLOR)
2405 fg_color = gui.norm_pixel;
2406 bg_color = aep->ae_u.gui.bg_color;
2407 if (bg_color == INVALCOLOR)
2408 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002409 sp_color = aep->ae_u.gui.sp_color;
2410 if (sp_color == INVALCOLOR)
2411 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 }
2413 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002414 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002416 sp_color = fg_color;
2417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418
2419 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2420 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 gui_mch_set_fg_color(bg_color);
2422 gui_mch_set_bg_color(fg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 }
2424 else
2425 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 gui_mch_set_fg_color(fg_color);
2427 gui_mch_set_bg_color(bg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002429 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430
Bram Moolenaar30613902019-12-01 22:11:18 +01002431 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 if (!(flags & GUI_MON_NOCLEAR))
2433 clip_may_clear_selection(gui.row, gui.row);
2434
2435
Bram Moolenaar30613902019-12-01 22:11:18 +01002436 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2438 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 /*
2441 * When drawing bold or italic characters the spill-over from the left
2442 * neighbor may be destroyed. Let the caller backup to start redrawing
2443 * just after a blank.
2444 */
2445 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2446 return FAIL;
2447
Bram Moolenaare60acc12011-05-10 16:41:25 +02002448#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002449 // If there's no italic font, then fake it.
2450 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (hl_mask_todo & HL_ITALIC)
2452 draw_flags |= DRAW_ITALIC;
2453
Bram Moolenaar30613902019-12-01 22:11:18 +01002454 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 if (hl_mask_todo & HL_UNDERLINE)
2456 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002457
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002459 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002460 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 draw_flags |= DRAW_UNDERL;
2462#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002463 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002464 if (hl_mask_todo & HL_UNDERCURL)
2465 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
Bram Moolenaar30613902019-12-01 22:11:18 +01002467 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002468 if (hl_mask_todo & HL_STRIKETHROUGH)
2469 draw_flags |= DRAW_STRIKE;
2470
Bram Moolenaar30613902019-12-01 22:11:18 +01002471 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 if (flags & GUI_MON_TRS_CURSOR)
2473 draw_flags |= DRAW_TRANSP;
2474
2475 /*
2476 * Draw the text.
2477 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002478#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002479 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2481#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 if (enc_utf8)
2483 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002484 int start; // index of bytes to be drawn
2485 int cells; // cellwidth of bytes to be drawn
2486 int thislen; // length of bytes to be drawn
2487 int cn; // cellwidth of current char
2488 int i; // index of current char
2489 int c; // current char value
2490 int cl; // byte length of current char
2491 int comping; // current char is composing
2492 int scol = col; // screen column
2493 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002494 int prev_wide = FALSE;
2495 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002496# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002497 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002498# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002499 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002500# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
Bram Moolenaar30613902019-12-01 22:11:18 +01002502 // Break the string at a composing character, it has to be drawn on
2503 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 start = 0;
2505 cells = 0;
2506 for (i = 0; i < len; i += cl)
2507 {
2508 c = utf_ptr2char(s + i);
2509 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002511 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002513 if (!comping || sep_comp)
2514 {
2515 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002516# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002517 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002518# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002519 && wide_font != NOFONT)
2520 curr_wide = TRUE;
2521 else
2522 curr_wide = FALSE;
2523 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002524 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002525 if (cl == 0) // hit end of string
2526 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
Bram Moolenaar45933962013-01-23 17:43:57 +01002528 wide_changed = curr_wide != prev_wide;
2529
Bram Moolenaar30613902019-12-01 22:11:18 +01002530 // Print the string so far if it's the last character or there is
2531 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002532 if (i + cl >= len || (comping && sep_comp && i > start)
2533 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002534# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002536# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002537 // No fontset: At least draw char after wide char at
2538 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002541 )
2542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 )
2544 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002545 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 thislen = i - start;
2547 else
2548 thislen = i - start + cl;
2549 if (thislen > 0)
2550 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002551 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002552 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2554 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002555 if (prev_wide)
2556 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 start += thislen;
2558 }
2559 scol += cells;
2560 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002561 // Adjust to not draw a character which width is changed
2562 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002563 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002565 scol -= cn;
2566 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568
Bram Moolenaar13505972019-01-24 15:04:48 +01002569# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002570 // No fontset: draw a space to fill the gap after a wide char
2571 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002573# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002575# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002576 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2578 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002579# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002581 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002582 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002584# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002585 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002586 gui_mch_draw_string(gui.row, scol, s + i, cl,
2587 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002588# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002589 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2590 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002591# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 start = i + cl;
2593 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002594 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002596 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 len = scol - col;
2598 }
2599 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 {
2601 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 if (enc_dbcs == DBCS_JPNU)
2603 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002604 // Get the length in display cells, this can be different from the
2605 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002606 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002609#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2612 gui.col = col + len;
2613
Bram Moolenaar30613902019-12-01 22:11:18 +01002614 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 if (flags & GUI_MON_NOCLEAR)
2616 clip_may_redraw_selection(gui.row, col, len);
2617
2618 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2619 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002620 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 if (gui.cursor_row == gui.row
2622 && gui.cursor_col >= col
2623 && gui.cursor_col < col + len)
2624 gui.cursor_is_valid = FALSE;
2625 }
2626
2627#ifdef FEAT_SIGN_ICONS
2628 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002629 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002630 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002631# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002632 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (multi_sign)
2634 netbeans_draw_multisign_indicator(gui.row);
2635# endif
2636#endif
2637
2638 return OK;
2639}
2640
2641/*
2642 * Un-draw the cursor. Actually this just redraws the character at the given
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002643 * position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 */
2645 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002646gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647{
2648 if (gui.cursor_is_valid)
2649 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002650 // Redraw the character just before too, if there is one, because with
2651 // some fonts and characters there can be a one pixel overlap.
2652 gui_redraw_block(gui.cursor_row,
2653 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col,
2654 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR);
2655
Bram Moolenaar54612582019-11-21 17:13:31 +01002656 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2657 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 gui.cursor_is_valid = FALSE;
2659 }
2660}
2661
2662 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002663gui_redraw(
2664 int x,
2665 int y,
2666 int w,
2667 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
2669 int row1, col1, row2, col2;
2670
2671 row1 = Y_2_ROW(y);
2672 col1 = X_2_COL(x);
2673 row2 = Y_2_ROW(y + h - 1);
2674 col2 = X_2_COL(x + w - 1);
2675
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002676 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677
2678 /*
2679 * We may need to redraw the cursor, but don't take it upon us to change
2680 * its location after a scroll.
2681 * (maybe be more strict even and test col too?)
2682 * These things may be outside the update/clipping region and reality may
2683 * not reflect Vims internal ideas if these operations are clipped away.
2684 */
2685 if (gui.row == gui.cursor_row)
2686 gui_update_cursor(TRUE, TRUE);
2687}
2688
2689/*
2690 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2691 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002693 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002694gui_redraw_block(
2695 int row1,
2696 int col1,
2697 int row2,
2698 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002699 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 int old_row, old_col;
2702 long_u old_hl_mask;
2703 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002704 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 int idx, len;
2706 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708
Bram Moolenaar30613902019-12-01 22:11:18 +01002709 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002711 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaar30613902019-12-01 22:11:18 +01002713 // Don't try to draw outside the shell!
2714 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 col1 = check_col(col1);
2716 col2 = check_col(col2);
2717 row1 = check_row(row1);
2718 row2 = check_row(row2);
2719
Bram Moolenaar30613902019-12-01 22:11:18 +01002720 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 old_row = gui.row;
2722 old_col = gui.col;
2723 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 orig_col1 = col1;
2725 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 for (gui.row = row1; gui.row <= row2; gui.row++)
2728 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002729 // When only half of a double-wide character is in the block, include
2730 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 col1 = orig_col1;
2732 col2 = orig_col2;
2733 off = LineOffset[gui.row];
2734 if (enc_dbcs != 0)
2735 {
2736 if (col1 > 0)
2737 col1 -= dbcs_screen_head_off(ScreenLines + off,
2738 ScreenLines + off + col1);
2739 col2 += dbcs_screen_tail_off(ScreenLines + off,
2740 ScreenLines + off + col2);
2741 }
2742 else if (enc_utf8)
2743 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002744 if (ScreenLines[off + col1] == 0)
2745 {
2746 if (col1 > 0)
2747 --col1;
2748 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002749 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002750 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002751 // Make this IEMSGN when it no longer breaks Travis CI.
2752 vim_snprintf((char *)IObuff, IOSIZE,
2753 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2754 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002755 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002756 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002757 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002758#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2760 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 gui.col = col1;
2764 off = LineOffset[gui.row] + gui.col;
2765 len = col2 - col1 + 1;
2766
Bram Moolenaar30613902019-12-01 22:11:18 +01002767 // Find how many chars back this highlighting starts, or where a space
2768 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 for (back = 0; back < col1; ++back)
2770 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2771 || ScreenLines[off - 1 - back] == ' ')
2772 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773
Bram Moolenaar30613902019-12-01 22:11:18 +01002774 // Break it up in strings of characters with the same attributes.
2775 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 while (len > 0)
2777 {
2778 first_attr = ScreenAttrs[off];
2779 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002780#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 if (enc_utf8 && ScreenLinesUC[off] != 0)
2782 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002783 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 nback = gui_screenchar(off, flags,
2785 (guicolor_T)0, (guicolor_T)0, back);
2786 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2787 idx = 2;
2788 else
2789 idx = 1;
2790 }
2791 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2792 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002793 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 nback = gui_screenchar(off, flags,
2795 (guicolor_T)0, (guicolor_T)0, back);
2796 idx = 1;
2797 }
2798 else
2799#endif
2800 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002801#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 for (idx = 0; idx < len; ++idx)
2803 {
2804 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002805 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 if (ScreenAttrs[off + idx] != first_attr)
2807 break;
2808 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002809 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 nback = gui_screenstr(off, idx, flags,
2811 (guicolor_T)0, (guicolor_T)0, back);
2812#else
2813 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2814 idx++)
2815 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002816 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2818 break;
2819 if (enc_dbcs == DBCS_JPNU)
2820 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002821 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 if (ScreenLines[off + idx] == 0x8e)
2823 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002824 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002826 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 }
2829 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2830 (guicolor_T)0, (guicolor_T)0, back);
2831#endif
2832 }
2833 if (nback == FAIL)
2834 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002835 // Must back up to start drawing where a bold or italic word
2836 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 off -= back;
2838 len += back;
2839 gui.col -= back;
2840 }
2841 else
2842 {
2843 off += idx;
2844 len -= idx;
2845 }
2846 back = 0;
2847 }
2848 }
2849
Bram Moolenaar30613902019-12-01 22:11:18 +01002850 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 gui.row = old_row;
2852 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002853 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854}
2855
2856 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002857gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858{
2859 if (count <= 0)
2860 return;
2861
2862 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002863 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 gui_clear_block(row, gui.scroll_region_left,
2865 gui.scroll_region_bot, gui.scroll_region_right);
2866 else
2867 {
2868 gui_mch_delete_lines(row, count);
2869
Bram Moolenaar30613902019-12-01 22:11:18 +01002870 // If the cursor was in the deleted lines it's now gone. If the
2871 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 if (gui.cursor_row >= row
2873 && gui.cursor_col >= gui.scroll_region_left
2874 && gui.cursor_col <= gui.scroll_region_right)
2875 {
2876 if (gui.cursor_row < row + count)
2877 gui.cursor_is_valid = FALSE;
2878 else if (gui.cursor_row <= gui.scroll_region_bot)
2879 gui.cursor_row -= count;
2880 }
2881 }
2882}
2883
2884 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002885gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886{
2887 if (count <= 0)
2888 return;
2889
2890 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002891 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 gui_clear_block(row, gui.scroll_region_left,
2893 gui.scroll_region_bot, gui.scroll_region_right);
2894 else
2895 {
2896 gui_mch_insert_lines(row, count);
2897
2898 if (gui.cursor_row >= gui.row
2899 && gui.cursor_col >= gui.scroll_region_left
2900 && gui.cursor_col <= gui.scroll_region_right)
2901 {
2902 if (gui.cursor_row <= gui.scroll_region_bot - count)
2903 gui.cursor_row += count;
2904 else if (gui.cursor_row <= gui.scroll_region_bot)
2905 gui.cursor_is_valid = FALSE;
2906 }
2907 }
2908}
2909
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002910#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002911/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002912 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2913 */
2914 static int
2915gui_wait_for_chars_3(
2916 long wtime,
2917 int *interrupted UNUSED,
2918 int ignore_input UNUSED)
2919{
2920 return gui_mch_wait_for_chars(wtime);
2921}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002922#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002923
2924/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002925 * Returns OK if a character was found to be available within the given time,
2926 * or FAIL otherwise.
2927 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002928 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002929gui_wait_for_chars_or_timer(
2930 long wtime,
2931 int *interrupted UNUSED,
2932 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002933{
2934#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002935 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2936 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002937#else
2938 return gui_mch_wait_for_chars(wtime);
2939#endif
2940}
2941
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942/*
2943 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002944 * "wtime" == -1 Wait forever.
2945 * "wtime" == 0 Don't wait.
2946 * "wtime" > 0 Wait wtime milliseconds for a character.
2947 *
2948 * Returns the number of characters read or zero when timed out or interrupted.
2949 * "buf" may be NULL, in which case a non-zero number is returned if characters
2950 * are available.
2951 */
2952 static int
2953gui_wait_for_chars_buf(
2954 char_u *buf,
2955 int maxlen,
2956 long wtime, // don't use "time", MIPS cannot handle it
2957 int tb_change_cnt)
2958{
2959 int retval;
2960
2961#ifdef FEAT_MENU
2962 // If we're going to wait a bit, update the menus and mouse shape for the
2963 // current State.
2964 if (wtime != 0)
2965 gui_update_menus(0);
2966#endif
2967
2968 gui_mch_update();
2969 if (input_available()) // Got char, return immediately
2970 {
2971 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2972 return read_from_input_buf(buf, (long)maxlen);
2973 return 0;
2974 }
2975 if (wtime == 0) // Don't wait for char
2976 return FAIL;
2977
2978 // Before waiting, flush any output to the screen.
2979 gui_mch_flush();
2980
2981 // Blink while waiting for a character.
2982 gui_mch_start_blink();
2983
2984 // Common function to loop until "wtime" is met, while handling timers and
2985 // other callbacks.
2986 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2987 gui_wait_for_chars_or_timer, NULL);
2988
2989 gui_mch_stop_blink(TRUE);
2990
2991 return retval;
2992}
2993
2994/*
2995 * Wait for a character from the keyboard without actually reading it.
2996 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 * wtime == -1 Wait forever.
2998 * wtime == 0 Don't wait.
2999 * wtime > 0 Wait wtime milliseconds for a character.
3000 * Returns OK if a character was found to be available within the given time,
3001 * or FAIL otherwise.
3002 */
3003 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003004gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003006 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007}
3008
3009/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003010 * Equivalent of mch_inchar() for the GUI.
3011 */
3012 int
3013gui_inchar(
3014 char_u *buf,
3015 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01003016 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003017 int tb_change_cnt)
3018{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003019 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003020}
3021
3022/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003023 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 */
3025 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003026fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
3028 p[0] = (char_u)(col / 128 + ' ' + 1);
3029 p[1] = (char_u)(col % 128 + ' ' + 1);
3030 p[2] = (char_u)(row / 128 + ' ' + 1);
3031 p[3] = (char_u)(row % 128 + ' ' + 1);
3032}
3033
3034/*
3035 * Generic mouse support function. Add a mouse event to the input buffer with
3036 * the given properties.
3037 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3038 * MOUSE_X1, MOUSE_X2
3039 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003040 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3041 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 * x, y --- Coordinates of mouse in pixels.
3043 * repeated_click --- TRUE if this click comes only a short time after a
3044 * previous click.
3045 * modifiers --- Bit field which may be any of the following modifiers
3046 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3047 * This function will ignore drag events where the mouse has not moved to a new
3048 * character.
3049 */
3050 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003051gui_send_mouse_event(
3052 int button,
3053 int x,
3054 int y,
3055 int repeated_click,
3056 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057{
3058 static int prev_row = 0, prev_col = 0;
3059 static int prev_button = -1;
3060 static int num_clicks = 1;
3061 char_u string[10];
3062 enum key_extra button_char;
3063 int row, col;
3064#ifdef FEAT_CLIPBOARD
3065 int checkfor;
3066 int did_clip = FALSE;
3067#endif
3068
3069 /*
3070 * Scrolling may happen at any time, also while a selection is present.
3071 */
3072 switch (button)
3073 {
Bram Moolenaar445f11d2021-06-08 20:13:31 +02003074 case MOUSE_MOVE:
3075 button_char = KE_MOUSEMOVE_XY;
3076 goto button_set;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 case MOUSE_X1:
3078 button_char = KE_X1MOUSE;
3079 goto button_set;
3080 case MOUSE_X2:
3081 button_char = KE_X2MOUSE;
3082 goto button_set;
3083 case MOUSE_4:
3084 button_char = KE_MOUSEDOWN;
3085 goto button_set;
3086 case MOUSE_5:
3087 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003088 goto button_set;
3089 case MOUSE_6:
3090 button_char = KE_MOUSELEFT;
3091 goto button_set;
3092 case MOUSE_7:
3093 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094button_set:
3095 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003096 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 if (hold_gui_events)
3098 return;
3099
3100 string[3] = CSI;
3101 string[4] = KS_EXTRA;
3102 string[5] = (int)button_char;
3103
Bram Moolenaar30613902019-12-01 22:11:18 +01003104 // Pass the pointer coordinates of the scroll event so that we
3105 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 row = gui_xy2colrow(x, y, &col);
3107 string[6] = (char_u)(col / 128 + ' ' + 1);
3108 string[7] = (char_u)(col % 128 + ' ' + 1);
3109 string[8] = (char_u)(row / 128 + ' ' + 1);
3110 string[9] = (char_u)(row % 128 + ' ' + 1);
3111
3112 if (modifiers == 0)
3113 add_to_input_buf(string + 3, 7);
3114 else
3115 {
3116 string[0] = CSI;
3117 string[1] = KS_MODIFIER;
3118 string[2] = 0;
3119 if (modifiers & MOUSE_SHIFT)
3120 string[2] |= MOD_MASK_SHIFT;
3121 if (modifiers & MOUSE_CTRL)
3122 string[2] |= MOD_MASK_CTRL;
3123 if (modifiers & MOUSE_ALT)
3124 string[2] |= MOD_MASK_ALT;
3125 add_to_input_buf(string, 10);
3126 }
3127 return;
3128 }
3129 }
3130
3131#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003132 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 if (clip_star.state == SELECT_IN_PROGRESS)
3134 {
3135 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003136
3137 // A release event may still need to be sent if the position is equal.
3138 row = gui_xy2colrow(x, y, &col);
3139 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3140 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 }
3142
Bram Moolenaar30613902019-12-01 22:11:18 +01003143 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 switch (get_real_state())
3145 {
3146 case NORMAL_BUSY:
3147 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003148# ifdef FEAT_TERMINAL
3149 case TERMINAL:
3150# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 case NORMAL: checkfor = MOUSE_NORMAL; break;
3152 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003153 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 case REPLACE:
3155 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 case VREPLACE:
3157 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 case INSERT:
3159 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3160 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003161 case HITRETURN: // At the more- and hit-enter prompt pass the
3162 // mouse event for a click on or below the
3163 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 if (Y_2_ROW(y) >= msg_row)
3165 checkfor = MOUSE_NORMAL;
3166 else
3167 checkfor = MOUSE_RETURN;
3168 break;
3169
3170 /*
3171 * On the command line, use the clipboard selection on all lines
3172 * but the command line. But not when pasting.
3173 */
3174 case CMDLINE:
3175 case CMDLINE+LANGMAP:
3176 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3177 checkfor = MOUSE_NONE;
3178 else
3179 checkfor = MOUSE_COMMAND;
3180 break;
3181
3182 default:
3183 checkfor = MOUSE_NONE;
3184 break;
3185 };
3186
3187 /*
3188 * Allow clipboard selection of text on the command line in "normal"
3189 * modes. Don't do this when dragging the status line, or extending a
3190 * Visual selection.
3191 */
3192 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003193 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 && button != MOUSE_DRAG
3195# ifdef FEAT_MOUSESHAPE
3196 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198# endif
3199 )
3200 checkfor = MOUSE_NONE;
3201
3202 /*
3203 * Use modeless selection when holding CTRL and SHIFT pressed.
3204 */
3205 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3206 checkfor = MOUSE_NONEF;
3207
3208 /*
3209 * In Ex mode, always use modeless selection.
3210 */
3211 if (exmode_active)
3212 checkfor = MOUSE_NONE;
3213
3214 /*
3215 * If the mouse settings say to not use the mouse, use the modeless
3216 * selection. But if Visual is active, assume that only the Visual area
3217 * will be selected.
3218 * Exception: On the command line, both the selection is used and a mouse
3219 * key is send.
3220 */
3221 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3222 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003223 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3225 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226
3227 /*
3228 * When 'mousemodel' is "popup", shift-left is translated to right.
3229 * But not when also using Ctrl.
3230 */
3231 if (mouse_model_popup() && button == MOUSE_LEFT
3232 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3233 {
3234 button = MOUSE_RIGHT;
3235 modifiers &= ~ MOUSE_SHIFT;
3236 }
3237
Bram Moolenaar30613902019-12-01 22:11:18 +01003238 // If the selection is done, allow the right button to extend it.
3239 // If the selection is cleared, allow the right button to start it
3240 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 if (button == MOUSE_RIGHT)
3242 {
3243 if (clip_star.state == SELECT_CLEARED)
3244 {
3245 if (State & CMDLINE)
3246 {
3247 col = msg_col;
3248 row = msg_row;
3249 }
3250 else
3251 {
3252 col = curwin->w_wcol;
3253 row = curwin->w_wrow + W_WINROW(curwin);
3254 }
3255 clip_start_selection(col, row, FALSE);
3256 }
3257 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3258 repeated_click);
3259 did_clip = TRUE;
3260 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003261 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003262 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 {
3264 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3265 did_clip = TRUE;
3266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267
Bram Moolenaar30613902019-12-01 22:11:18 +01003268 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 if (button != MOUSE_MIDDLE)
3270 {
3271 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3272 return;
3273 if (checkfor != MOUSE_COMMAND)
3274 button = MOUSE_LEFT;
3275 }
3276 repeated_click = FALSE;
3277 }
3278
3279 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003280 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281#endif
3282
Bram Moolenaar30613902019-12-01 22:11:18 +01003283 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 if (hold_gui_events)
3285 return;
3286
3287 row = gui_xy2colrow(x, y, &col);
3288
3289 /*
3290 * If we are dragging and the mouse hasn't moved far enough to be on a
3291 * different character, then don't send an event to vim.
3292 */
3293 if (button == MOUSE_DRAG)
3294 {
3295 if (row == prev_row && col == prev_col)
3296 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003297 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 if (y < 0)
3299 row = -1;
3300 }
3301
3302 /*
3303 * If topline has changed (window scrolled) since the last click, reset
3304 * repeated_click, because we don't want starting Visual mode when
3305 * clicking on a different character in the text.
3306 */
3307 if (curwin->w_topline != gui_prev_topline
3308#ifdef FEAT_DIFF
3309 || curwin->w_topfill != gui_prev_topfill
3310#endif
3311 )
3312 repeated_click = FALSE;
3313
Bram Moolenaar30613902019-12-01 22:11:18 +01003314 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 string[1] = KS_MOUSE;
3316 string[2] = KE_FILLER;
3317 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3318 {
3319 if (repeated_click)
3320 {
3321 /*
3322 * Handle multiple clicks. They only count if the mouse is still
3323 * pointing at the same character.
3324 */
3325 if (button != prev_button || row != prev_row || col != prev_col)
3326 num_clicks = 1;
3327 else if (++num_clicks > 4)
3328 num_clicks = 1;
3329 }
3330 else
3331 num_clicks = 1;
3332 prev_button = button;
3333 gui_prev_topline = curwin->w_topline;
3334#ifdef FEAT_DIFF
3335 gui_prev_topfill = curwin->w_topfill;
3336#endif
3337
3338 string[3] = (char_u)(button | 0x20);
3339 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3340 }
3341 else
3342 string[3] = (char_u)button;
3343
3344 string[3] |= modifiers;
3345 fill_mouse_coord(string + 4, col, row);
3346 add_to_input_buf(string, 8);
3347
3348 if (row < 0)
3349 prev_row = 0;
3350 else
3351 prev_row = row;
3352 prev_col = col;
3353
3354 /*
3355 * We need to make sure this is cleared since Athena doesn't tell us when
3356 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3357 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003358#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 gui.dragged_sb = SBAR_NONE;
3360#endif
3361}
3362
3363/*
3364 * Convert x and y coordinate to column and row in text window.
3365 * Corrects for multi-byte character.
3366 * returns column in "*colp" and row as return value;
3367 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003368 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003369gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370{
3371 int col = check_col(X_2_COL(x));
3372 int row = check_row(Y_2_ROW(y));
3373
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 return row;
3376}
3377
3378#if defined(FEAT_MENU) || defined(PROTO)
3379/*
3380 * Callback function for when a menu entry has been selected.
3381 */
3382 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003383gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003385 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386
Bram Moolenaar30613902019-12-01 22:11:18 +01003387 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 if (hold_gui_events)
3389 return;
3390
3391 bytes[0] = CSI;
3392 bytes[1] = KS_MENU;
3393 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003394 add_to_input_buf(bytes, 3);
3395 add_long_to_buf((long_u)menu, bytes);
3396 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397}
3398#endif
3399
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003400static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003401
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402/*
3403 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003404 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 * in p_go.
3406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003408gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003410#ifdef FEAT_GUI_DARKTHEME
3411 static int prev_dark_theme = -1;
3412 int using_dark_theme = FALSE;
3413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414#ifdef FEAT_MENU
3415 static int prev_menu_is_active = -1;
3416#endif
3417#ifdef FEAT_TOOLBAR
3418 static int prev_toolbar = -1;
3419 int using_toolbar = FALSE;
3420#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003421#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003422 int using_tabline;
3423#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424#ifdef FEAT_FOOTER
3425 static int prev_footer = -1;
3426 int using_footer = FALSE;
3427#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003428#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 static int prev_tearoff = -1;
3430 int using_tearoff = FALSE;
3431#endif
3432
3433 char_u *p;
3434 int i;
3435#ifdef FEAT_MENU
3436 int grey_old, grey_new;
3437 char_u *temp;
3438#endif
3439 win_T *wp;
3440 int need_set_size;
3441 int fix_size;
3442
3443#ifdef FEAT_MENU
3444 if (oldval != NULL && gui.in_use)
3445 {
3446 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003447 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 */
3449 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3450 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3451 if (grey_old != grey_new)
3452 {
3453 temp = p_go;
3454 p_go = oldval;
3455 gui_update_menus(MENU_ALL_MODES);
3456 p_go = temp;
3457 }
3458 }
3459 gui.menu_is_active = FALSE;
3460#endif
3461
3462 for (i = 0; i < 3; i++)
3463 gui.which_scrollbars[i] = FALSE;
3464 for (p = p_go; *p; p++)
3465 switch (*p)
3466 {
3467 case GO_LEFT:
3468 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3469 break;
3470 case GO_RIGHT:
3471 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3472 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 case GO_VLEFT:
3474 if (win_hasvertsplit())
3475 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3476 break;
3477 case GO_VRIGHT:
3478 if (win_hasvertsplit())
3479 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3480 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 case GO_BOT:
3482 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3483 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003484#ifdef FEAT_GUI_DARKTHEME
3485 case GO_DARKTHEME:
3486 using_dark_theme = TRUE;
3487 break;
3488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489#ifdef FEAT_MENU
3490 case GO_MENUS:
3491 gui.menu_is_active = TRUE;
3492 break;
3493#endif
3494 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003495 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 break;
3497#ifdef FEAT_TOOLBAR
3498 case GO_TOOLBAR:
3499 using_toolbar = TRUE;
3500 break;
3501#endif
3502#ifdef FEAT_FOOTER
3503 case GO_FOOTER:
3504 using_footer = TRUE;
3505 break;
3506#endif
3507 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003508#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 using_tearoff = TRUE;
3510#endif
3511 break;
3512 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003513 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 break;
3515 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003516
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 if (gui.in_use)
3518 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003519 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003521
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003522#ifdef FEAT_GUI_DARKTHEME
3523 if (using_dark_theme != prev_dark_theme)
3524 {
3525 gui_mch_set_dark_theme(using_dark_theme);
3526 prev_dark_theme = using_dark_theme;
3527 }
3528#endif
3529
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003530#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003531 // Update the GUI tab line, it may appear or disappear. This may
3532 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003533 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003534 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003535 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003536 // We don't want a resize event change "Rows" here, save and
3537 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003538 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003539 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003540 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003541 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003542 if (using_tabline)
3543 fix_size = TRUE;
3544 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003545 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003546 }
3547#endif
3548
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 for (i = 0; i < 3; i++)
3550 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003551 // The scrollbar needs to be updated when it is shown/unshown and
3552 // when switching tab pages. But the size only changes when it's
3553 // shown/unshown. Thus we need two places to remember whether a
3554 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003555 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003556 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003557 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 {
3559 if (i == SBAR_BOTTOM)
3560 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3561 gui.which_scrollbars[i]);
3562 else
3563 {
3564 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003567 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3568 {
3569 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003570 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003571 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003572 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003573 if (gui.which_scrollbars[i])
3574 fix_size = TRUE;
3575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003577 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003578 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 }
3580
3581#ifdef FEAT_MENU
3582 if (gui.menu_is_active != prev_menu_is_active)
3583 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003584 // We don't want a resize event change "Rows" here, save and
3585 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 i = Rows;
3587 gui_mch_enable_menu(gui.menu_is_active);
3588 Rows = i;
3589 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003590 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 if (gui.menu_is_active)
3592 fix_size = TRUE;
3593 }
3594#endif
3595
3596#ifdef FEAT_TOOLBAR
3597 if (using_toolbar != prev_toolbar)
3598 {
3599 gui_mch_show_toolbar(using_toolbar);
3600 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003601 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 if (using_toolbar)
3603 fix_size = TRUE;
3604 }
3605#endif
3606#ifdef FEAT_FOOTER
3607 if (using_footer != prev_footer)
3608 {
3609 gui_mch_enable_footer(using_footer);
3610 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003611 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 if (using_footer)
3613 fix_size = TRUE;
3614 }
3615#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003616#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 if (using_tearoff != prev_tearoff)
3618 {
3619 gui_mch_toggle_tearoffs(using_tearoff);
3620 prev_tearoff = using_tearoff;
3621 }
3622#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003623 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003624 {
3625#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003626 long prev_Columns = Columns;
3627 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003628#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003629 // Adjust the size of the window to make the text area keep the
3630 // same size and to avoid that part of our window is off-screen
3631 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003632 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003633
3634#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003635 // GTK has the annoying habit of sending us resize events when
3636 // changing the window size ourselves. This mostly happens when
3637 // waiting for a character to arrive, quite unpredictably, and may
3638 // change Columns and Rows when we don't want it. Wait for a
3639 // character here to avoid this effect.
3640 // If you remove this, please test this command for resizing
3641 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3642 // Don't do this while starting up though.
3643 // Don't change Rows when adding menu/toolbar/tabline.
3644 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003645 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003646 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003647 if ((need_set_size & RESIZE_VERT) == 0)
3648 Rows = prev_Rows;
3649 if ((need_set_size & RESIZE_HOR) == 0)
3650 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003651#endif
3652 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003653 // When the console tabline appears or disappears the window positions
3654 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003655 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003656 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 }
3658}
3659
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003660#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3661/*
3662 * Return TRUE if the GUI is taking care of the tabline.
3663 * It may still be hidden if 'showtabline' is zero.
3664 */
3665 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003666gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003667{
3668 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3669}
3670
3671/*
3672 * Return TRUE if the GUI is showing the tabline.
3673 * This uses 'showtabline'.
3674 */
3675 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003676gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003677{
3678 if (!gui_use_tabline()
3679 || p_stal == 0
3680 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3681 return FALSE;
3682 return TRUE;
3683}
3684
3685/*
3686 * Update the tabline.
3687 * This may display/undisplay the tabline and update the labels.
3688 */
3689 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003690gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691{
3692 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003693 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003694
3695 if (!gui.starting && starting == 0)
3696 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003697 // Updating the tabline uses direct GUI commands, flush
3698 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003699 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003700
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003701 if (!showit != !shown)
3702 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003703 if (showit != 0)
3704 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003705
Bram Moolenaar30613902019-12-01 22:11:18 +01003706 // When the tabs change from hidden to shown or from shown to
3707 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003708 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003709 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003710 }
3711}
3712
3713/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003714 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003715 */
3716 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003717get_tabline_label(
3718 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003719 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003720{
3721 int modified = FALSE;
3722 char_u buf[40];
3723 int wincount;
3724 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003725 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003726
Bram Moolenaar30613902019-12-01 22:11:18 +01003727 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003728 opt = (tooltip ? &p_gtt : &p_gtl);
3729 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003730 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003731 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003732 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003733 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003734 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003735 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3736 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003737
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003738 printer_page_num = tabpage_index(tp);
3739# ifdef FEAT_EVAL
3740 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003741 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003742# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003743 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003744 curtab->tp_firstwin = firstwin;
3745 curtab->tp_lastwin = lastwin;
3746 curtab->tp_curwin = curwin;
3747 save_curtab = curtab;
3748 curtab = tp;
3749 topframe = curtab->tp_topframe;
3750 firstwin = curtab->tp_firstwin;
3751 lastwin = curtab->tp_lastwin;
3752 curwin = curtab->tp_curwin;
3753 curbuf = curwin->w_buffer;
3754
Bram Moolenaar30613902019-12-01 22:11:18 +01003755 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003756 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003757 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003758 STRCPY(NameBuff, res);
3759
Bram Moolenaar30613902019-12-01 22:11:18 +01003760 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003761 curtab = save_curtab;
3762 topframe = curtab->tp_topframe;
3763 firstwin = curtab->tp_firstwin;
3764 lastwin = curtab->tp_lastwin;
3765 curwin = curtab->tp_curwin;
3766 curbuf = curwin->w_buffer;
3767
Bram Moolenaar53989552019-12-23 22:59:18 +01003768 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003769 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003770 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003771 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003772
Bram Moolenaar30613902019-12-01 22:11:18 +01003773 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3774 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003775 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003776 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003777 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003778 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003779 if (!tooltip)
3780 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003781
3782 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3783 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3784 if (bufIsChanged(wp->w_buffer))
3785 modified = TRUE;
3786 if (modified || wincount > 1)
3787 {
3788 if (wincount > 1)
3789 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3790 else
3791 buf[0] = NUL;
3792 if (modified)
3793 STRCAT(buf, "+");
3794 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003795 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003796 mch_memmove(NameBuff, buf, STRLEN(buf));
3797 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003798 }
3799}
3800
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003801/*
3802 * Send the event for clicking to select tab page "nr".
3803 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003804 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003805 */
3806 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003807send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003808{
3809 char_u string[3];
3810
3811 if (nr == tabpage_index(curtab))
3812 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003813
Bram Moolenaar30613902019-12-01 22:11:18 +01003814 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003815 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003816# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003817 || cmdwin_type != 0
3818# endif
3819 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003820 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003821 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003822 gui_mch_set_curtab(tabpage_index(curtab));
3823 return FALSE;
3824 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003825
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003826 string[0] = CSI;
3827 string[1] = KS_TABLINE;
3828 string[2] = KE_FILLER;
3829 add_to_input_buf(string, 3);
3830 string[0] = nr;
3831 add_to_input_buf_csi(string, 1);
3832 return TRUE;
3833}
3834
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003835/*
3836 * Send a tabline menu event
3837 */
3838 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003839send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003840{
3841 char_u string[3];
3842
Bram Moolenaar29547192018-12-11 20:39:19 +01003843 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003844 if (hold_gui_events)
3845 return;
3846
Bram Moolenaar29547192018-12-11 20:39:19 +01003847 // Cannot close the last tabpage.
3848 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3849 return;
3850
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003851 string[0] = CSI;
3852 string[1] = KS_TABMENU;
3853 string[2] = KE_FILLER;
3854 add_to_input_buf(string, 3);
3855 string[0] = tabidx;
3856 string[1] = (char_u)(long)event;
3857 add_to_input_buf_csi(string, 2);
3858}
3859
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861
3862/*
3863 * Scrollbar stuff:
3864 */
3865
Bram Moolenaare45828b2006-02-15 22:12:56 +00003866/*
3867 * Remove all scrollbars. Used before switching to another tab page.
3868 */
3869 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003870gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003871{
3872 int i;
3873 win_T *wp;
3874
3875 for (i = 0; i < 3; i++)
3876 {
3877 if (i == SBAR_BOTTOM)
3878 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3879 else
3880 {
3881 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003882 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003883 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003884 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003885 }
3886}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003887
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003889gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890{
3891 static int sbar_ident = 0;
3892
Bram Moolenaar30613902019-12-01 22:11:18 +01003893 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 sb->wp = wp;
3895 sb->type = type;
3896 sb->value = 0;
3897#ifdef FEAT_GUI_ATHENA
3898 sb->pixval = 0;
3899#endif
3900 sb->size = 1;
3901 sb->max = 1;
3902 sb->top = 0;
3903 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 sb->status_height = 0;
3906 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3907}
3908
3909/*
3910 * Find the scrollbar with the given index.
3911 */
3912 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003913gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914{
3915 win_T *wp;
3916
3917 if (gui.bottom_sbar.ident == ident)
3918 return &gui.bottom_sbar;
3919 FOR_ALL_WINDOWS(wp)
3920 {
3921 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3922 return &wp->w_scrollbars[SBAR_LEFT];
3923 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3924 return &wp->w_scrollbars[SBAR_RIGHT];
3925 }
3926 return NULL;
3927}
3928
3929/*
3930 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3931 *
3932 * For Win32, Macintosh and GTK+ 2:
3933 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3934 * you stop dragging the scrollbar. We get here each time the scrollbar is
3935 * dragged another pixel, but as far as the rest of vim goes, it thinks
3936 * we're just hanging in the call to DispatchMessage() in
3937 * process_message(). The DispatchMessage() call that hangs was passed a
3938 * mouse button click event in the scrollbar window. -- webb.
3939 *
3940 * Solution: Do the scrolling right here. But only when allowed.
3941 * Ignore the scrollbars while executing an external command or when there
3942 * are still characters to be processed.
3943 */
3944 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003945gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 int sb_num;
3949#ifdef USE_ON_FLY_SCROLL
3950 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952# ifdef FEAT_DIFF
3953 int old_topfill = curwin->w_topfill;
3954# endif
3955#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003956 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 int byte_count;
3958#endif
3959
3960 if (sb == NULL)
3961 return;
3962
Bram Moolenaar30613902019-12-01 22:11:18 +01003963 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 if (hold_gui_events)
3965 return;
3966
3967#ifdef FEAT_CMDWIN
3968 if (cmdwin_type != 0 && sb->wp != curwin)
3969 return;
3970#endif
3971
3972 if (still_dragging)
3973 {
3974 if (sb->wp == NULL)
3975 gui.dragged_sb = SBAR_BOTTOM;
3976 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3977 gui.dragged_sb = SBAR_LEFT;
3978 else
3979 gui.dragged_sb = SBAR_RIGHT;
3980 gui.dragged_wp = sb->wp;
3981 }
3982 else
3983 {
3984 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003985#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003986 // Keep the "dragged_wp" value until after the scrolling, for when the
3987 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 gui.dragged_wp = NULL;
3989#endif
3990 }
3991
Bram Moolenaar30613902019-12-01 22:11:18 +01003992 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 if (sb->wp != NULL)
3994 sb = &sb->wp->w_scrollbars[0];
3995
3996 /*
3997 * Check validity of value
3998 */
3999 if (value < 0)
4000 value = 0;
4001#ifdef SCROLL_PAST_END
4002 else if (value > sb->max)
4003 value = sb->max;
4004#else
4005 if (value > sb->max - sb->size + 1)
4006 value = sb->max - sb->size + 1;
4007#endif
4008
4009 sb->value = value;
4010
4011#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004012 // When not allowed to do the scrolling right now, return.
4013 // This also checked input_available(), but that causes the first click in
4014 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004015 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 return;
4017#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004018 // Disallow scrolling the current window when the completion popup menu is
4019 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004020 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4021 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022
4023#ifdef FEAT_RIGHTLEFT
4024 if (sb->wp == NULL && curwin->w_p_rl)
4025 {
4026 value = sb->max + 1 - sb->size - value;
4027 if (value < 0)
4028 value = 0;
4029 }
4030#endif
4031
Bram Moolenaar30613902019-12-01 22:11:18 +01004032 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 {
4034 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4036 sb_num++;
4037 if (wp == NULL)
4038 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039
4040#ifdef USE_ON_FLY_SCROLL
4041 current_scrollbar = sb_num;
4042 scrollbar_value = value;
4043 if (State & NORMAL)
4044 {
4045 gui_do_scroll();
4046 setcursor();
4047 }
4048 else if (State & INSERT)
4049 {
4050 ins_scroll();
4051 setcursor();
4052 }
4053 else if (State & CMDLINE)
4054 {
4055 if (msg_scrolled == 0)
4056 {
4057 gui_do_scroll();
4058 redrawcmdline();
4059 }
4060 }
4061# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004062 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 sb->value = sb->wp->w_topline - 1;
4064# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004065
Bram Moolenaar30613902019-12-01 22:11:18 +01004066 // When dragging one scrollbar and there is another one at the other
4067 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004068 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4069 gui_mch_set_scrollbar_thumb(
4070 &sb->wp->w_scrollbars[
4071 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4072 ? SBAR_LEFT : SBAR_RIGHT],
4073 sb->value, sb->size, sb->max);
4074
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075#else
4076 bytes[0] = CSI;
4077 bytes[1] = KS_VER_SCROLLBAR;
4078 bytes[2] = KE_FILLER;
4079 bytes[3] = (char_u)sb_num;
4080 byte_count = 4;
4081#endif
4082 }
4083 else
4084 {
4085#ifdef USE_ON_FLY_SCROLL
4086 scrollbar_value = value;
4087
4088 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004089 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 else if (State & INSERT)
4091 ins_horscroll();
4092 else if (State & CMDLINE)
4093 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004094 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004096 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 redrawcmdline();
4098 }
4099 }
4100 if (old_leftcol != curwin->w_leftcol)
4101 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004102 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 setcursor();
4104 }
4105#else
4106 bytes[0] = CSI;
4107 bytes[1] = KS_HOR_SCROLLBAR;
4108 bytes[2] = KE_FILLER;
4109 byte_count = 3;
4110#endif
4111 }
4112
4113#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 /*
4115 * synchronize other windows, as necessary according to 'scrollbind'
4116 */
4117 if (curwin->w_p_scb
4118 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4119 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004120# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004122# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 ))))
4124 {
4125 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004126 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004127 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 if (wp->w_redr_type > 0)
4129 updateWindow(wp);
4130 setcursor();
4131 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004132 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004134 add_to_input_buf(bytes, byte_count);
4135 add_long_to_buf((long_u)value, bytes);
4136 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137#endif
4138}
4139
4140/*
4141 * Scrollbar stuff:
4142 */
4143
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004144/*
4145 * Called when something in the window layout has changed.
4146 */
4147 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004148gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004149{
4150 if (gui.in_use && starting == 0)
4151 {
4152 out_flush();
4153 gui_init_which_components(NULL);
4154 gui_update_scrollbars(TRUE);
4155 }
4156 need_mouse_correct = TRUE;
4157}
4158
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004160gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004161 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162{
4163 win_T *wp;
4164 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004165 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 int which_sb;
4167 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169
Bram Moolenaar30613902019-12-01 22:11:18 +01004170 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 gui_update_horiz_scrollbar(force);
4172
Bram Moolenaar4f974752019-02-17 17:44:42 +01004173#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004174 // Return straight away if there is neither a left nor right scrollbar.
4175 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4177 return;
4178#endif
4179
4180 /*
4181 * Don't want to update a scrollbar while we're dragging it. But if we
4182 * have both a left and right scrollbar, and we drag one of them, we still
4183 * need to update the other one.
4184 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004185 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4186 && gui.which_scrollbars[SBAR_LEFT]
4187 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 {
4189 /*
4190 * If we have two scrollbars and one of them is being dragged, just
4191 * copy the scrollbar position from the dragged one to the other one.
4192 */
4193 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4194 if (gui.dragged_wp != NULL)
4195 gui_mch_set_scrollbar_thumb(
4196 &gui.dragged_wp->w_scrollbars[which_sb],
4197 gui.dragged_wp->w_scrollbars[0].value,
4198 gui.dragged_wp->w_scrollbars[0].size,
4199 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 }
4201
Bram Moolenaar30613902019-12-01 22:11:18 +01004202 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 ++hold_gui_events;
4204
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004205 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004207 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004209 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004210 if (!force && (gui.dragged_sb == SBAR_LEFT
4211 || gui.dragged_sb == SBAR_RIGHT)
4212 && gui.dragged_wp == wp)
4213 continue;
4214
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215#ifdef SCROLL_PAST_END
4216 max = wp->w_buffer->b_ml.ml_line_count - 1;
4217#else
4218 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4219#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004220 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 max = 0;
4222 val = wp->w_topline - 1;
4223 size = wp->w_height;
4224#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004225 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 val = max;
4227#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004228 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 size = max + 1;
4230 if (val > max - size + 1)
4231 val = max - size + 1;
4232#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004233 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 val = 0;
4235
4236 /*
4237 * Scrollbar at index 0 (the left one) contains all the information.
4238 * It would be the same info for left and right so we just store it for
4239 * one of them.
4240 */
4241 sb = &wp->w_scrollbars[0];
4242
4243 /*
4244 * Note: no check for valid w_botline. If it's not valid the
4245 * scrollbars will be updated later anyway.
4246 */
4247 if (size < 1 || wp->w_botline - 2 > max)
4248 {
4249 /*
4250 * This can happen during changing files. Just don't update the
4251 * scrollbar for now.
4252 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004253 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 if (gui.which_scrollbars[SBAR_LEFT])
4255 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4256 if (gui.which_scrollbars[SBAR_RIGHT])
4257 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4258 continue;
4259 }
4260 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 || sb->top != wp->w_winrow
4262 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004264 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004266 // Height, width or position of scrollbar has changed. For
4267 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 sb->top = wp->w_winrow;
4270 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272
Bram Moolenaar30613902019-12-01 22:11:18 +01004273 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 h = (sb->height + sb->status_height) * gui.char_height;
4275 y = sb->top * gui.char_height + gui.border_offset;
4276#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4277 if (gui.menu_is_active)
4278 y += gui.menu_height;
4279#endif
4280
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004281#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA) \
4282 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004284# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 y += gui.toolbar_height;
4286# else
4287# ifdef FEAT_GUI_MSWIN
4288 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4289# endif
4290# endif
4291#endif
4292
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004293#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004294 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004295 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004296#endif
4297
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004300 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 h += gui.border_offset;
4302 y -= gui.border_offset;
4303 }
4304 if (gui.which_scrollbars[SBAR_LEFT])
4305 {
4306 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4307 gui.left_sbar_x, y,
4308 gui.scrollbar_width, h);
4309 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4310 }
4311 if (gui.which_scrollbars[SBAR_RIGHT])
4312 {
4313 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4314 gui.right_sbar_x, y,
4315 gui.scrollbar_width, h);
4316 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4317 }
4318 }
4319
Bram Moolenaar30613902019-12-01 22:11:18 +01004320 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4321 // checking if the thumb moved at least a pixel. Only do this for
4322 // Athena, most other GUIs require the update anyway to make the
4323 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324#ifdef FEAT_GUI_ATHENA
4325 if (max == 0)
4326 y = 0;
4327 else
4328 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4329 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4330#else
4331 if (force || sb->value != val || sb->size != size || sb->max != max)
4332#endif
4333 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004334 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 sb->value = val;
4336#ifdef FEAT_GUI_ATHENA
4337 sb->pixval = y;
4338#endif
4339 sb->size = size;
4340 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004341 if (gui.which_scrollbars[SBAR_LEFT]
4342 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4344 val, size, max);
4345 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004346 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4348 val, size, max);
4349 }
4350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 --hold_gui_events;
4353}
4354
4355/*
4356 * Enable or disable a scrollbar.
4357 * Check for scrollbars for vertically split windows which are not enabled
4358 * sometimes.
4359 */
4360 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004361gui_do_scrollbar(
4362 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004363 int which, // SBAR_LEFT or SBAR_RIGHT
4364 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 int midcol = curwin->w_wincol + curwin->w_width / 2;
4367 int has_midcol = (wp->w_wincol <= midcol
4368 && wp->w_wincol + wp->w_width >= midcol);
4369
Bram Moolenaar30613902019-12-01 22:11:18 +01004370 // Only enable scrollbars that contain the middle column of the current
4371 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4373 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004374 // Scrollbars only on one side. Don't enable scrollbars that don't
4375 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 if (!has_midcol)
4377 enable = FALSE;
4378 }
4379 else
4380 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004381 // Scrollbars on both sides. Don't enable scrollbars that neither
4382 // contain the middle column of the current window nor are on the far
4383 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 if (midcol > Columns / 2)
4385 {
4386 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4387 enable = FALSE;
4388 }
4389 else
4390 {
4391 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4392 : !has_midcol)
4393 enable = FALSE;
4394 }
4395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4397}
4398
4399/*
4400 * Scroll a window according to the values set in the globals current_scrollbar
4401 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4402 * or FALSE otherwise.
4403 */
4404 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004405gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406{
4407 win_T *wp, *save_wp;
4408 int i;
4409 long nlines;
4410 pos_T old_cursor;
4411 linenr_T old_topline;
4412#ifdef FEAT_DIFF
4413 int old_topfill;
4414#endif
4415
4416 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4417 if (wp == NULL)
4418 break;
4419 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004420 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 return FALSE;
4422
4423 /*
4424 * Compute number of lines to scroll. If zero, nothing to do.
4425 */
4426 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4427 if (nlines == 0)
4428 return FALSE;
4429
4430 save_wp = curwin;
4431 old_topline = wp->w_topline;
4432#ifdef FEAT_DIFF
4433 old_topfill = wp->w_topfill;
4434#endif
4435 old_cursor = wp->w_cursor;
4436 curwin = wp;
4437 curbuf = wp->w_buffer;
4438 if (nlines < 0)
4439 scrolldown(-nlines, gui.dragged_wp == NULL);
4440 else
4441 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004442 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4443 // the mouse-up event already, but we still want it to behave like when
4444 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 if (gui.dragged_sb == SBAR_NONE)
4446 gui.dragged_wp = NULL;
4447
4448 if (old_topline != wp->w_topline
4449#ifdef FEAT_DIFF
4450 || old_topfill != wp->w_topfill
4451#endif
4452 )
4453 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004454 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004456 cursor_correct(); // fix window for 'so'
4457 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 }
4459 if (old_cursor.lnum != wp->w_cursor.lnum)
4460 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 }
4463
Bram Moolenaar30613902019-12-01 22:11:18 +01004464 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004465 validate_cursor();
4466
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 curwin = save_wp;
4468 curbuf = save_wp->w_buffer;
4469
4470 /*
4471 * Don't call updateWindow() when nothing has changed (it will overwrite
4472 * the status line!).
4473 */
4474 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004475 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476#ifdef FEAT_DIFF
4477 || old_topfill != wp->w_topfill
4478#endif
4479 )
4480 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004481 int type = VALID;
4482
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004483 if (pum_visible())
4484 {
4485 type = NOT_VALID;
4486 wp->w_lines_valid = 0;
4487 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004488
Bram Moolenaar30613902019-12-01 22:11:18 +01004489 // Don't set must_redraw here, it may cause the popup menu to
4490 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004491 if (wp->w_redr_type < type)
4492 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004493 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004494 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004495 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 }
4497
Bram Moolenaar30613902019-12-01 22:11:18 +01004498 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004499 if (pum_visible())
4500 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004501
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004502 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503}
4504
4505
4506/*
4507 * Horizontal scrollbar stuff:
4508 */
4509
4510/*
4511 * Return length of line "lnum" for horizontal scrolling.
4512 */
4513 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004514scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515{
4516 char_u *p;
4517 colnr_T col;
4518 int w;
4519
4520 p = ml_get(lnum);
4521 col = 0;
4522 if (*p != NUL)
4523 for (;;)
4524 {
4525 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004526 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004527 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 break;
4529 col += w;
4530 }
4531 return col;
4532}
4533
Bram Moolenaar30613902019-12-01 22:11:18 +01004534// Remember which line is currently the longest, so that we don't have to
4535// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536static linenr_T longest_lnum = 0;
4537
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004538/*
4539 * Find longest visible line number. If this is not possible (or not desired,
4540 * by setting 'h' in "guioptions") then the current line number is returned.
4541 */
4542 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004543gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004544{
4545 linenr_T ret = 0;
4546
Bram Moolenaar30613902019-12-01 22:11:18 +01004547 // Calculate maximum for horizontal scrollbar. Check for reasonable
4548 // line numbers, topline and botline can be invalid when displaying is
4549 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004550 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4551 && curwin->w_topline <= curwin->w_cursor.lnum
4552 && curwin->w_botline > curwin->w_cursor.lnum
4553 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4554 {
4555 linenr_T lnum;
4556 colnr_T n;
4557 long max = 0;
4558
Bram Moolenaar30613902019-12-01 22:11:18 +01004559 // Use maximum of all visible lines. Remember the lnum of the
4560 // longest line, closest to the cursor line. Used when scrolling
4561 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004562 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4563 {
4564 n = scroll_line_len(lnum);
4565 if (n > (colnr_T)max)
4566 {
4567 max = n;
4568 ret = lnum;
4569 }
4570 else if (n == (colnr_T)max
4571 && abs((int)(lnum - curwin->w_cursor.lnum))
4572 < abs((int)(ret - curwin->w_cursor.lnum)))
4573 ret = lnum;
4574 }
4575 }
4576 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004577 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004578 ret = curwin->w_cursor.lnum;
4579
4580 return ret;
4581}
4582
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004584gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585{
Bram Moolenaar30613902019-12-01 22:11:18 +01004586 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587
4588 if (!gui.which_scrollbars[SBAR_BOTTOM])
4589 return;
4590
4591 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4592 return;
4593
4594 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4595 return;
4596
4597 /*
4598 * It is possible for the cursor to be invalid if we're in the middle of
4599 * something (like changing files). If so, don't do anything for now.
4600 */
4601 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4602 {
4603 gui.bottom_sbar.value = -1;
4604 return;
4605 }
4606
Bram Moolenaar02631462017-09-22 15:20:32 +02004607 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 if (curwin->w_p_wrap)
4609 {
4610 value = 0;
4611#ifdef SCROLL_PAST_END
4612 max = 0;
4613#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004614 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615#endif
4616 }
4617 else
4618 {
4619 value = curwin->w_leftcol;
4620
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004621 longest_lnum = gui_find_longest_lnum();
4622 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (virtual_active())
4625 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004626 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 if (curwin->w_virtcol >= (colnr_T)max)
4628 max = curwin->w_virtcol;
4629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630
4631#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004632 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004634 // The line number isn't scrolled, thus there is less space when
4635 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 size -= curwin_col_off();
4637#ifndef SCROLL_PAST_END
4638 max -= curwin_col_off();
4639#endif
4640 }
4641
4642#ifndef SCROLL_PAST_END
4643 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004644 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645#endif
4646
4647#ifdef FEAT_RIGHTLEFT
4648 if (curwin->w_p_rl)
4649 {
4650 value = max + 1 - size - value;
4651 if (value < 0)
4652 {
4653 size += value;
4654 value = 0;
4655 }
4656 }
4657#endif
4658 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4659 && max == gui.bottom_sbar.max)
4660 return;
4661
4662 gui.bottom_sbar.value = value;
4663 gui.bottom_sbar.size = size;
4664 gui.bottom_sbar.max = max;
4665 gui.prev_wrap = curwin->w_p_wrap;
4666
4667 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4668}
4669
4670/*
4671 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4672 */
4673 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004674gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675{
Bram Moolenaar30613902019-12-01 22:11:18 +01004676 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 if (curwin->w_p_wrap)
4678 return FALSE;
4679
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004680 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 return FALSE;
4682
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004683 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
Bram Moolenaar30613902019-12-01 22:11:18 +01004685 // When the line of the cursor is too short, move the cursor to the
4686 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004688 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004689 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004691 if (compute_longest_lnum)
4692 {
4693 curwin->w_cursor.lnum = gui_find_longest_lnum();
4694 curwin->w_cursor.col = 0;
4695 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004696 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004697 else if (longest_lnum >= curwin->w_topline
4698 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 {
4700 curwin->w_cursor.lnum = longest_lnum;
4701 curwin->w_cursor.col = 0;
4702 }
4703 }
4704
4705 return leftcol_changed();
4706}
4707
4708/*
4709 * Check that none of the colors are the same as the background color
4710 */
4711 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004712gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
4714 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4715 {
4716 gui_set_bg_color((char_u *)"White");
4717 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4718 gui_set_fg_color((char_u *)"Black");
4719 }
4720}
4721
Bram Moolenaar3918c952005-03-15 22:34:55 +00004722 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004723gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724{
4725 gui.norm_pixel = gui_get_color(name);
4726 hl_set_fg_color_name(vim_strsave(name));
4727}
4728
Bram Moolenaar3918c952005-03-15 22:34:55 +00004729 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004730gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731{
4732 gui.back_pixel = gui_get_color(name);
4733 hl_set_bg_color_name(vim_strsave(name));
4734}
4735
4736/*
4737 * Allocate a color by name.
4738 * Returns INVALCOLOR and gives an error message when failed.
4739 */
4740 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004741gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742{
4743 guicolor_T t;
4744
4745 if (*name == NUL)
4746 return INVALCOLOR;
4747 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004748
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004750#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 && gui.in_use
4752#endif
4753 )
Bram Moolenaar87202262020-05-24 17:23:45 +02004754 semsg(_(e_alloc_color), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 return t;
4756}
4757
4758/*
4759 * Return the grey value of a color (range 0-255).
4760 */
4761 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004762gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004764 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004766 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004767 + (((rgb >> 8) & 0xff) * 587)
4768 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769}
4770
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004771 char_u *
4772gui_bg_default(void)
4773{
4774 if (gui_get_lightness(gui.back_pixel) < 127)
4775 return (char_u *)"dark";
4776 return (char_u *)"light";
4777}
4778
4779/*
4780 * Option initializations that can only be done after opening the GUI window.
4781 */
4782 void
4783init_gui_options(void)
4784{
Bram Moolenaar30613902019-12-01 22:11:18 +01004785 // Set the 'background' option according to the lightness of the
4786 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004787 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4788 {
4789 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4790 highlight_changed();
4791 }
4792}
4793
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794#if defined(FEAT_GUI_X11) || defined(PROTO)
4795 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004796gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797{
4798 win_T *wp;
4799
Bram Moolenaar30613902019-12-01 22:11:18 +01004800 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 if (!gui.in_use)
4802 return;
4803
4804 FOR_ALL_WINDOWS(wp)
4805 {
4806 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4807 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4808 }
4809 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4810}
4811#endif
4812
4813/*
4814 * Call this when focus has changed.
4815 */
4816 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004817gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818{
4819/*
4820 * Skip this code to avoid drawing the cursor when debugging and switching
4821 * between the debugger window and gvim.
4822 */
4823#if 1
4824 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004825 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826
4827# ifdef FEAT_XIM
4828 xim_set_focus(in_focus);
4829# endif
4830
Bram Moolenaar30613902019-12-01 22:11:18 +01004831 // Put events in the input queue only when allowed.
4832 // ui_focus_change() isn't called directly, because it invokes
4833 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004834 if (!hold_gui_events)
4835 {
4836 char_u bytes[3];
4837
4838 bytes[0] = CSI;
4839 bytes[1] = KS_EXTRA;
4840 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4841 add_to_input_buf(bytes, 3);
4842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843#endif
4844}
4845
4846/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004847 * When mouse moved: apply 'mousefocus'.
4848 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004850 static void
4851gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852{
4853 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004854 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855
4856#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004857 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004858 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859#endif
4860
Bram Moolenaar30613902019-12-01 22:11:18 +01004861 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004863 && !hold_gui_events // not holding events
4864 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4865 && State != HITRETURN // but not hit-return prompt
4866 && msg_scrolled == 0 // no scrolled message
4867 && !need_mouse_correct // not moving the pointer
4868 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004870 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 if (x < 0 || x > Columns * gui.char_width)
4872 return;
4873#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004874 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875#endif
4876 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004877 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878
Bram Moolenaar30613902019-12-01 22:11:18 +01004879 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004880 if (Y_2_ROW(y) < tabline_height())
4881 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004882
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 /*
4884 * format a mouse click on status line input
4885 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004886 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4887 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 */
4889 if (finish_op)
4890 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004891 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 st[0] = ESC;
4893 add_to_input_buf(st, 1);
4894 }
4895 st[0] = CSI;
4896 st[1] = KS_MOUSE;
4897 st[2] = KE_FILLER;
4898 st[3] = (char_u)MOUSE_LEFT;
4899 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004900 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 wp->w_height + W_WINROW(wp));
4902
4903 add_to_input_buf(st, 8);
4904 st[3] = (char_u)MOUSE_RELEASE;
4905 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004907 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 if (gtk_main_level() > 0)
4909 gtk_main_quit();
4910#endif
4911 }
4912}
4913
4914/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004915 * Called when the mouse moved (but not when dragging).
4916 */
4917 void
4918gui_mouse_moved(int x, int y)
4919{
4920 // Ignore this while still starting up.
4921 if (!gui.in_use || gui.starting)
4922 return;
4923
4924 // apply 'mousefocus' and pointer shape
4925 gui_mouse_focus(x, y);
4926
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004927#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004928 if (popup_visible)
4929 // Generate a mouse-moved event, so that the popup can perhaps be
4930 // closed, just like in the terminal.
Bram Moolenaar445f11d2021-06-08 20:13:31 +02004931 gui_send_mouse_event(MOUSE_MOVE, x, y, FALSE, 0);
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004932#endif
4933}
4934
4935/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004936 * Get the window where the mouse pointer is on.
4937 * Returns NULL if not found.
4938 */
4939 win_T *
4940gui_mouse_window(mouse_find_T popup)
4941{
4942 int x, y;
4943
4944 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4945 return NULL;
4946 gui_mch_getmouse(&x, &y);
4947
4948 // Only use the mouse when it's on the Vim window
4949 if (x >= 0 && x <= Columns * gui.char_width
4950 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4951 return xy2win(x, y, popup);
4952 return NULL;
4953}
4954
4955/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 * Called when mouse should be moved to window with focus.
4957 */
4958 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004959gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 win_T *wp = NULL;
4962
4963 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004964
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004965 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004966 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004968 validate_cline_row();
4969 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4970 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 }
4973}
4974
4975/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004976 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004977 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004980xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 int row;
4983 int col;
4984 win_T *wp;
4985
4986 row = Y_2_ROW(y);
4987 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004988 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004990 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004991 if (wp == NULL)
4992 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004993#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 if (State == HITRETURN || State == ASKMORE)
4995 {
4996 if (Y_2_ROW(y) >= msg_row)
4997 update_mouseshape(SHAPE_IDX_MOREL);
4998 else
4999 update_mouseshape(SHAPE_IDX_MORE);
5000 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005001 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02005003 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005004 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02005006 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005007 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 update_mouseshape(SHAPE_IDX_STATUS);
5009 else
5010 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005012 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013}
5014
5015/*
5016 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5017 * File names may be given to redefine the args list.
5018 */
5019 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005020ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021{
5022 char_u *arg = eap->arg;
5023
5024 /*
5025 * Check for "-f" argument: foreground, don't fork.
5026 * Also don't fork when started with "gvim -f".
5027 * Do fork when using "gui -b".
5028 */
5029 if (arg[0] == '-'
5030 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005031 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 {
5033 gui.dofork = (arg[1] == 'b');
5034 eap->arg = skipwhite(eap->arg + 2);
5035 }
5036 if (!gui.in_use)
5037 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005038#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005039 if (!gui.starting)
5040 {
5041 emsg(_(e_nogvim));
5042 return;
5043 }
5044#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005045 // Clear the command. Needed for when forking+exiting, to avoid part
5046 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005048#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005049 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005050 gui_start(eap->arg);
5051 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005052#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005053 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005054#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005055 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005058 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 ex_next(eap);
5060}
5061
Bram Moolenaar4f974752019-02-17 17:44:42 +01005062#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005063 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5064 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005065 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066/*
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005067 * This is shared between Athena, Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069
5070/*
5071 * Callback function for do_in_runtimepath().
5072 */
5073 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005074gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005076 char_u *gfp_buffer = cookie;
5077
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 if (STRLEN(fname) >= MAXPATHL)
5079 *gfp_buffer = NUL;
5080 else
5081 STRCPY(gfp_buffer, fname);
5082}
5083
5084/*
5085 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5086 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5087 */
5088 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005089gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090{
5091 if (STRLEN(name) > MAXPATHL - 14)
5092 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005093 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005094 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005095 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 return FAIL;
5097 return OK;
5098}
5099
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005100# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101/*
5102 * Given the name of the "icon=" argument, try finding the bitmap file for the
5103 * icon. If it is an absolute path name, use it as it is. Otherwise append
5104 * "ext" and search for it in 'runtimepath'.
5105 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5106 * contains "name".
5107 */
5108 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005109gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110{
5111 char_u buf[MAXPATHL + 1];
5112
5113 expand_env(name, buffer, MAXPATHL);
5114 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5115 STRCPY(buffer, buf);
5116}
5117# endif
5118#endif
5119
Bram Moolenaar9e175142020-04-30 22:51:01 +02005120#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5121 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005123display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124{
5125 char_u *p;
5126
5127 if (isatty(2))
5128 fflush(stderr);
5129 else if (error_ga.ga_data != NULL)
5130 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005131 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5133 if (!isspace(*p))
5134 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005135 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 if (STRLEN(p) > 2000)
5137 STRCPY(p + 2000 - 14, "...(truncated)");
5138 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005139 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 break;
5141 }
5142 ga_clear(&error_ga);
5143 }
5144}
5145#endif
5146
5147#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5148/*
5149 * Return TRUE if still starting up and there is no place to enter text.
5150 * For GTK and X11 we check if stderr is not a tty, which means we were
5151 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5152 * allow typing on stdin.
5153 */
5154 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005155no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156{
5157 return ((!gui.in_use || gui.starting)
5158# ifndef NO_CONSOLE
5159 && !isatty(0) && !isatty(2)
5160# endif
5161 );
5162}
5163#endif
5164
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005165#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005166 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005167 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168/*
5169 * Update the current window and the screen.
5170 */
5171 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005172gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005174# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005175 linenr_T conceal_old_cursor_line = 0;
5176 linenr_T conceal_new_cursor_line = 0;
5177 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005178# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005179
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 update_topline();
5181 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005182
Bram Moolenaar30613902019-12-01 22:11:18 +01005183 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005184 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005185# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005186 || popup_visible
5187# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005188# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005189 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005190# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005191 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005192 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005193 if (has_cursormoved())
5194 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005195#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005196 if (popup_visible)
5197 popup_check_cursor_pos();
5198#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005199# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005200 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005201 {
5202 conceal_old_cursor_line = last_cursormoved.lnum;
5203 conceal_new_cursor_line = curwin->w_cursor.lnum;
5204 conceal_update_lines = TRUE;
5205 }
5206# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005207 last_cursormoved = curwin->w_cursor;
5208 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005209
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005210# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005211 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005212 && (conceal_old_cursor_line != conceal_new_cursor_line
5213 || conceal_cursor_line(curwin)
5214 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005215 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005216 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005217 redrawWinline(curwin, conceal_old_cursor_line);
5218 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005219 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005220 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005221 }
5222# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005223 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005224 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005225 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226}
5227#endif
5228
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005229#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230/*
5231 * Get the text to use in a find/replace dialog. Uses the last search pattern
5232 * if the argument is empty.
5233 * Returns an allocated string.
5234 */
5235 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005236get_find_dialog_text(
5237 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005238 int *wwordp, // return: TRUE if \< \> found
5239 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240{
5241 char_u *text;
5242
5243 if (*arg == NUL)
5244 text = last_search_pat();
5245 else
5246 text = arg;
5247 if (text != NULL)
5248 {
5249 text = vim_strsave(text);
5250 if (text != NULL)
5251 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005252 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 int i;
5254
Bram Moolenaar30613902019-12-01 22:11:18 +01005255 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5257 {
5258 mch_memmove(text, text + 2, (size_t)(len - 1));
5259 len -= 2;
5260 }
5261
Bram Moolenaar30613902019-12-01 22:11:18 +01005262 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5264 {
5265 *mcasep = (text[1] == 'C');
5266 mch_memmove(text, text + 2, (size_t)(len - 1));
5267 len -= 2;
5268 }
5269
Bram Moolenaar30613902019-12-01 22:11:18 +01005270 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 if (len >= 4
5272 && STRNCMP(text, "\\<", 2) == 0
5273 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5274 {
5275 *wwordp = TRUE;
5276 mch_memmove(text, text + 2, (size_t)(len - 4));
5277 text[len - 4] = NUL;
5278 }
5279
Bram Moolenaar30613902019-12-01 22:11:18 +01005280 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 for (i = 0; i + 1 < len; ++i)
5282 if (text[i] == '\\' && (text[i + 1] == '/'
5283 || text[i + 1] == '?'))
5284 {
5285 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5286 --len;
5287 }
5288 }
5289 }
5290 return text;
5291}
5292
5293/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 * Handle the press of a button in the find-replace dialog.
5295 * Return TRUE when something was added to the input buffer.
5296 */
5297 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005298gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005299 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005300 char_u *find_text,
5301 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005302 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303{
5304 garray_T ga;
5305 int i;
5306 int type = (flags & FRD_TYPE_MASK);
5307 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005308 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005309 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005310 static int busy = FALSE;
5311
Bram Moolenaar30613902019-12-01 22:11:18 +01005312 // When the screen is being updated we should not change buffers and
5313 // windows structures, it may cause freed memory to be used. Also don't
5314 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005315 if (updating_screen || busy)
5316 return FALSE;
5317
Bram Moolenaar30613902019-12-01 22:11:18 +01005318 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005319 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5320 return FALSE;
5321
5322 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323
5324 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005325 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 ga_concat(&ga, (char_u *)"%s/");
5327
5328 ga_concat(&ga, (char_u *)"\\V");
5329 if (flags & FRD_MATCH_CASE)
5330 ga_concat(&ga, (char_u *)"\\C");
5331 else
5332 ga_concat(&ga, (char_u *)"\\c");
5333 if (flags & FRD_WHOLE_WORD)
5334 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005335 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005336 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5337 if (p != NULL)
5338 ga_concat(&ga, p);
5339 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 if (flags & FRD_WHOLE_WORD)
5341 ga_concat(&ga, (char_u *)"\\>");
5342
5343 if (type == FRD_REPLACEALL)
5344 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005346 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005347 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5348 if (p != NULL)
5349 ga_concat(&ga, p);
5350 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005352 }
5353 ga_append(&ga, NUL);
5354
5355 if (type == FRD_REPLACE)
5356 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005357 // Do the replacement when the text at the cursor matches. Thus no
5358 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005359 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5360 regmatch.rm_ic = 0;
5361 if (regmatch.regprog != NULL)
5362 {
5363 p = ml_get_cursor();
5364 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5365 && regmatch.startp[0] == p)
5366 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005367 // Clear the command line to remove any old "No match"
5368 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005369 msg_end_prompt();
5370
5371 if (u_save_cursor() == OK)
5372 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005373 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005374 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005375
5376 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005377 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005378 ins_str(repl_text);
5379 }
5380 }
5381 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005382 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005383 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005384 }
5385 }
5386
5387 if (type == FRD_REPLACEALL)
5388 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005389 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005390 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 do_cmdline_cmd(ga.ga_data);
5392 }
5393 else
5394 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005395 int searchflags = SEARCH_MSG + SEARCH_MARK;
5396
Bram Moolenaar30613902019-12-01 22:11:18 +01005397 // Search for the next match.
5398 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005399 if (type == FRD_REPLACE)
5400 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005402 if (down)
5403 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005404 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005405 }
5406 else
5407 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005408 // We need to escape '?' if and only if we are searching in the up
5409 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005410 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5411 if (p != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01005412 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005413 vim_free(p);
5414 }
5415
Bram Moolenaar30613902019-12-01 22:11:18 +01005416 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 }
5418
Bram Moolenaar30613902019-12-01 22:11:18 +01005419 // Don't want to pass did_emsg to other code, it may cause disabling
5420 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005421 did_emsg = save_did_emsg;
5422
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 if (State & (NORMAL | INSERT))
5424 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005425 gui_update_screen(); // update the screen
5426 msg_didout = 0; // overwrite any message
5427 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 }
5429
5430 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005431 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 return (ga.ga_len > 0);
5433}
5434
5435#endif
5436
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005437#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438/*
5439 * Jump to the window at specified point (x, y).
5440 */
5441 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005442gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443{
5444 int row = Y_2_ROW(y);
5445 int col = X_2_COL(x);
5446 win_T *wp;
5447
5448 if (row >= 0 && col >= 0)
5449 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005450 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 if (wp != NULL && wp != curwin)
5452 win_goto(wp);
5453 }
5454}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455
5456/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005457 * Function passed to handle_drop() for the actions to be done after the
5458 * argument list has been updated.
5459 */
5460 static void
5461drop_callback(void *cookie)
5462{
5463 char_u *p = cookie;
5464
Bram Moolenaar30613902019-12-01 22:11:18 +01005465 // If Shift held down, change to first file's directory. If the first
5466 // item is a directory, change to that directory (and let the explorer
5467 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005468 if (p != NULL)
5469 {
5470 if (mch_isdir(p))
5471 {
5472 if (mch_chdir((char *)p) == 0)
5473 shorten_fnames(TRUE);
5474 }
5475 else if (vim_chdirfile(p, "drop") == OK)
5476 shorten_fnames(TRUE);
5477 vim_free(p);
5478 }
5479
Bram Moolenaar30613902019-12-01 22:11:18 +01005480 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005481 update_screen(NOT_VALID);
5482# ifdef FEAT_MENU
5483 gui_update_menus(0);
5484# endif
5485#ifdef FEAT_TITLE
5486 maketitle();
5487#endif
5488 setcursor();
5489 out_flush_cursor(FALSE, FALSE);
5490}
5491
5492/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 * Process file drop. Mouse cursor position, key modifiers, name of files
5494 * and count of files are given. Argument "fnames[count]" has full pathnames
5495 * of dropped files, they will be freed in this function, and caller can't use
5496 * fnames after call this function.
5497 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005499gui_handle_drop(
5500 int x UNUSED,
5501 int y UNUSED,
5502 int_u modifiers,
5503 char_u **fnames,
5504 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505{
5506 int i;
5507 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005508 static int entered = FALSE;
5509
5510 /*
5511 * This function is called by event handlers. Just in case we get a
5512 * second event before the first one is handled, ignore the second one.
5513 * Not sure if this can ever happen, just in case.
5514 */
5515 if (entered)
5516 return;
5517 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518
5519 /*
5520 * When the cursor is at the command line, add the file names to the
5521 * command line, don't edit the files.
5522 */
5523 if (State & CMDLINE)
5524 {
5525 shorten_filenames(fnames, count);
5526 for (i = 0; i < count; ++i)
5527 {
5528 if (fnames[i] != NULL)
5529 {
5530 if (i > 0)
5531 add_to_input_buf((char_u*)" ", 1);
5532
Bram Moolenaar30613902019-12-01 22:11:18 +01005533 // We don't know what command is used thus we can't be sure
5534 // about which characters need to be escaped. Only escape the
5535 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536# ifdef BACKSLASH_IN_FILENAME
5537 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5538# else
5539 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5540# endif
5541 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005542 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 vim_free(p);
5544 vim_free(fnames[i]);
5545 }
5546 }
5547 vim_free(fnames);
5548 }
5549 else
5550 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005551 // Go to the window under mouse cursor, then shorten given "fnames" by
5552 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 shorten_filenames(fnames, count);
5555
Bram Moolenaar30613902019-12-01 22:11:18 +01005556 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 if ((modifiers & MOUSE_SHIFT) != 0)
5558 p = vim_strsave(fnames[0]);
5559 else
5560 p = NULL;
5561
Bram Moolenaar30613902019-12-01 22:11:18 +01005562 // Handle the drop, :edit or :split to get to the file. This also
5563 // frees fnames[]. Skip this if there is only one item, it's a
5564 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5566 && mch_isdir(fnames[0]))
5567 {
5568 vim_free(fnames[0]);
5569 vim_free(fnames);
Yegappan Lakshmanan18d46582021-06-23 20:46:52 +02005570 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 }
5572 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005573 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5574 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005576
5577 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578}
5579#endif
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005580
5581/*
5582 * Check if "key" is to interrupt us. Handles a key that has not had modifiers
5583 * applied yet.
5584 * Return the key with modifiers applied if so, NUL if not.
5585 */
5586 int
5587check_for_interrupt(int key, int modifiers_arg)
5588{
5589 int modifiers = modifiers_arg;
5590 int c = merge_modifyOtherKeys(key, &modifiers);
5591
5592 if ((c == Ctrl_C && ctrl_c_interrupts)
Bram Moolenaaraf50e892020-08-01 13:22:10 +02005593#ifdef UNIX
5594 || (intr_char != Ctrl_C && c == intr_char)
5595#endif
5596 )
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005597 {
5598 got_int = TRUE;
5599 return c;
5600 }
5601 return NUL;
5602}
5603