blob: cdfc929e9f0d6a43ed5932d2532380aed8ded1ff [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI/Motif support by Robert Webb
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10
11#include "vim.h"
12
Bram Moolenaar30613902019-12-01 22:11:18 +010013// Structure containing all the GUI information
Bram Moolenaar071d4272004-06-13 20:20:40 +000014gui_T gui;
15
Bram Moolenaar13505972019-01-24 15:04:48 +010016#if !defined(FEAT_GUI_GTK)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010017static void set_guifontwide(char_u *font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010019static void gui_check_pos(void);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020020static void gui_reset_scroll_region(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010021static void gui_outstr(char_u *, int);
22static int gui_screenchar(int off, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020023static int gui_outstr_nowrap(char_u *s, int len, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010024static void gui_delete_lines(int row, int count);
25static void gui_insert_lines(int row, int count);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020026static int gui_xy2colrow(int x, int y, int *colp);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000027#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010028static int gui_has_tabline(void);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000029#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010030static void gui_do_scrollbar(win_T *wp, int which, int enable);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010031static void gui_update_horiz_scrollbar(int);
32static void gui_set_fg_color(char_u *name);
33static void gui_set_bg_color(char_u *name);
Bram Moolenaar0630bb62019-11-04 22:52:12 +010034static win_T *xy2win(int x, int y, mouse_find_T popup);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020036#ifdef GUI_MAY_FORK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010037static void gui_do_fork(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020038
Bram Moolenaard25c16e2016-01-29 22:13:30 +010039static int gui_read_child_pipe(int fd);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020040
Bram Moolenaar30613902019-12-01 22:11:18 +010041// Return values for gui_read_child_pipe
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020042enum {
43 GUI_CHILD_IO_ERROR,
44 GUI_CHILD_OK,
45 GUI_CHILD_FAILED
46};
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020047#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020048
Bram Moolenaard25c16e2016-01-29 22:13:30 +010049static void gui_attempt_start(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020050
Bram Moolenaar30613902019-12-01 22:11:18 +010051static int can_update_cursor = TRUE; // can display the cursor
52static int disable_flush = 0; // If > 0, gui_mch_flush() is disabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
54/*
55 * The Athena scrollbars can move the thumb to after the end of the scrollbar,
56 * this makes the thumb indicate the part of the text that is shown. Motif
57 * can't do this.
58 */
59#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MAC)
60# define SCROLL_PAST_END
61#endif
62
63/*
64 * gui_start -- Called when user wants to start the GUI.
65 *
66 * Careful: This function can be called recursively when there is a ":gui"
67 * command in the .gvimrc file. Only the first call should fork, not the
68 * recursive call.
69 */
70 void
Bram Moolenaarafde13b2019-04-28 19:46:49 +020071gui_start(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000072{
73 char_u *old_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +000074 static int recursive = 0;
Bram Moolenaar68cbb142019-05-09 14:14:42 +020075#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaarafde13b2019-04-28 19:46:49 +020076 char *msg = NULL;
77#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
79 old_term = vim_strsave(T_NAME);
80
Bram Moolenaar30613902019-12-01 22:11:18 +010081 settmode(TMODE_COOK); // stop RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000082 if (full_screen)
Bram Moolenaar30613902019-12-01 22:11:18 +010083 cursor_on(); // needed for ":gui" in .vimrc
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 full_screen = FALSE;
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 ++recursive;
87
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020088#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020089 /*
90 * Quit the current process and continue in the child.
91 * Makes "gvim file" disconnect from the shell it was started in.
92 * Don't do this when Vim was started with "-f" or the 'f' flag is present
93 * in 'guioptions'.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020094 * Don't do this when there is a running job, we can only get the status
95 * of a child from the parent.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020096 */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020097 if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1
98# ifdef FEAT_JOB_CHANNEL
99 && !job_any_running()
100# endif
101 )
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200102 {
103 gui_do_fork();
104 }
105 else
106#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200107#ifdef GUI_MAY_SPAWN
108 if (gui.dospawn
109# ifdef EXPERIMENTAL_GUI_CMD
110 && gui.dofork
111# endif
112 && !vim_strchr(p_go, GO_FORG)
113 && !anyBufIsChanged()
114# ifdef FEAT_JOB_CHANNEL
115 && !job_any_running()
116# endif
117 )
118 {
Bram Moolenaar68cbb142019-05-09 14:14:42 +0200119# ifdef EXPERIMENTAL_GUI_CMD
120 msg =
121# endif
122 gui_mch_do_spawn(arg);
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200123 }
124 else
125#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200126 {
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200127#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100128 // If there is 'f' in 'guioptions' and specify -g argument,
129 // gui_mch_init_check() was not called yet.
Bram Moolenaar6a3c1b42012-05-25 14:06:36 +0200130 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100131 getout_preserve_modified(1);
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200132#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200133 gui_attempt_start();
134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
Bram Moolenaar30613902019-12-01 22:11:18 +0100136 if (!gui.in_use) // failed to start GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100138 // Back to old term settings
139 //
140 // FIXME: If we got here because a child process failed and flagged to
141 // the parent to resume, and X11 is enabled with FEAT_TITLE, this will
142 // hit an X11 I/O error and do a longjmp(), leaving recursive
143 // permanently set to 1. This is probably not as big a problem as it
144 // sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c
145 // return "OK" unconditionally, so it would be very difficult to
146 // actually hit this case.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200147 termcapinit(old_term);
Bram Moolenaar30613902019-12-01 22:11:18 +0100148 settmode(TMODE_RAW); // restart RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef FEAT_TITLE
Bram Moolenaar30613902019-12-01 22:11:18 +0100150 set_title_defaults(); // set 'title' and 'icon' again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200152#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
153 if (msg)
154 emsg(msg);
155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 }
157
158 vim_free(old_term);
159
Bram Moolenaar30613902019-12-01 22:11:18 +0100160 // If the GUI started successfully, trigger the GUIEnter event, otherwise
161 // the GUIFailed event.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200162 gui_mch_update();
163 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
164 NULL, NULL, FALSE, curbuf);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200165 --recursive;
166}
167
168/*
169 * Set_termname() will call gui_init() to start the GUI.
170 * Set the "starting" flag, to indicate that the GUI will start.
171 *
172 * We don't want to open the GUI shell until after we've read .gvimrc,
173 * otherwise we don't know what font we will use, and hence we don't know
174 * what size the shell should be. So if there are errors in the .gvimrc
175 * file, they will have to go to the terminal: Set full_screen to FALSE.
176 * full_screen will be set to TRUE again by a successful termcapinit().
177 */
178 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100179gui_attempt_start(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200180{
181 static int recursive = 0;
182
183 ++recursive;
184 gui.starting = TRUE;
185
186#ifdef FEAT_GUI_GTK
187 gui.event_time = GDK_CURRENT_TIME;
188#endif
189
190 termcapinit((char_u *)"builtin_gui");
191 gui.starting = recursive - 1;
192
Bram Moolenaar9372a112005-12-06 19:59:18 +0000193#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 if (gui.in_use)
Bram Moolenaar727c8762010-10-20 19:17:48 +0200195 {
196# ifdef FEAT_EVAL
197 Window x11_window;
198 Display *x11_display;
199
200 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
201 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
202# endif
203
Bram Moolenaar30613902019-12-01 22:11:18 +0100204 // Display error messages in a dialog now.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 display_errors();
Bram Moolenaar727c8762010-10-20 19:17:48 +0200206 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 --recursive;
209}
210
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200211#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200212
Bram Moolenaar30613902019-12-01 22:11:18 +0100213// for waitpid()
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200214# if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
215# include <sys/wait.h>
216# endif
217
218/*
219 * Create a new process, by forking. In the child, start the GUI, and in
220 * the parent, exit.
221 *
222 * If something goes wrong, this will return with gui.in_use still set
223 * to FALSE, in which case the caller should continue execution without
224 * the GUI.
225 *
226 * If the child fails to start the GUI, then the child will exit and the
227 * parent will return. If the child succeeds, then the parent will exit
228 * and the child will return.
229 */
230 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100231gui_do_fork(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200232{
Bram Moolenaar30613902019-12-01 22:11:18 +0100233 int pipefd[2]; // pipe between parent and child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200234 int pipe_error;
235 int status;
236 int exit_status;
237 pid_t pid = -1;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200238
Bram Moolenaar30613902019-12-01 22:11:18 +0100239 // Setup a pipe between the child and the parent, so that the parent
240 // knows when the child has done the setsid() call and is allowed to
241 // exit.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200242 pipe_error = (pipe(pipefd) < 0);
243 pid = fork();
Bram Moolenaar30613902019-12-01 22:11:18 +0100244 if (pid < 0) // Fork error
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200245 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100246 emsg(_("E851: Failed to create a new process for the GUI"));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200247 return;
248 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100249 else if (pid > 0) // Parent
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200250 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100251 // Give the child some time to do the setsid(), otherwise the
252 // exit() may kill the child too (when starting gvim from inside a
253 // gvim).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200254 if (!pipe_error)
255 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100256 // The read returns when the child closes the pipe (or when
257 // the child dies for some reason).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200258 close(pipefd[1]);
259 status = gui_read_child_pipe(pipefd[0]);
260 if (status == GUI_CHILD_FAILED)
261 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100262 // The child failed to start the GUI, so the caller must
263 // continue. There may be more error information written
264 // to stderr by the child.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200265# ifdef __NeXT__
266 wait4(pid, &exit_status, 0, (struct rusage *)0);
267# else
268 waitpid(pid, &exit_status, 0);
269# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100270 emsg(_("E852: The child process failed to start the GUI"));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200271 return;
272 }
273 else if (status == GUI_CHILD_IO_ERROR)
274 {
275 pipe_error = TRUE;
276 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100277 // else GUI_CHILD_OK: parent exit
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200278 }
279
280 if (pipe_error)
Bram Moolenaareda1da02019-11-17 17:06:33 +0100281 ui_delay(301L, TRUE);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200282
Bram Moolenaar30613902019-12-01 22:11:18 +0100283 // When swapping screens we may need to go to the next line, e.g.,
284 // after a hit-enter prompt and using ":gui".
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200285 if (newline_on_exit)
286 mch_errmsg("\r\n");
287
288 /*
289 * The parent must skip the normal exit() processing, the child
290 * will do it. For example, GTK messes up signals when exiting.
291 */
292 _exit(0);
293 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100294 // Child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200295
Bram Moolenaar29695702012-05-18 17:03:18 +0200296#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100297 // Call gtk_init_check() here after fork(). See gui_init_check().
Bram Moolenaar29695702012-05-18 17:03:18 +0200298 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100299 getout_preserve_modified(1);
Bram Moolenaar29695702012-05-18 17:03:18 +0200300#endif
301
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200302# if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
303 /*
304 * Change our process group. On some systems/shells a CTRL-C in the
305 * shell where Vim was started would otherwise kill gvim!
306 */
307# if defined(HAVE_SETSID)
308 (void)setsid();
309# else
310 (void)setpgid(0, 0);
311# endif
312# endif
313 if (!pipe_error)
314 close(pipefd[0]);
315
316# if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +0100317 // Tell the session manager our new PID
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200318 gui_mch_forked();
319# endif
320
Bram Moolenaar30613902019-12-01 22:11:18 +0100321 // Try to start the GUI
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200322 gui_attempt_start();
323
Bram Moolenaar30613902019-12-01 22:11:18 +0100324 // Notify the parent
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200325 if (!pipe_error)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200326 {
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200327 if (gui.in_use)
328 write_eintr(pipefd[1], "ok", 3);
329 else
330 write_eintr(pipefd[1], "fail", 5);
331 close(pipefd[1]);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200332 }
333
Bram Moolenaar30613902019-12-01 22:11:18 +0100334 // If we failed to start the GUI, exit now.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200335 if (!gui.in_use)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100336 getout_preserve_modified(1);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200337}
338
339/*
340 * Read from a pipe assumed to be connected to the child process (this
341 * function is called from the parent).
342 * Return GUI_CHILD_OK if the child successfully started the GUI,
343 * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was
344 * some other error.
345 *
346 * The file descriptor will be closed before the function returns.
347 */
348 static int
349gui_read_child_pipe(int fd)
350{
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200351 long bytes_read;
352#define READ_BUFFER_SIZE 10
353 char buffer[READ_BUFFER_SIZE];
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200354
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200355 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
356#undef READ_BUFFER_SIZE
357 close(fd);
358 if (bytes_read < 0)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200359 return GUI_CHILD_IO_ERROR;
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200360 buffer[bytes_read] = NUL;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200361 if (strcmp(buffer, "ok") == 0)
362 return GUI_CHILD_OK;
363 return GUI_CHILD_FAILED;
364}
365
Bram Moolenaar30613902019-12-01 22:11:18 +0100366#endif // GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200367
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368/*
369 * Call this when vim starts up, whether or not the GUI is started
370 */
371 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100372gui_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373{
Bram Moolenaar30613902019-12-01 22:11:18 +0100374 gui.in_use = FALSE; // No GUI yet (maybe later)
375 gui.starting = FALSE; // No GUI yet (maybe later)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 gui_mch_prepare(argc, argv);
377}
378
379/*
380 * Try initializing the GUI and check if it can be started.
381 * Used from main() to check early if "vim -g" can start the GUI.
382 * Used from gui_init() to prepare for starting the GUI.
383 * Returns FAIL or OK.
384 */
385 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100386gui_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387{
388 static int result = MAYBE;
389
390 if (result != MAYBE)
391 {
392 if (result == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100393 emsg(_("E229: Cannot start the GUI"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 return result;
395 }
396
397 gui.shell_created = FALSE;
398 gui.dying = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +0100399 gui.in_focus = TRUE; // so the guicursor setting works
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 gui.dragged_sb = SBAR_NONE;
401 gui.dragged_wp = NULL;
402 gui.pointer_hidden = FALSE;
403 gui.col = 0;
404 gui.row = 0;
405 gui.num_cols = Columns;
406 gui.num_rows = Rows;
407
408 gui.cursor_is_valid = FALSE;
409 gui.scroll_region_top = 0;
410 gui.scroll_region_bot = Rows - 1;
411 gui.scroll_region_left = 0;
412 gui.scroll_region_right = Columns - 1;
413 gui.highlight_mask = HL_NORMAL;
414 gui.char_width = 1;
415 gui.char_height = 1;
416 gui.char_ascent = 0;
417 gui.border_width = 0;
418
419 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200420#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 gui.bold_font = NOFONT;
422 gui.ital_font = NOFONT;
423 gui.boldital_font = NOFONT;
424# ifdef FEAT_XFONTSET
425 gui.fontset = NOFONTSET;
426# endif
427#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200428 gui.wide_font = NOFONT;
Bram Moolenaar13505972019-01-24 15:04:48 +0100429#ifndef FEAT_GUI_GTK
Bram Moolenaardb250522013-06-17 22:43:25 +0200430 gui.wide_bold_font = NOFONT;
431 gui.wide_ital_font = NOFONT;
432 gui.wide_boldital_font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +0200433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434
435#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200436# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437# ifdef FONTSET_ALWAYS
438 gui.menu_fontset = NOFONTSET;
439# else
440 gui.menu_font = NOFONT;
441# endif
442# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100443 gui.menu_is_active = TRUE; // default: include menu
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444# ifndef FEAT_GUI_GTK
445 gui.menu_height = MENU_DEFAULT_HEIGHT;
446 gui.menu_width = 0;
447# endif
448#endif
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
806
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
808 if (!im_xim_isvalid_imactivate())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100809 emsg(_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100811 // When 'cmdheight' was set during startup it may not have taken
812 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000813 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000814 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
816 return;
817 }
818
819error2:
820#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100821 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 gui_mch_uninit();
823#endif
824
825error:
826 gui.in_use = FALSE;
827 clip_init(FALSE);
828}
829
830
831 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100832gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833{
Bram Moolenaar30613902019-12-01 22:11:18 +0100834 // don't free the fonts, it leads to a BUS error
835 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 gui.in_use = FALSE;
838 gui_mch_exit(rc);
839}
840
Bram Moolenaar9372a112005-12-06 19:59:18 +0000841#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000843# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844/*
845 * Called when the GUI shell is closed by the user. If there are no changed
846 * files Vim exits, otherwise there will be a dialog to ask the user what to
847 * do.
848 * When this function returns, Vim should NOT exit!
849 */
850 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100851gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852{
853 cmdmod_T save_cmdmod;
854
855 save_cmdmod = cmdmod;
856
Bram Moolenaar30613902019-12-01 22:11:18 +0100857 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 exiting = TRUE;
859# ifdef FEAT_BROWSE
860 cmdmod.browse = TRUE;
861# endif
862# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
863 cmdmod.confirm = TRUE;
864# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100865 // If there are changed buffers, present the user with a dialog if
866 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100867 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 getout(0);
869
870 exiting = FALSE;
871 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100872 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873}
874#endif
875
876/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200877 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 * first font name that works is used. If none is found, use the default
879 * font.
880 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
881 * Return OK when able to set the font. When it failed FAIL is returned and
882 * the fonts are unchanged.
883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100885gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886{
887#define FONTLEN 320
888 char_u font_name[FONTLEN];
889 int font_list_empty = FALSE;
890 int ret = FAIL;
891
892 if (!gui.in_use)
893 return FAIL;
894
895 font_name[0] = NUL;
896 if (*font_list == NUL)
897 font_list_empty = TRUE;
898 else
899 {
900#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100901 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 if (fontset)
903 ret = gui_mch_init_font(font_list, TRUE);
904 else
905#endif
906 while (*font_list != NUL)
907 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100908 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
910
Bram Moolenaar30613902019-12-01 22:11:18 +0100911 // Careful!!! The Win32 version of gui_mch_init_font(), when
912 // called with "*" will change p_guifont to the selected font
913 // name, which frees the old value. This makes font_list
914 // invalid. Thus when OK is returned here, font_list must no
915 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 if (gui_mch_init_font(font_name, FALSE) == OK)
917 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100918#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100919 // If it's a Unicode font, try setting 'guifontwide' to a
920 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
922 && strstr((char *)font_name, "10646") != NULL)
923 set_guifontwide(font_name);
924#endif
925 ret = OK;
926 break;
927 }
928 }
929 }
930
931 if (ret != OK
932 && STRCMP(font_list, "*") != 0
933 && (font_list_empty || gui.norm_font == NOFONT))
934 {
935 /*
936 * Couldn't load any font in 'font_list', keep the current font if
937 * there is one. If 'font_list' is empty, or if there is no current
938 * font, tell gui_mch_init_font() to try to find a font we can load.
939 */
940 ret = gui_mch_init_font(NULL, FALSE);
941 }
942
943 if (ret == OK)
944 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200945#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100946 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947# ifdef FEAT_XFONTSET
948 if (gui.fontset != NOFONTSET)
949 gui_mch_set_fontset(gui.fontset);
950 else
951# endif
952 gui_mch_set_font(gui.norm_font);
953#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100954 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 }
956
957 return ret;
958}
959
Bram Moolenaar13505972019-01-24 15:04:48 +0100960#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961/*
962 * Try setting 'guifontwide' to a font twice as wide as "name".
963 */
964 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100965set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966{
967 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100968 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 char_u *wp = NULL;
970 char_u *p;
971 GuiFont font;
972
973 wp = wide_name;
974 for (p = name; *p != NUL; ++p)
975 {
976 *wp++ = *p;
977 if (*p == '-')
978 {
979 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100980 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 {
982 if (p[1] == '-')
983 *wp++ = '*';
984 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100985 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 {
987 ++p;
988 i = getdigits(&p);
989 if (i != 0)
990 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100991 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 sprintf((char *)wp, "%d%s", i * 2, p);
993 font = gui_mch_get_font(wide_name, FALSE);
994 if (font != NOFONT)
995 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000996 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 gui.wide_font = font;
998 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000999 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 }
1001 }
1002 break;
1003 }
1004 }
1005 }
1006}
Bram Moolenaar30613902019-12-01 22:11:18 +01001007#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
1009/*
1010 * Get the font for 'guifontwide'.
1011 * Return FAIL for an invalid font name.
1012 */
1013 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001014gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015{
1016 GuiFont font = NOFONT;
1017 char_u font_name[FONTLEN];
1018 char_u *p;
1019
Bram Moolenaar30613902019-12-01 22:11:18 +01001020 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1021 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
1023 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1024 {
1025 for (p = p_guifontwide; *p != NUL; )
1026 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001027 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1029 font = gui_mch_get_font(font_name, FALSE);
1030 if (font != NOFONT)
1031 break;
1032 }
1033 if (font == NOFONT)
1034 return FAIL;
1035 }
1036
1037 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001038#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001039 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 if (font != NOFONT && gui.norm_font != NOFONT
1041 && pango_font_description_equal(font, gui.norm_font))
1042 {
1043 gui.wide_font = NOFONT;
1044 gui_mch_free_font(font);
1045 }
1046 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001049#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001050 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001051#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001052 /*
1053 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1054 * support those fonts for 'guifontwide'.
1055 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 return OK;
1058}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001060 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001061gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062{
1063 gui.row = row;
1064 gui.col = col;
1065}
1066
1067/*
1068 * gui_check_pos - check if the cursor is on the screen.
1069 */
1070 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001071gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072{
1073 if (gui.row >= screen_Rows)
1074 gui.row = screen_Rows - 1;
1075 if (gui.col >= screen_Columns)
1076 gui.col = screen_Columns - 1;
1077 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1078 gui.cursor_is_valid = FALSE;
1079}
1080
1081/*
1082 * Redraw the cursor if necessary or when forced.
1083 * Careful: The contents of ScreenLines[] must match what is on the screen,
1084 * otherwise this goes wrong. May need to call out_flush() first.
1085 */
1086 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001087gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001088 int force, // when TRUE, update even when not moved
1089 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090{
1091 int cur_width = 0;
1092 int cur_height = 0;
1093 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001094 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001096#ifdef FEAT_TERMINAL
1097 guicolor_T shape_fg = INVALCOLOR;
1098 guicolor_T shape_bg = INVALCOLOR;
1099#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001100 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1101 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 int attr;
1103 attrentry_T *aep = NULL;
1104
Bram Moolenaar30613902019-12-01 22:11:18 +01001105 // Don't update the cursor when halfway busy scrolling or the screen size
1106 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001107 if (!can_update_cursor || screen_Columns != gui.num_cols
1108 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 return;
1110
1111 gui_check_pos();
1112 if (!gui.cursor_is_valid || force
1113 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1114 {
1115 gui_undraw_cursor();
1116 if (gui.row < 0)
1117 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001118#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1120 im_set_position(gui.row, gui.col);
1121#endif
1122 gui.cursor_row = gui.row;
1123 gui.cursor_col = gui.col;
1124
Bram Moolenaar30613902019-12-01 22:11:18 +01001125 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 if (!screen_cleared || ScreenLines == NULL)
1127 return;
1128
Bram Moolenaar30613902019-12-01 22:11:18 +01001129 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 if (clear_selection)
1131 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001132 // Check that the cursor is inside the shell (resizing may have made
1133 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1135 return;
1136
1137 gui.cursor_is_valid = TRUE;
1138
1139 /*
1140 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001141 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001143#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001144 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001145 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001147#endif
1148 shape = &shape_table[get_shape_idx(FALSE)];
1149 if (State & LANGMAP)
1150 id = shape->id_lm;
1151 else
1152 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
Bram Moolenaar30613902019-12-01 22:11:18 +01001154 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 cfg = INVALCOLOR;
1156 cbg = INVALCOLOR;
1157 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001158 gui_mch_set_blinking(shape->blinkwait,
1159 shape->blinkon,
1160 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001161 if (shape->blinkwait == 0 || shape->blinkon == 0
1162 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001163 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001164#ifdef FEAT_TERMINAL
1165 if (shape_bg != INVALCOLOR)
1166 {
1167 cattr = 0;
1168 cfg = shape_fg;
1169 cbg = shape_bg;
1170 }
1171 else
1172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 if (id > 0)
1174 {
1175 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001176#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 {
1178 static int iid;
1179 guicolor_T fg, bg;
1180
Bram Moolenaarc236c162008-07-13 17:41:49 +00001181 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001182# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001183 preedit_get_status()
1184# else
1185 im_get_status()
1186# endif
1187 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 {
1189 iid = syn_name2id((char_u *)"CursorIM");
1190 if (iid > 0)
1191 {
1192 syn_id2colors(iid, &fg, &bg);
1193 if (bg != INVALCOLOR)
1194 cbg = bg;
1195 if (fg != INVALCOLOR)
1196 cfg = fg;
1197 }
1198 }
1199 }
1200#endif
1201 }
1202
1203 /*
1204 * Get the attributes for the character under the cursor.
1205 * When no cursor color was given, use the character color.
1206 */
1207 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1208 if (attr > HL_ALL)
1209 aep = syn_gui_attr2entry(attr);
1210 if (aep != NULL)
1211 {
1212 attr = aep->ae_attr;
1213 if (cfg == INVALCOLOR)
1214 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1215 : aep->ae_u.gui.fg_color);
1216 if (cbg == INVALCOLOR)
1217 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1218 : aep->ae_u.gui.bg_color);
1219 }
1220 if (cfg == INVALCOLOR)
1221 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1222 if (cbg == INVALCOLOR)
1223 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1224
1225#ifdef FEAT_XIM
1226 if (aep != NULL)
1227 {
1228 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1229 : aep->ae_u.gui.bg_color);
1230 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1231 : aep->ae_u.gui.fg_color);
1232 if (xim_bg_color == INVALCOLOR)
1233 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1234 : gui.back_pixel;
1235 if (xim_fg_color == INVALCOLOR)
1236 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1237 : gui.norm_pixel;
1238 }
1239 else
1240 {
1241 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1242 : gui.back_pixel;
1243 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1244 : gui.norm_pixel;
1245 }
1246#endif
1247
1248 attr &= ~HL_INVERSE;
1249 if (cattr & HL_INVERSE)
1250 {
1251 cc = cbg;
1252 cbg = cfg;
1253 cfg = cc;
1254 }
1255 cattr &= ~HL_INVERSE;
1256
1257 /*
1258 * When we don't have window focus, draw a hollow cursor.
1259 */
1260 if (!gui.in_focus)
1261 {
1262 gui_mch_draw_hollow_cursor(cbg);
1263 return;
1264 }
1265
1266 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001267 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
1269 /*
1270 * Draw the text character with the cursor colors. Use the
1271 * character attributes plus the cursor attributes.
1272 */
1273 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001274 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1276 }
1277 else
1278 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001279#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 int col_off = FALSE;
1281#endif
1282 /*
1283 * First draw the partial cursor, then overwrite with the text
1284 * character, using a transparent background.
1285 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001286 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 {
1288 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001289 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 }
1291 else
1292 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001293 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 cur_width = gui.char_width;
1295 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001296 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1297 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001299 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001300 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001302#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 if (CURSOR_BAR_RIGHT)
1304 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001305 // gui.col points to the left halve of the character but
1306 // the vertical line needs to be on the right halve.
1307 // A double-wide horizontal line is also drawn from the
1308 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 col_off = TRUE;
1310 ++gui.col;
1311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001315#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if (col_off)
1317 --gui.col;
1318#endif
1319
Bram Moolenaar30613902019-12-01 22:11:18 +01001320#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1322 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1323 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1324 (guicolor_T)0, (guicolor_T)0, 0);
1325#endif
1326 }
1327 gui.highlight_mask = old_hl_mask;
1328 }
1329}
1330
1331#if defined(FEAT_MENU) || defined(PROTO)
1332 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001333gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001335# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 if (gui.menu_is_active && gui.in_use)
1337 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1338# endif
1339}
1340#endif
1341
1342/*
1343 * Position the various GUI components (text area, menu). The vertical
1344 * scrollbars are NOT handled here. See gui_update_scrollbars().
1345 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001347gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348{
1349 int text_area_x;
1350 int text_area_y;
1351 int text_area_width;
1352 int text_area_height;
1353
Bram Moolenaar30613902019-12-01 22:11:18 +01001354 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 ++hold_gui_events;
1356
1357 text_area_x = 0;
1358 if (gui.which_scrollbars[SBAR_LEFT])
1359 text_area_x += gui.scrollbar_width;
1360
1361 text_area_y = 0;
1362#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1363 gui.menu_width = total_width;
1364 if (gui.menu_is_active)
1365 text_area_y += gui.menu_height;
1366#endif
1367#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1368 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1369 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1370#endif
1371
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001372# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001373 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001374 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001375 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001376#endif
1377
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001378#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1379 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1381 {
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001382# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 gui_mch_set_toolbar_pos(0, text_area_y,
1384 gui.menu_width, gui.toolbar_height);
1385# endif
1386 text_area_y += gui.toolbar_height;
1387 }
1388#endif
1389
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001390# if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
1391 gui_mch_set_tabline_pos(0, text_area_y,
1392 gui.menu_width, gui.tabline_height);
1393 if (gui_has_tabline())
1394 text_area_y += gui.tabline_height;
1395#endif
1396
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1398 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1399
1400 gui_mch_set_text_area_pos(text_area_x,
1401 text_area_y,
1402 text_area_width,
1403 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001404#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 + xim_get_status_area_height()
1406#endif
1407 );
1408#ifdef FEAT_MENU
1409 gui_position_menu();
1410#endif
1411 if (gui.which_scrollbars[SBAR_BOTTOM])
1412 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1413 text_area_x,
1414 text_area_y + text_area_height,
1415 text_area_width,
1416 gui.scrollbar_height);
1417 gui.left_sbar_x = 0;
1418 gui.right_sbar_x = text_area_x + text_area_width;
1419
1420 --hold_gui_events;
1421}
1422
Bram Moolenaar02743632005-07-25 20:42:36 +00001423/*
1424 * Get the width of the widgets and decorations to the side of the text area.
1425 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001427gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428{
1429 int base_width;
1430
1431 base_width = 2 * gui.border_offset;
1432 if (gui.which_scrollbars[SBAR_LEFT])
1433 base_width += gui.scrollbar_width;
1434 if (gui.which_scrollbars[SBAR_RIGHT])
1435 base_width += gui.scrollbar_width;
1436 return base_width;
1437}
1438
Bram Moolenaar02743632005-07-25 20:42:36 +00001439/*
1440 * Get the height of the widgets and decorations above and below the text area.
1441 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001443gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
1445 int base_height;
1446
1447 base_height = 2 * gui.border_offset;
1448 if (gui.which_scrollbars[SBAR_BOTTOM])
1449 base_height += gui.scrollbar_height;
1450#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001451 // We can't take the sizes properly into account until anything is
1452 // realized. Therefore we recalculate all the values here just before
1453 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454#else
1455# ifdef FEAT_MENU
1456 if (gui.menu_is_active)
1457 base_height += gui.menu_height;
1458# endif
1459# ifdef FEAT_TOOLBAR
1460 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1461# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1462 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1463# else
1464 base_height += gui.toolbar_height;
1465# endif
1466# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001467# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001468 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001469 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001470 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472# ifdef FEAT_FOOTER
1473 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1474 base_height += gui.footer_height;
1475# endif
1476# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1477 base_height += gui_mch_text_area_extra_height();
1478# endif
1479#endif
1480 return base_height;
1481}
1482
1483/*
1484 * Should be called after the GUI shell has been resized. Its arguments are
1485 * the new width and height of the shell in pixels.
1486 */
1487 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001488gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489{
1490 static int busy = FALSE;
1491
Bram Moolenaar30613902019-12-01 22:11:18 +01001492 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 return;
1494
1495 /*
1496 * Can't resize the screen while it is being redrawn. Remember the new
1497 * size and handle it later.
1498 */
1499 if (updating_screen || busy)
1500 {
1501 new_pixel_width = pixel_width;
1502 new_pixel_height = pixel_height;
1503 return;
1504 }
1505
1506again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001507 new_pixel_width = 0;
1508 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 busy = TRUE;
1510
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001511#ifdef FEAT_GUI_HAIKU
1512 vim_lock_screen();
1513#endif
1514
Bram Moolenaar30613902019-12-01 22:11:18 +01001515 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 out_flush();
1517
1518 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001519 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520
1521 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001523
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 /*
1525 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1526 * at the last line here (why does it have to be one row too low?).
1527 */
1528 if (State == ASKMORE || State == CONFIRM)
1529 gui.row = gui.num_rows;
1530
Bram Moolenaar30613902019-12-01 22:11:18 +01001531 // Only comparing Rows and Columns may be sufficient, but let's stay on
1532 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1534 || gui.num_rows != Rows || gui.num_cols != Columns)
1535 shell_resized();
1536
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001537#ifdef FEAT_GUI_HAIKU
1538 vim_unlock_screen();
1539#endif
1540
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 gui_update_scrollbars(TRUE);
1542 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001543#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 xim_set_status_area();
1545#endif
1546
1547 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001548
Bram Moolenaar30613902019-12-01 22:11:18 +01001549 // We may have been called again while redrawing the screen.
1550 // Need to do it all again with the latest size then. But only if the size
1551 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if (new_pixel_height)
1553 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001554 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1555 {
1556 new_pixel_width = 0;
1557 new_pixel_height = 0;
1558 }
1559 else
1560 {
1561 pixel_width = new_pixel_width;
1562 pixel_height = new_pixel_height;
1563 goto again;
1564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 }
1566}
1567
1568/*
1569 * Check if gui_resize_shell() must be called.
1570 */
1571 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001572gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001575 // careful: gui_resize_shell() may postpone the resize again if we
1576 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001577 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578}
1579
1580 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001581gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582{
1583 Rows = gui.num_rows;
1584 Columns = gui.num_cols;
1585 return OK;
1586}
1587
1588/*
1589 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001590 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1591 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001592 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1593 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001596gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001597 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001598 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001599 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600{
1601 int base_width;
1602 int base_height;
1603 int width;
1604 int height;
1605 int min_width;
1606 int min_height;
1607 int screen_w;
1608 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001609#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001610 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001611 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001612#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001613 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614
1615 if (!gui.shell_created)
1616 return;
1617
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001618#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001619 // If not setting to a user specified size and maximized, calculate the
1620 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001621 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1622 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 {
1624 gui_mch_newfont();
1625 return;
1626 }
1627#endif
1628
1629 base_width = gui_get_base_width();
1630 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001631 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001632 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001633 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001634
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001635 width = Columns * gui.char_width + base_width;
1636 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
1638 if (fit_to_display)
1639 {
1640 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001641 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 {
1643 Columns = (screen_w - base_width) / gui.char_width;
1644 if (Columns < MIN_COLUMNS)
1645 Columns = MIN_COLUMNS;
1646 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001647#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001648 ++did_adjust;
1649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001651 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 {
1653 Rows = (screen_h - base_height) / gui.char_height;
1654 check_shellsize();
1655 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001656#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001657 ++did_adjust;
1658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001660#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001661 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1662 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001663 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001664 un_maximize = FALSE;
1665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001667 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 gui.num_cols = Columns;
1669 gui.num_rows = Rows;
1670
1671 min_width = base_width + MIN_COLUMNS * gui.char_width;
1672 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001673 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001674
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001675#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001676 if (un_maximize)
1677 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001678 // If the window size is smaller than the screen unmaximize the
1679 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001680 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1681 if ((width + gui.char_width < screen_w
1682 || height + gui.char_height * 2 < screen_h)
1683 && gui_mch_maximized())
1684 gui_mch_unmaximize();
1685 }
1686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687
1688 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001689 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001691 if (fit_to_display && x >= 0 && y >= 0)
1692 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001693 // Some window managers put the Vim window left of/above the screen.
1694 // Only change the position if it wasn't already negative before
1695 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 gui_mch_update();
1697 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1698 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1699 }
1700
1701 gui_position_components(width);
1702 gui_update_scrollbars(TRUE);
1703 gui_reset_scroll_region();
1704}
1705
1706/*
1707 * Called when Rows and/or Columns has changed.
1708 */
1709 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001710gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711{
1712 gui_reset_scroll_region();
1713}
1714
1715/*
1716 * Make scroll region cover whole screen.
1717 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001718 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001719gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720{
1721 gui.scroll_region_top = 0;
1722 gui.scroll_region_bot = gui.num_rows - 1;
1723 gui.scroll_region_left = 0;
1724 gui.scroll_region_right = gui.num_cols - 1;
1725}
1726
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001727 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001728gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729{
Bram Moolenaar30613902019-12-01 22:11:18 +01001730 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001732 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 gui.highlight_mask |= mask;
1734}
1735
1736 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001737gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738{
Bram Moolenaar30613902019-12-01 22:11:18 +01001739 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001741 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 gui.highlight_mask &= ~mask;
1743}
1744
1745/*
1746 * Clear a rectangular region of the screen from text pos (row1, col1) to
1747 * (row2, col2) inclusive.
1748 */
1749 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001750gui_clear_block(
1751 int row1,
1752 int col1,
1753 int row2,
1754 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
Bram Moolenaar30613902019-12-01 22:11:18 +01001756 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 clip_may_clear_selection(row1, row2);
1758
1759 gui_mch_clear_block(row1, col1, row2, col2);
1760
Bram Moolenaar30613902019-12-01 22:11:18 +01001761 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1763 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1764 gui.cursor_is_valid = FALSE;
1765}
1766
1767/*
1768 * Write code to update the cursor later. This avoids the need to flush the
1769 * output buffer before calling gui_update_cursor().
1770 */
1771 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001772gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001774 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775}
1776
1777 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001778gui_write(
1779 char_u *s,
1780 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781{
1782 char_u *p;
1783 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001784 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 int force_scrollbar = FALSE;
1786 static win_T *old_curwin = NULL;
1787
Bram Moolenaar30613902019-12-01 22:11:18 +01001788// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789#ifdef DEBUG_GUI_WRITE
1790 {
1791 int i;
1792 char_u *str;
1793
1794 printf("gui_write(%d):\n ", len);
1795 for (i = 0; i < len; i++)
1796 if (s[i] == ESC)
1797 {
1798 if (i != 0)
1799 printf("\n ");
1800 printf("<ESC>");
1801 }
1802 else
1803 {
1804 str = transchar_byte(s[i]);
1805 if (str[0] && str[1])
1806 printf("<%s>", (char *)str);
1807 else
1808 printf("%s", (char *)str);
1809 }
1810 printf("\n");
1811 }
1812#endif
1813 while (len)
1814 {
1815 if (s[0] == ESC && s[1] == '|')
1816 {
1817 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001818 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 {
1820 arg1 = getdigits(&p);
1821 if (p > s + len)
1822 break;
1823 if (*p == ';')
1824 {
1825 ++p;
1826 arg2 = getdigits(&p);
1827 if (p > s + len)
1828 break;
1829 }
1830 }
1831 switch (*p)
1832 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001833 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 clip_scroll_selection(9999);
1835 gui_mch_clear_all();
1836 gui.cursor_is_valid = FALSE;
1837 force_scrollbar = TRUE;
1838 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001839 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 gui_set_cursor(arg1, arg2);
1841 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001842 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 force_cursor = TRUE;
1844 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001845 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 if (arg1 < arg2)
1847 {
1848 gui.scroll_region_top = arg1;
1849 gui.scroll_region_bot = arg2;
1850 }
1851 else
1852 {
1853 gui.scroll_region_top = arg2;
1854 gui.scroll_region_bot = arg1;
1855 }
1856 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001857 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 if (arg1 < arg2)
1859 {
1860 gui.scroll_region_left = arg1;
1861 gui.scroll_region_right = arg2;
1862 }
1863 else
1864 {
1865 gui.scroll_region_left = arg2;
1866 gui.scroll_region_right = arg1;
1867 }
1868 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001869 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 gui_delete_lines(gui.row, 1);
1871 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001872 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 gui_delete_lines(gui.row, arg1);
1874 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001875 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 gui_insert_lines(gui.row, 1);
1877 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001878 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 gui_insert_lines(gui.row, arg1);
1880 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001881 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 gui_clear_block(gui.row, gui.col, gui.row,
1883 (int)Columns - 1);
1884 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001885 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 gui_start_highlight(arg1);
1887 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001888 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 gui_stop_highlight(arg1);
1890 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001891 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1893 break;
1894 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001895 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 break;
1897 }
1898 len -= (int)(++p - s);
1899 s = p;
1900 }
1901 else if (
1902#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001905 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906#endif
1907#ifdef FEAT_SIGN_ICONS
1908 && s[0] != SIGN_BYTE
1909# ifdef FEAT_NETBEANS_INTG
1910 && s[0] != MULTISIGN_BYTE
1911# endif
1912#endif
1913 )
1914 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001915 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 {
1917 gui.col = 0;
1918 if (gui.row < gui.scroll_region_bot)
1919 gui.row++;
1920 else
1921 gui_delete_lines(gui.scroll_region_top, 1);
1922 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001923 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 {
1925 gui.col = 0;
1926 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001927 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 {
1929 if (gui.col)
1930 --gui.col;
1931 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001932 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 {
1934 ++gui.col;
1935 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001936 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 {
1938 gui_mch_beep();
1939 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001940 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941
Bram Moolenaar30613902019-12-01 22:11:18 +01001942 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 ++s;
1944 }
1945 else
1946 {
1947 p = s;
1948 while (len > 0 && (
1949#ifdef EBCDIC
1950 CtrlChar(*p) == 0
1951#else
1952 *p >= 0x20
1953#endif
1954#ifdef FEAT_SIGN_ICONS
1955 || *p == SIGN_BYTE
1956# ifdef FEAT_NETBEANS_INTG
1957 || *p == MULTISIGN_BYTE
1958# endif
1959#endif
1960 ))
1961 {
1962 len--;
1963 p++;
1964 }
1965 gui_outstr(s, (int)(p - s));
1966 s = p;
1967 }
1968 }
1969
Bram Moolenaar30613902019-12-01 22:11:18 +01001970 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1971 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 if (force_cursor)
1973 gui_update_cursor(TRUE, TRUE);
1974
Bram Moolenaar30613902019-12-01 22:11:18 +01001975 // When switching to another window the dragging must have stopped.
1976 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 if (old_curwin != curwin)
1978 gui.dragged_sb = SBAR_NONE;
1979
Bram Moolenaar30613902019-12-01 22:11:18 +01001980 // Update the scrollbars after clearing the screen or when switched
1981 // to another window.
1982 // Update the horizontal scrollbar always, it's difficult to check all
1983 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (force_scrollbar || old_curwin != curwin)
1985 gui_update_scrollbars(force_scrollbar);
1986 else
1987 gui_update_horiz_scrollbar(FALSE);
1988 old_curwin = curwin;
1989
1990 /*
1991 * We need to make sure this is cleared since Athena doesn't tell us when
1992 * he is done dragging. Do the same for GTK.
1993 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00001994#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 gui.dragged_sb = SBAR_NONE;
1996#endif
1997
Bram Moolenaar30613902019-12-01 22:11:18 +01001998 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999}
2000
2001/*
2002 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2003 * produces wrong results. Call gui_dont_update_cursor() before that code and
2004 * gui_can_update_cursor() afterwards.
2005 */
2006 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002007gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008{
2009 if (gui.in_use)
2010 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002011 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002012 if (undraw)
2013 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 can_update_cursor = FALSE;
2015 }
2016}
2017
2018 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002019gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020{
2021 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002022 // No need to update the cursor right now, there is always more output
2023 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024}
2025
Bram Moolenaara338adc2018-01-31 20:51:47 +01002026/*
2027 * Disable issuing gui_mch_flush().
2028 */
2029 void
2030gui_disable_flush(void)
2031{
2032 ++disable_flush;
2033}
2034
2035/*
2036 * Enable issuing gui_mch_flush().
2037 */
2038 void
2039gui_enable_flush(void)
2040{
2041 --disable_flush;
2042}
2043
2044/*
2045 * Issue gui_mch_flush() if it is not disabled.
2046 */
2047 void
2048gui_may_flush(void)
2049{
2050 if (disable_flush == 0)
2051 gui_mch_flush();
2052}
2053
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002055gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056{
2057 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
2060 if (len == 0)
2061 return;
2062
2063 if (len < 0)
2064 len = (int)STRLEN(s);
2065
2066 while (len > 0)
2067 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 if (has_mbyte)
2069 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002070 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 cells = 0;
2072 for (this_len = 0; this_len < len; )
2073 {
2074 cells += (*mb_ptr2cells)(s + this_len);
2075 if (gui.col + cells > Columns)
2076 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002077 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 }
2079 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002080 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 }
2082 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (gui.col + len > Columns)
2084 this_len = Columns - gui.col;
2085 else
2086 this_len = len;
2087
2088 (void)gui_outstr_nowrap(s, this_len,
2089 0, (guicolor_T)0, (guicolor_T)0, 0);
2090 s += this_len;
2091 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002092 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 if (len > 0 && gui.col < Columns)
2094 (void)gui_outstr_nowrap((char_u *)" ", 1,
2095 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002096 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 if (gui.col >= Columns)
2098 {
2099 gui.col = 0;
2100 gui.row++;
2101 }
2102 }
2103}
2104
2105/*
2106 * Output one character (may be one or two display cells).
2107 * Caller must check for valid "off".
2108 * Returns FAIL or OK, just like gui_outstr_nowrap().
2109 */
2110 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002111gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002112 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002113 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002114 guicolor_T fg, // colors for cursor
2115 guicolor_T bg, // colors for cursor
2116 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 char_u buf[MB_MAXBYTES + 1];
2119
Bram Moolenaar30613902019-12-01 22:11:18 +01002120 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 if (enc_utf8 && ScreenLines[off] == 0)
2122 return OK;
2123
2124 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002125 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2127 flags, fg, bg, back);
2128
2129 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2130 {
2131 buf[0] = ScreenLines[off];
2132 buf[1] = ScreenLines2[off];
2133 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2134 }
2135
Bram Moolenaar30613902019-12-01 22:11:18 +01002136 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002138 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140}
2141
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002142#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143/*
2144 * Output the string at the given screen position. This is used in place
2145 * of gui_screenchar() where possible because Pango needs as much context
2146 * as possible to work nicely. It's a lot faster as well.
2147 */
2148 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002149gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002150 int off, // Offset from start of screen
2151 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002152 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002153 guicolor_T fg, // colors for cursor
2154 guicolor_T bg, // colors for cursor
2155 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
2157 char_u *buf;
2158 int outlen = 0;
2159 int i;
2160 int retval;
2161
Bram Moolenaar30613902019-12-01 22:11:18 +01002162 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 return OK;
2164
2165 if (enc_utf8)
2166 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002167 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002169 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170
2171 for (i = off; i < off + len; ++i)
2172 {
2173 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002174 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175
2176 if (ScreenLinesUC[i] == 0)
2177 buf[outlen++] = ScreenLines[i];
2178 else
2179 outlen += utfc_char2bytes(i, buf + outlen);
2180 }
2181
Bram Moolenaar30613902019-12-01 22:11:18 +01002182 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2184 vim_free(buf);
2185
2186 return retval;
2187 }
2188 else if (enc_dbcs == DBCS_JPNU)
2189 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002190 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002192 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
2194 for (i = off; i < off + len; ++i)
2195 {
2196 buf[outlen++] = ScreenLines[i];
2197
Bram Moolenaar30613902019-12-01 22:11:18 +01002198 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 if (ScreenLines[i] == 0x8e)
2200 buf[outlen++] = ScreenLines2[i];
2201 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2202 buf[outlen++] = ScreenLines[++i];
2203 }
2204
Bram Moolenaar30613902019-12-01 22:11:18 +01002205 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2207 vim_free(buf);
2208
2209 return retval;
2210 }
2211 else
2212 {
2213 return gui_outstr_nowrap(&ScreenLines[off], len,
2214 flags, fg, bg, back);
2215 }
2216}
Bram Moolenaar30613902019-12-01 22:11:18 +01002217#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218
2219/*
2220 * Output the given string at the current cursor position. If the string is
2221 * too long to fit on the line, then it is truncated.
2222 * "flags":
2223 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2224 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002225 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 * background.
2227 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2228 * it.
2229 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2230 * FAIL (the caller should start drawing "back" chars back).
2231 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002232 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002233gui_outstr_nowrap(
2234 char_u *s,
2235 int len,
2236 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002237 guicolor_T fg, // colors for cursor
2238 guicolor_T bg, // colors for cursor
2239 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240{
2241 long_u highlight_mask;
2242 long_u hl_mask_todo;
2243 guicolor_T fg_color;
2244 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002245 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002246#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002248 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249# ifdef FEAT_XFONTSET
2250 GuiFontset fontset = NOFONTSET;
2251# endif
2252#endif
2253 attrentry_T *aep = NULL;
2254 int draw_flags;
2255 int col = gui.col;
2256#ifdef FEAT_SIGN_ICONS
2257 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002258 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002259 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260# ifdef FEAT_NETBEANS_INTG
2261 int multi_sign = FALSE;
2262# endif
2263#endif
2264
2265 if (len < 0)
2266 len = (int)STRLEN(s);
2267 if (len == 0)
2268 return OK;
2269
2270#ifdef FEAT_SIGN_ICONS
2271 if (*s == SIGN_BYTE
2272# ifdef FEAT_NETBEANS_INTG
2273 || *s == MULTISIGN_BYTE
2274# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002275 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 {
2277# ifdef FEAT_NETBEANS_INTG
2278 if (*s == MULTISIGN_BYTE)
2279 multi_sign = TRUE;
2280# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002281 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002282 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2283 (curwin->w_p_nu || curwin->w_p_rnu))
2284 {
2285 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2286 s = extra;
2287 }
2288 else
2289 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 if (len == 1 && col > 0)
2291 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002292 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002293 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002294 // right align sign icon in the number column
2295 signcol = col + len - 3;
2296 else
2297 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 draw_sign = TRUE;
2299 highlight_mask = 0;
2300 }
2301 else
2302#endif
2303 if (gui.highlight_mask > HL_ALL)
2304 {
2305 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002306 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 highlight_mask = 0;
2308 else
2309 highlight_mask = aep->ae_attr;
2310 }
2311 else
2312 highlight_mask = gui.highlight_mask;
2313 hl_mask_todo = highlight_mask;
2314
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002315#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002316 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2318 font = aep->ae_u.gui.font;
2319# ifdef FEAT_XFONTSET
2320 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2321 fontset = aep->ae_u.gui.fontset;
2322# endif
2323 else
2324 {
2325# ifdef FEAT_XFONTSET
2326 if (gui.fontset != NOFONTSET)
2327 fontset = gui.fontset;
2328 else
2329# endif
2330 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2331 {
2332 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2333 {
2334 font = gui.boldital_font;
2335 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2336 }
2337 else if (gui.bold_font != NOFONT)
2338 {
2339 font = gui.bold_font;
2340 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2341 }
2342 else
2343 font = gui.norm_font;
2344 }
2345 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2346 {
2347 font = gui.ital_font;
2348 hl_mask_todo &= ~HL_ITALIC;
2349 }
2350 else
2351 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002352
Bram Moolenaardb250522013-06-17 22:43:25 +02002353 /*
2354 * Choose correct wide_font by font. wide_font should be set with font
2355 * at same time in above block. But it will make many "ifdef" nasty
2356 * blocks. So we do it here.
2357 */
2358 if (font == gui.boldital_font && gui.wide_boldital_font)
2359 wide_font = gui.wide_boldital_font;
2360 else if (font == gui.bold_font && gui.wide_bold_font)
2361 wide_font = gui.wide_bold_font;
2362 else if (font == gui.ital_font && gui.wide_ital_font)
2363 wide_font = gui.wide_ital_font;
2364 else if (font == gui.norm_font && gui.wide_font)
2365 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 }
2367# ifdef FEAT_XFONTSET
2368 if (fontset != NOFONTSET)
2369 gui_mch_set_fontset(fontset);
2370 else
2371# endif
2372 gui_mch_set_font(font);
2373#endif
2374
2375 draw_flags = 0;
2376
Bram Moolenaar30613902019-12-01 22:11:18 +01002377 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 bg_color = gui.back_pixel;
2379 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2380 {
2381 draw_flags |= DRAW_CURSOR;
2382 fg_color = fg;
2383 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002384 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 }
2386 else if (aep != NULL)
2387 {
2388 fg_color = aep->ae_u.gui.fg_color;
2389 if (fg_color == INVALCOLOR)
2390 fg_color = gui.norm_pixel;
2391 bg_color = aep->ae_u.gui.bg_color;
2392 if (bg_color == INVALCOLOR)
2393 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002394 sp_color = aep->ae_u.gui.sp_color;
2395 if (sp_color == INVALCOLOR)
2396 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 }
2398 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002399 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002401 sp_color = fg_color;
2402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403
2404 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2405 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002406#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 gui_mch_set_colors(bg_color, fg_color);
2408#else
2409 gui_mch_set_fg_color(bg_color);
2410 gui_mch_set_bg_color(fg_color);
2411#endif
2412 }
2413 else
2414 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002415#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 gui_mch_set_colors(fg_color, bg_color);
2417#else
2418 gui_mch_set_fg_color(fg_color);
2419 gui_mch_set_bg_color(bg_color);
2420#endif
2421 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002422 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
Bram Moolenaar30613902019-12-01 22:11:18 +01002424 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 if (!(flags & GUI_MON_NOCLEAR))
2426 clip_may_clear_selection(gui.row, gui.row);
2427
2428
Bram Moolenaar30613902019-12-01 22:11:18 +01002429 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2431 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432
2433 /*
2434 * When drawing bold or italic characters the spill-over from the left
2435 * neighbor may be destroyed. Let the caller backup to start redrawing
2436 * just after a blank.
2437 */
2438 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2439 return FAIL;
2440
Bram Moolenaare60acc12011-05-10 16:41:25 +02002441#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002442 // If there's no italic font, then fake it.
2443 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 if (hl_mask_todo & HL_ITALIC)
2445 draw_flags |= DRAW_ITALIC;
2446
Bram Moolenaar30613902019-12-01 22:11:18 +01002447 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 if (hl_mask_todo & HL_UNDERLINE)
2449 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002450
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002452 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002453 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 draw_flags |= DRAW_UNDERL;
2455#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002456 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002457 if (hl_mask_todo & HL_UNDERCURL)
2458 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459
Bram Moolenaar30613902019-12-01 22:11:18 +01002460 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002461 if (hl_mask_todo & HL_STRIKETHROUGH)
2462 draw_flags |= DRAW_STRIKE;
2463
Bram Moolenaar30613902019-12-01 22:11:18 +01002464 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 if (flags & GUI_MON_TRS_CURSOR)
2466 draw_flags |= DRAW_TRANSP;
2467
2468 /*
2469 * Draw the text.
2470 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002471#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002472 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2474#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 if (enc_utf8)
2476 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002477 int start; // index of bytes to be drawn
2478 int cells; // cellwidth of bytes to be drawn
2479 int thislen; // length of bytes to be drawn
2480 int cn; // cellwidth of current char
2481 int i; // index of current char
2482 int c; // current char value
2483 int cl; // byte length of current char
2484 int comping; // current char is composing
2485 int scol = col; // screen column
2486 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002487 int prev_wide = FALSE;
2488 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002489# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002490 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002491# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002492 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002493# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494
Bram Moolenaar30613902019-12-01 22:11:18 +01002495 // Break the string at a composing character, it has to be drawn on
2496 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 start = 0;
2498 cells = 0;
2499 for (i = 0; i < len; i += cl)
2500 {
2501 c = utf_ptr2char(s + i);
2502 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002504 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002506 if (!comping || sep_comp)
2507 {
2508 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002509# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002510 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002511# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002512 && wide_font != NOFONT)
2513 curr_wide = TRUE;
2514 else
2515 curr_wide = FALSE;
2516 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002517 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002518 if (cl == 0) // hit end of string
2519 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520
Bram Moolenaar45933962013-01-23 17:43:57 +01002521 wide_changed = curr_wide != prev_wide;
2522
Bram Moolenaar30613902019-12-01 22:11:18 +01002523 // Print the string so far if it's the last character or there is
2524 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002525 if (i + cl >= len || (comping && sep_comp && i > start)
2526 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002527# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002529# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002530 // No fontset: At least draw char after wide char at
2531 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002534 )
2535# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 )
2537 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002538 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 thislen = i - start;
2540 else
2541 thislen = i - start + cl;
2542 if (thislen > 0)
2543 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002544 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002545 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2547 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002548 if (prev_wide)
2549 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 start += thislen;
2551 }
2552 scol += cells;
2553 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002554 // Adjust to not draw a character which width is changed
2555 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002556 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002558 scol -= cn;
2559 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 }
2561
Bram Moolenaar13505972019-01-24 15:04:48 +01002562# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002563 // No fontset: draw a space to fill the gap after a wide char
2564 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002566# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002568# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002569 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2571 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002572# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002574 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002575 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002577# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002578 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002579 gui_mch_draw_string(gui.row, scol, s + i, cl,
2580 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002581# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002582 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2583 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002584# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 start = i + cl;
2586 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002587 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002589 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 len = scol - col;
2591 }
2592 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 {
2594 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 if (enc_dbcs == DBCS_JPNU)
2596 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002597 // Get the length in display cells, this can be different from the
2598 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002599 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002602#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603
2604 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2605 gui.col = col + len;
2606
Bram Moolenaar30613902019-12-01 22:11:18 +01002607 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 if (flags & GUI_MON_NOCLEAR)
2609 clip_may_redraw_selection(gui.row, col, len);
2610
2611 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2612 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002613 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 if (gui.cursor_row == gui.row
2615 && gui.cursor_col >= col
2616 && gui.cursor_col < col + len)
2617 gui.cursor_is_valid = FALSE;
2618 }
2619
2620#ifdef FEAT_SIGN_ICONS
2621 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002622 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002623 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002624# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002625 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 if (multi_sign)
2627 netbeans_draw_multisign_indicator(gui.row);
2628# endif
2629#endif
2630
2631 return OK;
2632}
2633
2634/*
2635 * Un-draw the cursor. Actually this just redraws the character at the given
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002636 * position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 */
2638 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002639gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640{
2641 if (gui.cursor_is_valid)
2642 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002643 // Redraw the character just before too, if there is one, because with
2644 // some fonts and characters there can be a one pixel overlap.
2645 gui_redraw_block(gui.cursor_row,
2646 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col,
2647 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR);
2648
Bram Moolenaar54612582019-11-21 17:13:31 +01002649 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2650 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 gui.cursor_is_valid = FALSE;
2652 }
2653}
2654
2655 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002656gui_redraw(
2657 int x,
2658 int y,
2659 int w,
2660 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661{
2662 int row1, col1, row2, col2;
2663
2664 row1 = Y_2_ROW(y);
2665 col1 = X_2_COL(x);
2666 row2 = Y_2_ROW(y + h - 1);
2667 col2 = X_2_COL(x + w - 1);
2668
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002669 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670
2671 /*
2672 * We may need to redraw the cursor, but don't take it upon us to change
2673 * its location after a scroll.
2674 * (maybe be more strict even and test col too?)
2675 * These things may be outside the update/clipping region and reality may
2676 * not reflect Vims internal ideas if these operations are clipped away.
2677 */
2678 if (gui.row == gui.cursor_row)
2679 gui_update_cursor(TRUE, TRUE);
2680}
2681
2682/*
2683 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2684 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002686 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002687gui_redraw_block(
2688 int row1,
2689 int col1,
2690 int row2,
2691 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002692 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693{
2694 int old_row, old_col;
2695 long_u old_hl_mask;
2696 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002697 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 int idx, len;
2699 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
Bram Moolenaar30613902019-12-01 22:11:18 +01002702 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002704 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705
Bram Moolenaar30613902019-12-01 22:11:18 +01002706 // Don't try to draw outside the shell!
2707 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 col1 = check_col(col1);
2709 col2 = check_col(col2);
2710 row1 = check_row(row1);
2711 row2 = check_row(row2);
2712
Bram Moolenaar30613902019-12-01 22:11:18 +01002713 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 old_row = gui.row;
2715 old_col = gui.col;
2716 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 orig_col1 = col1;
2718 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719
2720 for (gui.row = row1; gui.row <= row2; gui.row++)
2721 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002722 // When only half of a double-wide character is in the block, include
2723 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 col1 = orig_col1;
2725 col2 = orig_col2;
2726 off = LineOffset[gui.row];
2727 if (enc_dbcs != 0)
2728 {
2729 if (col1 > 0)
2730 col1 -= dbcs_screen_head_off(ScreenLines + off,
2731 ScreenLines + off + col1);
2732 col2 += dbcs_screen_tail_off(ScreenLines + off,
2733 ScreenLines + off + col2);
2734 }
2735 else if (enc_utf8)
2736 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002737 if (ScreenLines[off + col1] == 0)
2738 {
2739 if (col1 > 0)
2740 --col1;
2741 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002742 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002743 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002744 // Make this IEMSGN when it no longer breaks Travis CI.
2745 vim_snprintf((char *)IObuff, IOSIZE,
2746 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2747 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002748 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002749 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002750 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002751#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2753 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 gui.col = col1;
2757 off = LineOffset[gui.row] + gui.col;
2758 len = col2 - col1 + 1;
2759
Bram Moolenaar30613902019-12-01 22:11:18 +01002760 // Find how many chars back this highlighting starts, or where a space
2761 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 for (back = 0; back < col1; ++back)
2763 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2764 || ScreenLines[off - 1 - back] == ' ')
2765 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
Bram Moolenaar30613902019-12-01 22:11:18 +01002767 // Break it up in strings of characters with the same attributes.
2768 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 while (len > 0)
2770 {
2771 first_attr = ScreenAttrs[off];
2772 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002773#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 if (enc_utf8 && ScreenLinesUC[off] != 0)
2775 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002776 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 nback = gui_screenchar(off, flags,
2778 (guicolor_T)0, (guicolor_T)0, back);
2779 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2780 idx = 2;
2781 else
2782 idx = 1;
2783 }
2784 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2785 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002786 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 nback = gui_screenchar(off, flags,
2788 (guicolor_T)0, (guicolor_T)0, back);
2789 idx = 1;
2790 }
2791 else
2792#endif
2793 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002794#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 for (idx = 0; idx < len; ++idx)
2796 {
2797 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002798 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 if (ScreenAttrs[off + idx] != first_attr)
2800 break;
2801 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002802 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 nback = gui_screenstr(off, idx, flags,
2804 (guicolor_T)0, (guicolor_T)0, back);
2805#else
2806 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2807 idx++)
2808 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002809 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2811 break;
2812 if (enc_dbcs == DBCS_JPNU)
2813 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002814 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 if (ScreenLines[off + idx] == 0x8e)
2816 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002817 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002819 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 }
2822 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2823 (guicolor_T)0, (guicolor_T)0, back);
2824#endif
2825 }
2826 if (nback == FAIL)
2827 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002828 // Must back up to start drawing where a bold or italic word
2829 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 off -= back;
2831 len += back;
2832 gui.col -= back;
2833 }
2834 else
2835 {
2836 off += idx;
2837 len -= idx;
2838 }
2839 back = 0;
2840 }
2841 }
2842
Bram Moolenaar30613902019-12-01 22:11:18 +01002843 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 gui.row = old_row;
2845 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002846 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847}
2848
2849 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002850gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851{
2852 if (count <= 0)
2853 return;
2854
2855 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002856 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 gui_clear_block(row, gui.scroll_region_left,
2858 gui.scroll_region_bot, gui.scroll_region_right);
2859 else
2860 {
2861 gui_mch_delete_lines(row, count);
2862
Bram Moolenaar30613902019-12-01 22:11:18 +01002863 // If the cursor was in the deleted lines it's now gone. If the
2864 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 if (gui.cursor_row >= row
2866 && gui.cursor_col >= gui.scroll_region_left
2867 && gui.cursor_col <= gui.scroll_region_right)
2868 {
2869 if (gui.cursor_row < row + count)
2870 gui.cursor_is_valid = FALSE;
2871 else if (gui.cursor_row <= gui.scroll_region_bot)
2872 gui.cursor_row -= count;
2873 }
2874 }
2875}
2876
2877 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002878gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879{
2880 if (count <= 0)
2881 return;
2882
2883 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002884 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 gui_clear_block(row, gui.scroll_region_left,
2886 gui.scroll_region_bot, gui.scroll_region_right);
2887 else
2888 {
2889 gui_mch_insert_lines(row, count);
2890
2891 if (gui.cursor_row >= gui.row
2892 && gui.cursor_col >= gui.scroll_region_left
2893 && gui.cursor_col <= gui.scroll_region_right)
2894 {
2895 if (gui.cursor_row <= gui.scroll_region_bot - count)
2896 gui.cursor_row += count;
2897 else if (gui.cursor_row <= gui.scroll_region_bot)
2898 gui.cursor_is_valid = FALSE;
2899 }
2900 }
2901}
2902
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002903#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002904/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002905 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2906 */
2907 static int
2908gui_wait_for_chars_3(
2909 long wtime,
2910 int *interrupted UNUSED,
2911 int ignore_input UNUSED)
2912{
2913 return gui_mch_wait_for_chars(wtime);
2914}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002915#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002916
2917/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002918 * Returns OK if a character was found to be available within the given time,
2919 * or FAIL otherwise.
2920 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002921 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002922gui_wait_for_chars_or_timer(
2923 long wtime,
2924 int *interrupted UNUSED,
2925 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002926{
2927#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002928 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2929 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002930#else
2931 return gui_mch_wait_for_chars(wtime);
2932#endif
2933}
2934
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935/*
2936 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002937 * "wtime" == -1 Wait forever.
2938 * "wtime" == 0 Don't wait.
2939 * "wtime" > 0 Wait wtime milliseconds for a character.
2940 *
2941 * Returns the number of characters read or zero when timed out or interrupted.
2942 * "buf" may be NULL, in which case a non-zero number is returned if characters
2943 * are available.
2944 */
2945 static int
2946gui_wait_for_chars_buf(
2947 char_u *buf,
2948 int maxlen,
2949 long wtime, // don't use "time", MIPS cannot handle it
2950 int tb_change_cnt)
2951{
2952 int retval;
2953
2954#ifdef FEAT_MENU
2955 // If we're going to wait a bit, update the menus and mouse shape for the
2956 // current State.
2957 if (wtime != 0)
2958 gui_update_menus(0);
2959#endif
2960
2961 gui_mch_update();
2962 if (input_available()) // Got char, return immediately
2963 {
2964 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2965 return read_from_input_buf(buf, (long)maxlen);
2966 return 0;
2967 }
2968 if (wtime == 0) // Don't wait for char
2969 return FAIL;
2970
2971 // Before waiting, flush any output to the screen.
2972 gui_mch_flush();
2973
2974 // Blink while waiting for a character.
2975 gui_mch_start_blink();
2976
2977 // Common function to loop until "wtime" is met, while handling timers and
2978 // other callbacks.
2979 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2980 gui_wait_for_chars_or_timer, NULL);
2981
2982 gui_mch_stop_blink(TRUE);
2983
2984 return retval;
2985}
2986
2987/*
2988 * Wait for a character from the keyboard without actually reading it.
2989 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 * wtime == -1 Wait forever.
2991 * wtime == 0 Don't wait.
2992 * wtime > 0 Wait wtime milliseconds for a character.
2993 * Returns OK if a character was found to be available within the given time,
2994 * or FAIL otherwise.
2995 */
2996 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002997gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002999 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000}
3001
3002/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003003 * Equivalent of mch_inchar() for the GUI.
3004 */
3005 int
3006gui_inchar(
3007 char_u *buf,
3008 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01003009 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003010 int tb_change_cnt)
3011{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003012 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003013}
3014
3015/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003016 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 */
3018 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003019fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020{
3021 p[0] = (char_u)(col / 128 + ' ' + 1);
3022 p[1] = (char_u)(col % 128 + ' ' + 1);
3023 p[2] = (char_u)(row / 128 + ' ' + 1);
3024 p[3] = (char_u)(row % 128 + ' ' + 1);
3025}
3026
3027/*
3028 * Generic mouse support function. Add a mouse event to the input buffer with
3029 * the given properties.
3030 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3031 * MOUSE_X1, MOUSE_X2
3032 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003033 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3034 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 * x, y --- Coordinates of mouse in pixels.
3036 * repeated_click --- TRUE if this click comes only a short time after a
3037 * previous click.
3038 * modifiers --- Bit field which may be any of the following modifiers
3039 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3040 * This function will ignore drag events where the mouse has not moved to a new
3041 * character.
3042 */
3043 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003044gui_send_mouse_event(
3045 int button,
3046 int x,
3047 int y,
3048 int repeated_click,
3049 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 static int prev_row = 0, prev_col = 0;
3052 static int prev_button = -1;
3053 static int num_clicks = 1;
3054 char_u string[10];
3055 enum key_extra button_char;
3056 int row, col;
3057#ifdef FEAT_CLIPBOARD
3058 int checkfor;
3059 int did_clip = FALSE;
3060#endif
3061
3062 /*
3063 * Scrolling may happen at any time, also while a selection is present.
3064 */
3065 switch (button)
3066 {
3067 case MOUSE_X1:
3068 button_char = KE_X1MOUSE;
3069 goto button_set;
3070 case MOUSE_X2:
3071 button_char = KE_X2MOUSE;
3072 goto button_set;
3073 case MOUSE_4:
3074 button_char = KE_MOUSEDOWN;
3075 goto button_set;
3076 case MOUSE_5:
3077 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003078 goto button_set;
3079 case MOUSE_6:
3080 button_char = KE_MOUSELEFT;
3081 goto button_set;
3082 case MOUSE_7:
3083 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084button_set:
3085 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003086 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 if (hold_gui_events)
3088 return;
3089
3090 string[3] = CSI;
3091 string[4] = KS_EXTRA;
3092 string[5] = (int)button_char;
3093
Bram Moolenaar30613902019-12-01 22:11:18 +01003094 // Pass the pointer coordinates of the scroll event so that we
3095 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 row = gui_xy2colrow(x, y, &col);
3097 string[6] = (char_u)(col / 128 + ' ' + 1);
3098 string[7] = (char_u)(col % 128 + ' ' + 1);
3099 string[8] = (char_u)(row / 128 + ' ' + 1);
3100 string[9] = (char_u)(row % 128 + ' ' + 1);
3101
3102 if (modifiers == 0)
3103 add_to_input_buf(string + 3, 7);
3104 else
3105 {
3106 string[0] = CSI;
3107 string[1] = KS_MODIFIER;
3108 string[2] = 0;
3109 if (modifiers & MOUSE_SHIFT)
3110 string[2] |= MOD_MASK_SHIFT;
3111 if (modifiers & MOUSE_CTRL)
3112 string[2] |= MOD_MASK_CTRL;
3113 if (modifiers & MOUSE_ALT)
3114 string[2] |= MOD_MASK_ALT;
3115 add_to_input_buf(string, 10);
3116 }
3117 return;
3118 }
3119 }
3120
3121#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003122 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 if (clip_star.state == SELECT_IN_PROGRESS)
3124 {
3125 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003126
3127 // A release event may still need to be sent if the position is equal.
3128 row = gui_xy2colrow(x, y, &col);
3129 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3130 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 }
3132
Bram Moolenaar30613902019-12-01 22:11:18 +01003133 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 switch (get_real_state())
3135 {
3136 case NORMAL_BUSY:
3137 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003138# ifdef FEAT_TERMINAL
3139 case TERMINAL:
3140# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 case NORMAL: checkfor = MOUSE_NORMAL; break;
3142 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003143 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 case REPLACE:
3145 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 case VREPLACE:
3147 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 case INSERT:
3149 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3150 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003151 case HITRETURN: // At the more- and hit-enter prompt pass the
3152 // mouse event for a click on or below the
3153 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 if (Y_2_ROW(y) >= msg_row)
3155 checkfor = MOUSE_NORMAL;
3156 else
3157 checkfor = MOUSE_RETURN;
3158 break;
3159
3160 /*
3161 * On the command line, use the clipboard selection on all lines
3162 * but the command line. But not when pasting.
3163 */
3164 case CMDLINE:
3165 case CMDLINE+LANGMAP:
3166 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3167 checkfor = MOUSE_NONE;
3168 else
3169 checkfor = MOUSE_COMMAND;
3170 break;
3171
3172 default:
3173 checkfor = MOUSE_NONE;
3174 break;
3175 };
3176
3177 /*
3178 * Allow clipboard selection of text on the command line in "normal"
3179 * modes. Don't do this when dragging the status line, or extending a
3180 * Visual selection.
3181 */
3182 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003183 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 && button != MOUSE_DRAG
3185# ifdef FEAT_MOUSESHAPE
3186 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188# endif
3189 )
3190 checkfor = MOUSE_NONE;
3191
3192 /*
3193 * Use modeless selection when holding CTRL and SHIFT pressed.
3194 */
3195 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3196 checkfor = MOUSE_NONEF;
3197
3198 /*
3199 * In Ex mode, always use modeless selection.
3200 */
3201 if (exmode_active)
3202 checkfor = MOUSE_NONE;
3203
3204 /*
3205 * If the mouse settings say to not use the mouse, use the modeless
3206 * selection. But if Visual is active, assume that only the Visual area
3207 * will be selected.
3208 * Exception: On the command line, both the selection is used and a mouse
3209 * key is send.
3210 */
3211 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3212 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003213 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3215 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216
3217 /*
3218 * When 'mousemodel' is "popup", shift-left is translated to right.
3219 * But not when also using Ctrl.
3220 */
3221 if (mouse_model_popup() && button == MOUSE_LEFT
3222 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3223 {
3224 button = MOUSE_RIGHT;
3225 modifiers &= ~ MOUSE_SHIFT;
3226 }
3227
Bram Moolenaar30613902019-12-01 22:11:18 +01003228 // If the selection is done, allow the right button to extend it.
3229 // If the selection is cleared, allow the right button to start it
3230 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (button == MOUSE_RIGHT)
3232 {
3233 if (clip_star.state == SELECT_CLEARED)
3234 {
3235 if (State & CMDLINE)
3236 {
3237 col = msg_col;
3238 row = msg_row;
3239 }
3240 else
3241 {
3242 col = curwin->w_wcol;
3243 row = curwin->w_wrow + W_WINROW(curwin);
3244 }
3245 clip_start_selection(col, row, FALSE);
3246 }
3247 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3248 repeated_click);
3249 did_clip = TRUE;
3250 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003251 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003252 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 {
3254 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3255 did_clip = TRUE;
3256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257
Bram Moolenaar30613902019-12-01 22:11:18 +01003258 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 if (button != MOUSE_MIDDLE)
3260 {
3261 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3262 return;
3263 if (checkfor != MOUSE_COMMAND)
3264 button = MOUSE_LEFT;
3265 }
3266 repeated_click = FALSE;
3267 }
3268
3269 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003270 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271#endif
3272
Bram Moolenaar30613902019-12-01 22:11:18 +01003273 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 if (hold_gui_events)
3275 return;
3276
3277 row = gui_xy2colrow(x, y, &col);
3278
3279 /*
3280 * If we are dragging and the mouse hasn't moved far enough to be on a
3281 * different character, then don't send an event to vim.
3282 */
3283 if (button == MOUSE_DRAG)
3284 {
3285 if (row == prev_row && col == prev_col)
3286 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003287 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 if (y < 0)
3289 row = -1;
3290 }
3291
3292 /*
3293 * If topline has changed (window scrolled) since the last click, reset
3294 * repeated_click, because we don't want starting Visual mode when
3295 * clicking on a different character in the text.
3296 */
3297 if (curwin->w_topline != gui_prev_topline
3298#ifdef FEAT_DIFF
3299 || curwin->w_topfill != gui_prev_topfill
3300#endif
3301 )
3302 repeated_click = FALSE;
3303
Bram Moolenaar30613902019-12-01 22:11:18 +01003304 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 string[1] = KS_MOUSE;
3306 string[2] = KE_FILLER;
3307 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3308 {
3309 if (repeated_click)
3310 {
3311 /*
3312 * Handle multiple clicks. They only count if the mouse is still
3313 * pointing at the same character.
3314 */
3315 if (button != prev_button || row != prev_row || col != prev_col)
3316 num_clicks = 1;
3317 else if (++num_clicks > 4)
3318 num_clicks = 1;
3319 }
3320 else
3321 num_clicks = 1;
3322 prev_button = button;
3323 gui_prev_topline = curwin->w_topline;
3324#ifdef FEAT_DIFF
3325 gui_prev_topfill = curwin->w_topfill;
3326#endif
3327
3328 string[3] = (char_u)(button | 0x20);
3329 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3330 }
3331 else
3332 string[3] = (char_u)button;
3333
3334 string[3] |= modifiers;
3335 fill_mouse_coord(string + 4, col, row);
3336 add_to_input_buf(string, 8);
3337
3338 if (row < 0)
3339 prev_row = 0;
3340 else
3341 prev_row = row;
3342 prev_col = col;
3343
3344 /*
3345 * We need to make sure this is cleared since Athena doesn't tell us when
3346 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3347 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003348#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 gui.dragged_sb = SBAR_NONE;
3350#endif
3351}
3352
3353/*
3354 * Convert x and y coordinate to column and row in text window.
3355 * Corrects for multi-byte character.
3356 * returns column in "*colp" and row as return value;
3357 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003358 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003359gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360{
3361 int col = check_col(X_2_COL(x));
3362 int row = check_row(Y_2_ROW(y));
3363
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 return row;
3366}
3367
3368#if defined(FEAT_MENU) || defined(PROTO)
3369/*
3370 * Callback function for when a menu entry has been selected.
3371 */
3372 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003373gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003375 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376
Bram Moolenaar30613902019-12-01 22:11:18 +01003377 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 if (hold_gui_events)
3379 return;
3380
3381 bytes[0] = CSI;
3382 bytes[1] = KS_MENU;
3383 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003384 add_to_input_buf(bytes, 3);
3385 add_long_to_buf((long_u)menu, bytes);
3386 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387}
3388#endif
3389
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003390static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003391
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392/*
3393 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003394 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 * in p_go.
3396 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003398gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003400#ifdef FEAT_GUI_DARKTHEME
3401 static int prev_dark_theme = -1;
3402 int using_dark_theme = FALSE;
3403#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404#ifdef FEAT_MENU
3405 static int prev_menu_is_active = -1;
3406#endif
3407#ifdef FEAT_TOOLBAR
3408 static int prev_toolbar = -1;
3409 int using_toolbar = FALSE;
3410#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003411#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003412 int using_tabline;
3413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414#ifdef FEAT_FOOTER
3415 static int prev_footer = -1;
3416 int using_footer = FALSE;
3417#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003418#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 static int prev_tearoff = -1;
3420 int using_tearoff = FALSE;
3421#endif
3422
3423 char_u *p;
3424 int i;
3425#ifdef FEAT_MENU
3426 int grey_old, grey_new;
3427 char_u *temp;
3428#endif
3429 win_T *wp;
3430 int need_set_size;
3431 int fix_size;
3432
3433#ifdef FEAT_MENU
3434 if (oldval != NULL && gui.in_use)
3435 {
3436 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003437 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 */
3439 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3440 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3441 if (grey_old != grey_new)
3442 {
3443 temp = p_go;
3444 p_go = oldval;
3445 gui_update_menus(MENU_ALL_MODES);
3446 p_go = temp;
3447 }
3448 }
3449 gui.menu_is_active = FALSE;
3450#endif
3451
3452 for (i = 0; i < 3; i++)
3453 gui.which_scrollbars[i] = FALSE;
3454 for (p = p_go; *p; p++)
3455 switch (*p)
3456 {
3457 case GO_LEFT:
3458 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3459 break;
3460 case GO_RIGHT:
3461 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3462 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 case GO_VLEFT:
3464 if (win_hasvertsplit())
3465 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3466 break;
3467 case GO_VRIGHT:
3468 if (win_hasvertsplit())
3469 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3470 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 case GO_BOT:
3472 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3473 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003474#ifdef FEAT_GUI_DARKTHEME
3475 case GO_DARKTHEME:
3476 using_dark_theme = TRUE;
3477 break;
3478#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479#ifdef FEAT_MENU
3480 case GO_MENUS:
3481 gui.menu_is_active = TRUE;
3482 break;
3483#endif
3484 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003485 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 break;
3487#ifdef FEAT_TOOLBAR
3488 case GO_TOOLBAR:
3489 using_toolbar = TRUE;
3490 break;
3491#endif
3492#ifdef FEAT_FOOTER
3493 case GO_FOOTER:
3494 using_footer = TRUE;
3495 break;
3496#endif
3497 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003498#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 using_tearoff = TRUE;
3500#endif
3501 break;
3502 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003503 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 break;
3505 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003506
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 if (gui.in_use)
3508 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003509 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003511
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003512#ifdef FEAT_GUI_DARKTHEME
3513 if (using_dark_theme != prev_dark_theme)
3514 {
3515 gui_mch_set_dark_theme(using_dark_theme);
3516 prev_dark_theme = using_dark_theme;
3517 }
3518#endif
3519
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003520#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003521 // Update the GUI tab line, it may appear or disappear. This may
3522 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003523 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003524 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003525 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003526 // We don't want a resize event change "Rows" here, save and
3527 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003528 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003529 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003530 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003531 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003532 if (using_tabline)
3533 fix_size = TRUE;
3534 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003535 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003536 }
3537#endif
3538
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 for (i = 0; i < 3; i++)
3540 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003541 // The scrollbar needs to be updated when it is shown/unshown and
3542 // when switching tab pages. But the size only changes when it's
3543 // shown/unshown. Thus we need two places to remember whether a
3544 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003545 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003546 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003547 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 {
3549 if (i == SBAR_BOTTOM)
3550 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3551 gui.which_scrollbars[i]);
3552 else
3553 {
3554 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003557 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3558 {
3559 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003560 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003561 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003562 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003563 if (gui.which_scrollbars[i])
3564 fix_size = TRUE;
3565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003567 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003568 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 }
3570
3571#ifdef FEAT_MENU
3572 if (gui.menu_is_active != prev_menu_is_active)
3573 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003574 // We don't want a resize event change "Rows" here, save and
3575 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 i = Rows;
3577 gui_mch_enable_menu(gui.menu_is_active);
3578 Rows = i;
3579 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003580 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 if (gui.menu_is_active)
3582 fix_size = TRUE;
3583 }
3584#endif
3585
3586#ifdef FEAT_TOOLBAR
3587 if (using_toolbar != prev_toolbar)
3588 {
3589 gui_mch_show_toolbar(using_toolbar);
3590 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003591 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 if (using_toolbar)
3593 fix_size = TRUE;
3594 }
3595#endif
3596#ifdef FEAT_FOOTER
3597 if (using_footer != prev_footer)
3598 {
3599 gui_mch_enable_footer(using_footer);
3600 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003601 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 if (using_footer)
3603 fix_size = TRUE;
3604 }
3605#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003606#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 if (using_tearoff != prev_tearoff)
3608 {
3609 gui_mch_toggle_tearoffs(using_tearoff);
3610 prev_tearoff = using_tearoff;
3611 }
3612#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003613 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003614 {
3615#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003616 long prev_Columns = Columns;
3617 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003618#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003619 // Adjust the size of the window to make the text area keep the
3620 // same size and to avoid that part of our window is off-screen
3621 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003622 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003623
3624#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003625 // GTK has the annoying habit of sending us resize events when
3626 // changing the window size ourselves. This mostly happens when
3627 // waiting for a character to arrive, quite unpredictably, and may
3628 // change Columns and Rows when we don't want it. Wait for a
3629 // character here to avoid this effect.
3630 // If you remove this, please test this command for resizing
3631 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3632 // Don't do this while starting up though.
3633 // Don't change Rows when adding menu/toolbar/tabline.
3634 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003635 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003636 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003637 if ((need_set_size & RESIZE_VERT) == 0)
3638 Rows = prev_Rows;
3639 if ((need_set_size & RESIZE_HOR) == 0)
3640 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003641#endif
3642 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003643 // When the console tabline appears or disappears the window positions
3644 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003645 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003646 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 }
3648}
3649
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003650#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3651/*
3652 * Return TRUE if the GUI is taking care of the tabline.
3653 * It may still be hidden if 'showtabline' is zero.
3654 */
3655 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003656gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003657{
3658 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3659}
3660
3661/*
3662 * Return TRUE if the GUI is showing the tabline.
3663 * This uses 'showtabline'.
3664 */
3665 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003666gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003667{
3668 if (!gui_use_tabline()
3669 || p_stal == 0
3670 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3671 return FALSE;
3672 return TRUE;
3673}
3674
3675/*
3676 * Update the tabline.
3677 * This may display/undisplay the tabline and update the labels.
3678 */
3679 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003680gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003681{
3682 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003683 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003684
3685 if (!gui.starting && starting == 0)
3686 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003687 // Updating the tabline uses direct GUI commands, flush
3688 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003689 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003690
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003691 if (!showit != !shown)
3692 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003693 if (showit != 0)
3694 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003695
Bram Moolenaar30613902019-12-01 22:11:18 +01003696 // When the tabs change from hidden to shown or from shown to
3697 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003698 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003699 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003700 }
3701}
3702
3703/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003704 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003705 */
3706 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003707get_tabline_label(
3708 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003709 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003710{
3711 int modified = FALSE;
3712 char_u buf[40];
3713 int wincount;
3714 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003715 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003716
Bram Moolenaar30613902019-12-01 22:11:18 +01003717 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003718 opt = (tooltip ? &p_gtt : &p_gtl);
3719 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003720 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003721 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003722 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003723 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003724 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003725 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3726 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003727
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003728 printer_page_num = tabpage_index(tp);
3729# ifdef FEAT_EVAL
3730 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003731 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003732# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003733 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003734 curtab->tp_firstwin = firstwin;
3735 curtab->tp_lastwin = lastwin;
3736 curtab->tp_curwin = curwin;
3737 save_curtab = curtab;
3738 curtab = tp;
3739 topframe = curtab->tp_topframe;
3740 firstwin = curtab->tp_firstwin;
3741 lastwin = curtab->tp_lastwin;
3742 curwin = curtab->tp_curwin;
3743 curbuf = curwin->w_buffer;
3744
Bram Moolenaar30613902019-12-01 22:11:18 +01003745 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003746 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003747 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003748 STRCPY(NameBuff, res);
3749
Bram Moolenaar30613902019-12-01 22:11:18 +01003750 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003751 curtab = save_curtab;
3752 topframe = curtab->tp_topframe;
3753 firstwin = curtab->tp_firstwin;
3754 lastwin = curtab->tp_lastwin;
3755 curwin = curtab->tp_curwin;
3756 curbuf = curwin->w_buffer;
3757
Bram Moolenaar53989552019-12-23 22:59:18 +01003758 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003759 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003760 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003761 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003762
Bram Moolenaar30613902019-12-01 22:11:18 +01003763 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3764 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003765 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003766 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003767 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003768 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003769 if (!tooltip)
3770 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003771
3772 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3773 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3774 if (bufIsChanged(wp->w_buffer))
3775 modified = TRUE;
3776 if (modified || wincount > 1)
3777 {
3778 if (wincount > 1)
3779 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3780 else
3781 buf[0] = NUL;
3782 if (modified)
3783 STRCAT(buf, "+");
3784 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003785 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003786 mch_memmove(NameBuff, buf, STRLEN(buf));
3787 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003788 }
3789}
3790
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003791/*
3792 * Send the event for clicking to select tab page "nr".
3793 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003794 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003795 */
3796 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003797send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003798{
3799 char_u string[3];
3800
3801 if (nr == tabpage_index(curtab))
3802 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003803
Bram Moolenaar30613902019-12-01 22:11:18 +01003804 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003805 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003806# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003807 || cmdwin_type != 0
3808# endif
3809 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003810 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003811 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003812 gui_mch_set_curtab(tabpage_index(curtab));
3813 return FALSE;
3814 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003815
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003816 string[0] = CSI;
3817 string[1] = KS_TABLINE;
3818 string[2] = KE_FILLER;
3819 add_to_input_buf(string, 3);
3820 string[0] = nr;
3821 add_to_input_buf_csi(string, 1);
3822 return TRUE;
3823}
3824
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003825/*
3826 * Send a tabline menu event
3827 */
3828 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003829send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003830{
3831 char_u string[3];
3832
Bram Moolenaar29547192018-12-11 20:39:19 +01003833 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003834 if (hold_gui_events)
3835 return;
3836
Bram Moolenaar29547192018-12-11 20:39:19 +01003837 // Cannot close the last tabpage.
3838 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3839 return;
3840
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003841 string[0] = CSI;
3842 string[1] = KS_TABMENU;
3843 string[2] = KE_FILLER;
3844 add_to_input_buf(string, 3);
3845 string[0] = tabidx;
3846 string[1] = (char_u)(long)event;
3847 add_to_input_buf_csi(string, 2);
3848}
3849
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851
3852/*
3853 * Scrollbar stuff:
3854 */
3855
Bram Moolenaare45828b2006-02-15 22:12:56 +00003856/*
3857 * Remove all scrollbars. Used before switching to another tab page.
3858 */
3859 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003860gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003861{
3862 int i;
3863 win_T *wp;
3864
3865 for (i = 0; i < 3; i++)
3866 {
3867 if (i == SBAR_BOTTOM)
3868 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3869 else
3870 {
3871 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003872 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003873 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003874 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003875 }
3876}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003877
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003879gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880{
3881 static int sbar_ident = 0;
3882
Bram Moolenaar30613902019-12-01 22:11:18 +01003883 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 sb->wp = wp;
3885 sb->type = type;
3886 sb->value = 0;
3887#ifdef FEAT_GUI_ATHENA
3888 sb->pixval = 0;
3889#endif
3890 sb->size = 1;
3891 sb->max = 1;
3892 sb->top = 0;
3893 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 sb->status_height = 0;
3896 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3897}
3898
3899/*
3900 * Find the scrollbar with the given index.
3901 */
3902 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003903gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904{
3905 win_T *wp;
3906
3907 if (gui.bottom_sbar.ident == ident)
3908 return &gui.bottom_sbar;
3909 FOR_ALL_WINDOWS(wp)
3910 {
3911 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3912 return &wp->w_scrollbars[SBAR_LEFT];
3913 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3914 return &wp->w_scrollbars[SBAR_RIGHT];
3915 }
3916 return NULL;
3917}
3918
3919/*
3920 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3921 *
3922 * For Win32, Macintosh and GTK+ 2:
3923 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3924 * you stop dragging the scrollbar. We get here each time the scrollbar is
3925 * dragged another pixel, but as far as the rest of vim goes, it thinks
3926 * we're just hanging in the call to DispatchMessage() in
3927 * process_message(). The DispatchMessage() call that hangs was passed a
3928 * mouse button click event in the scrollbar window. -- webb.
3929 *
3930 * Solution: Do the scrolling right here. But only when allowed.
3931 * Ignore the scrollbars while executing an external command or when there
3932 * are still characters to be processed.
3933 */
3934 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003935gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 int sb_num;
3939#ifdef USE_ON_FLY_SCROLL
3940 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942# ifdef FEAT_DIFF
3943 int old_topfill = curwin->w_topfill;
3944# endif
3945#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003946 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 int byte_count;
3948#endif
3949
3950 if (sb == NULL)
3951 return;
3952
Bram Moolenaar30613902019-12-01 22:11:18 +01003953 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 if (hold_gui_events)
3955 return;
3956
3957#ifdef FEAT_CMDWIN
3958 if (cmdwin_type != 0 && sb->wp != curwin)
3959 return;
3960#endif
3961
3962 if (still_dragging)
3963 {
3964 if (sb->wp == NULL)
3965 gui.dragged_sb = SBAR_BOTTOM;
3966 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3967 gui.dragged_sb = SBAR_LEFT;
3968 else
3969 gui.dragged_sb = SBAR_RIGHT;
3970 gui.dragged_wp = sb->wp;
3971 }
3972 else
3973 {
3974 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003975#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003976 // Keep the "dragged_wp" value until after the scrolling, for when the
3977 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 gui.dragged_wp = NULL;
3979#endif
3980 }
3981
Bram Moolenaar30613902019-12-01 22:11:18 +01003982 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 if (sb->wp != NULL)
3984 sb = &sb->wp->w_scrollbars[0];
3985
3986 /*
3987 * Check validity of value
3988 */
3989 if (value < 0)
3990 value = 0;
3991#ifdef SCROLL_PAST_END
3992 else if (value > sb->max)
3993 value = sb->max;
3994#else
3995 if (value > sb->max - sb->size + 1)
3996 value = sb->max - sb->size + 1;
3997#endif
3998
3999 sb->value = value;
4000
4001#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004002 // When not allowed to do the scrolling right now, return.
4003 // This also checked input_available(), but that causes the first click in
4004 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004005 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 return;
4007#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004008 // Disallow scrolling the current window when the completion popup menu is
4009 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004010 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4011 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012
4013#ifdef FEAT_RIGHTLEFT
4014 if (sb->wp == NULL && curwin->w_p_rl)
4015 {
4016 value = sb->max + 1 - sb->size - value;
4017 if (value < 0)
4018 value = 0;
4019 }
4020#endif
4021
Bram Moolenaar30613902019-12-01 22:11:18 +01004022 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 {
4024 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4026 sb_num++;
4027 if (wp == NULL)
4028 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
4030#ifdef USE_ON_FLY_SCROLL
4031 current_scrollbar = sb_num;
4032 scrollbar_value = value;
4033 if (State & NORMAL)
4034 {
4035 gui_do_scroll();
4036 setcursor();
4037 }
4038 else if (State & INSERT)
4039 {
4040 ins_scroll();
4041 setcursor();
4042 }
4043 else if (State & CMDLINE)
4044 {
4045 if (msg_scrolled == 0)
4046 {
4047 gui_do_scroll();
4048 redrawcmdline();
4049 }
4050 }
4051# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004052 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 sb->value = sb->wp->w_topline - 1;
4054# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004055
Bram Moolenaar30613902019-12-01 22:11:18 +01004056 // When dragging one scrollbar and there is another one at the other
4057 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004058 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4059 gui_mch_set_scrollbar_thumb(
4060 &sb->wp->w_scrollbars[
4061 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4062 ? SBAR_LEFT : SBAR_RIGHT],
4063 sb->value, sb->size, sb->max);
4064
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065#else
4066 bytes[0] = CSI;
4067 bytes[1] = KS_VER_SCROLLBAR;
4068 bytes[2] = KE_FILLER;
4069 bytes[3] = (char_u)sb_num;
4070 byte_count = 4;
4071#endif
4072 }
4073 else
4074 {
4075#ifdef USE_ON_FLY_SCROLL
4076 scrollbar_value = value;
4077
4078 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004079 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 else if (State & INSERT)
4081 ins_horscroll();
4082 else if (State & CMDLINE)
4083 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004084 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004086 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 redrawcmdline();
4088 }
4089 }
4090 if (old_leftcol != curwin->w_leftcol)
4091 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004092 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 setcursor();
4094 }
4095#else
4096 bytes[0] = CSI;
4097 bytes[1] = KS_HOR_SCROLLBAR;
4098 bytes[2] = KE_FILLER;
4099 byte_count = 3;
4100#endif
4101 }
4102
4103#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 /*
4105 * synchronize other windows, as necessary according to 'scrollbind'
4106 */
4107 if (curwin->w_p_scb
4108 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4109 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004110# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004112# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 ))))
4114 {
4115 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004116 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004117 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 if (wp->w_redr_type > 0)
4119 updateWindow(wp);
4120 setcursor();
4121 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004122 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004124 add_to_input_buf(bytes, byte_count);
4125 add_long_to_buf((long_u)value, bytes);
4126 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127#endif
4128}
4129
4130/*
4131 * Scrollbar stuff:
4132 */
4133
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004134/*
4135 * Called when something in the window layout has changed.
4136 */
4137 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004138gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004139{
4140 if (gui.in_use && starting == 0)
4141 {
4142 out_flush();
4143 gui_init_which_components(NULL);
4144 gui_update_scrollbars(TRUE);
4145 }
4146 need_mouse_correct = TRUE;
4147}
4148
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004150gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004151 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152{
4153 win_T *wp;
4154 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004155 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 int which_sb;
4157 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159
Bram Moolenaar30613902019-12-01 22:11:18 +01004160 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 gui_update_horiz_scrollbar(force);
4162
Bram Moolenaar4f974752019-02-17 17:44:42 +01004163#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004164 // Return straight away if there is neither a left nor right scrollbar.
4165 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4167 return;
4168#endif
4169
4170 /*
4171 * Don't want to update a scrollbar while we're dragging it. But if we
4172 * have both a left and right scrollbar, and we drag one of them, we still
4173 * need to update the other one.
4174 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004175 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4176 && gui.which_scrollbars[SBAR_LEFT]
4177 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 {
4179 /*
4180 * If we have two scrollbars and one of them is being dragged, just
4181 * copy the scrollbar position from the dragged one to the other one.
4182 */
4183 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4184 if (gui.dragged_wp != NULL)
4185 gui_mch_set_scrollbar_thumb(
4186 &gui.dragged_wp->w_scrollbars[which_sb],
4187 gui.dragged_wp->w_scrollbars[0].value,
4188 gui.dragged_wp->w_scrollbars[0].size,
4189 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 }
4191
Bram Moolenaar30613902019-12-01 22:11:18 +01004192 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 ++hold_gui_events;
4194
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004195 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004197 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004199 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004200 if (!force && (gui.dragged_sb == SBAR_LEFT
4201 || gui.dragged_sb == SBAR_RIGHT)
4202 && gui.dragged_wp == wp)
4203 continue;
4204
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205#ifdef SCROLL_PAST_END
4206 max = wp->w_buffer->b_ml.ml_line_count - 1;
4207#else
4208 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4209#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004210 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 max = 0;
4212 val = wp->w_topline - 1;
4213 size = wp->w_height;
4214#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004215 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 val = max;
4217#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004218 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 size = max + 1;
4220 if (val > max - size + 1)
4221 val = max - size + 1;
4222#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004223 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 val = 0;
4225
4226 /*
4227 * Scrollbar at index 0 (the left one) contains all the information.
4228 * It would be the same info for left and right so we just store it for
4229 * one of them.
4230 */
4231 sb = &wp->w_scrollbars[0];
4232
4233 /*
4234 * Note: no check for valid w_botline. If it's not valid the
4235 * scrollbars will be updated later anyway.
4236 */
4237 if (size < 1 || wp->w_botline - 2 > max)
4238 {
4239 /*
4240 * This can happen during changing files. Just don't update the
4241 * scrollbar for now.
4242 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004243 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 if (gui.which_scrollbars[SBAR_LEFT])
4245 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4246 if (gui.which_scrollbars[SBAR_RIGHT])
4247 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4248 continue;
4249 }
4250 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 || sb->top != wp->w_winrow
4252 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004254 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004256 // Height, width or position of scrollbar has changed. For
4257 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 sb->top = wp->w_winrow;
4260 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262
Bram Moolenaar30613902019-12-01 22:11:18 +01004263 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 h = (sb->height + sb->status_height) * gui.char_height;
4265 y = sb->top * gui.char_height + gui.border_offset;
4266#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4267 if (gui.menu_is_active)
4268 y += gui.menu_height;
4269#endif
4270
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004271#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA) \
4272 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004274# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 y += gui.toolbar_height;
4276# else
4277# ifdef FEAT_GUI_MSWIN
4278 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4279# endif
4280# endif
4281#endif
4282
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004283#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004284 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004285 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004286#endif
4287
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004290 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 h += gui.border_offset;
4292 y -= gui.border_offset;
4293 }
4294 if (gui.which_scrollbars[SBAR_LEFT])
4295 {
4296 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4297 gui.left_sbar_x, y,
4298 gui.scrollbar_width, h);
4299 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4300 }
4301 if (gui.which_scrollbars[SBAR_RIGHT])
4302 {
4303 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4304 gui.right_sbar_x, y,
4305 gui.scrollbar_width, h);
4306 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4307 }
4308 }
4309
Bram Moolenaar30613902019-12-01 22:11:18 +01004310 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4311 // checking if the thumb moved at least a pixel. Only do this for
4312 // Athena, most other GUIs require the update anyway to make the
4313 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314#ifdef FEAT_GUI_ATHENA
4315 if (max == 0)
4316 y = 0;
4317 else
4318 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4319 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4320#else
4321 if (force || sb->value != val || sb->size != size || sb->max != max)
4322#endif
4323 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004324 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 sb->value = val;
4326#ifdef FEAT_GUI_ATHENA
4327 sb->pixval = y;
4328#endif
4329 sb->size = size;
4330 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004331 if (gui.which_scrollbars[SBAR_LEFT]
4332 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4334 val, size, max);
4335 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004336 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4338 val, size, max);
4339 }
4340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 --hold_gui_events;
4343}
4344
4345/*
4346 * Enable or disable a scrollbar.
4347 * Check for scrollbars for vertically split windows which are not enabled
4348 * sometimes.
4349 */
4350 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004351gui_do_scrollbar(
4352 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004353 int which, // SBAR_LEFT or SBAR_RIGHT
4354 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 int midcol = curwin->w_wincol + curwin->w_width / 2;
4357 int has_midcol = (wp->w_wincol <= midcol
4358 && wp->w_wincol + wp->w_width >= midcol);
4359
Bram Moolenaar30613902019-12-01 22:11:18 +01004360 // Only enable scrollbars that contain the middle column of the current
4361 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4363 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004364 // Scrollbars only on one side. Don't enable scrollbars that don't
4365 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 if (!has_midcol)
4367 enable = FALSE;
4368 }
4369 else
4370 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004371 // Scrollbars on both sides. Don't enable scrollbars that neither
4372 // contain the middle column of the current window nor are on the far
4373 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 if (midcol > Columns / 2)
4375 {
4376 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4377 enable = FALSE;
4378 }
4379 else
4380 {
4381 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4382 : !has_midcol)
4383 enable = FALSE;
4384 }
4385 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4387}
4388
4389/*
4390 * Scroll a window according to the values set in the globals current_scrollbar
4391 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4392 * or FALSE otherwise.
4393 */
4394 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004395gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396{
4397 win_T *wp, *save_wp;
4398 int i;
4399 long nlines;
4400 pos_T old_cursor;
4401 linenr_T old_topline;
4402#ifdef FEAT_DIFF
4403 int old_topfill;
4404#endif
4405
4406 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4407 if (wp == NULL)
4408 break;
4409 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004410 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 return FALSE;
4412
4413 /*
4414 * Compute number of lines to scroll. If zero, nothing to do.
4415 */
4416 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4417 if (nlines == 0)
4418 return FALSE;
4419
4420 save_wp = curwin;
4421 old_topline = wp->w_topline;
4422#ifdef FEAT_DIFF
4423 old_topfill = wp->w_topfill;
4424#endif
4425 old_cursor = wp->w_cursor;
4426 curwin = wp;
4427 curbuf = wp->w_buffer;
4428 if (nlines < 0)
4429 scrolldown(-nlines, gui.dragged_wp == NULL);
4430 else
4431 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004432 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4433 // the mouse-up event already, but we still want it to behave like when
4434 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 if (gui.dragged_sb == SBAR_NONE)
4436 gui.dragged_wp = NULL;
4437
4438 if (old_topline != wp->w_topline
4439#ifdef FEAT_DIFF
4440 || old_topfill != wp->w_topfill
4441#endif
4442 )
4443 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004444 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004446 cursor_correct(); // fix window for 'so'
4447 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 }
4449 if (old_cursor.lnum != wp->w_cursor.lnum)
4450 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 }
4453
Bram Moolenaar30613902019-12-01 22:11:18 +01004454 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004455 validate_cursor();
4456
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 curwin = save_wp;
4458 curbuf = save_wp->w_buffer;
4459
4460 /*
4461 * Don't call updateWindow() when nothing has changed (it will overwrite
4462 * the status line!).
4463 */
4464 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004465 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466#ifdef FEAT_DIFF
4467 || old_topfill != wp->w_topfill
4468#endif
4469 )
4470 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004471 int type = VALID;
4472
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004473 if (pum_visible())
4474 {
4475 type = NOT_VALID;
4476 wp->w_lines_valid = 0;
4477 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004478
Bram Moolenaar30613902019-12-01 22:11:18 +01004479 // Don't set must_redraw here, it may cause the popup menu to
4480 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004481 if (wp->w_redr_type < type)
4482 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004483 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004484 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004485 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 }
4487
Bram Moolenaar30613902019-12-01 22:11:18 +01004488 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004489 if (pum_visible())
4490 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004491
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004492 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493}
4494
4495
4496/*
4497 * Horizontal scrollbar stuff:
4498 */
4499
4500/*
4501 * Return length of line "lnum" for horizontal scrolling.
4502 */
4503 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004504scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505{
4506 char_u *p;
4507 colnr_T col;
4508 int w;
4509
4510 p = ml_get(lnum);
4511 col = 0;
4512 if (*p != NUL)
4513 for (;;)
4514 {
4515 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004516 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004517 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 break;
4519 col += w;
4520 }
4521 return col;
4522}
4523
Bram Moolenaar30613902019-12-01 22:11:18 +01004524// Remember which line is currently the longest, so that we don't have to
4525// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526static linenr_T longest_lnum = 0;
4527
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004528/*
4529 * Find longest visible line number. If this is not possible (or not desired,
4530 * by setting 'h' in "guioptions") then the current line number is returned.
4531 */
4532 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004533gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004534{
4535 linenr_T ret = 0;
4536
Bram Moolenaar30613902019-12-01 22:11:18 +01004537 // Calculate maximum for horizontal scrollbar. Check for reasonable
4538 // line numbers, topline and botline can be invalid when displaying is
4539 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004540 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4541 && curwin->w_topline <= curwin->w_cursor.lnum
4542 && curwin->w_botline > curwin->w_cursor.lnum
4543 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4544 {
4545 linenr_T lnum;
4546 colnr_T n;
4547 long max = 0;
4548
Bram Moolenaar30613902019-12-01 22:11:18 +01004549 // Use maximum of all visible lines. Remember the lnum of the
4550 // longest line, closest to the cursor line. Used when scrolling
4551 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004552 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4553 {
4554 n = scroll_line_len(lnum);
4555 if (n > (colnr_T)max)
4556 {
4557 max = n;
4558 ret = lnum;
4559 }
4560 else if (n == (colnr_T)max
4561 && abs((int)(lnum - curwin->w_cursor.lnum))
4562 < abs((int)(ret - curwin->w_cursor.lnum)))
4563 ret = lnum;
4564 }
4565 }
4566 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004567 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004568 ret = curwin->w_cursor.lnum;
4569
4570 return ret;
4571}
4572
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004574gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575{
Bram Moolenaar30613902019-12-01 22:11:18 +01004576 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577
4578 if (!gui.which_scrollbars[SBAR_BOTTOM])
4579 return;
4580
4581 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4582 return;
4583
4584 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4585 return;
4586
4587 /*
4588 * It is possible for the cursor to be invalid if we're in the middle of
4589 * something (like changing files). If so, don't do anything for now.
4590 */
4591 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4592 {
4593 gui.bottom_sbar.value = -1;
4594 return;
4595 }
4596
Bram Moolenaar02631462017-09-22 15:20:32 +02004597 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 if (curwin->w_p_wrap)
4599 {
4600 value = 0;
4601#ifdef SCROLL_PAST_END
4602 max = 0;
4603#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004604 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605#endif
4606 }
4607 else
4608 {
4609 value = curwin->w_leftcol;
4610
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004611 longest_lnum = gui_find_longest_lnum();
4612 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 if (virtual_active())
4615 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004616 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 if (curwin->w_virtcol >= (colnr_T)max)
4618 max = curwin->w_virtcol;
4619 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620
4621#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004622 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004624 // The line number isn't scrolled, thus there is less space when
4625 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 size -= curwin_col_off();
4627#ifndef SCROLL_PAST_END
4628 max -= curwin_col_off();
4629#endif
4630 }
4631
4632#ifndef SCROLL_PAST_END
4633 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004634 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635#endif
4636
4637#ifdef FEAT_RIGHTLEFT
4638 if (curwin->w_p_rl)
4639 {
4640 value = max + 1 - size - value;
4641 if (value < 0)
4642 {
4643 size += value;
4644 value = 0;
4645 }
4646 }
4647#endif
4648 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4649 && max == gui.bottom_sbar.max)
4650 return;
4651
4652 gui.bottom_sbar.value = value;
4653 gui.bottom_sbar.size = size;
4654 gui.bottom_sbar.max = max;
4655 gui.prev_wrap = curwin->w_p_wrap;
4656
4657 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4658}
4659
4660/*
4661 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4662 */
4663 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004664gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665{
Bram Moolenaar30613902019-12-01 22:11:18 +01004666 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 if (curwin->w_p_wrap)
4668 return FALSE;
4669
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004670 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 return FALSE;
4672
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004673 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674
Bram Moolenaar30613902019-12-01 22:11:18 +01004675 // When the line of the cursor is too short, move the cursor to the
4676 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004678 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004679 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004681 if (compute_longest_lnum)
4682 {
4683 curwin->w_cursor.lnum = gui_find_longest_lnum();
4684 curwin->w_cursor.col = 0;
4685 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004686 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004687 else if (longest_lnum >= curwin->w_topline
4688 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 {
4690 curwin->w_cursor.lnum = longest_lnum;
4691 curwin->w_cursor.col = 0;
4692 }
4693 }
4694
4695 return leftcol_changed();
4696}
4697
4698/*
4699 * Check that none of the colors are the same as the background color
4700 */
4701 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004702gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
4704 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4705 {
4706 gui_set_bg_color((char_u *)"White");
4707 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4708 gui_set_fg_color((char_u *)"Black");
4709 }
4710}
4711
Bram Moolenaar3918c952005-03-15 22:34:55 +00004712 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004713gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714{
4715 gui.norm_pixel = gui_get_color(name);
4716 hl_set_fg_color_name(vim_strsave(name));
4717}
4718
Bram Moolenaar3918c952005-03-15 22:34:55 +00004719 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004720gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721{
4722 gui.back_pixel = gui_get_color(name);
4723 hl_set_bg_color_name(vim_strsave(name));
4724}
4725
4726/*
4727 * Allocate a color by name.
4728 * Returns INVALCOLOR and gives an error message when failed.
4729 */
4730 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004731gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732{
4733 guicolor_T t;
4734
4735 if (*name == NUL)
4736 return INVALCOLOR;
4737 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004738
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004740#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 && gui.in_use
4742#endif
4743 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004744 semsg(_("E254: Cannot allocate color %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 return t;
4746}
4747
4748/*
4749 * Return the grey value of a color (range 0-255).
4750 */
4751 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004752gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004754 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004756 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004757 + (((rgb >> 8) & 0xff) * 587)
4758 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759}
4760
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004761 char_u *
4762gui_bg_default(void)
4763{
4764 if (gui_get_lightness(gui.back_pixel) < 127)
4765 return (char_u *)"dark";
4766 return (char_u *)"light";
4767}
4768
4769/*
4770 * Option initializations that can only be done after opening the GUI window.
4771 */
4772 void
4773init_gui_options(void)
4774{
Bram Moolenaar30613902019-12-01 22:11:18 +01004775 // Set the 'background' option according to the lightness of the
4776 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004777 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4778 {
4779 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4780 highlight_changed();
4781 }
4782}
4783
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784#if defined(FEAT_GUI_X11) || defined(PROTO)
4785 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004786gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787{
4788 win_T *wp;
4789
Bram Moolenaar30613902019-12-01 22:11:18 +01004790 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 if (!gui.in_use)
4792 return;
4793
4794 FOR_ALL_WINDOWS(wp)
4795 {
4796 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4797 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4798 }
4799 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4800}
4801#endif
4802
4803/*
4804 * Call this when focus has changed.
4805 */
4806 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004807gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808{
4809/*
4810 * Skip this code to avoid drawing the cursor when debugging and switching
4811 * between the debugger window and gvim.
4812 */
4813#if 1
4814 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004815 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816
4817# ifdef FEAT_XIM
4818 xim_set_focus(in_focus);
4819# endif
4820
Bram Moolenaar30613902019-12-01 22:11:18 +01004821 // Put events in the input queue only when allowed.
4822 // ui_focus_change() isn't called directly, because it invokes
4823 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004824 if (!hold_gui_events)
4825 {
4826 char_u bytes[3];
4827
4828 bytes[0] = CSI;
4829 bytes[1] = KS_EXTRA;
4830 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4831 add_to_input_buf(bytes, 3);
4832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833#endif
4834}
4835
4836/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004837 * When mouse moved: apply 'mousefocus'.
4838 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004840 static void
4841gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842{
4843 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004844 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
4846#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004847 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004848 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849#endif
4850
Bram Moolenaar30613902019-12-01 22:11:18 +01004851 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004853 && !hold_gui_events // not holding events
4854 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4855 && State != HITRETURN // but not hit-return prompt
4856 && msg_scrolled == 0 // no scrolled message
4857 && !need_mouse_correct // not moving the pointer
4858 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004860 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 if (x < 0 || x > Columns * gui.char_width)
4862 return;
4863#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004864 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865#endif
4866 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004867 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868
Bram Moolenaar30613902019-12-01 22:11:18 +01004869 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004870 if (Y_2_ROW(y) < tabline_height())
4871 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004872
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 /*
4874 * format a mouse click on status line input
4875 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004876 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4877 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 */
4879 if (finish_op)
4880 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004881 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 st[0] = ESC;
4883 add_to_input_buf(st, 1);
4884 }
4885 st[0] = CSI;
4886 st[1] = KS_MOUSE;
4887 st[2] = KE_FILLER;
4888 st[3] = (char_u)MOUSE_LEFT;
4889 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004890 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 wp->w_height + W_WINROW(wp));
4892
4893 add_to_input_buf(st, 8);
4894 st[3] = (char_u)MOUSE_RELEASE;
4895 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004897 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 if (gtk_main_level() > 0)
4899 gtk_main_quit();
4900#endif
4901 }
4902}
4903
4904/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004905 * Called when the mouse moved (but not when dragging).
4906 */
4907 void
4908gui_mouse_moved(int x, int y)
4909{
4910 // Ignore this while still starting up.
4911 if (!gui.in_use || gui.starting)
4912 return;
4913
4914 // apply 'mousefocus' and pointer shape
4915 gui_mouse_focus(x, y);
4916
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004917#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004918 if (popup_visible)
4919 // Generate a mouse-moved event, so that the popup can perhaps be
4920 // closed, just like in the terminal.
4921 gui_send_mouse_event(MOUSE_DRAG, x, y, FALSE, 0);
4922#endif
4923}
4924
4925/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004926 * Get the window where the mouse pointer is on.
4927 * Returns NULL if not found.
4928 */
4929 win_T *
4930gui_mouse_window(mouse_find_T popup)
4931{
4932 int x, y;
4933
4934 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4935 return NULL;
4936 gui_mch_getmouse(&x, &y);
4937
4938 // Only use the mouse when it's on the Vim window
4939 if (x >= 0 && x <= Columns * gui.char_width
4940 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4941 return xy2win(x, y, popup);
4942 return NULL;
4943}
4944
4945/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 * Called when mouse should be moved to window with focus.
4947 */
4948 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004949gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 win_T *wp = NULL;
4952
4953 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004954
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004955 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004956 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004958 validate_cline_row();
4959 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4960 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 }
4963}
4964
4965/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004966 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004967 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004970xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 int row;
4973 int col;
4974 win_T *wp;
4975
4976 row = Y_2_ROW(y);
4977 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004978 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004980 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004981 if (wp == NULL)
4982 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004983#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 if (State == HITRETURN || State == ASKMORE)
4985 {
4986 if (Y_2_ROW(y) >= msg_row)
4987 update_mouseshape(SHAPE_IDX_MOREL);
4988 else
4989 update_mouseshape(SHAPE_IDX_MORE);
4990 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004991 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004993 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004994 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004996 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004997 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 update_mouseshape(SHAPE_IDX_STATUS);
4999 else
5000 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005002 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003}
5004
5005/*
5006 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5007 * File names may be given to redefine the args list.
5008 */
5009 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005010ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011{
5012 char_u *arg = eap->arg;
5013
5014 /*
5015 * Check for "-f" argument: foreground, don't fork.
5016 * Also don't fork when started with "gvim -f".
5017 * Do fork when using "gui -b".
5018 */
5019 if (arg[0] == '-'
5020 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005021 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 {
5023 gui.dofork = (arg[1] == 'b');
5024 eap->arg = skipwhite(eap->arg + 2);
5025 }
5026 if (!gui.in_use)
5027 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005028#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005029 if (!gui.starting)
5030 {
5031 emsg(_(e_nogvim));
5032 return;
5033 }
5034#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005035 // Clear the command. Needed for when forking+exiting, to avoid part
5036 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005038#ifdef GUI_MAY_SPAWN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005039 if (!ends_excmd(*eap->arg))
5040 gui_start(eap->arg);
5041 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005042#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005043 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005044#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005045 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048 if (!ends_excmd(*eap->arg))
5049 ex_next(eap);
5050}
5051
Bram Moolenaar4f974752019-02-17 17:44:42 +01005052#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005053 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5054 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005055 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056/*
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005057 * This is shared between Athena, Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059
5060/*
5061 * Callback function for do_in_runtimepath().
5062 */
5063 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005064gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005066 char_u *gfp_buffer = cookie;
5067
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 if (STRLEN(fname) >= MAXPATHL)
5069 *gfp_buffer = NUL;
5070 else
5071 STRCPY(gfp_buffer, fname);
5072}
5073
5074/*
5075 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5076 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5077 */
5078 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005079gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080{
5081 if (STRLEN(name) > MAXPATHL - 14)
5082 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005083 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005084 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005085 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 return FAIL;
5087 return OK;
5088}
5089
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005090# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091/*
5092 * Given the name of the "icon=" argument, try finding the bitmap file for the
5093 * icon. If it is an absolute path name, use it as it is. Otherwise append
5094 * "ext" and search for it in 'runtimepath'.
5095 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5096 * contains "name".
5097 */
5098 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005099gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100{
5101 char_u buf[MAXPATHL + 1];
5102
5103 expand_env(name, buffer, MAXPATHL);
5104 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5105 STRCPY(buffer, buf);
5106}
5107# endif
5108#endif
5109
Bram Moolenaar9372a112005-12-06 19:59:18 +00005110#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005112display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113{
5114 char_u *p;
5115
5116 if (isatty(2))
5117 fflush(stderr);
5118 else if (error_ga.ga_data != NULL)
5119 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005120 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5122 if (!isspace(*p))
5123 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005124 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 if (STRLEN(p) > 2000)
5126 STRCPY(p + 2000 - 14, "...(truncated)");
5127 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005128 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 break;
5130 }
5131 ga_clear(&error_ga);
5132 }
5133}
5134#endif
5135
5136#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5137/*
5138 * Return TRUE if still starting up and there is no place to enter text.
5139 * For GTK and X11 we check if stderr is not a tty, which means we were
5140 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5141 * allow typing on stdin.
5142 */
5143 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005144no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145{
5146 return ((!gui.in_use || gui.starting)
5147# ifndef NO_CONSOLE
5148 && !isatty(0) && !isatty(2)
5149# endif
5150 );
5151}
5152#endif
5153
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005154#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005155 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005156 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157/*
5158 * Update the current window and the screen.
5159 */
5160 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005161gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005163# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005164 linenr_T conceal_old_cursor_line = 0;
5165 linenr_T conceal_new_cursor_line = 0;
5166 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005167# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005168
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 update_topline();
5170 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005171
Bram Moolenaar30613902019-12-01 22:11:18 +01005172 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005173 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005174# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005175 || popup_visible
5176# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005177# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005178 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005179# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005180 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005181 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005182 if (has_cursormoved())
5183 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005184#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005185 if (popup_visible)
5186 popup_check_cursor_pos();
5187#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005188# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005189 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005190 {
5191 conceal_old_cursor_line = last_cursormoved.lnum;
5192 conceal_new_cursor_line = curwin->w_cursor.lnum;
5193 conceal_update_lines = TRUE;
5194 }
5195# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005196 last_cursormoved = curwin->w_cursor;
5197 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005198
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005199# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005200 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005201 && (conceal_old_cursor_line != conceal_new_cursor_line
5202 || conceal_cursor_line(curwin)
5203 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005204 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005205 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005206 redrawWinline(curwin, conceal_old_cursor_line);
5207 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005208 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005209 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005210 }
5211# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005212 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005213 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005214 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215}
5216#endif
5217
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005218#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005219/*
5220 * Get the text to use in a find/replace dialog. Uses the last search pattern
5221 * if the argument is empty.
5222 * Returns an allocated string.
5223 */
5224 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005225get_find_dialog_text(
5226 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005227 int *wwordp, // return: TRUE if \< \> found
5228 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229{
5230 char_u *text;
5231
5232 if (*arg == NUL)
5233 text = last_search_pat();
5234 else
5235 text = arg;
5236 if (text != NULL)
5237 {
5238 text = vim_strsave(text);
5239 if (text != NULL)
5240 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005241 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 int i;
5243
Bram Moolenaar30613902019-12-01 22:11:18 +01005244 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5246 {
5247 mch_memmove(text, text + 2, (size_t)(len - 1));
5248 len -= 2;
5249 }
5250
Bram Moolenaar30613902019-12-01 22:11:18 +01005251 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5253 {
5254 *mcasep = (text[1] == 'C');
5255 mch_memmove(text, text + 2, (size_t)(len - 1));
5256 len -= 2;
5257 }
5258
Bram Moolenaar30613902019-12-01 22:11:18 +01005259 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 if (len >= 4
5261 && STRNCMP(text, "\\<", 2) == 0
5262 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5263 {
5264 *wwordp = TRUE;
5265 mch_memmove(text, text + 2, (size_t)(len - 4));
5266 text[len - 4] = NUL;
5267 }
5268
Bram Moolenaar30613902019-12-01 22:11:18 +01005269 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 for (i = 0; i + 1 < len; ++i)
5271 if (text[i] == '\\' && (text[i + 1] == '/'
5272 || text[i + 1] == '?'))
5273 {
5274 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5275 --len;
5276 }
5277 }
5278 }
5279 return text;
5280}
5281
5282/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 * Handle the press of a button in the find-replace dialog.
5284 * Return TRUE when something was added to the input buffer.
5285 */
5286 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005287gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005288 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005289 char_u *find_text,
5290 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005291 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292{
5293 garray_T ga;
5294 int i;
5295 int type = (flags & FRD_TYPE_MASK);
5296 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005297 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005298 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005299 static int busy = FALSE;
5300
Bram Moolenaar30613902019-12-01 22:11:18 +01005301 // When the screen is being updated we should not change buffers and
5302 // windows structures, it may cause freed memory to be used. Also don't
5303 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005304 if (updating_screen || busy)
5305 return FALSE;
5306
Bram Moolenaar30613902019-12-01 22:11:18 +01005307 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005308 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5309 return FALSE;
5310
5311 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312
5313 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005314 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 ga_concat(&ga, (char_u *)"%s/");
5316
5317 ga_concat(&ga, (char_u *)"\\V");
5318 if (flags & FRD_MATCH_CASE)
5319 ga_concat(&ga, (char_u *)"\\C");
5320 else
5321 ga_concat(&ga, (char_u *)"\\c");
5322 if (flags & FRD_WHOLE_WORD)
5323 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005324 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005325 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5326 if (p != NULL)
5327 ga_concat(&ga, p);
5328 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 if (flags & FRD_WHOLE_WORD)
5330 ga_concat(&ga, (char_u *)"\\>");
5331
5332 if (type == FRD_REPLACEALL)
5333 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005335 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005336 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5337 if (p != NULL)
5338 ga_concat(&ga, p);
5339 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005341 }
5342 ga_append(&ga, NUL);
5343
5344 if (type == FRD_REPLACE)
5345 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005346 // Do the replacement when the text at the cursor matches. Thus no
5347 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005348 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5349 regmatch.rm_ic = 0;
5350 if (regmatch.regprog != NULL)
5351 {
5352 p = ml_get_cursor();
5353 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5354 && regmatch.startp[0] == p)
5355 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005356 // Clear the command line to remove any old "No match"
5357 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005358 msg_end_prompt();
5359
5360 if (u_save_cursor() == OK)
5361 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005362 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005363 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005364
5365 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005366 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005367 ins_str(repl_text);
5368 }
5369 }
5370 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005371 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005372 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005373 }
5374 }
5375
5376 if (type == FRD_REPLACEALL)
5377 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005378 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005379 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 do_cmdline_cmd(ga.ga_data);
5381 }
5382 else
5383 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005384 int searchflags = SEARCH_MSG + SEARCH_MARK;
5385
Bram Moolenaar30613902019-12-01 22:11:18 +01005386 // Search for the next match.
5387 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005388 if (type == FRD_REPLACE)
5389 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005391 if (down)
5392 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005393 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005394 }
5395 else
5396 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005397 // We need to escape '?' if and only if we are searching in the up
5398 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005399 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5400 if (p != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01005401 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005402 vim_free(p);
5403 }
5404
Bram Moolenaar30613902019-12-01 22:11:18 +01005405 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 }
5407
Bram Moolenaar30613902019-12-01 22:11:18 +01005408 // Don't want to pass did_emsg to other code, it may cause disabling
5409 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005410 did_emsg = save_did_emsg;
5411
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 if (State & (NORMAL | INSERT))
5413 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005414 gui_update_screen(); // update the screen
5415 msg_didout = 0; // overwrite any message
5416 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 }
5418
5419 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005420 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 return (ga.ga_len > 0);
5422}
5423
5424#endif
5425
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005426#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427/*
5428 * Jump to the window at specified point (x, y).
5429 */
5430 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005431gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432{
5433 int row = Y_2_ROW(y);
5434 int col = X_2_COL(x);
5435 win_T *wp;
5436
5437 if (row >= 0 && col >= 0)
5438 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005439 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 if (wp != NULL && wp != curwin)
5441 win_goto(wp);
5442 }
5443}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
5445/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005446 * Function passed to handle_drop() for the actions to be done after the
5447 * argument list has been updated.
5448 */
5449 static void
5450drop_callback(void *cookie)
5451{
5452 char_u *p = cookie;
5453
Bram Moolenaar30613902019-12-01 22:11:18 +01005454 // If Shift held down, change to first file's directory. If the first
5455 // item is a directory, change to that directory (and let the explorer
5456 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005457 if (p != NULL)
5458 {
5459 if (mch_isdir(p))
5460 {
5461 if (mch_chdir((char *)p) == 0)
5462 shorten_fnames(TRUE);
5463 }
5464 else if (vim_chdirfile(p, "drop") == OK)
5465 shorten_fnames(TRUE);
5466 vim_free(p);
5467 }
5468
Bram Moolenaar30613902019-12-01 22:11:18 +01005469 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005470 update_screen(NOT_VALID);
5471# ifdef FEAT_MENU
5472 gui_update_menus(0);
5473# endif
5474#ifdef FEAT_TITLE
5475 maketitle();
5476#endif
5477 setcursor();
5478 out_flush_cursor(FALSE, FALSE);
5479}
5480
5481/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 * Process file drop. Mouse cursor position, key modifiers, name of files
5483 * and count of files are given. Argument "fnames[count]" has full pathnames
5484 * of dropped files, they will be freed in this function, and caller can't use
5485 * fnames after call this function.
5486 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005488gui_handle_drop(
5489 int x UNUSED,
5490 int y UNUSED,
5491 int_u modifiers,
5492 char_u **fnames,
5493 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494{
5495 int i;
5496 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005497 static int entered = FALSE;
5498
5499 /*
5500 * This function is called by event handlers. Just in case we get a
5501 * second event before the first one is handled, ignore the second one.
5502 * Not sure if this can ever happen, just in case.
5503 */
5504 if (entered)
5505 return;
5506 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507
5508 /*
5509 * When the cursor is at the command line, add the file names to the
5510 * command line, don't edit the files.
5511 */
5512 if (State & CMDLINE)
5513 {
5514 shorten_filenames(fnames, count);
5515 for (i = 0; i < count; ++i)
5516 {
5517 if (fnames[i] != NULL)
5518 {
5519 if (i > 0)
5520 add_to_input_buf((char_u*)" ", 1);
5521
Bram Moolenaar30613902019-12-01 22:11:18 +01005522 // We don't know what command is used thus we can't be sure
5523 // about which characters need to be escaped. Only escape the
5524 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525# ifdef BACKSLASH_IN_FILENAME
5526 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5527# else
5528 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5529# endif
5530 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005531 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 vim_free(p);
5533 vim_free(fnames[i]);
5534 }
5535 }
5536 vim_free(fnames);
5537 }
5538 else
5539 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005540 // Go to the window under mouse cursor, then shorten given "fnames" by
5541 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 shorten_filenames(fnames, count);
5544
Bram Moolenaar30613902019-12-01 22:11:18 +01005545 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 if ((modifiers & MOUSE_SHIFT) != 0)
5547 p = vim_strsave(fnames[0]);
5548 else
5549 p = NULL;
5550
Bram Moolenaar30613902019-12-01 22:11:18 +01005551 // Handle the drop, :edit or :split to get to the file. This also
5552 // frees fnames[]. Skip this if there is only one item, it's a
5553 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5555 && mch_isdir(fnames[0]))
5556 {
5557 vim_free(fnames[0]);
5558 vim_free(fnames);
5559 }
5560 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005561 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5562 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005564
5565 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566}
5567#endif