blob: c0374c561dad1c1214562ef28370735caae144a7 [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{
860 cmdmod_T save_cmdmod;
861
862 save_cmdmod = cmdmod;
863
Bram Moolenaar30613902019-12-01 22:11:18 +0100864 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 exiting = TRUE;
866# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +0200867 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868# endif
869# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +0200870 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100872 // If there are changed buffers, present the user with a dialog if
873 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100874 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 getout(0);
876
877 exiting = FALSE;
878 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100879 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880}
881#endif
882
883/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200884 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * first font name that works is used. If none is found, use the default
886 * font.
887 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
888 * Return OK when able to set the font. When it failed FAIL is returned and
889 * the fonts are unchanged.
890 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100892gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894#define FONTLEN 320
895 char_u font_name[FONTLEN];
896 int font_list_empty = FALSE;
897 int ret = FAIL;
898
899 if (!gui.in_use)
900 return FAIL;
901
902 font_name[0] = NUL;
903 if (*font_list == NUL)
904 font_list_empty = TRUE;
905 else
906 {
907#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100908 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if (fontset)
910 ret = gui_mch_init_font(font_list, TRUE);
911 else
912#endif
913 while (*font_list != NUL)
914 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100915 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
917
Bram Moolenaar30613902019-12-01 22:11:18 +0100918 // Careful!!! The Win32 version of gui_mch_init_font(), when
919 // called with "*" will change p_guifont to the selected font
920 // name, which frees the old value. This makes font_list
921 // invalid. Thus when OK is returned here, font_list must no
922 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (gui_mch_init_font(font_name, FALSE) == OK)
924 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100925#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100926 // If it's a Unicode font, try setting 'guifontwide' to a
927 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
929 && strstr((char *)font_name, "10646") != NULL)
930 set_guifontwide(font_name);
931#endif
932 ret = OK;
933 break;
934 }
935 }
936 }
937
938 if (ret != OK
939 && STRCMP(font_list, "*") != 0
940 && (font_list_empty || gui.norm_font == NOFONT))
941 {
942 /*
943 * Couldn't load any font in 'font_list', keep the current font if
944 * there is one. If 'font_list' is empty, or if there is no current
945 * font, tell gui_mch_init_font() to try to find a font we can load.
946 */
947 ret = gui_mch_init_font(NULL, FALSE);
948 }
949
950 if (ret == OK)
951 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200952#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100953 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954# ifdef FEAT_XFONTSET
955 if (gui.fontset != NOFONTSET)
956 gui_mch_set_fontset(gui.fontset);
957 else
958# endif
959 gui_mch_set_font(gui.norm_font);
960#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100961 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963
964 return ret;
965}
966
Bram Moolenaar13505972019-01-24 15:04:48 +0100967#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968/*
969 * Try setting 'guifontwide' to a font twice as wide as "name".
970 */
971 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100972set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973{
974 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100975 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 char_u *wp = NULL;
977 char_u *p;
978 GuiFont font;
979
980 wp = wide_name;
981 for (p = name; *p != NUL; ++p)
982 {
983 *wp++ = *p;
984 if (*p == '-')
985 {
986 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100987 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 {
989 if (p[1] == '-')
990 *wp++ = '*';
991 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100992 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 {
994 ++p;
995 i = getdigits(&p);
996 if (i != 0)
997 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100998 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 sprintf((char *)wp, "%d%s", i * 2, p);
1000 font = gui_mch_get_font(wide_name, FALSE);
1001 if (font != NOFONT)
1002 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001003 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 gui.wide_font = font;
1005 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001006 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 }
1008 }
1009 break;
1010 }
1011 }
1012 }
1013}
Bram Moolenaar30613902019-12-01 22:11:18 +01001014#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016/*
1017 * Get the font for 'guifontwide'.
1018 * Return FAIL for an invalid font name.
1019 */
1020 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001021gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022{
1023 GuiFont font = NOFONT;
1024 char_u font_name[FONTLEN];
1025 char_u *p;
1026
Bram Moolenaar30613902019-12-01 22:11:18 +01001027 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1028 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1031 {
1032 for (p = p_guifontwide; *p != NUL; )
1033 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001034 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1036 font = gui_mch_get_font(font_name, FALSE);
1037 if (font != NOFONT)
1038 break;
1039 }
1040 if (font == NOFONT)
1041 return FAIL;
1042 }
1043
1044 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001045#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001046 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (font != NOFONT && gui.norm_font != NOFONT
1048 && pango_font_description_equal(font, gui.norm_font))
1049 {
1050 gui.wide_font = NOFONT;
1051 gui_mch_free_font(font);
1052 }
1053 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001054#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001056#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001057 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001058#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001059 /*
1060 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1061 * support those fonts for 'guifontwide'.
1062 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 return OK;
1065}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001067 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001068gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
1070 gui.row = row;
1071 gui.col = col;
1072}
1073
1074/*
1075 * gui_check_pos - check if the cursor is on the screen.
1076 */
1077 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001078gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079{
1080 if (gui.row >= screen_Rows)
1081 gui.row = screen_Rows - 1;
1082 if (gui.col >= screen_Columns)
1083 gui.col = screen_Columns - 1;
1084 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1085 gui.cursor_is_valid = FALSE;
1086}
1087
1088/*
1089 * Redraw the cursor if necessary or when forced.
1090 * Careful: The contents of ScreenLines[] must match what is on the screen,
1091 * otherwise this goes wrong. May need to call out_flush() first.
1092 */
1093 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001094gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001095 int force, // when TRUE, update even when not moved
1096 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097{
1098 int cur_width = 0;
1099 int cur_height = 0;
1100 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001101 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001103#ifdef FEAT_TERMINAL
1104 guicolor_T shape_fg = INVALCOLOR;
1105 guicolor_T shape_bg = INVALCOLOR;
1106#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001107 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1108 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 int attr;
1110 attrentry_T *aep = NULL;
1111
Bram Moolenaar30613902019-12-01 22:11:18 +01001112 // Don't update the cursor when halfway busy scrolling or the screen size
1113 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001114 if (!can_update_cursor || screen_Columns != gui.num_cols
1115 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 return;
1117
1118 gui_check_pos();
1119 if (!gui.cursor_is_valid || force
1120 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1121 {
1122 gui_undraw_cursor();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02001123
1124 // If a cursor-less sleep is ongoing, leave the cursor invisible
1125 if (cursor_is_sleeping())
1126 return;
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 if (gui.row < 0)
1129 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001130#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1132 im_set_position(gui.row, gui.col);
1133#endif
1134 gui.cursor_row = gui.row;
1135 gui.cursor_col = gui.col;
1136
Bram Moolenaar30613902019-12-01 22:11:18 +01001137 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 if (!screen_cleared || ScreenLines == NULL)
1139 return;
1140
Bram Moolenaar30613902019-12-01 22:11:18 +01001141 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 if (clear_selection)
1143 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001144 // Check that the cursor is inside the shell (resizing may have made
1145 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1147 return;
1148
1149 gui.cursor_is_valid = TRUE;
1150
1151 /*
1152 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001153 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001155#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001156 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001157 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001159#endif
1160 shape = &shape_table[get_shape_idx(FALSE)];
1161 if (State & LANGMAP)
1162 id = shape->id_lm;
1163 else
1164 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165
Bram Moolenaar30613902019-12-01 22:11:18 +01001166 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 cfg = INVALCOLOR;
1168 cbg = INVALCOLOR;
1169 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001170 gui_mch_set_blinking(shape->blinkwait,
1171 shape->blinkon,
1172 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001173 if (shape->blinkwait == 0 || shape->blinkon == 0
1174 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001175 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001176#ifdef FEAT_TERMINAL
1177 if (shape_bg != INVALCOLOR)
1178 {
1179 cattr = 0;
1180 cfg = shape_fg;
1181 cbg = shape_bg;
1182 }
1183 else
1184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 if (id > 0)
1186 {
1187 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001188#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 {
1190 static int iid;
1191 guicolor_T fg, bg;
1192
Bram Moolenaarc236c162008-07-13 17:41:49 +00001193 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001194# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001195 preedit_get_status()
1196# else
1197 im_get_status()
1198# endif
1199 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 {
1201 iid = syn_name2id((char_u *)"CursorIM");
1202 if (iid > 0)
1203 {
1204 syn_id2colors(iid, &fg, &bg);
1205 if (bg != INVALCOLOR)
1206 cbg = bg;
1207 if (fg != INVALCOLOR)
1208 cfg = fg;
1209 }
1210 }
1211 }
1212#endif
1213 }
1214
1215 /*
1216 * Get the attributes for the character under the cursor.
1217 * When no cursor color was given, use the character color.
1218 */
1219 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1220 if (attr > HL_ALL)
1221 aep = syn_gui_attr2entry(attr);
1222 if (aep != NULL)
1223 {
1224 attr = aep->ae_attr;
1225 if (cfg == INVALCOLOR)
1226 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1227 : aep->ae_u.gui.fg_color);
1228 if (cbg == INVALCOLOR)
1229 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1230 : aep->ae_u.gui.bg_color);
1231 }
1232 if (cfg == INVALCOLOR)
1233 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1234 if (cbg == INVALCOLOR)
1235 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1236
1237#ifdef FEAT_XIM
1238 if (aep != NULL)
1239 {
1240 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1241 : aep->ae_u.gui.bg_color);
1242 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1243 : aep->ae_u.gui.fg_color);
1244 if (xim_bg_color == INVALCOLOR)
1245 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1246 : gui.back_pixel;
1247 if (xim_fg_color == INVALCOLOR)
1248 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1249 : gui.norm_pixel;
1250 }
1251 else
1252 {
1253 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1254 : gui.back_pixel;
1255 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1256 : gui.norm_pixel;
1257 }
1258#endif
1259
1260 attr &= ~HL_INVERSE;
1261 if (cattr & HL_INVERSE)
1262 {
1263 cc = cbg;
1264 cbg = cfg;
1265 cfg = cc;
1266 }
1267 cattr &= ~HL_INVERSE;
1268
1269 /*
1270 * When we don't have window focus, draw a hollow cursor.
1271 */
1272 if (!gui.in_focus)
1273 {
1274 gui_mch_draw_hollow_cursor(cbg);
1275 return;
1276 }
1277
1278 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001279 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 {
1281 /*
1282 * Draw the text character with the cursor colors. Use the
1283 * character attributes plus the cursor attributes.
1284 */
1285 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001286 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1288 }
1289 else
1290 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001291#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 int col_off = FALSE;
1293#endif
1294 /*
1295 * First draw the partial cursor, then overwrite with the text
1296 * character, using a transparent background.
1297 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001298 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 {
1300 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001301 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 }
1303 else
1304 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001305 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 cur_width = gui.char_width;
1307 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001308 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1309 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001311 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001312 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001314#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (CURSOR_BAR_RIGHT)
1316 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001317 // gui.col points to the left halve of the character but
1318 // the vertical line needs to be on the right halve.
1319 // A double-wide horizontal line is also drawn from the
1320 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 col_off = TRUE;
1322 ++gui.col;
1323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001327#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (col_off)
1329 --gui.col;
1330#endif
1331
Bram Moolenaar30613902019-12-01 22:11:18 +01001332#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1334 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1335 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1336 (guicolor_T)0, (guicolor_T)0, 0);
1337#endif
1338 }
1339 gui.highlight_mask = old_hl_mask;
1340 }
1341}
1342
1343#if defined(FEAT_MENU) || defined(PROTO)
1344 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001345gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001347# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 if (gui.menu_is_active && gui.in_use)
1349 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1350# endif
1351}
1352#endif
1353
1354/*
1355 * Position the various GUI components (text area, menu). The vertical
1356 * scrollbars are NOT handled here. See gui_update_scrollbars().
1357 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001359gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360{
1361 int text_area_x;
1362 int text_area_y;
1363 int text_area_width;
1364 int text_area_height;
1365
Bram Moolenaar30613902019-12-01 22:11:18 +01001366 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 ++hold_gui_events;
1368
1369 text_area_x = 0;
1370 if (gui.which_scrollbars[SBAR_LEFT])
1371 text_area_x += gui.scrollbar_width;
1372
1373 text_area_y = 0;
1374#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1375 gui.menu_width = total_width;
1376 if (gui.menu_is_active)
1377 text_area_y += gui.menu_height;
1378#endif
1379#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1380 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1381 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1382#endif
1383
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001384# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +02001385 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001386 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001387 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001388#endif
1389
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001390#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1391 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1393 {
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001394# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 gui_mch_set_toolbar_pos(0, text_area_y,
1396 gui.menu_width, gui.toolbar_height);
1397# endif
1398 text_area_y += gui.toolbar_height;
1399 }
1400#endif
1401
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001402# if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
1403 gui_mch_set_tabline_pos(0, text_area_y,
1404 gui.menu_width, gui.tabline_height);
1405 if (gui_has_tabline())
1406 text_area_y += gui.tabline_height;
1407#endif
1408
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1410 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1411
1412 gui_mch_set_text_area_pos(text_area_x,
1413 text_area_y,
1414 text_area_width,
1415 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001416#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 + xim_get_status_area_height()
1418#endif
1419 );
1420#ifdef FEAT_MENU
1421 gui_position_menu();
1422#endif
1423 if (gui.which_scrollbars[SBAR_BOTTOM])
1424 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1425 text_area_x,
Bram Moolenaar203ec772020-07-17 20:43:43 +02001426 text_area_y + text_area_height
1427 + gui_mch_get_scrollbar_ypadding(),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 text_area_width,
1429 gui.scrollbar_height);
1430 gui.left_sbar_x = 0;
Bram Moolenaar203ec772020-07-17 20:43:43 +02001431 gui.right_sbar_x = text_area_x + text_area_width
1432 + gui_mch_get_scrollbar_xpadding();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434 --hold_gui_events;
1435}
1436
Bram Moolenaar02743632005-07-25 20:42:36 +00001437/*
1438 * Get the width of the widgets and decorations to the side of the text area.
1439 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001441gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442{
1443 int base_width;
1444
1445 base_width = 2 * gui.border_offset;
1446 if (gui.which_scrollbars[SBAR_LEFT])
1447 base_width += gui.scrollbar_width;
1448 if (gui.which_scrollbars[SBAR_RIGHT])
1449 base_width += gui.scrollbar_width;
1450 return base_width;
1451}
1452
Bram Moolenaar02743632005-07-25 20:42:36 +00001453/*
1454 * Get the height of the widgets and decorations above and below the text area.
1455 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001457gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458{
1459 int base_height;
1460
1461 base_height = 2 * gui.border_offset;
1462 if (gui.which_scrollbars[SBAR_BOTTOM])
1463 base_height += gui.scrollbar_height;
1464#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001465 // We can't take the sizes properly into account until anything is
1466 // realized. Therefore we recalculate all the values here just before
1467 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468#else
1469# ifdef FEAT_MENU
1470 if (gui.menu_is_active)
1471 base_height += gui.menu_height;
1472# endif
1473# ifdef FEAT_TOOLBAR
1474 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1475# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1476 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1477# else
1478 base_height += gui.toolbar_height;
1479# endif
1480# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001481# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001482 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001483 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001484 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001485# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486# ifdef FEAT_FOOTER
1487 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1488 base_height += gui.footer_height;
1489# endif
1490# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1491 base_height += gui_mch_text_area_extra_height();
1492# endif
1493#endif
1494 return base_height;
1495}
1496
1497/*
1498 * Should be called after the GUI shell has been resized. Its arguments are
1499 * the new width and height of the shell in pixels.
1500 */
1501 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001502gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503{
1504 static int busy = FALSE;
1505
Bram Moolenaar30613902019-12-01 22:11:18 +01001506 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 return;
1508
1509 /*
1510 * Can't resize the screen while it is being redrawn. Remember the new
1511 * size and handle it later.
1512 */
1513 if (updating_screen || busy)
1514 {
1515 new_pixel_width = pixel_width;
1516 new_pixel_height = pixel_height;
1517 return;
1518 }
1519
1520again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001521 new_pixel_width = 0;
1522 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 busy = TRUE;
1524
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001525#ifdef FEAT_GUI_HAIKU
1526 vim_lock_screen();
1527#endif
1528
Bram Moolenaar30613902019-12-01 22:11:18 +01001529 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 out_flush();
1531
1532 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001533 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534
1535 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001537
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 /*
1539 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1540 * at the last line here (why does it have to be one row too low?).
1541 */
1542 if (State == ASKMORE || State == CONFIRM)
1543 gui.row = gui.num_rows;
1544
Bram Moolenaar30613902019-12-01 22:11:18 +01001545 // Only comparing Rows and Columns may be sufficient, but let's stay on
1546 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1548 || gui.num_rows != Rows || gui.num_cols != Columns)
1549 shell_resized();
1550
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001551#ifdef FEAT_GUI_HAIKU
1552 vim_unlock_screen();
1553#endif
1554
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 gui_update_scrollbars(TRUE);
1556 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001557#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 xim_set_status_area();
1559#endif
1560
1561 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001562
Bram Moolenaar30613902019-12-01 22:11:18 +01001563 // We may have been called again while redrawing the screen.
1564 // Need to do it all again with the latest size then. But only if the size
1565 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 if (new_pixel_height)
1567 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001568 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1569 {
1570 new_pixel_width = 0;
1571 new_pixel_height = 0;
1572 }
1573 else
1574 {
1575 pixel_width = new_pixel_width;
1576 pixel_height = new_pixel_height;
1577 goto again;
1578 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 }
1580}
1581
1582/*
1583 * Check if gui_resize_shell() must be called.
1584 */
1585 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001586gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001589 // careful: gui_resize_shell() may postpone the resize again if we
1590 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001591 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592}
1593
1594 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001595gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596{
1597 Rows = gui.num_rows;
1598 Columns = gui.num_cols;
1599 return OK;
1600}
1601
1602/*
1603 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001604 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1605 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001606 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1607 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001610gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001611 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001612 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001613 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614{
1615 int base_width;
1616 int base_height;
1617 int width;
1618 int height;
1619 int min_width;
1620 int min_height;
1621 int screen_w;
1622 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001623#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001624 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001625 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001626#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001627 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628
1629 if (!gui.shell_created)
1630 return;
1631
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001632#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001633 // If not setting to a user specified size and maximized, calculate the
1634 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001635 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1636 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 {
1638 gui_mch_newfont();
1639 return;
1640 }
1641#endif
1642
1643 base_width = gui_get_base_width();
1644 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001645 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001646 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001647 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001648
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001649 width = Columns * gui.char_width + base_width;
1650 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
1652 if (fit_to_display)
1653 {
1654 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001655 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 {
1657 Columns = (screen_w - base_width) / gui.char_width;
1658 if (Columns < MIN_COLUMNS)
1659 Columns = MIN_COLUMNS;
1660 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001661#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001662 ++did_adjust;
1663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001665 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 {
1667 Rows = (screen_h - base_height) / gui.char_height;
1668 check_shellsize();
1669 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001670#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001671 ++did_adjust;
1672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001674#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001675 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1676 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001677 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001678 un_maximize = FALSE;
1679#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001681 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 gui.num_cols = Columns;
1683 gui.num_rows = Rows;
1684
1685 min_width = base_width + MIN_COLUMNS * gui.char_width;
1686 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001687 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001688
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001689#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001690 if (un_maximize)
1691 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001692 // If the window size is smaller than the screen unmaximize the
1693 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001694 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1695 if ((width + gui.char_width < screen_w
1696 || height + gui.char_height * 2 < screen_h)
1697 && gui_mch_maximized())
1698 gui_mch_unmaximize();
1699 }
1700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701
1702 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001703 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001705 if (fit_to_display && x >= 0 && y >= 0)
1706 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001707 // Some window managers put the Vim window left of/above the screen.
1708 // Only change the position if it wasn't already negative before
1709 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 gui_mch_update();
1711 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1712 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1713 }
1714
1715 gui_position_components(width);
1716 gui_update_scrollbars(TRUE);
1717 gui_reset_scroll_region();
1718}
1719
1720/*
1721 * Called when Rows and/or Columns has changed.
1722 */
1723 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001724gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 gui_reset_scroll_region();
1727}
1728
1729/*
1730 * Make scroll region cover whole screen.
1731 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001732 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001733gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734{
1735 gui.scroll_region_top = 0;
1736 gui.scroll_region_bot = gui.num_rows - 1;
1737 gui.scroll_region_left = 0;
1738 gui.scroll_region_right = gui.num_cols - 1;
1739}
1740
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001741 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001742gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743{
Bram Moolenaar30613902019-12-01 22:11:18 +01001744 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001746 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 gui.highlight_mask |= mask;
1748}
1749
1750 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001751gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752{
Bram Moolenaar30613902019-12-01 22:11:18 +01001753 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001755 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 gui.highlight_mask &= ~mask;
1757}
1758
1759/*
1760 * Clear a rectangular region of the screen from text pos (row1, col1) to
1761 * (row2, col2) inclusive.
1762 */
1763 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001764gui_clear_block(
1765 int row1,
1766 int col1,
1767 int row2,
1768 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769{
Bram Moolenaar30613902019-12-01 22:11:18 +01001770 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 clip_may_clear_selection(row1, row2);
1772
1773 gui_mch_clear_block(row1, col1, row2, col2);
1774
Bram Moolenaar30613902019-12-01 22:11:18 +01001775 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1777 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1778 gui.cursor_is_valid = FALSE;
1779}
1780
1781/*
1782 * Write code to update the cursor later. This avoids the need to flush the
1783 * output buffer before calling gui_update_cursor().
1784 */
1785 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001786gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001788 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789}
1790
1791 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001792gui_write(
1793 char_u *s,
1794 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795{
1796 char_u *p;
1797 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001798 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 int force_scrollbar = FALSE;
1800 static win_T *old_curwin = NULL;
1801
Bram Moolenaar30613902019-12-01 22:11:18 +01001802// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803#ifdef DEBUG_GUI_WRITE
1804 {
1805 int i;
1806 char_u *str;
1807
1808 printf("gui_write(%d):\n ", len);
1809 for (i = 0; i < len; i++)
1810 if (s[i] == ESC)
1811 {
1812 if (i != 0)
1813 printf("\n ");
1814 printf("<ESC>");
1815 }
1816 else
1817 {
1818 str = transchar_byte(s[i]);
1819 if (str[0] && str[1])
1820 printf("<%s>", (char *)str);
1821 else
1822 printf("%s", (char *)str);
1823 }
1824 printf("\n");
1825 }
1826#endif
1827 while (len)
1828 {
1829 if (s[0] == ESC && s[1] == '|')
1830 {
1831 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001832 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 {
1834 arg1 = getdigits(&p);
1835 if (p > s + len)
1836 break;
1837 if (*p == ';')
1838 {
1839 ++p;
1840 arg2 = getdigits(&p);
1841 if (p > s + len)
1842 break;
1843 }
1844 }
1845 switch (*p)
1846 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001847 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 clip_scroll_selection(9999);
1849 gui_mch_clear_all();
1850 gui.cursor_is_valid = FALSE;
1851 force_scrollbar = TRUE;
1852 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001853 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 gui_set_cursor(arg1, arg2);
1855 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001856 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 force_cursor = TRUE;
1858 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001859 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 if (arg1 < arg2)
1861 {
1862 gui.scroll_region_top = arg1;
1863 gui.scroll_region_bot = arg2;
1864 }
1865 else
1866 {
1867 gui.scroll_region_top = arg2;
1868 gui.scroll_region_bot = arg1;
1869 }
1870 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001871 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 if (arg1 < arg2)
1873 {
1874 gui.scroll_region_left = arg1;
1875 gui.scroll_region_right = arg2;
1876 }
1877 else
1878 {
1879 gui.scroll_region_left = arg2;
1880 gui.scroll_region_right = arg1;
1881 }
1882 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001883 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 gui_delete_lines(gui.row, 1);
1885 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001886 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 gui_delete_lines(gui.row, arg1);
1888 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001889 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 gui_insert_lines(gui.row, 1);
1891 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001892 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 gui_insert_lines(gui.row, arg1);
1894 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001895 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 gui_clear_block(gui.row, gui.col, gui.row,
1897 (int)Columns - 1);
1898 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001899 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 gui_start_highlight(arg1);
1901 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001902 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 gui_stop_highlight(arg1);
1904 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001905 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1907 break;
1908 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001909 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 break;
1911 }
1912 len -= (int)(++p - s);
1913 s = p;
1914 }
1915 else if (
1916#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001917 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001919 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920#endif
1921#ifdef FEAT_SIGN_ICONS
1922 && s[0] != SIGN_BYTE
1923# ifdef FEAT_NETBEANS_INTG
1924 && s[0] != MULTISIGN_BYTE
1925# endif
1926#endif
1927 )
1928 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 {
1931 gui.col = 0;
1932 if (gui.row < gui.scroll_region_bot)
1933 gui.row++;
1934 else
1935 gui_delete_lines(gui.scroll_region_top, 1);
1936 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001937 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 {
1939 gui.col = 0;
1940 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001941 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 {
1943 if (gui.col)
1944 --gui.col;
1945 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001946 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
1948 ++gui.col;
1949 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001950 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 {
1952 gui_mch_beep();
1953 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001954 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955
Bram Moolenaar30613902019-12-01 22:11:18 +01001956 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 ++s;
1958 }
1959 else
1960 {
1961 p = s;
1962 while (len > 0 && (
1963#ifdef EBCDIC
1964 CtrlChar(*p) == 0
1965#else
1966 *p >= 0x20
1967#endif
1968#ifdef FEAT_SIGN_ICONS
1969 || *p == SIGN_BYTE
1970# ifdef FEAT_NETBEANS_INTG
1971 || *p == MULTISIGN_BYTE
1972# endif
1973#endif
1974 ))
1975 {
1976 len--;
1977 p++;
1978 }
1979 gui_outstr(s, (int)(p - s));
1980 s = p;
1981 }
1982 }
1983
Bram Moolenaar30613902019-12-01 22:11:18 +01001984 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1985 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 if (force_cursor)
1987 gui_update_cursor(TRUE, TRUE);
1988
Bram Moolenaar30613902019-12-01 22:11:18 +01001989 // When switching to another window the dragging must have stopped.
1990 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 if (old_curwin != curwin)
1992 gui.dragged_sb = SBAR_NONE;
1993
Bram Moolenaar30613902019-12-01 22:11:18 +01001994 // Update the scrollbars after clearing the screen or when switched
1995 // to another window.
1996 // Update the horizontal scrollbar always, it's difficult to check all
1997 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (force_scrollbar || old_curwin != curwin)
1999 gui_update_scrollbars(force_scrollbar);
2000 else
2001 gui_update_horiz_scrollbar(FALSE);
2002 old_curwin = curwin;
2003
2004 /*
2005 * We need to make sure this is cleared since Athena doesn't tell us when
2006 * he is done dragging. Do the same for GTK.
2007 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00002008#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 gui.dragged_sb = SBAR_NONE;
2010#endif
2011
Bram Moolenaar30613902019-12-01 22:11:18 +01002012 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013}
2014
2015/*
2016 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2017 * produces wrong results. Call gui_dont_update_cursor() before that code and
2018 * gui_can_update_cursor() afterwards.
2019 */
2020 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002021gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 if (gui.in_use)
2024 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002025 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002026 if (undraw)
2027 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 can_update_cursor = FALSE;
2029 }
2030}
2031
2032 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002033gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034{
2035 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002036 // No need to update the cursor right now, there is always more output
2037 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038}
2039
Bram Moolenaara338adc2018-01-31 20:51:47 +01002040/*
2041 * Disable issuing gui_mch_flush().
2042 */
2043 void
2044gui_disable_flush(void)
2045{
2046 ++disable_flush;
2047}
2048
2049/*
2050 * Enable issuing gui_mch_flush().
2051 */
2052 void
2053gui_enable_flush(void)
2054{
2055 --disable_flush;
2056}
2057
2058/*
2059 * Issue gui_mch_flush() if it is not disabled.
2060 */
2061 void
2062gui_may_flush(void)
2063{
2064 if (disable_flush == 0)
2065 gui_mch_flush();
2066}
2067
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002069gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070{
2071 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073
2074 if (len == 0)
2075 return;
2076
2077 if (len < 0)
2078 len = (int)STRLEN(s);
2079
2080 while (len > 0)
2081 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (has_mbyte)
2083 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002084 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 cells = 0;
2086 for (this_len = 0; this_len < len; )
2087 {
2088 cells += (*mb_ptr2cells)(s + this_len);
2089 if (gui.col + cells > Columns)
2090 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002091 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 }
2093 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002094 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 }
2096 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 if (gui.col + len > Columns)
2098 this_len = Columns - gui.col;
2099 else
2100 this_len = len;
2101
2102 (void)gui_outstr_nowrap(s, this_len,
2103 0, (guicolor_T)0, (guicolor_T)0, 0);
2104 s += this_len;
2105 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002106 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 if (len > 0 && gui.col < Columns)
2108 (void)gui_outstr_nowrap((char_u *)" ", 1,
2109 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002110 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 if (gui.col >= Columns)
2112 {
2113 gui.col = 0;
2114 gui.row++;
2115 }
2116 }
2117}
2118
2119/*
2120 * Output one character (may be one or two display cells).
2121 * Caller must check for valid "off".
2122 * Returns FAIL or OK, just like gui_outstr_nowrap().
2123 */
2124 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002125gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002126 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002127 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002128 guicolor_T fg, // colors for cursor
2129 guicolor_T bg, // colors for cursor
2130 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 char_u buf[MB_MAXBYTES + 1];
2133
Bram Moolenaar30613902019-12-01 22:11:18 +01002134 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (enc_utf8 && ScreenLines[off] == 0)
2136 return OK;
2137
2138 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002139 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2141 flags, fg, bg, back);
2142
2143 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2144 {
2145 buf[0] = ScreenLines[off];
2146 buf[1] = ScreenLines2[off];
2147 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2148 }
2149
Bram Moolenaar30613902019-12-01 22:11:18 +01002150 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002152 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154}
2155
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002156#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157/*
2158 * Output the string at the given screen position. This is used in place
2159 * of gui_screenchar() where possible because Pango needs as much context
2160 * as possible to work nicely. It's a lot faster as well.
2161 */
2162 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002163gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002164 int off, // Offset from start of screen
2165 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002166 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002167 guicolor_T fg, // colors for cursor
2168 guicolor_T bg, // colors for cursor
2169 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170{
2171 char_u *buf;
2172 int outlen = 0;
2173 int i;
2174 int retval;
2175
Bram Moolenaar30613902019-12-01 22:11:18 +01002176 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 return OK;
2178
2179 if (enc_utf8)
2180 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002181 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002183 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184
2185 for (i = off; i < off + len; ++i)
2186 {
2187 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002188 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189
2190 if (ScreenLinesUC[i] == 0)
2191 buf[outlen++] = ScreenLines[i];
2192 else
2193 outlen += utfc_char2bytes(i, buf + outlen);
2194 }
2195
Bram Moolenaar30613902019-12-01 22:11:18 +01002196 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2198 vim_free(buf);
2199
2200 return retval;
2201 }
2202 else if (enc_dbcs == DBCS_JPNU)
2203 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002204 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002206 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207
2208 for (i = off; i < off + len; ++i)
2209 {
2210 buf[outlen++] = ScreenLines[i];
2211
Bram Moolenaar30613902019-12-01 22:11:18 +01002212 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 if (ScreenLines[i] == 0x8e)
2214 buf[outlen++] = ScreenLines2[i];
2215 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2216 buf[outlen++] = ScreenLines[++i];
2217 }
2218
Bram Moolenaar30613902019-12-01 22:11:18 +01002219 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2221 vim_free(buf);
2222
2223 return retval;
2224 }
2225 else
2226 {
2227 return gui_outstr_nowrap(&ScreenLines[off], len,
2228 flags, fg, bg, back);
2229 }
2230}
Bram Moolenaar30613902019-12-01 22:11:18 +01002231#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232
2233/*
2234 * Output the given string at the current cursor position. If the string is
2235 * too long to fit on the line, then it is truncated.
2236 * "flags":
2237 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2238 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002239 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 * background.
2241 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2242 * it.
2243 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2244 * FAIL (the caller should start drawing "back" chars back).
2245 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002246 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002247gui_outstr_nowrap(
2248 char_u *s,
2249 int len,
2250 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002251 guicolor_T fg, // colors for cursor
2252 guicolor_T bg, // colors for cursor
2253 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
2255 long_u highlight_mask;
2256 long_u hl_mask_todo;
2257 guicolor_T fg_color;
2258 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002259 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002260#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002262 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263# ifdef FEAT_XFONTSET
2264 GuiFontset fontset = NOFONTSET;
2265# endif
2266#endif
2267 attrentry_T *aep = NULL;
2268 int draw_flags;
2269 int col = gui.col;
2270#ifdef FEAT_SIGN_ICONS
2271 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002272 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002273 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274# ifdef FEAT_NETBEANS_INTG
2275 int multi_sign = FALSE;
2276# endif
2277#endif
2278
2279 if (len < 0)
2280 len = (int)STRLEN(s);
2281 if (len == 0)
2282 return OK;
2283
2284#ifdef FEAT_SIGN_ICONS
2285 if (*s == SIGN_BYTE
2286# ifdef FEAT_NETBEANS_INTG
2287 || *s == MULTISIGN_BYTE
2288# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002289 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 {
2291# ifdef FEAT_NETBEANS_INTG
2292 if (*s == MULTISIGN_BYTE)
2293 multi_sign = TRUE;
2294# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002295 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002296 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2297 (curwin->w_p_nu || curwin->w_p_rnu))
2298 {
2299 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2300 s = extra;
2301 }
2302 else
2303 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 if (len == 1 && col > 0)
2305 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002306 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002307 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002308 // right align sign icon in the number column
2309 signcol = col + len - 3;
2310 else
2311 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 draw_sign = TRUE;
2313 highlight_mask = 0;
2314 }
2315 else
2316#endif
2317 if (gui.highlight_mask > HL_ALL)
2318 {
2319 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002320 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 highlight_mask = 0;
2322 else
2323 highlight_mask = aep->ae_attr;
2324 }
2325 else
2326 highlight_mask = gui.highlight_mask;
2327 hl_mask_todo = highlight_mask;
2328
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002329#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002330 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2332 font = aep->ae_u.gui.font;
2333# ifdef FEAT_XFONTSET
2334 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2335 fontset = aep->ae_u.gui.fontset;
2336# endif
2337 else
2338 {
2339# ifdef FEAT_XFONTSET
2340 if (gui.fontset != NOFONTSET)
2341 fontset = gui.fontset;
2342 else
2343# endif
2344 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2345 {
2346 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2347 {
2348 font = gui.boldital_font;
2349 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2350 }
2351 else if (gui.bold_font != NOFONT)
2352 {
2353 font = gui.bold_font;
2354 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2355 }
2356 else
2357 font = gui.norm_font;
2358 }
2359 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2360 {
2361 font = gui.ital_font;
2362 hl_mask_todo &= ~HL_ITALIC;
2363 }
2364 else
2365 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002366
Bram Moolenaardb250522013-06-17 22:43:25 +02002367 /*
2368 * Choose correct wide_font by font. wide_font should be set with font
2369 * at same time in above block. But it will make many "ifdef" nasty
2370 * blocks. So we do it here.
2371 */
2372 if (font == gui.boldital_font && gui.wide_boldital_font)
2373 wide_font = gui.wide_boldital_font;
2374 else if (font == gui.bold_font && gui.wide_bold_font)
2375 wide_font = gui.wide_bold_font;
2376 else if (font == gui.ital_font && gui.wide_ital_font)
2377 wide_font = gui.wide_ital_font;
2378 else if (font == gui.norm_font && gui.wide_font)
2379 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 }
2381# ifdef FEAT_XFONTSET
2382 if (fontset != NOFONTSET)
2383 gui_mch_set_fontset(fontset);
2384 else
2385# endif
2386 gui_mch_set_font(font);
2387#endif
2388
2389 draw_flags = 0;
2390
Bram Moolenaar30613902019-12-01 22:11:18 +01002391 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 bg_color = gui.back_pixel;
2393 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2394 {
2395 draw_flags |= DRAW_CURSOR;
2396 fg_color = fg;
2397 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002398 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 }
2400 else if (aep != NULL)
2401 {
2402 fg_color = aep->ae_u.gui.fg_color;
2403 if (fg_color == INVALCOLOR)
2404 fg_color = gui.norm_pixel;
2405 bg_color = aep->ae_u.gui.bg_color;
2406 if (bg_color == INVALCOLOR)
2407 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002408 sp_color = aep->ae_u.gui.sp_color;
2409 if (sp_color == INVALCOLOR)
2410 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 }
2412 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002413 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002415 sp_color = fg_color;
2416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417
2418 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2419 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 gui_mch_set_fg_color(bg_color);
2421 gui_mch_set_bg_color(fg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 }
2423 else
2424 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 gui_mch_set_fg_color(fg_color);
2426 gui_mch_set_bg_color(bg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002428 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429
Bram Moolenaar30613902019-12-01 22:11:18 +01002430 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 if (!(flags & GUI_MON_NOCLEAR))
2432 clip_may_clear_selection(gui.row, gui.row);
2433
2434
Bram Moolenaar30613902019-12-01 22:11:18 +01002435 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2437 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438
2439 /*
2440 * When drawing bold or italic characters the spill-over from the left
2441 * neighbor may be destroyed. Let the caller backup to start redrawing
2442 * just after a blank.
2443 */
2444 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2445 return FAIL;
2446
Bram Moolenaare60acc12011-05-10 16:41:25 +02002447#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002448 // If there's no italic font, then fake it.
2449 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (hl_mask_todo & HL_ITALIC)
2451 draw_flags |= DRAW_ITALIC;
2452
Bram Moolenaar30613902019-12-01 22:11:18 +01002453 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 if (hl_mask_todo & HL_UNDERLINE)
2455 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002456
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002458 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002459 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 draw_flags |= DRAW_UNDERL;
2461#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002462 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002463 if (hl_mask_todo & HL_UNDERCURL)
2464 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465
Bram Moolenaar30613902019-12-01 22:11:18 +01002466 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002467 if (hl_mask_todo & HL_STRIKETHROUGH)
2468 draw_flags |= DRAW_STRIKE;
2469
Bram Moolenaar30613902019-12-01 22:11:18 +01002470 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 if (flags & GUI_MON_TRS_CURSOR)
2472 draw_flags |= DRAW_TRANSP;
2473
2474 /*
2475 * Draw the text.
2476 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002477#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002478 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2480#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 if (enc_utf8)
2482 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002483 int start; // index of bytes to be drawn
2484 int cells; // cellwidth of bytes to be drawn
2485 int thislen; // length of bytes to be drawn
2486 int cn; // cellwidth of current char
2487 int i; // index of current char
2488 int c; // current char value
2489 int cl; // byte length of current char
2490 int comping; // current char is composing
2491 int scol = col; // screen column
2492 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002493 int prev_wide = FALSE;
2494 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002495# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002496 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002497# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002498 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002499# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
Bram Moolenaar30613902019-12-01 22:11:18 +01002501 // Break the string at a composing character, it has to be drawn on
2502 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 start = 0;
2504 cells = 0;
2505 for (i = 0; i < len; i += cl)
2506 {
2507 c = utf_ptr2char(s + i);
2508 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002510 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002512 if (!comping || sep_comp)
2513 {
2514 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002515# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002516 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002517# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002518 && wide_font != NOFONT)
2519 curr_wide = TRUE;
2520 else
2521 curr_wide = FALSE;
2522 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002523 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002524 if (cl == 0) // hit end of string
2525 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526
Bram Moolenaar45933962013-01-23 17:43:57 +01002527 wide_changed = curr_wide != prev_wide;
2528
Bram Moolenaar30613902019-12-01 22:11:18 +01002529 // Print the string so far if it's the last character or there is
2530 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002531 if (i + cl >= len || (comping && sep_comp && i > start)
2532 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002533# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002535# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002536 // No fontset: At least draw char after wide char at
2537 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002540 )
2541# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 )
2543 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002544 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 thislen = i - start;
2546 else
2547 thislen = i - start + cl;
2548 if (thislen > 0)
2549 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002550 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002551 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2553 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002554 if (prev_wide)
2555 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 start += thislen;
2557 }
2558 scol += cells;
2559 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002560 // Adjust to not draw a character which width is changed
2561 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002562 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002564 scol -= cn;
2565 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 }
2567
Bram Moolenaar13505972019-01-24 15:04:48 +01002568# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002569 // No fontset: draw a space to fill the gap after a wide char
2570 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002572# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002574# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002575 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2577 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002578# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002580 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002581 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002583# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002584 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002585 gui_mch_draw_string(gui.row, scol, s + i, cl,
2586 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002587# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002588 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2589 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002590# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 start = i + cl;
2592 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002593 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002595 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 len = scol - col;
2597 }
2598 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 {
2600 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 if (enc_dbcs == DBCS_JPNU)
2602 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002603 // Get the length in display cells, this can be different from the
2604 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002605 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002608#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609
2610 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2611 gui.col = col + len;
2612
Bram Moolenaar30613902019-12-01 22:11:18 +01002613 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 if (flags & GUI_MON_NOCLEAR)
2615 clip_may_redraw_selection(gui.row, col, len);
2616
2617 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2618 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002619 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 if (gui.cursor_row == gui.row
2621 && gui.cursor_col >= col
2622 && gui.cursor_col < col + len)
2623 gui.cursor_is_valid = FALSE;
2624 }
2625
2626#ifdef FEAT_SIGN_ICONS
2627 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002628 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002629 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002630# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002631 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 if (multi_sign)
2633 netbeans_draw_multisign_indicator(gui.row);
2634# endif
2635#endif
2636
2637 return OK;
2638}
2639
2640/*
2641 * Un-draw the cursor. Actually this just redraws the character at the given
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002642 * position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 */
2644 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002645gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646{
2647 if (gui.cursor_is_valid)
2648 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002649 // Redraw the character just before too, if there is one, because with
2650 // some fonts and characters there can be a one pixel overlap.
2651 gui_redraw_block(gui.cursor_row,
2652 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col,
2653 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR);
2654
Bram Moolenaar54612582019-11-21 17:13:31 +01002655 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2656 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 gui.cursor_is_valid = FALSE;
2658 }
2659}
2660
2661 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002662gui_redraw(
2663 int x,
2664 int y,
2665 int w,
2666 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
2668 int row1, col1, row2, col2;
2669
2670 row1 = Y_2_ROW(y);
2671 col1 = X_2_COL(x);
2672 row2 = Y_2_ROW(y + h - 1);
2673 col2 = X_2_COL(x + w - 1);
2674
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002675 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677 /*
2678 * We may need to redraw the cursor, but don't take it upon us to change
2679 * its location after a scroll.
2680 * (maybe be more strict even and test col too?)
2681 * These things may be outside the update/clipping region and reality may
2682 * not reflect Vims internal ideas if these operations are clipped away.
2683 */
2684 if (gui.row == gui.cursor_row)
2685 gui_update_cursor(TRUE, TRUE);
2686}
2687
2688/*
2689 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2690 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002692 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002693gui_redraw_block(
2694 int row1,
2695 int col1,
2696 int row2,
2697 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002698 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699{
2700 int old_row, old_col;
2701 long_u old_hl_mask;
2702 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002703 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 int idx, len;
2705 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707
Bram Moolenaar30613902019-12-01 22:11:18 +01002708 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002710 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711
Bram Moolenaar30613902019-12-01 22:11:18 +01002712 // Don't try to draw outside the shell!
2713 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 col1 = check_col(col1);
2715 col2 = check_col(col2);
2716 row1 = check_row(row1);
2717 row2 = check_row(row2);
2718
Bram Moolenaar30613902019-12-01 22:11:18 +01002719 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 old_row = gui.row;
2721 old_col = gui.col;
2722 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 orig_col1 = col1;
2724 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
2726 for (gui.row = row1; gui.row <= row2; gui.row++)
2727 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002728 // When only half of a double-wide character is in the block, include
2729 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 col1 = orig_col1;
2731 col2 = orig_col2;
2732 off = LineOffset[gui.row];
2733 if (enc_dbcs != 0)
2734 {
2735 if (col1 > 0)
2736 col1 -= dbcs_screen_head_off(ScreenLines + off,
2737 ScreenLines + off + col1);
2738 col2 += dbcs_screen_tail_off(ScreenLines + off,
2739 ScreenLines + off + col2);
2740 }
2741 else if (enc_utf8)
2742 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002743 if (ScreenLines[off + col1] == 0)
2744 {
2745 if (col1 > 0)
2746 --col1;
2747 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002748 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002749 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002750 // Make this IEMSGN when it no longer breaks Travis CI.
2751 vim_snprintf((char *)IObuff, IOSIZE,
2752 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2753 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002754 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002755 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002756 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002757#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2759 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 gui.col = col1;
2763 off = LineOffset[gui.row] + gui.col;
2764 len = col2 - col1 + 1;
2765
Bram Moolenaar30613902019-12-01 22:11:18 +01002766 // Find how many chars back this highlighting starts, or where a space
2767 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 for (back = 0; back < col1; ++back)
2769 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2770 || ScreenLines[off - 1 - back] == ' ')
2771 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772
Bram Moolenaar30613902019-12-01 22:11:18 +01002773 // Break it up in strings of characters with the same attributes.
2774 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 while (len > 0)
2776 {
2777 first_attr = ScreenAttrs[off];
2778 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002779#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 if (enc_utf8 && ScreenLinesUC[off] != 0)
2781 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002782 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 nback = gui_screenchar(off, flags,
2784 (guicolor_T)0, (guicolor_T)0, back);
2785 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2786 idx = 2;
2787 else
2788 idx = 1;
2789 }
2790 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2791 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002792 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 nback = gui_screenchar(off, flags,
2794 (guicolor_T)0, (guicolor_T)0, back);
2795 idx = 1;
2796 }
2797 else
2798#endif
2799 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002800#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 for (idx = 0; idx < len; ++idx)
2802 {
2803 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002804 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 if (ScreenAttrs[off + idx] != first_attr)
2806 break;
2807 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002808 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 nback = gui_screenstr(off, idx, flags,
2810 (guicolor_T)0, (guicolor_T)0, back);
2811#else
2812 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2813 idx++)
2814 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002815 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2817 break;
2818 if (enc_dbcs == DBCS_JPNU)
2819 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002820 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 if (ScreenLines[off + idx] == 0x8e)
2822 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002823 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002825 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 }
2828 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2829 (guicolor_T)0, (guicolor_T)0, back);
2830#endif
2831 }
2832 if (nback == FAIL)
2833 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002834 // Must back up to start drawing where a bold or italic word
2835 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 off -= back;
2837 len += back;
2838 gui.col -= back;
2839 }
2840 else
2841 {
2842 off += idx;
2843 len -= idx;
2844 }
2845 back = 0;
2846 }
2847 }
2848
Bram Moolenaar30613902019-12-01 22:11:18 +01002849 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 gui.row = old_row;
2851 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002852 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853}
2854
2855 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002856gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857{
2858 if (count <= 0)
2859 return;
2860
2861 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002862 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 gui_clear_block(row, gui.scroll_region_left,
2864 gui.scroll_region_bot, gui.scroll_region_right);
2865 else
2866 {
2867 gui_mch_delete_lines(row, count);
2868
Bram Moolenaar30613902019-12-01 22:11:18 +01002869 // If the cursor was in the deleted lines it's now gone. If the
2870 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 if (gui.cursor_row >= row
2872 && gui.cursor_col >= gui.scroll_region_left
2873 && gui.cursor_col <= gui.scroll_region_right)
2874 {
2875 if (gui.cursor_row < row + count)
2876 gui.cursor_is_valid = FALSE;
2877 else if (gui.cursor_row <= gui.scroll_region_bot)
2878 gui.cursor_row -= count;
2879 }
2880 }
2881}
2882
2883 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002884gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885{
2886 if (count <= 0)
2887 return;
2888
2889 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002890 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 gui_clear_block(row, gui.scroll_region_left,
2892 gui.scroll_region_bot, gui.scroll_region_right);
2893 else
2894 {
2895 gui_mch_insert_lines(row, count);
2896
2897 if (gui.cursor_row >= gui.row
2898 && gui.cursor_col >= gui.scroll_region_left
2899 && gui.cursor_col <= gui.scroll_region_right)
2900 {
2901 if (gui.cursor_row <= gui.scroll_region_bot - count)
2902 gui.cursor_row += count;
2903 else if (gui.cursor_row <= gui.scroll_region_bot)
2904 gui.cursor_is_valid = FALSE;
2905 }
2906 }
2907}
2908
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002909#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002910/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002911 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2912 */
2913 static int
2914gui_wait_for_chars_3(
2915 long wtime,
2916 int *interrupted UNUSED,
2917 int ignore_input UNUSED)
2918{
2919 return gui_mch_wait_for_chars(wtime);
2920}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002921#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002922
2923/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002924 * Returns OK if a character was found to be available within the given time,
2925 * or FAIL otherwise.
2926 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002927 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002928gui_wait_for_chars_or_timer(
2929 long wtime,
2930 int *interrupted UNUSED,
2931 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002932{
2933#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002934 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2935 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002936#else
2937 return gui_mch_wait_for_chars(wtime);
2938#endif
2939}
2940
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941/*
2942 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002943 * "wtime" == -1 Wait forever.
2944 * "wtime" == 0 Don't wait.
2945 * "wtime" > 0 Wait wtime milliseconds for a character.
2946 *
2947 * Returns the number of characters read or zero when timed out or interrupted.
2948 * "buf" may be NULL, in which case a non-zero number is returned if characters
2949 * are available.
2950 */
2951 static int
2952gui_wait_for_chars_buf(
2953 char_u *buf,
2954 int maxlen,
2955 long wtime, // don't use "time", MIPS cannot handle it
2956 int tb_change_cnt)
2957{
2958 int retval;
2959
2960#ifdef FEAT_MENU
2961 // If we're going to wait a bit, update the menus and mouse shape for the
2962 // current State.
2963 if (wtime != 0)
2964 gui_update_menus(0);
2965#endif
2966
2967 gui_mch_update();
2968 if (input_available()) // Got char, return immediately
2969 {
2970 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2971 return read_from_input_buf(buf, (long)maxlen);
2972 return 0;
2973 }
2974 if (wtime == 0) // Don't wait for char
2975 return FAIL;
2976
2977 // Before waiting, flush any output to the screen.
2978 gui_mch_flush();
2979
2980 // Blink while waiting for a character.
2981 gui_mch_start_blink();
2982
2983 // Common function to loop until "wtime" is met, while handling timers and
2984 // other callbacks.
2985 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2986 gui_wait_for_chars_or_timer, NULL);
2987
2988 gui_mch_stop_blink(TRUE);
2989
2990 return retval;
2991}
2992
2993/*
2994 * Wait for a character from the keyboard without actually reading it.
2995 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 * wtime == -1 Wait forever.
2997 * wtime == 0 Don't wait.
2998 * wtime > 0 Wait wtime milliseconds for a character.
2999 * Returns OK if a character was found to be available within the given time,
3000 * or FAIL otherwise.
3001 */
3002 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003003gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003005 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006}
3007
3008/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003009 * Equivalent of mch_inchar() for the GUI.
3010 */
3011 int
3012gui_inchar(
3013 char_u *buf,
3014 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01003015 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003016 int tb_change_cnt)
3017{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003018 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003019}
3020
3021/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003022 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 */
3024 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003025fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026{
3027 p[0] = (char_u)(col / 128 + ' ' + 1);
3028 p[1] = (char_u)(col % 128 + ' ' + 1);
3029 p[2] = (char_u)(row / 128 + ' ' + 1);
3030 p[3] = (char_u)(row % 128 + ' ' + 1);
3031}
3032
3033/*
3034 * Generic mouse support function. Add a mouse event to the input buffer with
3035 * the given properties.
3036 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3037 * MOUSE_X1, MOUSE_X2
3038 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003039 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3040 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 * x, y --- Coordinates of mouse in pixels.
3042 * repeated_click --- TRUE if this click comes only a short time after a
3043 * previous click.
3044 * modifiers --- Bit field which may be any of the following modifiers
3045 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3046 * This function will ignore drag events where the mouse has not moved to a new
3047 * character.
3048 */
3049 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003050gui_send_mouse_event(
3051 int button,
3052 int x,
3053 int y,
3054 int repeated_click,
3055 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056{
3057 static int prev_row = 0, prev_col = 0;
3058 static int prev_button = -1;
3059 static int num_clicks = 1;
3060 char_u string[10];
3061 enum key_extra button_char;
3062 int row, col;
3063#ifdef FEAT_CLIPBOARD
3064 int checkfor;
3065 int did_clip = FALSE;
3066#endif
3067
3068 /*
3069 * Scrolling may happen at any time, also while a selection is present.
3070 */
3071 switch (button)
3072 {
3073 case MOUSE_X1:
3074 button_char = KE_X1MOUSE;
3075 goto button_set;
3076 case MOUSE_X2:
3077 button_char = KE_X2MOUSE;
3078 goto button_set;
3079 case MOUSE_4:
3080 button_char = KE_MOUSEDOWN;
3081 goto button_set;
3082 case MOUSE_5:
3083 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003084 goto button_set;
3085 case MOUSE_6:
3086 button_char = KE_MOUSELEFT;
3087 goto button_set;
3088 case MOUSE_7:
3089 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090button_set:
3091 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003092 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 if (hold_gui_events)
3094 return;
3095
3096 string[3] = CSI;
3097 string[4] = KS_EXTRA;
3098 string[5] = (int)button_char;
3099
Bram Moolenaar30613902019-12-01 22:11:18 +01003100 // Pass the pointer coordinates of the scroll event so that we
3101 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 row = gui_xy2colrow(x, y, &col);
3103 string[6] = (char_u)(col / 128 + ' ' + 1);
3104 string[7] = (char_u)(col % 128 + ' ' + 1);
3105 string[8] = (char_u)(row / 128 + ' ' + 1);
3106 string[9] = (char_u)(row % 128 + ' ' + 1);
3107
3108 if (modifiers == 0)
3109 add_to_input_buf(string + 3, 7);
3110 else
3111 {
3112 string[0] = CSI;
3113 string[1] = KS_MODIFIER;
3114 string[2] = 0;
3115 if (modifiers & MOUSE_SHIFT)
3116 string[2] |= MOD_MASK_SHIFT;
3117 if (modifiers & MOUSE_CTRL)
3118 string[2] |= MOD_MASK_CTRL;
3119 if (modifiers & MOUSE_ALT)
3120 string[2] |= MOD_MASK_ALT;
3121 add_to_input_buf(string, 10);
3122 }
3123 return;
3124 }
3125 }
3126
3127#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003128 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 if (clip_star.state == SELECT_IN_PROGRESS)
3130 {
3131 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003132
3133 // A release event may still need to be sent if the position is equal.
3134 row = gui_xy2colrow(x, y, &col);
3135 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3136 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 }
3138
Bram Moolenaar30613902019-12-01 22:11:18 +01003139 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 switch (get_real_state())
3141 {
3142 case NORMAL_BUSY:
3143 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003144# ifdef FEAT_TERMINAL
3145 case TERMINAL:
3146# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 case NORMAL: checkfor = MOUSE_NORMAL; break;
3148 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003149 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 case REPLACE:
3151 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 case VREPLACE:
3153 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 case INSERT:
3155 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3156 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003157 case HITRETURN: // At the more- and hit-enter prompt pass the
3158 // mouse event for a click on or below the
3159 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 if (Y_2_ROW(y) >= msg_row)
3161 checkfor = MOUSE_NORMAL;
3162 else
3163 checkfor = MOUSE_RETURN;
3164 break;
3165
3166 /*
3167 * On the command line, use the clipboard selection on all lines
3168 * but the command line. But not when pasting.
3169 */
3170 case CMDLINE:
3171 case CMDLINE+LANGMAP:
3172 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3173 checkfor = MOUSE_NONE;
3174 else
3175 checkfor = MOUSE_COMMAND;
3176 break;
3177
3178 default:
3179 checkfor = MOUSE_NONE;
3180 break;
3181 };
3182
3183 /*
3184 * Allow clipboard selection of text on the command line in "normal"
3185 * modes. Don't do this when dragging the status line, or extending a
3186 * Visual selection.
3187 */
3188 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003189 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 && button != MOUSE_DRAG
3191# ifdef FEAT_MOUSESHAPE
3192 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194# endif
3195 )
3196 checkfor = MOUSE_NONE;
3197
3198 /*
3199 * Use modeless selection when holding CTRL and SHIFT pressed.
3200 */
3201 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3202 checkfor = MOUSE_NONEF;
3203
3204 /*
3205 * In Ex mode, always use modeless selection.
3206 */
3207 if (exmode_active)
3208 checkfor = MOUSE_NONE;
3209
3210 /*
3211 * If the mouse settings say to not use the mouse, use the modeless
3212 * selection. But if Visual is active, assume that only the Visual area
3213 * will be selected.
3214 * Exception: On the command line, both the selection is used and a mouse
3215 * key is send.
3216 */
3217 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3218 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003219 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3221 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
3223 /*
3224 * When 'mousemodel' is "popup", shift-left is translated to right.
3225 * But not when also using Ctrl.
3226 */
3227 if (mouse_model_popup() && button == MOUSE_LEFT
3228 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3229 {
3230 button = MOUSE_RIGHT;
3231 modifiers &= ~ MOUSE_SHIFT;
3232 }
3233
Bram Moolenaar30613902019-12-01 22:11:18 +01003234 // If the selection is done, allow the right button to extend it.
3235 // If the selection is cleared, allow the right button to start it
3236 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 if (button == MOUSE_RIGHT)
3238 {
3239 if (clip_star.state == SELECT_CLEARED)
3240 {
3241 if (State & CMDLINE)
3242 {
3243 col = msg_col;
3244 row = msg_row;
3245 }
3246 else
3247 {
3248 col = curwin->w_wcol;
3249 row = curwin->w_wrow + W_WINROW(curwin);
3250 }
3251 clip_start_selection(col, row, FALSE);
3252 }
3253 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3254 repeated_click);
3255 did_clip = TRUE;
3256 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003257 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003258 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 {
3260 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3261 did_clip = TRUE;
3262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
Bram Moolenaar30613902019-12-01 22:11:18 +01003264 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 if (button != MOUSE_MIDDLE)
3266 {
3267 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3268 return;
3269 if (checkfor != MOUSE_COMMAND)
3270 button = MOUSE_LEFT;
3271 }
3272 repeated_click = FALSE;
3273 }
3274
3275 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003276 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277#endif
3278
Bram Moolenaar30613902019-12-01 22:11:18 +01003279 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 if (hold_gui_events)
3281 return;
3282
3283 row = gui_xy2colrow(x, y, &col);
3284
3285 /*
3286 * If we are dragging and the mouse hasn't moved far enough to be on a
3287 * different character, then don't send an event to vim.
3288 */
3289 if (button == MOUSE_DRAG)
3290 {
3291 if (row == prev_row && col == prev_col)
3292 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003293 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 if (y < 0)
3295 row = -1;
3296 }
3297
3298 /*
3299 * If topline has changed (window scrolled) since the last click, reset
3300 * repeated_click, because we don't want starting Visual mode when
3301 * clicking on a different character in the text.
3302 */
3303 if (curwin->w_topline != gui_prev_topline
3304#ifdef FEAT_DIFF
3305 || curwin->w_topfill != gui_prev_topfill
3306#endif
3307 )
3308 repeated_click = FALSE;
3309
Bram Moolenaar30613902019-12-01 22:11:18 +01003310 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 string[1] = KS_MOUSE;
3312 string[2] = KE_FILLER;
3313 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3314 {
3315 if (repeated_click)
3316 {
3317 /*
3318 * Handle multiple clicks. They only count if the mouse is still
3319 * pointing at the same character.
3320 */
3321 if (button != prev_button || row != prev_row || col != prev_col)
3322 num_clicks = 1;
3323 else if (++num_clicks > 4)
3324 num_clicks = 1;
3325 }
3326 else
3327 num_clicks = 1;
3328 prev_button = button;
3329 gui_prev_topline = curwin->w_topline;
3330#ifdef FEAT_DIFF
3331 gui_prev_topfill = curwin->w_topfill;
3332#endif
3333
3334 string[3] = (char_u)(button | 0x20);
3335 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3336 }
3337 else
3338 string[3] = (char_u)button;
3339
3340 string[3] |= modifiers;
3341 fill_mouse_coord(string + 4, col, row);
3342 add_to_input_buf(string, 8);
3343
3344 if (row < 0)
3345 prev_row = 0;
3346 else
3347 prev_row = row;
3348 prev_col = col;
3349
3350 /*
3351 * We need to make sure this is cleared since Athena doesn't tell us when
3352 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3353 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003354#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 gui.dragged_sb = SBAR_NONE;
3356#endif
3357}
3358
3359/*
3360 * Convert x and y coordinate to column and row in text window.
3361 * Corrects for multi-byte character.
3362 * returns column in "*colp" and row as return value;
3363 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003364 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003365gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366{
3367 int col = check_col(X_2_COL(x));
3368 int row = check_row(Y_2_ROW(y));
3369
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 return row;
3372}
3373
3374#if defined(FEAT_MENU) || defined(PROTO)
3375/*
3376 * Callback function for when a menu entry has been selected.
3377 */
3378 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003379gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003381 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382
Bram Moolenaar30613902019-12-01 22:11:18 +01003383 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 if (hold_gui_events)
3385 return;
3386
3387 bytes[0] = CSI;
3388 bytes[1] = KS_MENU;
3389 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003390 add_to_input_buf(bytes, 3);
3391 add_long_to_buf((long_u)menu, bytes);
3392 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393}
3394#endif
3395
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003396static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003397
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398/*
3399 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003400 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 * in p_go.
3402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003404gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003406#ifdef FEAT_GUI_DARKTHEME
3407 static int prev_dark_theme = -1;
3408 int using_dark_theme = FALSE;
3409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410#ifdef FEAT_MENU
3411 static int prev_menu_is_active = -1;
3412#endif
3413#ifdef FEAT_TOOLBAR
3414 static int prev_toolbar = -1;
3415 int using_toolbar = FALSE;
3416#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003417#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003418 int using_tabline;
3419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420#ifdef FEAT_FOOTER
3421 static int prev_footer = -1;
3422 int using_footer = FALSE;
3423#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003424#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 static int prev_tearoff = -1;
3426 int using_tearoff = FALSE;
3427#endif
3428
3429 char_u *p;
3430 int i;
3431#ifdef FEAT_MENU
3432 int grey_old, grey_new;
3433 char_u *temp;
3434#endif
3435 win_T *wp;
3436 int need_set_size;
3437 int fix_size;
3438
3439#ifdef FEAT_MENU
3440 if (oldval != NULL && gui.in_use)
3441 {
3442 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003443 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 */
3445 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3446 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3447 if (grey_old != grey_new)
3448 {
3449 temp = p_go;
3450 p_go = oldval;
3451 gui_update_menus(MENU_ALL_MODES);
3452 p_go = temp;
3453 }
3454 }
3455 gui.menu_is_active = FALSE;
3456#endif
3457
3458 for (i = 0; i < 3; i++)
3459 gui.which_scrollbars[i] = FALSE;
3460 for (p = p_go; *p; p++)
3461 switch (*p)
3462 {
3463 case GO_LEFT:
3464 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3465 break;
3466 case GO_RIGHT:
3467 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3468 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 case GO_VLEFT:
3470 if (win_hasvertsplit())
3471 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3472 break;
3473 case GO_VRIGHT:
3474 if (win_hasvertsplit())
3475 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3476 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 case GO_BOT:
3478 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3479 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003480#ifdef FEAT_GUI_DARKTHEME
3481 case GO_DARKTHEME:
3482 using_dark_theme = TRUE;
3483 break;
3484#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485#ifdef FEAT_MENU
3486 case GO_MENUS:
3487 gui.menu_is_active = TRUE;
3488 break;
3489#endif
3490 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003491 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 break;
3493#ifdef FEAT_TOOLBAR
3494 case GO_TOOLBAR:
3495 using_toolbar = TRUE;
3496 break;
3497#endif
3498#ifdef FEAT_FOOTER
3499 case GO_FOOTER:
3500 using_footer = TRUE;
3501 break;
3502#endif
3503 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003504#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 using_tearoff = TRUE;
3506#endif
3507 break;
3508 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003509 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 break;
3511 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003512
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 if (gui.in_use)
3514 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003515 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003517
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003518#ifdef FEAT_GUI_DARKTHEME
3519 if (using_dark_theme != prev_dark_theme)
3520 {
3521 gui_mch_set_dark_theme(using_dark_theme);
3522 prev_dark_theme = using_dark_theme;
3523 }
3524#endif
3525
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003526#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003527 // Update the GUI tab line, it may appear or disappear. This may
3528 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003529 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003530 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003531 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003532 // We don't want a resize event change "Rows" here, save and
3533 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003534 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003535 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003536 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003537 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003538 if (using_tabline)
3539 fix_size = TRUE;
3540 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003541 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003542 }
3543#endif
3544
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 for (i = 0; i < 3; i++)
3546 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003547 // The scrollbar needs to be updated when it is shown/unshown and
3548 // when switching tab pages. But the size only changes when it's
3549 // shown/unshown. Thus we need two places to remember whether a
3550 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003551 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003552 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003553 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 {
3555 if (i == SBAR_BOTTOM)
3556 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3557 gui.which_scrollbars[i]);
3558 else
3559 {
3560 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003563 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3564 {
3565 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003566 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003567 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003568 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003569 if (gui.which_scrollbars[i])
3570 fix_size = TRUE;
3571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003573 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003574 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 }
3576
3577#ifdef FEAT_MENU
3578 if (gui.menu_is_active != prev_menu_is_active)
3579 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003580 // We don't want a resize event change "Rows" here, save and
3581 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 i = Rows;
3583 gui_mch_enable_menu(gui.menu_is_active);
3584 Rows = i;
3585 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003586 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 if (gui.menu_is_active)
3588 fix_size = TRUE;
3589 }
3590#endif
3591
3592#ifdef FEAT_TOOLBAR
3593 if (using_toolbar != prev_toolbar)
3594 {
3595 gui_mch_show_toolbar(using_toolbar);
3596 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003597 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 if (using_toolbar)
3599 fix_size = TRUE;
3600 }
3601#endif
3602#ifdef FEAT_FOOTER
3603 if (using_footer != prev_footer)
3604 {
3605 gui_mch_enable_footer(using_footer);
3606 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003607 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 if (using_footer)
3609 fix_size = TRUE;
3610 }
3611#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003612#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 if (using_tearoff != prev_tearoff)
3614 {
3615 gui_mch_toggle_tearoffs(using_tearoff);
3616 prev_tearoff = using_tearoff;
3617 }
3618#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003619 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003620 {
3621#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003622 long prev_Columns = Columns;
3623 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003624#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003625 // Adjust the size of the window to make the text area keep the
3626 // same size and to avoid that part of our window is off-screen
3627 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003628 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003629
3630#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003631 // GTK has the annoying habit of sending us resize events when
3632 // changing the window size ourselves. This mostly happens when
3633 // waiting for a character to arrive, quite unpredictably, and may
3634 // change Columns and Rows when we don't want it. Wait for a
3635 // character here to avoid this effect.
3636 // If you remove this, please test this command for resizing
3637 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3638 // Don't do this while starting up though.
3639 // Don't change Rows when adding menu/toolbar/tabline.
3640 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003641 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003642 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003643 if ((need_set_size & RESIZE_VERT) == 0)
3644 Rows = prev_Rows;
3645 if ((need_set_size & RESIZE_HOR) == 0)
3646 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003647#endif
3648 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003649 // When the console tabline appears or disappears the window positions
3650 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003651 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003652 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 }
3654}
3655
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003656#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3657/*
3658 * Return TRUE if the GUI is taking care of the tabline.
3659 * It may still be hidden if 'showtabline' is zero.
3660 */
3661 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003662gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003663{
3664 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3665}
3666
3667/*
3668 * Return TRUE if the GUI is showing the tabline.
3669 * This uses 'showtabline'.
3670 */
3671 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003672gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003673{
3674 if (!gui_use_tabline()
3675 || p_stal == 0
3676 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3677 return FALSE;
3678 return TRUE;
3679}
3680
3681/*
3682 * Update the tabline.
3683 * This may display/undisplay the tabline and update the labels.
3684 */
3685 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003686gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003687{
3688 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003689 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003690
3691 if (!gui.starting && starting == 0)
3692 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003693 // Updating the tabline uses direct GUI commands, flush
3694 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003695 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003696
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003697 if (!showit != !shown)
3698 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003699 if (showit != 0)
3700 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003701
Bram Moolenaar30613902019-12-01 22:11:18 +01003702 // When the tabs change from hidden to shown or from shown to
3703 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003704 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003705 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003706 }
3707}
3708
3709/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003710 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003711 */
3712 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003713get_tabline_label(
3714 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003715 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003716{
3717 int modified = FALSE;
3718 char_u buf[40];
3719 int wincount;
3720 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003721 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003722
Bram Moolenaar30613902019-12-01 22:11:18 +01003723 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003724 opt = (tooltip ? &p_gtt : &p_gtl);
3725 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003726 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003727 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003728 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003729 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003730 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003731 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3732 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003733
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003734 printer_page_num = tabpage_index(tp);
3735# ifdef FEAT_EVAL
3736 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003737 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003738# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003739 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003740 curtab->tp_firstwin = firstwin;
3741 curtab->tp_lastwin = lastwin;
3742 curtab->tp_curwin = curwin;
3743 save_curtab = curtab;
3744 curtab = tp;
3745 topframe = curtab->tp_topframe;
3746 firstwin = curtab->tp_firstwin;
3747 lastwin = curtab->tp_lastwin;
3748 curwin = curtab->tp_curwin;
3749 curbuf = curwin->w_buffer;
3750
Bram Moolenaar30613902019-12-01 22:11:18 +01003751 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003752 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003753 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003754 STRCPY(NameBuff, res);
3755
Bram Moolenaar30613902019-12-01 22:11:18 +01003756 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003757 curtab = save_curtab;
3758 topframe = curtab->tp_topframe;
3759 firstwin = curtab->tp_firstwin;
3760 lastwin = curtab->tp_lastwin;
3761 curwin = curtab->tp_curwin;
3762 curbuf = curwin->w_buffer;
3763
Bram Moolenaar53989552019-12-23 22:59:18 +01003764 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003765 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003766 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003767 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003768
Bram Moolenaar30613902019-12-01 22:11:18 +01003769 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3770 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003771 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003772 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003773 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003774 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003775 if (!tooltip)
3776 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003777
3778 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3779 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3780 if (bufIsChanged(wp->w_buffer))
3781 modified = TRUE;
3782 if (modified || wincount > 1)
3783 {
3784 if (wincount > 1)
3785 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3786 else
3787 buf[0] = NUL;
3788 if (modified)
3789 STRCAT(buf, "+");
3790 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003791 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003792 mch_memmove(NameBuff, buf, STRLEN(buf));
3793 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003794 }
3795}
3796
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003797/*
3798 * Send the event for clicking to select tab page "nr".
3799 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003800 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003801 */
3802 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003803send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003804{
3805 char_u string[3];
3806
3807 if (nr == tabpage_index(curtab))
3808 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003809
Bram Moolenaar30613902019-12-01 22:11:18 +01003810 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003811 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003812# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003813 || cmdwin_type != 0
3814# endif
3815 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003816 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003817 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003818 gui_mch_set_curtab(tabpage_index(curtab));
3819 return FALSE;
3820 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003821
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003822 string[0] = CSI;
3823 string[1] = KS_TABLINE;
3824 string[2] = KE_FILLER;
3825 add_to_input_buf(string, 3);
3826 string[0] = nr;
3827 add_to_input_buf_csi(string, 1);
3828 return TRUE;
3829}
3830
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003831/*
3832 * Send a tabline menu event
3833 */
3834 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003835send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003836{
3837 char_u string[3];
3838
Bram Moolenaar29547192018-12-11 20:39:19 +01003839 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003840 if (hold_gui_events)
3841 return;
3842
Bram Moolenaar29547192018-12-11 20:39:19 +01003843 // Cannot close the last tabpage.
3844 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3845 return;
3846
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003847 string[0] = CSI;
3848 string[1] = KS_TABMENU;
3849 string[2] = KE_FILLER;
3850 add_to_input_buf(string, 3);
3851 string[0] = tabidx;
3852 string[1] = (char_u)(long)event;
3853 add_to_input_buf_csi(string, 2);
3854}
3855
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857
3858/*
3859 * Scrollbar stuff:
3860 */
3861
Bram Moolenaare45828b2006-02-15 22:12:56 +00003862/*
3863 * Remove all scrollbars. Used before switching to another tab page.
3864 */
3865 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003866gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003867{
3868 int i;
3869 win_T *wp;
3870
3871 for (i = 0; i < 3; i++)
3872 {
3873 if (i == SBAR_BOTTOM)
3874 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3875 else
3876 {
3877 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003878 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003879 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003880 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003881 }
3882}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003883
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003885gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886{
3887 static int sbar_ident = 0;
3888
Bram Moolenaar30613902019-12-01 22:11:18 +01003889 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 sb->wp = wp;
3891 sb->type = type;
3892 sb->value = 0;
3893#ifdef FEAT_GUI_ATHENA
3894 sb->pixval = 0;
3895#endif
3896 sb->size = 1;
3897 sb->max = 1;
3898 sb->top = 0;
3899 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 sb->status_height = 0;
3902 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3903}
3904
3905/*
3906 * Find the scrollbar with the given index.
3907 */
3908 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003909gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910{
3911 win_T *wp;
3912
3913 if (gui.bottom_sbar.ident == ident)
3914 return &gui.bottom_sbar;
3915 FOR_ALL_WINDOWS(wp)
3916 {
3917 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3918 return &wp->w_scrollbars[SBAR_LEFT];
3919 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3920 return &wp->w_scrollbars[SBAR_RIGHT];
3921 }
3922 return NULL;
3923}
3924
3925/*
3926 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3927 *
3928 * For Win32, Macintosh and GTK+ 2:
3929 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3930 * you stop dragging the scrollbar. We get here each time the scrollbar is
3931 * dragged another pixel, but as far as the rest of vim goes, it thinks
3932 * we're just hanging in the call to DispatchMessage() in
3933 * process_message(). The DispatchMessage() call that hangs was passed a
3934 * mouse button click event in the scrollbar window. -- webb.
3935 *
3936 * Solution: Do the scrolling right here. But only when allowed.
3937 * Ignore the scrollbars while executing an external command or when there
3938 * are still characters to be processed.
3939 */
3940 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003941gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 int sb_num;
3945#ifdef USE_ON_FLY_SCROLL
3946 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948# ifdef FEAT_DIFF
3949 int old_topfill = curwin->w_topfill;
3950# endif
3951#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003952 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 int byte_count;
3954#endif
3955
3956 if (sb == NULL)
3957 return;
3958
Bram Moolenaar30613902019-12-01 22:11:18 +01003959 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 if (hold_gui_events)
3961 return;
3962
3963#ifdef FEAT_CMDWIN
3964 if (cmdwin_type != 0 && sb->wp != curwin)
3965 return;
3966#endif
3967
3968 if (still_dragging)
3969 {
3970 if (sb->wp == NULL)
3971 gui.dragged_sb = SBAR_BOTTOM;
3972 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3973 gui.dragged_sb = SBAR_LEFT;
3974 else
3975 gui.dragged_sb = SBAR_RIGHT;
3976 gui.dragged_wp = sb->wp;
3977 }
3978 else
3979 {
3980 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003981#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003982 // Keep the "dragged_wp" value until after the scrolling, for when the
3983 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 gui.dragged_wp = NULL;
3985#endif
3986 }
3987
Bram Moolenaar30613902019-12-01 22:11:18 +01003988 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 if (sb->wp != NULL)
3990 sb = &sb->wp->w_scrollbars[0];
3991
3992 /*
3993 * Check validity of value
3994 */
3995 if (value < 0)
3996 value = 0;
3997#ifdef SCROLL_PAST_END
3998 else if (value > sb->max)
3999 value = sb->max;
4000#else
4001 if (value > sb->max - sb->size + 1)
4002 value = sb->max - sb->size + 1;
4003#endif
4004
4005 sb->value = value;
4006
4007#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004008 // When not allowed to do the scrolling right now, return.
4009 // This also checked input_available(), but that causes the first click in
4010 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004011 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 return;
4013#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004014 // Disallow scrolling the current window when the completion popup menu is
4015 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004016 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4017 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018
4019#ifdef FEAT_RIGHTLEFT
4020 if (sb->wp == NULL && curwin->w_p_rl)
4021 {
4022 value = sb->max + 1 - sb->size - value;
4023 if (value < 0)
4024 value = 0;
4025 }
4026#endif
4027
Bram Moolenaar30613902019-12-01 22:11:18 +01004028 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 {
4030 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4032 sb_num++;
4033 if (wp == NULL)
4034 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035
4036#ifdef USE_ON_FLY_SCROLL
4037 current_scrollbar = sb_num;
4038 scrollbar_value = value;
4039 if (State & NORMAL)
4040 {
4041 gui_do_scroll();
4042 setcursor();
4043 }
4044 else if (State & INSERT)
4045 {
4046 ins_scroll();
4047 setcursor();
4048 }
4049 else if (State & CMDLINE)
4050 {
4051 if (msg_scrolled == 0)
4052 {
4053 gui_do_scroll();
4054 redrawcmdline();
4055 }
4056 }
4057# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004058 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 sb->value = sb->wp->w_topline - 1;
4060# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004061
Bram Moolenaar30613902019-12-01 22:11:18 +01004062 // When dragging one scrollbar and there is another one at the other
4063 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004064 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4065 gui_mch_set_scrollbar_thumb(
4066 &sb->wp->w_scrollbars[
4067 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4068 ? SBAR_LEFT : SBAR_RIGHT],
4069 sb->value, sb->size, sb->max);
4070
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071#else
4072 bytes[0] = CSI;
4073 bytes[1] = KS_VER_SCROLLBAR;
4074 bytes[2] = KE_FILLER;
4075 bytes[3] = (char_u)sb_num;
4076 byte_count = 4;
4077#endif
4078 }
4079 else
4080 {
4081#ifdef USE_ON_FLY_SCROLL
4082 scrollbar_value = value;
4083
4084 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004085 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 else if (State & INSERT)
4087 ins_horscroll();
4088 else if (State & CMDLINE)
4089 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004090 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004092 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 redrawcmdline();
4094 }
4095 }
4096 if (old_leftcol != curwin->w_leftcol)
4097 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004098 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 setcursor();
4100 }
4101#else
4102 bytes[0] = CSI;
4103 bytes[1] = KS_HOR_SCROLLBAR;
4104 bytes[2] = KE_FILLER;
4105 byte_count = 3;
4106#endif
4107 }
4108
4109#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 /*
4111 * synchronize other windows, as necessary according to 'scrollbind'
4112 */
4113 if (curwin->w_p_scb
4114 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4115 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004116# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004118# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 ))))
4120 {
4121 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004122 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004123 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 if (wp->w_redr_type > 0)
4125 updateWindow(wp);
4126 setcursor();
4127 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004128 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004130 add_to_input_buf(bytes, byte_count);
4131 add_long_to_buf((long_u)value, bytes);
4132 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133#endif
4134}
4135
4136/*
4137 * Scrollbar stuff:
4138 */
4139
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004140/*
4141 * Called when something in the window layout has changed.
4142 */
4143 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004144gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004145{
4146 if (gui.in_use && starting == 0)
4147 {
4148 out_flush();
4149 gui_init_which_components(NULL);
4150 gui_update_scrollbars(TRUE);
4151 }
4152 need_mouse_correct = TRUE;
4153}
4154
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004156gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004157 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158{
4159 win_T *wp;
4160 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004161 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 int which_sb;
4163 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165
Bram Moolenaar30613902019-12-01 22:11:18 +01004166 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 gui_update_horiz_scrollbar(force);
4168
Bram Moolenaar4f974752019-02-17 17:44:42 +01004169#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004170 // Return straight away if there is neither a left nor right scrollbar.
4171 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4173 return;
4174#endif
4175
4176 /*
4177 * Don't want to update a scrollbar while we're dragging it. But if we
4178 * have both a left and right scrollbar, and we drag one of them, we still
4179 * need to update the other one.
4180 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004181 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4182 && gui.which_scrollbars[SBAR_LEFT]
4183 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 {
4185 /*
4186 * If we have two scrollbars and one of them is being dragged, just
4187 * copy the scrollbar position from the dragged one to the other one.
4188 */
4189 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4190 if (gui.dragged_wp != NULL)
4191 gui_mch_set_scrollbar_thumb(
4192 &gui.dragged_wp->w_scrollbars[which_sb],
4193 gui.dragged_wp->w_scrollbars[0].value,
4194 gui.dragged_wp->w_scrollbars[0].size,
4195 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 }
4197
Bram Moolenaar30613902019-12-01 22:11:18 +01004198 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 ++hold_gui_events;
4200
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004201 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004203 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004205 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004206 if (!force && (gui.dragged_sb == SBAR_LEFT
4207 || gui.dragged_sb == SBAR_RIGHT)
4208 && gui.dragged_wp == wp)
4209 continue;
4210
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211#ifdef SCROLL_PAST_END
4212 max = wp->w_buffer->b_ml.ml_line_count - 1;
4213#else
4214 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4215#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004216 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 max = 0;
4218 val = wp->w_topline - 1;
4219 size = wp->w_height;
4220#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004221 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 val = max;
4223#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004224 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 size = max + 1;
4226 if (val > max - size + 1)
4227 val = max - size + 1;
4228#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004229 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 val = 0;
4231
4232 /*
4233 * Scrollbar at index 0 (the left one) contains all the information.
4234 * It would be the same info for left and right so we just store it for
4235 * one of them.
4236 */
4237 sb = &wp->w_scrollbars[0];
4238
4239 /*
4240 * Note: no check for valid w_botline. If it's not valid the
4241 * scrollbars will be updated later anyway.
4242 */
4243 if (size < 1 || wp->w_botline - 2 > max)
4244 {
4245 /*
4246 * This can happen during changing files. Just don't update the
4247 * scrollbar for now.
4248 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004249 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (gui.which_scrollbars[SBAR_LEFT])
4251 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4252 if (gui.which_scrollbars[SBAR_RIGHT])
4253 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4254 continue;
4255 }
4256 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 || sb->top != wp->w_winrow
4258 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004260 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004262 // Height, width or position of scrollbar has changed. For
4263 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 sb->top = wp->w_winrow;
4266 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
Bram Moolenaar30613902019-12-01 22:11:18 +01004269 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 h = (sb->height + sb->status_height) * gui.char_height;
4271 y = sb->top * gui.char_height + gui.border_offset;
4272#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4273 if (gui.menu_is_active)
4274 y += gui.menu_height;
4275#endif
4276
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004277#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA) \
4278 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004280# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 y += gui.toolbar_height;
4282# else
4283# ifdef FEAT_GUI_MSWIN
4284 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4285# endif
4286# endif
4287#endif
4288
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004289#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004290 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004291 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004292#endif
4293
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004296 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 h += gui.border_offset;
4298 y -= gui.border_offset;
4299 }
4300 if (gui.which_scrollbars[SBAR_LEFT])
4301 {
4302 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4303 gui.left_sbar_x, y,
4304 gui.scrollbar_width, h);
4305 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4306 }
4307 if (gui.which_scrollbars[SBAR_RIGHT])
4308 {
4309 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4310 gui.right_sbar_x, y,
4311 gui.scrollbar_width, h);
4312 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4313 }
4314 }
4315
Bram Moolenaar30613902019-12-01 22:11:18 +01004316 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4317 // checking if the thumb moved at least a pixel. Only do this for
4318 // Athena, most other GUIs require the update anyway to make the
4319 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320#ifdef FEAT_GUI_ATHENA
4321 if (max == 0)
4322 y = 0;
4323 else
4324 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4325 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4326#else
4327 if (force || sb->value != val || sb->size != size || sb->max != max)
4328#endif
4329 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004330 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 sb->value = val;
4332#ifdef FEAT_GUI_ATHENA
4333 sb->pixval = y;
4334#endif
4335 sb->size = size;
4336 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004337 if (gui.which_scrollbars[SBAR_LEFT]
4338 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4340 val, size, max);
4341 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004342 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4344 val, size, max);
4345 }
4346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 --hold_gui_events;
4349}
4350
4351/*
4352 * Enable or disable a scrollbar.
4353 * Check for scrollbars for vertically split windows which are not enabled
4354 * sometimes.
4355 */
4356 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004357gui_do_scrollbar(
4358 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004359 int which, // SBAR_LEFT or SBAR_RIGHT
4360 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 int midcol = curwin->w_wincol + curwin->w_width / 2;
4363 int has_midcol = (wp->w_wincol <= midcol
4364 && wp->w_wincol + wp->w_width >= midcol);
4365
Bram Moolenaar30613902019-12-01 22:11:18 +01004366 // Only enable scrollbars that contain the middle column of the current
4367 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4369 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004370 // Scrollbars only on one side. Don't enable scrollbars that don't
4371 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 if (!has_midcol)
4373 enable = FALSE;
4374 }
4375 else
4376 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004377 // Scrollbars on both sides. Don't enable scrollbars that neither
4378 // contain the middle column of the current window nor are on the far
4379 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 if (midcol > Columns / 2)
4381 {
4382 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4383 enable = FALSE;
4384 }
4385 else
4386 {
4387 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4388 : !has_midcol)
4389 enable = FALSE;
4390 }
4391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4393}
4394
4395/*
4396 * Scroll a window according to the values set in the globals current_scrollbar
4397 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4398 * or FALSE otherwise.
4399 */
4400 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004401gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402{
4403 win_T *wp, *save_wp;
4404 int i;
4405 long nlines;
4406 pos_T old_cursor;
4407 linenr_T old_topline;
4408#ifdef FEAT_DIFF
4409 int old_topfill;
4410#endif
4411
4412 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4413 if (wp == NULL)
4414 break;
4415 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004416 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 return FALSE;
4418
4419 /*
4420 * Compute number of lines to scroll. If zero, nothing to do.
4421 */
4422 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4423 if (nlines == 0)
4424 return FALSE;
4425
4426 save_wp = curwin;
4427 old_topline = wp->w_topline;
4428#ifdef FEAT_DIFF
4429 old_topfill = wp->w_topfill;
4430#endif
4431 old_cursor = wp->w_cursor;
4432 curwin = wp;
4433 curbuf = wp->w_buffer;
4434 if (nlines < 0)
4435 scrolldown(-nlines, gui.dragged_wp == NULL);
4436 else
4437 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004438 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4439 // the mouse-up event already, but we still want it to behave like when
4440 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 if (gui.dragged_sb == SBAR_NONE)
4442 gui.dragged_wp = NULL;
4443
4444 if (old_topline != wp->w_topline
4445#ifdef FEAT_DIFF
4446 || old_topfill != wp->w_topfill
4447#endif
4448 )
4449 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004450 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004452 cursor_correct(); // fix window for 'so'
4453 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 }
4455 if (old_cursor.lnum != wp->w_cursor.lnum)
4456 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 }
4459
Bram Moolenaar30613902019-12-01 22:11:18 +01004460 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004461 validate_cursor();
4462
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 curwin = save_wp;
4464 curbuf = save_wp->w_buffer;
4465
4466 /*
4467 * Don't call updateWindow() when nothing has changed (it will overwrite
4468 * the status line!).
4469 */
4470 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004471 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472#ifdef FEAT_DIFF
4473 || old_topfill != wp->w_topfill
4474#endif
4475 )
4476 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004477 int type = VALID;
4478
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004479 if (pum_visible())
4480 {
4481 type = NOT_VALID;
4482 wp->w_lines_valid = 0;
4483 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004484
Bram Moolenaar30613902019-12-01 22:11:18 +01004485 // Don't set must_redraw here, it may cause the popup menu to
4486 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004487 if (wp->w_redr_type < type)
4488 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004489 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004490 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004491 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 }
4493
Bram Moolenaar30613902019-12-01 22:11:18 +01004494 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004495 if (pum_visible())
4496 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004497
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004498 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499}
4500
4501
4502/*
4503 * Horizontal scrollbar stuff:
4504 */
4505
4506/*
4507 * Return length of line "lnum" for horizontal scrolling.
4508 */
4509 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004510scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511{
4512 char_u *p;
4513 colnr_T col;
4514 int w;
4515
4516 p = ml_get(lnum);
4517 col = 0;
4518 if (*p != NUL)
4519 for (;;)
4520 {
4521 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004522 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004523 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 break;
4525 col += w;
4526 }
4527 return col;
4528}
4529
Bram Moolenaar30613902019-12-01 22:11:18 +01004530// Remember which line is currently the longest, so that we don't have to
4531// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532static linenr_T longest_lnum = 0;
4533
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004534/*
4535 * Find longest visible line number. If this is not possible (or not desired,
4536 * by setting 'h' in "guioptions") then the current line number is returned.
4537 */
4538 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004539gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004540{
4541 linenr_T ret = 0;
4542
Bram Moolenaar30613902019-12-01 22:11:18 +01004543 // Calculate maximum for horizontal scrollbar. Check for reasonable
4544 // line numbers, topline and botline can be invalid when displaying is
4545 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004546 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4547 && curwin->w_topline <= curwin->w_cursor.lnum
4548 && curwin->w_botline > curwin->w_cursor.lnum
4549 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4550 {
4551 linenr_T lnum;
4552 colnr_T n;
4553 long max = 0;
4554
Bram Moolenaar30613902019-12-01 22:11:18 +01004555 // Use maximum of all visible lines. Remember the lnum of the
4556 // longest line, closest to the cursor line. Used when scrolling
4557 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004558 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4559 {
4560 n = scroll_line_len(lnum);
4561 if (n > (colnr_T)max)
4562 {
4563 max = n;
4564 ret = lnum;
4565 }
4566 else if (n == (colnr_T)max
4567 && abs((int)(lnum - curwin->w_cursor.lnum))
4568 < abs((int)(ret - curwin->w_cursor.lnum)))
4569 ret = lnum;
4570 }
4571 }
4572 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004573 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004574 ret = curwin->w_cursor.lnum;
4575
4576 return ret;
4577}
4578
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004580gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581{
Bram Moolenaar30613902019-12-01 22:11:18 +01004582 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583
4584 if (!gui.which_scrollbars[SBAR_BOTTOM])
4585 return;
4586
4587 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4588 return;
4589
4590 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4591 return;
4592
4593 /*
4594 * It is possible for the cursor to be invalid if we're in the middle of
4595 * something (like changing files). If so, don't do anything for now.
4596 */
4597 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4598 {
4599 gui.bottom_sbar.value = -1;
4600 return;
4601 }
4602
Bram Moolenaar02631462017-09-22 15:20:32 +02004603 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 if (curwin->w_p_wrap)
4605 {
4606 value = 0;
4607#ifdef SCROLL_PAST_END
4608 max = 0;
4609#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004610 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611#endif
4612 }
4613 else
4614 {
4615 value = curwin->w_leftcol;
4616
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004617 longest_lnum = gui_find_longest_lnum();
4618 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 if (virtual_active())
4621 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004622 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 if (curwin->w_virtcol >= (colnr_T)max)
4624 max = curwin->w_virtcol;
4625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626
4627#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004628 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004630 // The line number isn't scrolled, thus there is less space when
4631 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 size -= curwin_col_off();
4633#ifndef SCROLL_PAST_END
4634 max -= curwin_col_off();
4635#endif
4636 }
4637
4638#ifndef SCROLL_PAST_END
4639 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004640 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641#endif
4642
4643#ifdef FEAT_RIGHTLEFT
4644 if (curwin->w_p_rl)
4645 {
4646 value = max + 1 - size - value;
4647 if (value < 0)
4648 {
4649 size += value;
4650 value = 0;
4651 }
4652 }
4653#endif
4654 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4655 && max == gui.bottom_sbar.max)
4656 return;
4657
4658 gui.bottom_sbar.value = value;
4659 gui.bottom_sbar.size = size;
4660 gui.bottom_sbar.max = max;
4661 gui.prev_wrap = curwin->w_p_wrap;
4662
4663 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4664}
4665
4666/*
4667 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4668 */
4669 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004670gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671{
Bram Moolenaar30613902019-12-01 22:11:18 +01004672 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 if (curwin->w_p_wrap)
4674 return FALSE;
4675
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004676 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 return FALSE;
4678
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004679 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680
Bram Moolenaar30613902019-12-01 22:11:18 +01004681 // When the line of the cursor is too short, move the cursor to the
4682 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004684 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004685 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004687 if (compute_longest_lnum)
4688 {
4689 curwin->w_cursor.lnum = gui_find_longest_lnum();
4690 curwin->w_cursor.col = 0;
4691 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004692 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004693 else if (longest_lnum >= curwin->w_topline
4694 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 {
4696 curwin->w_cursor.lnum = longest_lnum;
4697 curwin->w_cursor.col = 0;
4698 }
4699 }
4700
4701 return leftcol_changed();
4702}
4703
4704/*
4705 * Check that none of the colors are the same as the background color
4706 */
4707 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004708gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709{
4710 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4711 {
4712 gui_set_bg_color((char_u *)"White");
4713 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4714 gui_set_fg_color((char_u *)"Black");
4715 }
4716}
4717
Bram Moolenaar3918c952005-03-15 22:34:55 +00004718 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004719gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720{
4721 gui.norm_pixel = gui_get_color(name);
4722 hl_set_fg_color_name(vim_strsave(name));
4723}
4724
Bram Moolenaar3918c952005-03-15 22:34:55 +00004725 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004726gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727{
4728 gui.back_pixel = gui_get_color(name);
4729 hl_set_bg_color_name(vim_strsave(name));
4730}
4731
4732/*
4733 * Allocate a color by name.
4734 * Returns INVALCOLOR and gives an error message when failed.
4735 */
4736 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004737gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738{
4739 guicolor_T t;
4740
4741 if (*name == NUL)
4742 return INVALCOLOR;
4743 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004744
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004746#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 && gui.in_use
4748#endif
4749 )
Bram Moolenaar87202262020-05-24 17:23:45 +02004750 semsg(_(e_alloc_color), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 return t;
4752}
4753
4754/*
4755 * Return the grey value of a color (range 0-255).
4756 */
4757 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004758gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004760 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004762 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004763 + (((rgb >> 8) & 0xff) * 587)
4764 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765}
4766
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004767 char_u *
4768gui_bg_default(void)
4769{
4770 if (gui_get_lightness(gui.back_pixel) < 127)
4771 return (char_u *)"dark";
4772 return (char_u *)"light";
4773}
4774
4775/*
4776 * Option initializations that can only be done after opening the GUI window.
4777 */
4778 void
4779init_gui_options(void)
4780{
Bram Moolenaar30613902019-12-01 22:11:18 +01004781 // Set the 'background' option according to the lightness of the
4782 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004783 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4784 {
4785 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4786 highlight_changed();
4787 }
4788}
4789
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790#if defined(FEAT_GUI_X11) || defined(PROTO)
4791 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004792gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793{
4794 win_T *wp;
4795
Bram Moolenaar30613902019-12-01 22:11:18 +01004796 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 if (!gui.in_use)
4798 return;
4799
4800 FOR_ALL_WINDOWS(wp)
4801 {
4802 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4803 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4804 }
4805 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4806}
4807#endif
4808
4809/*
4810 * Call this when focus has changed.
4811 */
4812 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004813gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814{
4815/*
4816 * Skip this code to avoid drawing the cursor when debugging and switching
4817 * between the debugger window and gvim.
4818 */
4819#if 1
4820 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004821 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822
4823# ifdef FEAT_XIM
4824 xim_set_focus(in_focus);
4825# endif
4826
Bram Moolenaar30613902019-12-01 22:11:18 +01004827 // Put events in the input queue only when allowed.
4828 // ui_focus_change() isn't called directly, because it invokes
4829 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004830 if (!hold_gui_events)
4831 {
4832 char_u bytes[3];
4833
4834 bytes[0] = CSI;
4835 bytes[1] = KS_EXTRA;
4836 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4837 add_to_input_buf(bytes, 3);
4838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839#endif
4840}
4841
4842/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004843 * When mouse moved: apply 'mousefocus'.
4844 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004846 static void
4847gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848{
4849 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004850 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004853 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004854 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855#endif
4856
Bram Moolenaar30613902019-12-01 22:11:18 +01004857 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004859 && !hold_gui_events // not holding events
4860 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4861 && State != HITRETURN // but not hit-return prompt
4862 && msg_scrolled == 0 // no scrolled message
4863 && !need_mouse_correct // not moving the pointer
4864 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004866 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 if (x < 0 || x > Columns * gui.char_width)
4868 return;
4869#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004870 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871#endif
4872 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004873 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
Bram Moolenaar30613902019-12-01 22:11:18 +01004875 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004876 if (Y_2_ROW(y) < tabline_height())
4877 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004878
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 /*
4880 * format a mouse click on status line input
4881 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004882 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4883 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 */
4885 if (finish_op)
4886 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004887 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 st[0] = ESC;
4889 add_to_input_buf(st, 1);
4890 }
4891 st[0] = CSI;
4892 st[1] = KS_MOUSE;
4893 st[2] = KE_FILLER;
4894 st[3] = (char_u)MOUSE_LEFT;
4895 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004896 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 wp->w_height + W_WINROW(wp));
4898
4899 add_to_input_buf(st, 8);
4900 st[3] = (char_u)MOUSE_RELEASE;
4901 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004903 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 if (gtk_main_level() > 0)
4905 gtk_main_quit();
4906#endif
4907 }
4908}
4909
4910/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004911 * Called when the mouse moved (but not when dragging).
4912 */
4913 void
4914gui_mouse_moved(int x, int y)
4915{
4916 // Ignore this while still starting up.
4917 if (!gui.in_use || gui.starting)
4918 return;
4919
4920 // apply 'mousefocus' and pointer shape
4921 gui_mouse_focus(x, y);
4922
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004923#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004924 if (popup_visible)
4925 // Generate a mouse-moved event, so that the popup can perhaps be
4926 // closed, just like in the terminal.
4927 gui_send_mouse_event(MOUSE_DRAG, x, y, FALSE, 0);
4928#endif
4929}
4930
4931/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004932 * Get the window where the mouse pointer is on.
4933 * Returns NULL if not found.
4934 */
4935 win_T *
4936gui_mouse_window(mouse_find_T popup)
4937{
4938 int x, y;
4939
4940 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4941 return NULL;
4942 gui_mch_getmouse(&x, &y);
4943
4944 // Only use the mouse when it's on the Vim window
4945 if (x >= 0 && x <= Columns * gui.char_width
4946 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4947 return xy2win(x, y, popup);
4948 return NULL;
4949}
4950
4951/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 * Called when mouse should be moved to window with focus.
4953 */
4954 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004955gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 win_T *wp = NULL;
4958
4959 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004960
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004961 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004962 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004964 validate_cline_row();
4965 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4966 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 }
4969}
4970
4971/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004972 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004973 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004976xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 int row;
4979 int col;
4980 win_T *wp;
4981
4982 row = Y_2_ROW(y);
4983 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004984 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004986 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004987 if (wp == NULL)
4988 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004989#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 if (State == HITRETURN || State == ASKMORE)
4991 {
4992 if (Y_2_ROW(y) >= msg_row)
4993 update_mouseshape(SHAPE_IDX_MOREL);
4994 else
4995 update_mouseshape(SHAPE_IDX_MORE);
4996 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004997 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004999 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005000 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02005002 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005003 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 update_mouseshape(SHAPE_IDX_STATUS);
5005 else
5006 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005008 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009}
5010
5011/*
5012 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5013 * File names may be given to redefine the args list.
5014 */
5015 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005016ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017{
5018 char_u *arg = eap->arg;
5019
5020 /*
5021 * Check for "-f" argument: foreground, don't fork.
5022 * Also don't fork when started with "gvim -f".
5023 * Do fork when using "gui -b".
5024 */
5025 if (arg[0] == '-'
5026 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005027 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 {
5029 gui.dofork = (arg[1] == 'b');
5030 eap->arg = skipwhite(eap->arg + 2);
5031 }
5032 if (!gui.in_use)
5033 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005034#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005035 if (!gui.starting)
5036 {
5037 emsg(_(e_nogvim));
5038 return;
5039 }
5040#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005041 // Clear the command. Needed for when forking+exiting, to avoid part
5042 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005044#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005045 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005046 gui_start(eap->arg);
5047 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005048#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005049 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005050#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005051 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005052#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005054 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 ex_next(eap);
5056}
5057
Bram Moolenaar4f974752019-02-17 17:44:42 +01005058#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005059 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5060 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005061 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062/*
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005063 * This is shared between Athena, Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065
5066/*
5067 * Callback function for do_in_runtimepath().
5068 */
5069 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005070gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005072 char_u *gfp_buffer = cookie;
5073
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 if (STRLEN(fname) >= MAXPATHL)
5075 *gfp_buffer = NUL;
5076 else
5077 STRCPY(gfp_buffer, fname);
5078}
5079
5080/*
5081 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5082 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5083 */
5084 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005085gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086{
5087 if (STRLEN(name) > MAXPATHL - 14)
5088 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005089 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005090 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005091 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 return FAIL;
5093 return OK;
5094}
5095
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005096# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097/*
5098 * Given the name of the "icon=" argument, try finding the bitmap file for the
5099 * icon. If it is an absolute path name, use it as it is. Otherwise append
5100 * "ext" and search for it in 'runtimepath'.
5101 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5102 * contains "name".
5103 */
5104 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005105gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106{
5107 char_u buf[MAXPATHL + 1];
5108
5109 expand_env(name, buffer, MAXPATHL);
5110 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5111 STRCPY(buffer, buf);
5112}
5113# endif
5114#endif
5115
Bram Moolenaar9e175142020-04-30 22:51:01 +02005116#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5117 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005119display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120{
5121 char_u *p;
5122
5123 if (isatty(2))
5124 fflush(stderr);
5125 else if (error_ga.ga_data != NULL)
5126 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005127 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5129 if (!isspace(*p))
5130 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005131 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 if (STRLEN(p) > 2000)
5133 STRCPY(p + 2000 - 14, "...(truncated)");
5134 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005135 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 break;
5137 }
5138 ga_clear(&error_ga);
5139 }
5140}
5141#endif
5142
5143#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5144/*
5145 * Return TRUE if still starting up and there is no place to enter text.
5146 * For GTK and X11 we check if stderr is not a tty, which means we were
5147 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5148 * allow typing on stdin.
5149 */
5150 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005151no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152{
5153 return ((!gui.in_use || gui.starting)
5154# ifndef NO_CONSOLE
5155 && !isatty(0) && !isatty(2)
5156# endif
5157 );
5158}
5159#endif
5160
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005161#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005162 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005163 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164/*
5165 * Update the current window and the screen.
5166 */
5167 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005168gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005170# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005171 linenr_T conceal_old_cursor_line = 0;
5172 linenr_T conceal_new_cursor_line = 0;
5173 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005174# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005175
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 update_topline();
5177 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005178
Bram Moolenaar30613902019-12-01 22:11:18 +01005179 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005180 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005181# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005182 || popup_visible
5183# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005184# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005185 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005186# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005187 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005188 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005189 if (has_cursormoved())
5190 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005191#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005192 if (popup_visible)
5193 popup_check_cursor_pos();
5194#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005195# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005196 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005197 {
5198 conceal_old_cursor_line = last_cursormoved.lnum;
5199 conceal_new_cursor_line = curwin->w_cursor.lnum;
5200 conceal_update_lines = TRUE;
5201 }
5202# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005203 last_cursormoved = curwin->w_cursor;
5204 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005205
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005206# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005207 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005208 && (conceal_old_cursor_line != conceal_new_cursor_line
5209 || conceal_cursor_line(curwin)
5210 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005211 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005212 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005213 redrawWinline(curwin, conceal_old_cursor_line);
5214 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005215 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005216 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005217 }
5218# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005219 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005220 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005221 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222}
5223#endif
5224
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005225#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226/*
5227 * Get the text to use in a find/replace dialog. Uses the last search pattern
5228 * if the argument is empty.
5229 * Returns an allocated string.
5230 */
5231 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005232get_find_dialog_text(
5233 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005234 int *wwordp, // return: TRUE if \< \> found
5235 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236{
5237 char_u *text;
5238
5239 if (*arg == NUL)
5240 text = last_search_pat();
5241 else
5242 text = arg;
5243 if (text != NULL)
5244 {
5245 text = vim_strsave(text);
5246 if (text != NULL)
5247 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005248 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 int i;
5250
Bram Moolenaar30613902019-12-01 22:11:18 +01005251 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5253 {
5254 mch_memmove(text, text + 2, (size_t)(len - 1));
5255 len -= 2;
5256 }
5257
Bram Moolenaar30613902019-12-01 22:11:18 +01005258 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5260 {
5261 *mcasep = (text[1] == 'C');
5262 mch_memmove(text, text + 2, (size_t)(len - 1));
5263 len -= 2;
5264 }
5265
Bram Moolenaar30613902019-12-01 22:11:18 +01005266 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 if (len >= 4
5268 && STRNCMP(text, "\\<", 2) == 0
5269 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5270 {
5271 *wwordp = TRUE;
5272 mch_memmove(text, text + 2, (size_t)(len - 4));
5273 text[len - 4] = NUL;
5274 }
5275
Bram Moolenaar30613902019-12-01 22:11:18 +01005276 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 for (i = 0; i + 1 < len; ++i)
5278 if (text[i] == '\\' && (text[i + 1] == '/'
5279 || text[i + 1] == '?'))
5280 {
5281 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5282 --len;
5283 }
5284 }
5285 }
5286 return text;
5287}
5288
5289/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 * Handle the press of a button in the find-replace dialog.
5291 * Return TRUE when something was added to the input buffer.
5292 */
5293 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005294gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005295 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005296 char_u *find_text,
5297 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005298 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299{
5300 garray_T ga;
5301 int i;
5302 int type = (flags & FRD_TYPE_MASK);
5303 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005304 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005305 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005306 static int busy = FALSE;
5307
Bram Moolenaar30613902019-12-01 22:11:18 +01005308 // When the screen is being updated we should not change buffers and
5309 // windows structures, it may cause freed memory to be used. Also don't
5310 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005311 if (updating_screen || busy)
5312 return FALSE;
5313
Bram Moolenaar30613902019-12-01 22:11:18 +01005314 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005315 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5316 return FALSE;
5317
5318 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319
5320 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005321 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 ga_concat(&ga, (char_u *)"%s/");
5323
5324 ga_concat(&ga, (char_u *)"\\V");
5325 if (flags & FRD_MATCH_CASE)
5326 ga_concat(&ga, (char_u *)"\\C");
5327 else
5328 ga_concat(&ga, (char_u *)"\\c");
5329 if (flags & FRD_WHOLE_WORD)
5330 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005331 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005332 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5333 if (p != NULL)
5334 ga_concat(&ga, p);
5335 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 if (flags & FRD_WHOLE_WORD)
5337 ga_concat(&ga, (char_u *)"\\>");
5338
5339 if (type == FRD_REPLACEALL)
5340 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005342 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005343 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5344 if (p != NULL)
5345 ga_concat(&ga, p);
5346 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005348 }
5349 ga_append(&ga, NUL);
5350
5351 if (type == FRD_REPLACE)
5352 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005353 // Do the replacement when the text at the cursor matches. Thus no
5354 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005355 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5356 regmatch.rm_ic = 0;
5357 if (regmatch.regprog != NULL)
5358 {
5359 p = ml_get_cursor();
5360 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5361 && regmatch.startp[0] == p)
5362 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005363 // Clear the command line to remove any old "No match"
5364 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005365 msg_end_prompt();
5366
5367 if (u_save_cursor() == OK)
5368 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005369 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005370 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005371
5372 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005373 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005374 ins_str(repl_text);
5375 }
5376 }
5377 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005378 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005379 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005380 }
5381 }
5382
5383 if (type == FRD_REPLACEALL)
5384 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005385 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005386 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 do_cmdline_cmd(ga.ga_data);
5388 }
5389 else
5390 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005391 int searchflags = SEARCH_MSG + SEARCH_MARK;
5392
Bram Moolenaar30613902019-12-01 22:11:18 +01005393 // Search for the next match.
5394 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005395 if (type == FRD_REPLACE)
5396 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005398 if (down)
5399 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005400 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005401 }
5402 else
5403 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005404 // We need to escape '?' if and only if we are searching in the up
5405 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005406 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5407 if (p != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01005408 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005409 vim_free(p);
5410 }
5411
Bram Moolenaar30613902019-12-01 22:11:18 +01005412 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 }
5414
Bram Moolenaar30613902019-12-01 22:11:18 +01005415 // Don't want to pass did_emsg to other code, it may cause disabling
5416 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005417 did_emsg = save_did_emsg;
5418
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 if (State & (NORMAL | INSERT))
5420 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005421 gui_update_screen(); // update the screen
5422 msg_didout = 0; // overwrite any message
5423 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 }
5425
5426 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005427 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 return (ga.ga_len > 0);
5429}
5430
5431#endif
5432
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005433#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434/*
5435 * Jump to the window at specified point (x, y).
5436 */
5437 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005438gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439{
5440 int row = Y_2_ROW(y);
5441 int col = X_2_COL(x);
5442 win_T *wp;
5443
5444 if (row >= 0 && col >= 0)
5445 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005446 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 if (wp != NULL && wp != curwin)
5448 win_goto(wp);
5449 }
5450}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451
5452/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005453 * Function passed to handle_drop() for the actions to be done after the
5454 * argument list has been updated.
5455 */
5456 static void
5457drop_callback(void *cookie)
5458{
5459 char_u *p = cookie;
5460
Bram Moolenaar30613902019-12-01 22:11:18 +01005461 // If Shift held down, change to first file's directory. If the first
5462 // item is a directory, change to that directory (and let the explorer
5463 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005464 if (p != NULL)
5465 {
5466 if (mch_isdir(p))
5467 {
5468 if (mch_chdir((char *)p) == 0)
5469 shorten_fnames(TRUE);
5470 }
5471 else if (vim_chdirfile(p, "drop") == OK)
5472 shorten_fnames(TRUE);
5473 vim_free(p);
5474 }
5475
Bram Moolenaar30613902019-12-01 22:11:18 +01005476 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005477 update_screen(NOT_VALID);
5478# ifdef FEAT_MENU
5479 gui_update_menus(0);
5480# endif
5481#ifdef FEAT_TITLE
5482 maketitle();
5483#endif
5484 setcursor();
5485 out_flush_cursor(FALSE, FALSE);
5486}
5487
5488/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 * Process file drop. Mouse cursor position, key modifiers, name of files
5490 * and count of files are given. Argument "fnames[count]" has full pathnames
5491 * of dropped files, they will be freed in this function, and caller can't use
5492 * fnames after call this function.
5493 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005495gui_handle_drop(
5496 int x UNUSED,
5497 int y UNUSED,
5498 int_u modifiers,
5499 char_u **fnames,
5500 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501{
5502 int i;
5503 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005504 static int entered = FALSE;
5505
5506 /*
5507 * This function is called by event handlers. Just in case we get a
5508 * second event before the first one is handled, ignore the second one.
5509 * Not sure if this can ever happen, just in case.
5510 */
5511 if (entered)
5512 return;
5513 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515 /*
5516 * When the cursor is at the command line, add the file names to the
5517 * command line, don't edit the files.
5518 */
5519 if (State & CMDLINE)
5520 {
5521 shorten_filenames(fnames, count);
5522 for (i = 0; i < count; ++i)
5523 {
5524 if (fnames[i] != NULL)
5525 {
5526 if (i > 0)
5527 add_to_input_buf((char_u*)" ", 1);
5528
Bram Moolenaar30613902019-12-01 22:11:18 +01005529 // We don't know what command is used thus we can't be sure
5530 // about which characters need to be escaped. Only escape the
5531 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532# ifdef BACKSLASH_IN_FILENAME
5533 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5534# else
5535 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5536# endif
5537 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005538 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 vim_free(p);
5540 vim_free(fnames[i]);
5541 }
5542 }
5543 vim_free(fnames);
5544 }
5545 else
5546 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005547 // Go to the window under mouse cursor, then shorten given "fnames" by
5548 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 shorten_filenames(fnames, count);
5551
Bram Moolenaar30613902019-12-01 22:11:18 +01005552 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 if ((modifiers & MOUSE_SHIFT) != 0)
5554 p = vim_strsave(fnames[0]);
5555 else
5556 p = NULL;
5557
Bram Moolenaar30613902019-12-01 22:11:18 +01005558 // Handle the drop, :edit or :split to get to the file. This also
5559 // frees fnames[]. Skip this if there is only one item, it's a
5560 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5562 && mch_isdir(fnames[0]))
5563 {
5564 vim_free(fnames[0]);
5565 vim_free(fnames);
5566 }
5567 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005568 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5569 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005571
5572 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573}
5574#endif
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005575
5576/*
5577 * Check if "key" is to interrupt us. Handles a key that has not had modifiers
5578 * applied yet.
5579 * Return the key with modifiers applied if so, NUL if not.
5580 */
5581 int
5582check_for_interrupt(int key, int modifiers_arg)
5583{
5584 int modifiers = modifiers_arg;
5585 int c = merge_modifyOtherKeys(key, &modifiers);
5586
5587 if ((c == Ctrl_C && ctrl_c_interrupts)
Bram Moolenaaraf50e892020-08-01 13:22:10 +02005588#ifdef UNIX
5589 || (intr_char != Ctrl_C && c == intr_char)
5590#endif
5591 )
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005592 {
5593 got_int = TRUE;
5594 return c;
5595 }
5596 return NUL;
5597}
5598