blob: dc408bb88d8dc69c14091841d37d5e100fa725a8 [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
Bram Moolenaarad772a62020-06-01 14:07:49 +0200806
807#ifndef FEAT_GUI_MSWIN
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200808 // In the GUI modifiers are prepended to keys.
Bram Moolenaarad772a62020-06-01 14:07:49 +0200809 // Don't do this for MS-Windows yet, it sends CTRL-K without the
810 // modifier.
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200811 seenModifyOtherKeys = TRUE;
Bram Moolenaarad772a62020-06-01 14:07:49 +0200812#endif
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000813
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
815 if (!im_xim_isvalid_imactivate())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100816 emsg(_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100818 // When 'cmdheight' was set during startup it may not have taken
819 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000820 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000821 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822
823 return;
824 }
825
826error2:
827#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100828 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 gui_mch_uninit();
830#endif
831
832error:
833 gui.in_use = FALSE;
834 clip_init(FALSE);
835}
836
837
838 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100839gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840{
Bram Moolenaar30613902019-12-01 22:11:18 +0100841 // don't free the fonts, it leads to a BUS error
842 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 gui.in_use = FALSE;
845 gui_mch_exit(rc);
846}
847
Bram Moolenaar9372a112005-12-06 19:59:18 +0000848#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000850# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851/*
852 * Called when the GUI shell is closed by the user. If there are no changed
853 * files Vim exits, otherwise there will be a dialog to ask the user what to
854 * do.
855 * When this function returns, Vim should NOT exit!
856 */
857 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100858gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
860 cmdmod_T save_cmdmod;
861
862 save_cmdmod = cmdmod;
863
Bram Moolenaar30613902019-12-01 22:11:18 +0100864 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 exiting = TRUE;
866# ifdef FEAT_BROWSE
867 cmdmod.browse = TRUE;
868# endif
869# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
870 cmdmod.confirm = TRUE;
871# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100872 // If there are changed buffers, present the user with a dialog if
873 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100874 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 getout(0);
876
877 exiting = FALSE;
878 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100879 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880}
881#endif
882
883/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200884 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * first font name that works is used. If none is found, use the default
886 * font.
887 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
888 * Return OK when able to set the font. When it failed FAIL is returned and
889 * the fonts are unchanged.
890 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100892gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894#define FONTLEN 320
895 char_u font_name[FONTLEN];
896 int font_list_empty = FALSE;
897 int ret = FAIL;
898
899 if (!gui.in_use)
900 return FAIL;
901
902 font_name[0] = NUL;
903 if (*font_list == NUL)
904 font_list_empty = TRUE;
905 else
906 {
907#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100908 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if (fontset)
910 ret = gui_mch_init_font(font_list, TRUE);
911 else
912#endif
913 while (*font_list != NUL)
914 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100915 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
917
Bram Moolenaar30613902019-12-01 22:11:18 +0100918 // Careful!!! The Win32 version of gui_mch_init_font(), when
919 // called with "*" will change p_guifont to the selected font
920 // name, which frees the old value. This makes font_list
921 // invalid. Thus when OK is returned here, font_list must no
922 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (gui_mch_init_font(font_name, FALSE) == OK)
924 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100925#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100926 // If it's a Unicode font, try setting 'guifontwide' to a
927 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
929 && strstr((char *)font_name, "10646") != NULL)
930 set_guifontwide(font_name);
931#endif
932 ret = OK;
933 break;
934 }
935 }
936 }
937
938 if (ret != OK
939 && STRCMP(font_list, "*") != 0
940 && (font_list_empty || gui.norm_font == NOFONT))
941 {
942 /*
943 * Couldn't load any font in 'font_list', keep the current font if
944 * there is one. If 'font_list' is empty, or if there is no current
945 * font, tell gui_mch_init_font() to try to find a font we can load.
946 */
947 ret = gui_mch_init_font(NULL, FALSE);
948 }
949
950 if (ret == OK)
951 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200952#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100953 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954# ifdef FEAT_XFONTSET
955 if (gui.fontset != NOFONTSET)
956 gui_mch_set_fontset(gui.fontset);
957 else
958# endif
959 gui_mch_set_font(gui.norm_font);
960#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100961 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963
964 return ret;
965}
966
Bram Moolenaar13505972019-01-24 15:04:48 +0100967#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968/*
969 * Try setting 'guifontwide' to a font twice as wide as "name".
970 */
971 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100972set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973{
974 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100975 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 char_u *wp = NULL;
977 char_u *p;
978 GuiFont font;
979
980 wp = wide_name;
981 for (p = name; *p != NUL; ++p)
982 {
983 *wp++ = *p;
984 if (*p == '-')
985 {
986 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100987 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 {
989 if (p[1] == '-')
990 *wp++ = '*';
991 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100992 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 {
994 ++p;
995 i = getdigits(&p);
996 if (i != 0)
997 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100998 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 sprintf((char *)wp, "%d%s", i * 2, p);
1000 font = gui_mch_get_font(wide_name, FALSE);
1001 if (font != NOFONT)
1002 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001003 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 gui.wide_font = font;
1005 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001006 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 }
1008 }
1009 break;
1010 }
1011 }
1012 }
1013}
Bram Moolenaar30613902019-12-01 22:11:18 +01001014#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016/*
1017 * Get the font for 'guifontwide'.
1018 * Return FAIL for an invalid font name.
1019 */
1020 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001021gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022{
1023 GuiFont font = NOFONT;
1024 char_u font_name[FONTLEN];
1025 char_u *p;
1026
Bram Moolenaar30613902019-12-01 22:11:18 +01001027 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1028 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1031 {
1032 for (p = p_guifontwide; *p != NUL; )
1033 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001034 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1036 font = gui_mch_get_font(font_name, FALSE);
1037 if (font != NOFONT)
1038 break;
1039 }
1040 if (font == NOFONT)
1041 return FAIL;
1042 }
1043
1044 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001045#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001046 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (font != NOFONT && gui.norm_font != NOFONT
1048 && pango_font_description_equal(font, gui.norm_font))
1049 {
1050 gui.wide_font = NOFONT;
1051 gui_mch_free_font(font);
1052 }
1053 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001054#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001056#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001057 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001058#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001059 /*
1060 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1061 * support those fonts for 'guifontwide'.
1062 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 return OK;
1065}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001067 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001068gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
1070 gui.row = row;
1071 gui.col = col;
1072}
1073
1074/*
1075 * gui_check_pos - check if the cursor is on the screen.
1076 */
1077 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001078gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079{
1080 if (gui.row >= screen_Rows)
1081 gui.row = screen_Rows - 1;
1082 if (gui.col >= screen_Columns)
1083 gui.col = screen_Columns - 1;
1084 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1085 gui.cursor_is_valid = FALSE;
1086}
1087
1088/*
1089 * Redraw the cursor if necessary or when forced.
1090 * Careful: The contents of ScreenLines[] must match what is on the screen,
1091 * otherwise this goes wrong. May need to call out_flush() first.
1092 */
1093 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001094gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001095 int force, // when TRUE, update even when not moved
1096 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097{
1098 int cur_width = 0;
1099 int cur_height = 0;
1100 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001101 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001103#ifdef FEAT_TERMINAL
1104 guicolor_T shape_fg = INVALCOLOR;
1105 guicolor_T shape_bg = INVALCOLOR;
1106#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001107 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1108 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 int attr;
1110 attrentry_T *aep = NULL;
1111
Bram Moolenaar30613902019-12-01 22:11:18 +01001112 // Don't update the cursor when halfway busy scrolling or the screen size
1113 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001114 if (!can_update_cursor || screen_Columns != gui.num_cols
1115 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 return;
1117
1118 gui_check_pos();
1119 if (!gui.cursor_is_valid || force
1120 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1121 {
1122 gui_undraw_cursor();
1123 if (gui.row < 0)
1124 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001125#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1127 im_set_position(gui.row, gui.col);
1128#endif
1129 gui.cursor_row = gui.row;
1130 gui.cursor_col = gui.col;
1131
Bram Moolenaar30613902019-12-01 22:11:18 +01001132 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 if (!screen_cleared || ScreenLines == NULL)
1134 return;
1135
Bram Moolenaar30613902019-12-01 22:11:18 +01001136 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 if (clear_selection)
1138 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001139 // Check that the cursor is inside the shell (resizing may have made
1140 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1142 return;
1143
1144 gui.cursor_is_valid = TRUE;
1145
1146 /*
1147 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001148 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001150#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001151 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001152 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001154#endif
1155 shape = &shape_table[get_shape_idx(FALSE)];
1156 if (State & LANGMAP)
1157 id = shape->id_lm;
1158 else
1159 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160
Bram Moolenaar30613902019-12-01 22:11:18 +01001161 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 cfg = INVALCOLOR;
1163 cbg = INVALCOLOR;
1164 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001165 gui_mch_set_blinking(shape->blinkwait,
1166 shape->blinkon,
1167 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001168 if (shape->blinkwait == 0 || shape->blinkon == 0
1169 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001170 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001171#ifdef FEAT_TERMINAL
1172 if (shape_bg != INVALCOLOR)
1173 {
1174 cattr = 0;
1175 cfg = shape_fg;
1176 cbg = shape_bg;
1177 }
1178 else
1179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 if (id > 0)
1181 {
1182 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001183#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 {
1185 static int iid;
1186 guicolor_T fg, bg;
1187
Bram Moolenaarc236c162008-07-13 17:41:49 +00001188 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001189# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001190 preedit_get_status()
1191# else
1192 im_get_status()
1193# endif
1194 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 {
1196 iid = syn_name2id((char_u *)"CursorIM");
1197 if (iid > 0)
1198 {
1199 syn_id2colors(iid, &fg, &bg);
1200 if (bg != INVALCOLOR)
1201 cbg = bg;
1202 if (fg != INVALCOLOR)
1203 cfg = fg;
1204 }
1205 }
1206 }
1207#endif
1208 }
1209
1210 /*
1211 * Get the attributes for the character under the cursor.
1212 * When no cursor color was given, use the character color.
1213 */
1214 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1215 if (attr > HL_ALL)
1216 aep = syn_gui_attr2entry(attr);
1217 if (aep != NULL)
1218 {
1219 attr = aep->ae_attr;
1220 if (cfg == INVALCOLOR)
1221 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1222 : aep->ae_u.gui.fg_color);
1223 if (cbg == INVALCOLOR)
1224 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1225 : aep->ae_u.gui.bg_color);
1226 }
1227 if (cfg == INVALCOLOR)
1228 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1229 if (cbg == INVALCOLOR)
1230 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1231
1232#ifdef FEAT_XIM
1233 if (aep != NULL)
1234 {
1235 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1236 : aep->ae_u.gui.bg_color);
1237 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1238 : aep->ae_u.gui.fg_color);
1239 if (xim_bg_color == INVALCOLOR)
1240 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1241 : gui.back_pixel;
1242 if (xim_fg_color == INVALCOLOR)
1243 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1244 : gui.norm_pixel;
1245 }
1246 else
1247 {
1248 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1249 : gui.back_pixel;
1250 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1251 : gui.norm_pixel;
1252 }
1253#endif
1254
1255 attr &= ~HL_INVERSE;
1256 if (cattr & HL_INVERSE)
1257 {
1258 cc = cbg;
1259 cbg = cfg;
1260 cfg = cc;
1261 }
1262 cattr &= ~HL_INVERSE;
1263
1264 /*
1265 * When we don't have window focus, draw a hollow cursor.
1266 */
1267 if (!gui.in_focus)
1268 {
1269 gui_mch_draw_hollow_cursor(cbg);
1270 return;
1271 }
1272
1273 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001274 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 {
1276 /*
1277 * Draw the text character with the cursor colors. Use the
1278 * character attributes plus the cursor attributes.
1279 */
1280 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001281 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1283 }
1284 else
1285 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001286#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 int col_off = FALSE;
1288#endif
1289 /*
1290 * First draw the partial cursor, then overwrite with the text
1291 * character, using a transparent background.
1292 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001293 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 {
1295 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001296 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 }
1298 else
1299 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001300 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 cur_width = gui.char_width;
1302 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001303 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1304 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001306 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001307 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001309#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 if (CURSOR_BAR_RIGHT)
1311 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001312 // gui.col points to the left halve of the character but
1313 // the vertical line needs to be on the right halve.
1314 // A double-wide horizontal line is also drawn from the
1315 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 col_off = TRUE;
1317 ++gui.col;
1318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001322#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (col_off)
1324 --gui.col;
1325#endif
1326
Bram Moolenaar30613902019-12-01 22:11:18 +01001327#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1329 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1330 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1331 (guicolor_T)0, (guicolor_T)0, 0);
1332#endif
1333 }
1334 gui.highlight_mask = old_hl_mask;
1335 }
1336}
1337
1338#if defined(FEAT_MENU) || defined(PROTO)
1339 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001340gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001342# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 if (gui.menu_is_active && gui.in_use)
1344 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1345# endif
1346}
1347#endif
1348
1349/*
1350 * Position the various GUI components (text area, menu). The vertical
1351 * scrollbars are NOT handled here. See gui_update_scrollbars().
1352 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001354gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355{
1356 int text_area_x;
1357 int text_area_y;
1358 int text_area_width;
1359 int text_area_height;
1360
Bram Moolenaar30613902019-12-01 22:11:18 +01001361 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 ++hold_gui_events;
1363
1364 text_area_x = 0;
1365 if (gui.which_scrollbars[SBAR_LEFT])
1366 text_area_x += gui.scrollbar_width;
1367
1368 text_area_y = 0;
1369#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1370 gui.menu_width = total_width;
1371 if (gui.menu_is_active)
1372 text_area_y += gui.menu_height;
1373#endif
1374#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1375 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1376 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1377#endif
1378
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001379# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001380 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001381 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001382 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001383#endif
1384
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001385#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1386 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1388 {
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001389# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 gui_mch_set_toolbar_pos(0, text_area_y,
1391 gui.menu_width, gui.toolbar_height);
1392# endif
1393 text_area_y += gui.toolbar_height;
1394 }
1395#endif
1396
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001397# if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
1398 gui_mch_set_tabline_pos(0, text_area_y,
1399 gui.menu_width, gui.tabline_height);
1400 if (gui_has_tabline())
1401 text_area_y += gui.tabline_height;
1402#endif
1403
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1405 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1406
1407 gui_mch_set_text_area_pos(text_area_x,
1408 text_area_y,
1409 text_area_width,
1410 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001411#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 + xim_get_status_area_height()
1413#endif
1414 );
1415#ifdef FEAT_MENU
1416 gui_position_menu();
1417#endif
1418 if (gui.which_scrollbars[SBAR_BOTTOM])
1419 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1420 text_area_x,
1421 text_area_y + text_area_height,
1422 text_area_width,
1423 gui.scrollbar_height);
1424 gui.left_sbar_x = 0;
1425 gui.right_sbar_x = text_area_x + text_area_width;
1426
1427 --hold_gui_events;
1428}
1429
Bram Moolenaar02743632005-07-25 20:42:36 +00001430/*
1431 * Get the width of the widgets and decorations to the side of the text area.
1432 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001434gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435{
1436 int base_width;
1437
1438 base_width = 2 * gui.border_offset;
1439 if (gui.which_scrollbars[SBAR_LEFT])
1440 base_width += gui.scrollbar_width;
1441 if (gui.which_scrollbars[SBAR_RIGHT])
1442 base_width += gui.scrollbar_width;
1443 return base_width;
1444}
1445
Bram Moolenaar02743632005-07-25 20:42:36 +00001446/*
1447 * Get the height of the widgets and decorations above and below the text area.
1448 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001450gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 int base_height;
1453
1454 base_height = 2 * gui.border_offset;
1455 if (gui.which_scrollbars[SBAR_BOTTOM])
1456 base_height += gui.scrollbar_height;
1457#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001458 // We can't take the sizes properly into account until anything is
1459 // realized. Therefore we recalculate all the values here just before
1460 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461#else
1462# ifdef FEAT_MENU
1463 if (gui.menu_is_active)
1464 base_height += gui.menu_height;
1465# endif
1466# ifdef FEAT_TOOLBAR
1467 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1468# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1469 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1470# else
1471 base_height += gui.toolbar_height;
1472# endif
1473# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001474# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001475 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001476 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001477 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479# ifdef FEAT_FOOTER
1480 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1481 base_height += gui.footer_height;
1482# endif
1483# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1484 base_height += gui_mch_text_area_extra_height();
1485# endif
1486#endif
1487 return base_height;
1488}
1489
1490/*
1491 * Should be called after the GUI shell has been resized. Its arguments are
1492 * the new width and height of the shell in pixels.
1493 */
1494 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001495gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496{
1497 static int busy = FALSE;
1498
Bram Moolenaar30613902019-12-01 22:11:18 +01001499 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 return;
1501
1502 /*
1503 * Can't resize the screen while it is being redrawn. Remember the new
1504 * size and handle it later.
1505 */
1506 if (updating_screen || busy)
1507 {
1508 new_pixel_width = pixel_width;
1509 new_pixel_height = pixel_height;
1510 return;
1511 }
1512
1513again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001514 new_pixel_width = 0;
1515 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 busy = TRUE;
1517
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001518#ifdef FEAT_GUI_HAIKU
1519 vim_lock_screen();
1520#endif
1521
Bram Moolenaar30613902019-12-01 22:11:18 +01001522 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 out_flush();
1524
1525 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001526 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
1528 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001530
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 /*
1532 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1533 * at the last line here (why does it have to be one row too low?).
1534 */
1535 if (State == ASKMORE || State == CONFIRM)
1536 gui.row = gui.num_rows;
1537
Bram Moolenaar30613902019-12-01 22:11:18 +01001538 // Only comparing Rows and Columns may be sufficient, but let's stay on
1539 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1541 || gui.num_rows != Rows || gui.num_cols != Columns)
1542 shell_resized();
1543
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001544#ifdef FEAT_GUI_HAIKU
1545 vim_unlock_screen();
1546#endif
1547
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 gui_update_scrollbars(TRUE);
1549 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001550#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 xim_set_status_area();
1552#endif
1553
1554 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001555
Bram Moolenaar30613902019-12-01 22:11:18 +01001556 // We may have been called again while redrawing the screen.
1557 // Need to do it all again with the latest size then. But only if the size
1558 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 if (new_pixel_height)
1560 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001561 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1562 {
1563 new_pixel_width = 0;
1564 new_pixel_height = 0;
1565 }
1566 else
1567 {
1568 pixel_width = new_pixel_width;
1569 pixel_height = new_pixel_height;
1570 goto again;
1571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573}
1574
1575/*
1576 * Check if gui_resize_shell() must be called.
1577 */
1578 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001579gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001582 // careful: gui_resize_shell() may postpone the resize again if we
1583 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001584 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585}
1586
1587 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001588gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589{
1590 Rows = gui.num_rows;
1591 Columns = gui.num_cols;
1592 return OK;
1593}
1594
1595/*
1596 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001597 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1598 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001599 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1600 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001603gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001604 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001605 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001606 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
1608 int base_width;
1609 int base_height;
1610 int width;
1611 int height;
1612 int min_width;
1613 int min_height;
1614 int screen_w;
1615 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001616#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001617 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001618 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001619#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001620 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
1622 if (!gui.shell_created)
1623 return;
1624
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001625#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001626 // If not setting to a user specified size and maximized, calculate the
1627 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001628 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1629 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 {
1631 gui_mch_newfont();
1632 return;
1633 }
1634#endif
1635
1636 base_width = gui_get_base_width();
1637 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001638 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001639 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001640 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001641
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001642 width = Columns * gui.char_width + base_width;
1643 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 if (fit_to_display)
1646 {
1647 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001648 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 {
1650 Columns = (screen_w - base_width) / gui.char_width;
1651 if (Columns < MIN_COLUMNS)
1652 Columns = MIN_COLUMNS;
1653 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001654#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001655 ++did_adjust;
1656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001658 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 {
1660 Rows = (screen_h - base_height) / gui.char_height;
1661 check_shellsize();
1662 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001663#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001664 ++did_adjust;
1665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001667#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001668 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1669 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001670 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001671 un_maximize = FALSE;
1672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001674 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 gui.num_cols = Columns;
1676 gui.num_rows = Rows;
1677
1678 min_width = base_width + MIN_COLUMNS * gui.char_width;
1679 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001680 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001681
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001682#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001683 if (un_maximize)
1684 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001685 // If the window size is smaller than the screen unmaximize the
1686 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001687 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1688 if ((width + gui.char_width < screen_w
1689 || height + gui.char_height * 2 < screen_h)
1690 && gui_mch_maximized())
1691 gui_mch_unmaximize();
1692 }
1693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694
1695 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001696 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001698 if (fit_to_display && x >= 0 && y >= 0)
1699 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001700 // Some window managers put the Vim window left of/above the screen.
1701 // Only change the position if it wasn't already negative before
1702 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 gui_mch_update();
1704 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1705 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1706 }
1707
1708 gui_position_components(width);
1709 gui_update_scrollbars(TRUE);
1710 gui_reset_scroll_region();
1711}
1712
1713/*
1714 * Called when Rows and/or Columns has changed.
1715 */
1716 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001717gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718{
1719 gui_reset_scroll_region();
1720}
1721
1722/*
1723 * Make scroll region cover whole screen.
1724 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001725 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001726gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727{
1728 gui.scroll_region_top = 0;
1729 gui.scroll_region_bot = gui.num_rows - 1;
1730 gui.scroll_region_left = 0;
1731 gui.scroll_region_right = gui.num_cols - 1;
1732}
1733
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001734 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001735gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736{
Bram Moolenaar30613902019-12-01 22:11:18 +01001737 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001739 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 gui.highlight_mask |= mask;
1741}
1742
1743 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001744gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745{
Bram Moolenaar30613902019-12-01 22:11:18 +01001746 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001748 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 gui.highlight_mask &= ~mask;
1750}
1751
1752/*
1753 * Clear a rectangular region of the screen from text pos (row1, col1) to
1754 * (row2, col2) inclusive.
1755 */
1756 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001757gui_clear_block(
1758 int row1,
1759 int col1,
1760 int row2,
1761 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762{
Bram Moolenaar30613902019-12-01 22:11:18 +01001763 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 clip_may_clear_selection(row1, row2);
1765
1766 gui_mch_clear_block(row1, col1, row2, col2);
1767
Bram Moolenaar30613902019-12-01 22:11:18 +01001768 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1770 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1771 gui.cursor_is_valid = FALSE;
1772}
1773
1774/*
1775 * Write code to update the cursor later. This avoids the need to flush the
1776 * output buffer before calling gui_update_cursor().
1777 */
1778 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001779gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001781 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782}
1783
1784 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001785gui_write(
1786 char_u *s,
1787 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
1789 char_u *p;
1790 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001791 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 int force_scrollbar = FALSE;
1793 static win_T *old_curwin = NULL;
1794
Bram Moolenaar30613902019-12-01 22:11:18 +01001795// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796#ifdef DEBUG_GUI_WRITE
1797 {
1798 int i;
1799 char_u *str;
1800
1801 printf("gui_write(%d):\n ", len);
1802 for (i = 0; i < len; i++)
1803 if (s[i] == ESC)
1804 {
1805 if (i != 0)
1806 printf("\n ");
1807 printf("<ESC>");
1808 }
1809 else
1810 {
1811 str = transchar_byte(s[i]);
1812 if (str[0] && str[1])
1813 printf("<%s>", (char *)str);
1814 else
1815 printf("%s", (char *)str);
1816 }
1817 printf("\n");
1818 }
1819#endif
1820 while (len)
1821 {
1822 if (s[0] == ESC && s[1] == '|')
1823 {
1824 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001825 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 {
1827 arg1 = getdigits(&p);
1828 if (p > s + len)
1829 break;
1830 if (*p == ';')
1831 {
1832 ++p;
1833 arg2 = getdigits(&p);
1834 if (p > s + len)
1835 break;
1836 }
1837 }
1838 switch (*p)
1839 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001840 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 clip_scroll_selection(9999);
1842 gui_mch_clear_all();
1843 gui.cursor_is_valid = FALSE;
1844 force_scrollbar = TRUE;
1845 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001846 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 gui_set_cursor(arg1, arg2);
1848 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001849 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 force_cursor = TRUE;
1851 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001852 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (arg1 < arg2)
1854 {
1855 gui.scroll_region_top = arg1;
1856 gui.scroll_region_bot = arg2;
1857 }
1858 else
1859 {
1860 gui.scroll_region_top = arg2;
1861 gui.scroll_region_bot = arg1;
1862 }
1863 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001864 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 if (arg1 < arg2)
1866 {
1867 gui.scroll_region_left = arg1;
1868 gui.scroll_region_right = arg2;
1869 }
1870 else
1871 {
1872 gui.scroll_region_left = arg2;
1873 gui.scroll_region_right = arg1;
1874 }
1875 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001876 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 gui_delete_lines(gui.row, 1);
1878 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001879 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 gui_delete_lines(gui.row, arg1);
1881 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001882 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 gui_insert_lines(gui.row, 1);
1884 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001885 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 gui_insert_lines(gui.row, arg1);
1887 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001888 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 gui_clear_block(gui.row, gui.col, gui.row,
1890 (int)Columns - 1);
1891 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001892 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 gui_start_highlight(arg1);
1894 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001895 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 gui_stop_highlight(arg1);
1897 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001898 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1900 break;
1901 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001902 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 break;
1904 }
1905 len -= (int)(++p - s);
1906 s = p;
1907 }
1908 else if (
1909#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001910 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001912 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913#endif
1914#ifdef FEAT_SIGN_ICONS
1915 && s[0] != SIGN_BYTE
1916# ifdef FEAT_NETBEANS_INTG
1917 && s[0] != MULTISIGN_BYTE
1918# endif
1919#endif
1920 )
1921 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001922 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 {
1924 gui.col = 0;
1925 if (gui.row < gui.scroll_region_bot)
1926 gui.row++;
1927 else
1928 gui_delete_lines(gui.scroll_region_top, 1);
1929 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001930 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 {
1932 gui.col = 0;
1933 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001934 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
1936 if (gui.col)
1937 --gui.col;
1938 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001939 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
1941 ++gui.col;
1942 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001943 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 {
1945 gui_mch_beep();
1946 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001947 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948
Bram Moolenaar30613902019-12-01 22:11:18 +01001949 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 ++s;
1951 }
1952 else
1953 {
1954 p = s;
1955 while (len > 0 && (
1956#ifdef EBCDIC
1957 CtrlChar(*p) == 0
1958#else
1959 *p >= 0x20
1960#endif
1961#ifdef FEAT_SIGN_ICONS
1962 || *p == SIGN_BYTE
1963# ifdef FEAT_NETBEANS_INTG
1964 || *p == MULTISIGN_BYTE
1965# endif
1966#endif
1967 ))
1968 {
1969 len--;
1970 p++;
1971 }
1972 gui_outstr(s, (int)(p - s));
1973 s = p;
1974 }
1975 }
1976
Bram Moolenaar30613902019-12-01 22:11:18 +01001977 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1978 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 if (force_cursor)
1980 gui_update_cursor(TRUE, TRUE);
1981
Bram Moolenaar30613902019-12-01 22:11:18 +01001982 // When switching to another window the dragging must have stopped.
1983 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (old_curwin != curwin)
1985 gui.dragged_sb = SBAR_NONE;
1986
Bram Moolenaar30613902019-12-01 22:11:18 +01001987 // Update the scrollbars after clearing the screen or when switched
1988 // to another window.
1989 // Update the horizontal scrollbar always, it's difficult to check all
1990 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 if (force_scrollbar || old_curwin != curwin)
1992 gui_update_scrollbars(force_scrollbar);
1993 else
1994 gui_update_horiz_scrollbar(FALSE);
1995 old_curwin = curwin;
1996
1997 /*
1998 * We need to make sure this is cleared since Athena doesn't tell us when
1999 * he is done dragging. Do the same for GTK.
2000 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00002001#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 gui.dragged_sb = SBAR_NONE;
2003#endif
2004
Bram Moolenaar30613902019-12-01 22:11:18 +01002005 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006}
2007
2008/*
2009 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2010 * produces wrong results. Call gui_dont_update_cursor() before that code and
2011 * gui_can_update_cursor() afterwards.
2012 */
2013 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002014gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
2016 if (gui.in_use)
2017 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002018 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002019 if (undraw)
2020 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 can_update_cursor = FALSE;
2022 }
2023}
2024
2025 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002026gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027{
2028 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002029 // No need to update the cursor right now, there is always more output
2030 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031}
2032
Bram Moolenaara338adc2018-01-31 20:51:47 +01002033/*
2034 * Disable issuing gui_mch_flush().
2035 */
2036 void
2037gui_disable_flush(void)
2038{
2039 ++disable_flush;
2040}
2041
2042/*
2043 * Enable issuing gui_mch_flush().
2044 */
2045 void
2046gui_enable_flush(void)
2047{
2048 --disable_flush;
2049}
2050
2051/*
2052 * Issue gui_mch_flush() if it is not disabled.
2053 */
2054 void
2055gui_may_flush(void)
2056{
2057 if (disable_flush == 0)
2058 gui_mch_flush();
2059}
2060
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002062gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063{
2064 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066
2067 if (len == 0)
2068 return;
2069
2070 if (len < 0)
2071 len = (int)STRLEN(s);
2072
2073 while (len > 0)
2074 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (has_mbyte)
2076 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002077 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 cells = 0;
2079 for (this_len = 0; this_len < len; )
2080 {
2081 cells += (*mb_ptr2cells)(s + this_len);
2082 if (gui.col + cells > Columns)
2083 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002084 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 }
2086 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002087 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 }
2089 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 if (gui.col + len > Columns)
2091 this_len = Columns - gui.col;
2092 else
2093 this_len = len;
2094
2095 (void)gui_outstr_nowrap(s, this_len,
2096 0, (guicolor_T)0, (guicolor_T)0, 0);
2097 s += this_len;
2098 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002099 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 if (len > 0 && gui.col < Columns)
2101 (void)gui_outstr_nowrap((char_u *)" ", 1,
2102 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002103 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 if (gui.col >= Columns)
2105 {
2106 gui.col = 0;
2107 gui.row++;
2108 }
2109 }
2110}
2111
2112/*
2113 * Output one character (may be one or two display cells).
2114 * Caller must check for valid "off".
2115 * Returns FAIL or OK, just like gui_outstr_nowrap().
2116 */
2117 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002118gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002119 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002120 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002121 guicolor_T fg, // colors for cursor
2122 guicolor_T bg, // colors for cursor
2123 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 char_u buf[MB_MAXBYTES + 1];
2126
Bram Moolenaar30613902019-12-01 22:11:18 +01002127 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 if (enc_utf8 && ScreenLines[off] == 0)
2129 return OK;
2130
2131 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002132 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2134 flags, fg, bg, back);
2135
2136 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2137 {
2138 buf[0] = ScreenLines[off];
2139 buf[1] = ScreenLines2[off];
2140 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2141 }
2142
Bram Moolenaar30613902019-12-01 22:11:18 +01002143 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002145 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147}
2148
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002149#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150/*
2151 * Output the string at the given screen position. This is used in place
2152 * of gui_screenchar() where possible because Pango needs as much context
2153 * as possible to work nicely. It's a lot faster as well.
2154 */
2155 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002156gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002157 int off, // Offset from start of screen
2158 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002159 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002160 guicolor_T fg, // colors for cursor
2161 guicolor_T bg, // colors for cursor
2162 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163{
2164 char_u *buf;
2165 int outlen = 0;
2166 int i;
2167 int retval;
2168
Bram Moolenaar30613902019-12-01 22:11:18 +01002169 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 return OK;
2171
2172 if (enc_utf8)
2173 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002174 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002176 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178 for (i = off; i < off + len; ++i)
2179 {
2180 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002181 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182
2183 if (ScreenLinesUC[i] == 0)
2184 buf[outlen++] = ScreenLines[i];
2185 else
2186 outlen += utfc_char2bytes(i, buf + outlen);
2187 }
2188
Bram Moolenaar30613902019-12-01 22:11:18 +01002189 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2191 vim_free(buf);
2192
2193 return retval;
2194 }
2195 else if (enc_dbcs == DBCS_JPNU)
2196 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002197 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002199 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200
2201 for (i = off; i < off + len; ++i)
2202 {
2203 buf[outlen++] = ScreenLines[i];
2204
Bram Moolenaar30613902019-12-01 22:11:18 +01002205 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 if (ScreenLines[i] == 0x8e)
2207 buf[outlen++] = ScreenLines2[i];
2208 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2209 buf[outlen++] = ScreenLines[++i];
2210 }
2211
Bram Moolenaar30613902019-12-01 22:11:18 +01002212 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2214 vim_free(buf);
2215
2216 return retval;
2217 }
2218 else
2219 {
2220 return gui_outstr_nowrap(&ScreenLines[off], len,
2221 flags, fg, bg, back);
2222 }
2223}
Bram Moolenaar30613902019-12-01 22:11:18 +01002224#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
2226/*
2227 * Output the given string at the current cursor position. If the string is
2228 * too long to fit on the line, then it is truncated.
2229 * "flags":
2230 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2231 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002232 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 * background.
2234 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2235 * it.
2236 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2237 * FAIL (the caller should start drawing "back" chars back).
2238 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002239 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002240gui_outstr_nowrap(
2241 char_u *s,
2242 int len,
2243 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002244 guicolor_T fg, // colors for cursor
2245 guicolor_T bg, // colors for cursor
2246 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247{
2248 long_u highlight_mask;
2249 long_u hl_mask_todo;
2250 guicolor_T fg_color;
2251 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002252 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002253#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002255 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256# ifdef FEAT_XFONTSET
2257 GuiFontset fontset = NOFONTSET;
2258# endif
2259#endif
2260 attrentry_T *aep = NULL;
2261 int draw_flags;
2262 int col = gui.col;
2263#ifdef FEAT_SIGN_ICONS
2264 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002265 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002266 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267# ifdef FEAT_NETBEANS_INTG
2268 int multi_sign = FALSE;
2269# endif
2270#endif
2271
2272 if (len < 0)
2273 len = (int)STRLEN(s);
2274 if (len == 0)
2275 return OK;
2276
2277#ifdef FEAT_SIGN_ICONS
2278 if (*s == SIGN_BYTE
2279# ifdef FEAT_NETBEANS_INTG
2280 || *s == MULTISIGN_BYTE
2281# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002282 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 {
2284# ifdef FEAT_NETBEANS_INTG
2285 if (*s == MULTISIGN_BYTE)
2286 multi_sign = TRUE;
2287# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002288 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002289 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2290 (curwin->w_p_nu || curwin->w_p_rnu))
2291 {
2292 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2293 s = extra;
2294 }
2295 else
2296 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 if (len == 1 && col > 0)
2298 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002299 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002300 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002301 // right align sign icon in the number column
2302 signcol = col + len - 3;
2303 else
2304 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 draw_sign = TRUE;
2306 highlight_mask = 0;
2307 }
2308 else
2309#endif
2310 if (gui.highlight_mask > HL_ALL)
2311 {
2312 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002313 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 highlight_mask = 0;
2315 else
2316 highlight_mask = aep->ae_attr;
2317 }
2318 else
2319 highlight_mask = gui.highlight_mask;
2320 hl_mask_todo = highlight_mask;
2321
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002322#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002323 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2325 font = aep->ae_u.gui.font;
2326# ifdef FEAT_XFONTSET
2327 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2328 fontset = aep->ae_u.gui.fontset;
2329# endif
2330 else
2331 {
2332# ifdef FEAT_XFONTSET
2333 if (gui.fontset != NOFONTSET)
2334 fontset = gui.fontset;
2335 else
2336# endif
2337 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2338 {
2339 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2340 {
2341 font = gui.boldital_font;
2342 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2343 }
2344 else if (gui.bold_font != NOFONT)
2345 {
2346 font = gui.bold_font;
2347 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2348 }
2349 else
2350 font = gui.norm_font;
2351 }
2352 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2353 {
2354 font = gui.ital_font;
2355 hl_mask_todo &= ~HL_ITALIC;
2356 }
2357 else
2358 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002359
Bram Moolenaardb250522013-06-17 22:43:25 +02002360 /*
2361 * Choose correct wide_font by font. wide_font should be set with font
2362 * at same time in above block. But it will make many "ifdef" nasty
2363 * blocks. So we do it here.
2364 */
2365 if (font == gui.boldital_font && gui.wide_boldital_font)
2366 wide_font = gui.wide_boldital_font;
2367 else if (font == gui.bold_font && gui.wide_bold_font)
2368 wide_font = gui.wide_bold_font;
2369 else if (font == gui.ital_font && gui.wide_ital_font)
2370 wide_font = gui.wide_ital_font;
2371 else if (font == gui.norm_font && gui.wide_font)
2372 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 }
2374# ifdef FEAT_XFONTSET
2375 if (fontset != NOFONTSET)
2376 gui_mch_set_fontset(fontset);
2377 else
2378# endif
2379 gui_mch_set_font(font);
2380#endif
2381
2382 draw_flags = 0;
2383
Bram Moolenaar30613902019-12-01 22:11:18 +01002384 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 bg_color = gui.back_pixel;
2386 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2387 {
2388 draw_flags |= DRAW_CURSOR;
2389 fg_color = fg;
2390 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002391 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 }
2393 else if (aep != NULL)
2394 {
2395 fg_color = aep->ae_u.gui.fg_color;
2396 if (fg_color == INVALCOLOR)
2397 fg_color = gui.norm_pixel;
2398 bg_color = aep->ae_u.gui.bg_color;
2399 if (bg_color == INVALCOLOR)
2400 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002401 sp_color = aep->ae_u.gui.sp_color;
2402 if (sp_color == INVALCOLOR)
2403 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 }
2405 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002406 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002408 sp_color = fg_color;
2409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410
2411 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2412 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002413#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 gui_mch_set_colors(bg_color, fg_color);
2415#else
2416 gui_mch_set_fg_color(bg_color);
2417 gui_mch_set_bg_color(fg_color);
2418#endif
2419 }
2420 else
2421 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002422#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 gui_mch_set_colors(fg_color, bg_color);
2424#else
2425 gui_mch_set_fg_color(fg_color);
2426 gui_mch_set_bg_color(bg_color);
2427#endif
2428 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002429 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430
Bram Moolenaar30613902019-12-01 22:11:18 +01002431 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 if (!(flags & GUI_MON_NOCLEAR))
2433 clip_may_clear_selection(gui.row, gui.row);
2434
2435
Bram Moolenaar30613902019-12-01 22:11:18 +01002436 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2438 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 /*
2441 * When drawing bold or italic characters the spill-over from the left
2442 * neighbor may be destroyed. Let the caller backup to start redrawing
2443 * just after a blank.
2444 */
2445 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2446 return FAIL;
2447
Bram Moolenaare60acc12011-05-10 16:41:25 +02002448#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002449 // If there's no italic font, then fake it.
2450 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (hl_mask_todo & HL_ITALIC)
2452 draw_flags |= DRAW_ITALIC;
2453
Bram Moolenaar30613902019-12-01 22:11:18 +01002454 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 if (hl_mask_todo & HL_UNDERLINE)
2456 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002457
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002459 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002460 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 draw_flags |= DRAW_UNDERL;
2462#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002463 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002464 if (hl_mask_todo & HL_UNDERCURL)
2465 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
Bram Moolenaar30613902019-12-01 22:11:18 +01002467 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002468 if (hl_mask_todo & HL_STRIKETHROUGH)
2469 draw_flags |= DRAW_STRIKE;
2470
Bram Moolenaar30613902019-12-01 22:11:18 +01002471 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 if (flags & GUI_MON_TRS_CURSOR)
2473 draw_flags |= DRAW_TRANSP;
2474
2475 /*
2476 * Draw the text.
2477 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002478#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002479 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2481#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 if (enc_utf8)
2483 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002484 int start; // index of bytes to be drawn
2485 int cells; // cellwidth of bytes to be drawn
2486 int thislen; // length of bytes to be drawn
2487 int cn; // cellwidth of current char
2488 int i; // index of current char
2489 int c; // current char value
2490 int cl; // byte length of current char
2491 int comping; // current char is composing
2492 int scol = col; // screen column
2493 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002494 int prev_wide = FALSE;
2495 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002496# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002497 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002498# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002499 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002500# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
Bram Moolenaar30613902019-12-01 22:11:18 +01002502 // Break the string at a composing character, it has to be drawn on
2503 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 start = 0;
2505 cells = 0;
2506 for (i = 0; i < len; i += cl)
2507 {
2508 c = utf_ptr2char(s + i);
2509 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002511 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002513 if (!comping || sep_comp)
2514 {
2515 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002516# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002517 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002518# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002519 && wide_font != NOFONT)
2520 curr_wide = TRUE;
2521 else
2522 curr_wide = FALSE;
2523 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002524 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002525 if (cl == 0) // hit end of string
2526 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
Bram Moolenaar45933962013-01-23 17:43:57 +01002528 wide_changed = curr_wide != prev_wide;
2529
Bram Moolenaar30613902019-12-01 22:11:18 +01002530 // Print the string so far if it's the last character or there is
2531 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002532 if (i + cl >= len || (comping && sep_comp && i > start)
2533 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002534# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002536# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002537 // No fontset: At least draw char after wide char at
2538 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002541 )
2542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 )
2544 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002545 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 thislen = i - start;
2547 else
2548 thislen = i - start + cl;
2549 if (thislen > 0)
2550 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002551 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002552 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2554 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002555 if (prev_wide)
2556 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 start += thislen;
2558 }
2559 scol += cells;
2560 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002561 // Adjust to not draw a character which width is changed
2562 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002563 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002565 scol -= cn;
2566 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568
Bram Moolenaar13505972019-01-24 15:04:48 +01002569# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002570 // No fontset: draw a space to fill the gap after a wide char
2571 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002573# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002575# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002576 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2578 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002579# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002581 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002582 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002584# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002585 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002586 gui_mch_draw_string(gui.row, scol, s + i, cl,
2587 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002588# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002589 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2590 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002591# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 start = i + cl;
2593 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002594 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002596 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 len = scol - col;
2598 }
2599 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 {
2601 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 if (enc_dbcs == DBCS_JPNU)
2603 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002604 // Get the length in display cells, this can be different from the
2605 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002606 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002609#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2612 gui.col = col + len;
2613
Bram Moolenaar30613902019-12-01 22:11:18 +01002614 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 if (flags & GUI_MON_NOCLEAR)
2616 clip_may_redraw_selection(gui.row, col, len);
2617
2618 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2619 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002620 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 if (gui.cursor_row == gui.row
2622 && gui.cursor_col >= col
2623 && gui.cursor_col < col + len)
2624 gui.cursor_is_valid = FALSE;
2625 }
2626
2627#ifdef FEAT_SIGN_ICONS
2628 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002629 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002630 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002631# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002632 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (multi_sign)
2634 netbeans_draw_multisign_indicator(gui.row);
2635# endif
2636#endif
2637
2638 return OK;
2639}
2640
2641/*
2642 * Un-draw the cursor. Actually this just redraws the character at the given
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002643 * position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 */
2645 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002646gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647{
2648 if (gui.cursor_is_valid)
2649 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002650 // Redraw the character just before too, if there is one, because with
2651 // some fonts and characters there can be a one pixel overlap.
2652 gui_redraw_block(gui.cursor_row,
2653 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col,
2654 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR);
2655
Bram Moolenaar54612582019-11-21 17:13:31 +01002656 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2657 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 gui.cursor_is_valid = FALSE;
2659 }
2660}
2661
2662 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002663gui_redraw(
2664 int x,
2665 int y,
2666 int w,
2667 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
2669 int row1, col1, row2, col2;
2670
2671 row1 = Y_2_ROW(y);
2672 col1 = X_2_COL(x);
2673 row2 = Y_2_ROW(y + h - 1);
2674 col2 = X_2_COL(x + w - 1);
2675
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002676 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677
2678 /*
2679 * We may need to redraw the cursor, but don't take it upon us to change
2680 * its location after a scroll.
2681 * (maybe be more strict even and test col too?)
2682 * These things may be outside the update/clipping region and reality may
2683 * not reflect Vims internal ideas if these operations are clipped away.
2684 */
2685 if (gui.row == gui.cursor_row)
2686 gui_update_cursor(TRUE, TRUE);
2687}
2688
2689/*
2690 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2691 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002693 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002694gui_redraw_block(
2695 int row1,
2696 int col1,
2697 int row2,
2698 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002699 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 int old_row, old_col;
2702 long_u old_hl_mask;
2703 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002704 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 int idx, len;
2706 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708
Bram Moolenaar30613902019-12-01 22:11:18 +01002709 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002711 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaar30613902019-12-01 22:11:18 +01002713 // Don't try to draw outside the shell!
2714 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 col1 = check_col(col1);
2716 col2 = check_col(col2);
2717 row1 = check_row(row1);
2718 row2 = check_row(row2);
2719
Bram Moolenaar30613902019-12-01 22:11:18 +01002720 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 old_row = gui.row;
2722 old_col = gui.col;
2723 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 orig_col1 = col1;
2725 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
2727 for (gui.row = row1; gui.row <= row2; gui.row++)
2728 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002729 // When only half of a double-wide character is in the block, include
2730 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 col1 = orig_col1;
2732 col2 = orig_col2;
2733 off = LineOffset[gui.row];
2734 if (enc_dbcs != 0)
2735 {
2736 if (col1 > 0)
2737 col1 -= dbcs_screen_head_off(ScreenLines + off,
2738 ScreenLines + off + col1);
2739 col2 += dbcs_screen_tail_off(ScreenLines + off,
2740 ScreenLines + off + col2);
2741 }
2742 else if (enc_utf8)
2743 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002744 if (ScreenLines[off + col1] == 0)
2745 {
2746 if (col1 > 0)
2747 --col1;
2748 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002749 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002750 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002751 // Make this IEMSGN when it no longer breaks Travis CI.
2752 vim_snprintf((char *)IObuff, IOSIZE,
2753 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2754 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002755 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002756 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002757 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002758#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2760 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 gui.col = col1;
2764 off = LineOffset[gui.row] + gui.col;
2765 len = col2 - col1 + 1;
2766
Bram Moolenaar30613902019-12-01 22:11:18 +01002767 // Find how many chars back this highlighting starts, or where a space
2768 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 for (back = 0; back < col1; ++back)
2770 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2771 || ScreenLines[off - 1 - back] == ' ')
2772 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773
Bram Moolenaar30613902019-12-01 22:11:18 +01002774 // Break it up in strings of characters with the same attributes.
2775 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 while (len > 0)
2777 {
2778 first_attr = ScreenAttrs[off];
2779 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002780#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 if (enc_utf8 && ScreenLinesUC[off] != 0)
2782 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002783 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 nback = gui_screenchar(off, flags,
2785 (guicolor_T)0, (guicolor_T)0, back);
2786 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2787 idx = 2;
2788 else
2789 idx = 1;
2790 }
2791 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2792 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002793 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 nback = gui_screenchar(off, flags,
2795 (guicolor_T)0, (guicolor_T)0, back);
2796 idx = 1;
2797 }
2798 else
2799#endif
2800 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002801#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 for (idx = 0; idx < len; ++idx)
2803 {
2804 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002805 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 if (ScreenAttrs[off + idx] != first_attr)
2807 break;
2808 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002809 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 nback = gui_screenstr(off, idx, flags,
2811 (guicolor_T)0, (guicolor_T)0, back);
2812#else
2813 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2814 idx++)
2815 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002816 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2818 break;
2819 if (enc_dbcs == DBCS_JPNU)
2820 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002821 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 if (ScreenLines[off + idx] == 0x8e)
2823 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002824 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002826 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 }
2829 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2830 (guicolor_T)0, (guicolor_T)0, back);
2831#endif
2832 }
2833 if (nback == FAIL)
2834 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002835 // Must back up to start drawing where a bold or italic word
2836 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 off -= back;
2838 len += back;
2839 gui.col -= back;
2840 }
2841 else
2842 {
2843 off += idx;
2844 len -= idx;
2845 }
2846 back = 0;
2847 }
2848 }
2849
Bram Moolenaar30613902019-12-01 22:11:18 +01002850 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 gui.row = old_row;
2852 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002853 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854}
2855
2856 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002857gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858{
2859 if (count <= 0)
2860 return;
2861
2862 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002863 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 gui_clear_block(row, gui.scroll_region_left,
2865 gui.scroll_region_bot, gui.scroll_region_right);
2866 else
2867 {
2868 gui_mch_delete_lines(row, count);
2869
Bram Moolenaar30613902019-12-01 22:11:18 +01002870 // If the cursor was in the deleted lines it's now gone. If the
2871 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 if (gui.cursor_row >= row
2873 && gui.cursor_col >= gui.scroll_region_left
2874 && gui.cursor_col <= gui.scroll_region_right)
2875 {
2876 if (gui.cursor_row < row + count)
2877 gui.cursor_is_valid = FALSE;
2878 else if (gui.cursor_row <= gui.scroll_region_bot)
2879 gui.cursor_row -= count;
2880 }
2881 }
2882}
2883
2884 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002885gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886{
2887 if (count <= 0)
2888 return;
2889
2890 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002891 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 gui_clear_block(row, gui.scroll_region_left,
2893 gui.scroll_region_bot, gui.scroll_region_right);
2894 else
2895 {
2896 gui_mch_insert_lines(row, count);
2897
2898 if (gui.cursor_row >= gui.row
2899 && gui.cursor_col >= gui.scroll_region_left
2900 && gui.cursor_col <= gui.scroll_region_right)
2901 {
2902 if (gui.cursor_row <= gui.scroll_region_bot - count)
2903 gui.cursor_row += count;
2904 else if (gui.cursor_row <= gui.scroll_region_bot)
2905 gui.cursor_is_valid = FALSE;
2906 }
2907 }
2908}
2909
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002910#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002911/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002912 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2913 */
2914 static int
2915gui_wait_for_chars_3(
2916 long wtime,
2917 int *interrupted UNUSED,
2918 int ignore_input UNUSED)
2919{
2920 return gui_mch_wait_for_chars(wtime);
2921}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002922#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002923
2924/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002925 * Returns OK if a character was found to be available within the given time,
2926 * or FAIL otherwise.
2927 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002928 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002929gui_wait_for_chars_or_timer(
2930 long wtime,
2931 int *interrupted UNUSED,
2932 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002933{
2934#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002935 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2936 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002937#else
2938 return gui_mch_wait_for_chars(wtime);
2939#endif
2940}
2941
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942/*
2943 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002944 * "wtime" == -1 Wait forever.
2945 * "wtime" == 0 Don't wait.
2946 * "wtime" > 0 Wait wtime milliseconds for a character.
2947 *
2948 * Returns the number of characters read or zero when timed out or interrupted.
2949 * "buf" may be NULL, in which case a non-zero number is returned if characters
2950 * are available.
2951 */
2952 static int
2953gui_wait_for_chars_buf(
2954 char_u *buf,
2955 int maxlen,
2956 long wtime, // don't use "time", MIPS cannot handle it
2957 int tb_change_cnt)
2958{
2959 int retval;
2960
2961#ifdef FEAT_MENU
2962 // If we're going to wait a bit, update the menus and mouse shape for the
2963 // current State.
2964 if (wtime != 0)
2965 gui_update_menus(0);
2966#endif
2967
2968 gui_mch_update();
2969 if (input_available()) // Got char, return immediately
2970 {
2971 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2972 return read_from_input_buf(buf, (long)maxlen);
2973 return 0;
2974 }
2975 if (wtime == 0) // Don't wait for char
2976 return FAIL;
2977
2978 // Before waiting, flush any output to the screen.
2979 gui_mch_flush();
2980
2981 // Blink while waiting for a character.
2982 gui_mch_start_blink();
2983
2984 // Common function to loop until "wtime" is met, while handling timers and
2985 // other callbacks.
2986 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2987 gui_wait_for_chars_or_timer, NULL);
2988
2989 gui_mch_stop_blink(TRUE);
2990
2991 return retval;
2992}
2993
2994/*
2995 * Wait for a character from the keyboard without actually reading it.
2996 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 * wtime == -1 Wait forever.
2998 * wtime == 0 Don't wait.
2999 * wtime > 0 Wait wtime milliseconds for a character.
3000 * Returns OK if a character was found to be available within the given time,
3001 * or FAIL otherwise.
3002 */
3003 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003004gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003006 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007}
3008
3009/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003010 * Equivalent of mch_inchar() for the GUI.
3011 */
3012 int
3013gui_inchar(
3014 char_u *buf,
3015 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01003016 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003017 int tb_change_cnt)
3018{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003019 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003020}
3021
3022/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003023 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 */
3025 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003026fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027{
3028 p[0] = (char_u)(col / 128 + ' ' + 1);
3029 p[1] = (char_u)(col % 128 + ' ' + 1);
3030 p[2] = (char_u)(row / 128 + ' ' + 1);
3031 p[3] = (char_u)(row % 128 + ' ' + 1);
3032}
3033
3034/*
3035 * Generic mouse support function. Add a mouse event to the input buffer with
3036 * the given properties.
3037 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3038 * MOUSE_X1, MOUSE_X2
3039 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003040 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3041 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 * x, y --- Coordinates of mouse in pixels.
3043 * repeated_click --- TRUE if this click comes only a short time after a
3044 * previous click.
3045 * modifiers --- Bit field which may be any of the following modifiers
3046 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3047 * This function will ignore drag events where the mouse has not moved to a new
3048 * character.
3049 */
3050 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003051gui_send_mouse_event(
3052 int button,
3053 int x,
3054 int y,
3055 int repeated_click,
3056 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057{
3058 static int prev_row = 0, prev_col = 0;
3059 static int prev_button = -1;
3060 static int num_clicks = 1;
3061 char_u string[10];
3062 enum key_extra button_char;
3063 int row, col;
3064#ifdef FEAT_CLIPBOARD
3065 int checkfor;
3066 int did_clip = FALSE;
3067#endif
3068
3069 /*
3070 * Scrolling may happen at any time, also while a selection is present.
3071 */
3072 switch (button)
3073 {
3074 case MOUSE_X1:
3075 button_char = KE_X1MOUSE;
3076 goto button_set;
3077 case MOUSE_X2:
3078 button_char = KE_X2MOUSE;
3079 goto button_set;
3080 case MOUSE_4:
3081 button_char = KE_MOUSEDOWN;
3082 goto button_set;
3083 case MOUSE_5:
3084 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003085 goto button_set;
3086 case MOUSE_6:
3087 button_char = KE_MOUSELEFT;
3088 goto button_set;
3089 case MOUSE_7:
3090 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091button_set:
3092 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003093 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 if (hold_gui_events)
3095 return;
3096
3097 string[3] = CSI;
3098 string[4] = KS_EXTRA;
3099 string[5] = (int)button_char;
3100
Bram Moolenaar30613902019-12-01 22:11:18 +01003101 // Pass the pointer coordinates of the scroll event so that we
3102 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 row = gui_xy2colrow(x, y, &col);
3104 string[6] = (char_u)(col / 128 + ' ' + 1);
3105 string[7] = (char_u)(col % 128 + ' ' + 1);
3106 string[8] = (char_u)(row / 128 + ' ' + 1);
3107 string[9] = (char_u)(row % 128 + ' ' + 1);
3108
3109 if (modifiers == 0)
3110 add_to_input_buf(string + 3, 7);
3111 else
3112 {
3113 string[0] = CSI;
3114 string[1] = KS_MODIFIER;
3115 string[2] = 0;
3116 if (modifiers & MOUSE_SHIFT)
3117 string[2] |= MOD_MASK_SHIFT;
3118 if (modifiers & MOUSE_CTRL)
3119 string[2] |= MOD_MASK_CTRL;
3120 if (modifiers & MOUSE_ALT)
3121 string[2] |= MOD_MASK_ALT;
3122 add_to_input_buf(string, 10);
3123 }
3124 return;
3125 }
3126 }
3127
3128#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003129 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 if (clip_star.state == SELECT_IN_PROGRESS)
3131 {
3132 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003133
3134 // A release event may still need to be sent if the position is equal.
3135 row = gui_xy2colrow(x, y, &col);
3136 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3137 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 }
3139
Bram Moolenaar30613902019-12-01 22:11:18 +01003140 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 switch (get_real_state())
3142 {
3143 case NORMAL_BUSY:
3144 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003145# ifdef FEAT_TERMINAL
3146 case TERMINAL:
3147# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 case NORMAL: checkfor = MOUSE_NORMAL; break;
3149 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003150 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 case REPLACE:
3152 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 case VREPLACE:
3154 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 case INSERT:
3156 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3157 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003158 case HITRETURN: // At the more- and hit-enter prompt pass the
3159 // mouse event for a click on or below the
3160 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 if (Y_2_ROW(y) >= msg_row)
3162 checkfor = MOUSE_NORMAL;
3163 else
3164 checkfor = MOUSE_RETURN;
3165 break;
3166
3167 /*
3168 * On the command line, use the clipboard selection on all lines
3169 * but the command line. But not when pasting.
3170 */
3171 case CMDLINE:
3172 case CMDLINE+LANGMAP:
3173 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3174 checkfor = MOUSE_NONE;
3175 else
3176 checkfor = MOUSE_COMMAND;
3177 break;
3178
3179 default:
3180 checkfor = MOUSE_NONE;
3181 break;
3182 };
3183
3184 /*
3185 * Allow clipboard selection of text on the command line in "normal"
3186 * modes. Don't do this when dragging the status line, or extending a
3187 * Visual selection.
3188 */
3189 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003190 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 && button != MOUSE_DRAG
3192# ifdef FEAT_MOUSESHAPE
3193 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195# endif
3196 )
3197 checkfor = MOUSE_NONE;
3198
3199 /*
3200 * Use modeless selection when holding CTRL and SHIFT pressed.
3201 */
3202 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3203 checkfor = MOUSE_NONEF;
3204
3205 /*
3206 * In Ex mode, always use modeless selection.
3207 */
3208 if (exmode_active)
3209 checkfor = MOUSE_NONE;
3210
3211 /*
3212 * If the mouse settings say to not use the mouse, use the modeless
3213 * selection. But if Visual is active, assume that only the Visual area
3214 * will be selected.
3215 * Exception: On the command line, both the selection is used and a mouse
3216 * key is send.
3217 */
3218 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3219 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003220 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3222 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223
3224 /*
3225 * When 'mousemodel' is "popup", shift-left is translated to right.
3226 * But not when also using Ctrl.
3227 */
3228 if (mouse_model_popup() && button == MOUSE_LEFT
3229 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3230 {
3231 button = MOUSE_RIGHT;
3232 modifiers &= ~ MOUSE_SHIFT;
3233 }
3234
Bram Moolenaar30613902019-12-01 22:11:18 +01003235 // If the selection is done, allow the right button to extend it.
3236 // If the selection is cleared, allow the right button to start it
3237 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 if (button == MOUSE_RIGHT)
3239 {
3240 if (clip_star.state == SELECT_CLEARED)
3241 {
3242 if (State & CMDLINE)
3243 {
3244 col = msg_col;
3245 row = msg_row;
3246 }
3247 else
3248 {
3249 col = curwin->w_wcol;
3250 row = curwin->w_wrow + W_WINROW(curwin);
3251 }
3252 clip_start_selection(col, row, FALSE);
3253 }
3254 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3255 repeated_click);
3256 did_clip = TRUE;
3257 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003258 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003259 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 {
3261 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3262 did_clip = TRUE;
3263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264
Bram Moolenaar30613902019-12-01 22:11:18 +01003265 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 if (button != MOUSE_MIDDLE)
3267 {
3268 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3269 return;
3270 if (checkfor != MOUSE_COMMAND)
3271 button = MOUSE_LEFT;
3272 }
3273 repeated_click = FALSE;
3274 }
3275
3276 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003277 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278#endif
3279
Bram Moolenaar30613902019-12-01 22:11:18 +01003280 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 if (hold_gui_events)
3282 return;
3283
3284 row = gui_xy2colrow(x, y, &col);
3285
3286 /*
3287 * If we are dragging and the mouse hasn't moved far enough to be on a
3288 * different character, then don't send an event to vim.
3289 */
3290 if (button == MOUSE_DRAG)
3291 {
3292 if (row == prev_row && col == prev_col)
3293 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003294 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 if (y < 0)
3296 row = -1;
3297 }
3298
3299 /*
3300 * If topline has changed (window scrolled) since the last click, reset
3301 * repeated_click, because we don't want starting Visual mode when
3302 * clicking on a different character in the text.
3303 */
3304 if (curwin->w_topline != gui_prev_topline
3305#ifdef FEAT_DIFF
3306 || curwin->w_topfill != gui_prev_topfill
3307#endif
3308 )
3309 repeated_click = FALSE;
3310
Bram Moolenaar30613902019-12-01 22:11:18 +01003311 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312 string[1] = KS_MOUSE;
3313 string[2] = KE_FILLER;
3314 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3315 {
3316 if (repeated_click)
3317 {
3318 /*
3319 * Handle multiple clicks. They only count if the mouse is still
3320 * pointing at the same character.
3321 */
3322 if (button != prev_button || row != prev_row || col != prev_col)
3323 num_clicks = 1;
3324 else if (++num_clicks > 4)
3325 num_clicks = 1;
3326 }
3327 else
3328 num_clicks = 1;
3329 prev_button = button;
3330 gui_prev_topline = curwin->w_topline;
3331#ifdef FEAT_DIFF
3332 gui_prev_topfill = curwin->w_topfill;
3333#endif
3334
3335 string[3] = (char_u)(button | 0x20);
3336 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3337 }
3338 else
3339 string[3] = (char_u)button;
3340
3341 string[3] |= modifiers;
3342 fill_mouse_coord(string + 4, col, row);
3343 add_to_input_buf(string, 8);
3344
3345 if (row < 0)
3346 prev_row = 0;
3347 else
3348 prev_row = row;
3349 prev_col = col;
3350
3351 /*
3352 * We need to make sure this is cleared since Athena doesn't tell us when
3353 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3354 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003355#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 gui.dragged_sb = SBAR_NONE;
3357#endif
3358}
3359
3360/*
3361 * Convert x and y coordinate to column and row in text window.
3362 * Corrects for multi-byte character.
3363 * returns column in "*colp" and row as return value;
3364 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003365 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003366gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367{
3368 int col = check_col(X_2_COL(x));
3369 int row = check_row(Y_2_ROW(y));
3370
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 return row;
3373}
3374
3375#if defined(FEAT_MENU) || defined(PROTO)
3376/*
3377 * Callback function for when a menu entry has been selected.
3378 */
3379 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003380gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003382 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383
Bram Moolenaar30613902019-12-01 22:11:18 +01003384 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 if (hold_gui_events)
3386 return;
3387
3388 bytes[0] = CSI;
3389 bytes[1] = KS_MENU;
3390 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003391 add_to_input_buf(bytes, 3);
3392 add_long_to_buf((long_u)menu, bytes);
3393 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394}
3395#endif
3396
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003397static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003398
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399/*
3400 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003401 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 * in p_go.
3403 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003405gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003407#ifdef FEAT_GUI_DARKTHEME
3408 static int prev_dark_theme = -1;
3409 int using_dark_theme = FALSE;
3410#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411#ifdef FEAT_MENU
3412 static int prev_menu_is_active = -1;
3413#endif
3414#ifdef FEAT_TOOLBAR
3415 static int prev_toolbar = -1;
3416 int using_toolbar = FALSE;
3417#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003418#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003419 int using_tabline;
3420#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421#ifdef FEAT_FOOTER
3422 static int prev_footer = -1;
3423 int using_footer = FALSE;
3424#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003425#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 static int prev_tearoff = -1;
3427 int using_tearoff = FALSE;
3428#endif
3429
3430 char_u *p;
3431 int i;
3432#ifdef FEAT_MENU
3433 int grey_old, grey_new;
3434 char_u *temp;
3435#endif
3436 win_T *wp;
3437 int need_set_size;
3438 int fix_size;
3439
3440#ifdef FEAT_MENU
3441 if (oldval != NULL && gui.in_use)
3442 {
3443 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003444 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 */
3446 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3447 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3448 if (grey_old != grey_new)
3449 {
3450 temp = p_go;
3451 p_go = oldval;
3452 gui_update_menus(MENU_ALL_MODES);
3453 p_go = temp;
3454 }
3455 }
3456 gui.menu_is_active = FALSE;
3457#endif
3458
3459 for (i = 0; i < 3; i++)
3460 gui.which_scrollbars[i] = FALSE;
3461 for (p = p_go; *p; p++)
3462 switch (*p)
3463 {
3464 case GO_LEFT:
3465 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3466 break;
3467 case GO_RIGHT:
3468 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3469 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 case GO_VLEFT:
3471 if (win_hasvertsplit())
3472 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3473 break;
3474 case GO_VRIGHT:
3475 if (win_hasvertsplit())
3476 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3477 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 case GO_BOT:
3479 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3480 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003481#ifdef FEAT_GUI_DARKTHEME
3482 case GO_DARKTHEME:
3483 using_dark_theme = TRUE;
3484 break;
3485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486#ifdef FEAT_MENU
3487 case GO_MENUS:
3488 gui.menu_is_active = TRUE;
3489 break;
3490#endif
3491 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003492 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 break;
3494#ifdef FEAT_TOOLBAR
3495 case GO_TOOLBAR:
3496 using_toolbar = TRUE;
3497 break;
3498#endif
3499#ifdef FEAT_FOOTER
3500 case GO_FOOTER:
3501 using_footer = TRUE;
3502 break;
3503#endif
3504 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003505#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 using_tearoff = TRUE;
3507#endif
3508 break;
3509 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003510 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 break;
3512 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003513
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 if (gui.in_use)
3515 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003516 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003518
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003519#ifdef FEAT_GUI_DARKTHEME
3520 if (using_dark_theme != prev_dark_theme)
3521 {
3522 gui_mch_set_dark_theme(using_dark_theme);
3523 prev_dark_theme = using_dark_theme;
3524 }
3525#endif
3526
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003527#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003528 // Update the GUI tab line, it may appear or disappear. This may
3529 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003530 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003531 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003532 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003533 // We don't want a resize event change "Rows" here, save and
3534 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003535 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003536 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003537 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003538 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003539 if (using_tabline)
3540 fix_size = TRUE;
3541 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003542 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003543 }
3544#endif
3545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 for (i = 0; i < 3; i++)
3547 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003548 // The scrollbar needs to be updated when it is shown/unshown and
3549 // when switching tab pages. But the size only changes when it's
3550 // shown/unshown. Thus we need two places to remember whether a
3551 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003552 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003553 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003554 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 {
3556 if (i == SBAR_BOTTOM)
3557 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3558 gui.which_scrollbars[i]);
3559 else
3560 {
3561 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003564 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3565 {
3566 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003567 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003568 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003569 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003570 if (gui.which_scrollbars[i])
3571 fix_size = TRUE;
3572 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003574 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003575 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 }
3577
3578#ifdef FEAT_MENU
3579 if (gui.menu_is_active != prev_menu_is_active)
3580 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003581 // We don't want a resize event change "Rows" here, save and
3582 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 i = Rows;
3584 gui_mch_enable_menu(gui.menu_is_active);
3585 Rows = i;
3586 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003587 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 if (gui.menu_is_active)
3589 fix_size = TRUE;
3590 }
3591#endif
3592
3593#ifdef FEAT_TOOLBAR
3594 if (using_toolbar != prev_toolbar)
3595 {
3596 gui_mch_show_toolbar(using_toolbar);
3597 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003598 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 if (using_toolbar)
3600 fix_size = TRUE;
3601 }
3602#endif
3603#ifdef FEAT_FOOTER
3604 if (using_footer != prev_footer)
3605 {
3606 gui_mch_enable_footer(using_footer);
3607 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003608 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (using_footer)
3610 fix_size = TRUE;
3611 }
3612#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003613#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 if (using_tearoff != prev_tearoff)
3615 {
3616 gui_mch_toggle_tearoffs(using_tearoff);
3617 prev_tearoff = using_tearoff;
3618 }
3619#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003620 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003621 {
3622#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003623 long prev_Columns = Columns;
3624 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003625#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003626 // Adjust the size of the window to make the text area keep the
3627 // same size and to avoid that part of our window is off-screen
3628 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003629 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003630
3631#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003632 // GTK has the annoying habit of sending us resize events when
3633 // changing the window size ourselves. This mostly happens when
3634 // waiting for a character to arrive, quite unpredictably, and may
3635 // change Columns and Rows when we don't want it. Wait for a
3636 // character here to avoid this effect.
3637 // If you remove this, please test this command for resizing
3638 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3639 // Don't do this while starting up though.
3640 // Don't change Rows when adding menu/toolbar/tabline.
3641 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003642 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003643 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003644 if ((need_set_size & RESIZE_VERT) == 0)
3645 Rows = prev_Rows;
3646 if ((need_set_size & RESIZE_HOR) == 0)
3647 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003648#endif
3649 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003650 // When the console tabline appears or disappears the window positions
3651 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003652 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003653 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 }
3655}
3656
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003657#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3658/*
3659 * Return TRUE if the GUI is taking care of the tabline.
3660 * It may still be hidden if 'showtabline' is zero.
3661 */
3662 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003663gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003664{
3665 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3666}
3667
3668/*
3669 * Return TRUE if the GUI is showing the tabline.
3670 * This uses 'showtabline'.
3671 */
3672 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003673gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003674{
3675 if (!gui_use_tabline()
3676 || p_stal == 0
3677 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3678 return FALSE;
3679 return TRUE;
3680}
3681
3682/*
3683 * Update the tabline.
3684 * This may display/undisplay the tabline and update the labels.
3685 */
3686 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003687gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003688{
3689 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003690 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691
3692 if (!gui.starting && starting == 0)
3693 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003694 // Updating the tabline uses direct GUI commands, flush
3695 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003696 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003697
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003698 if (!showit != !shown)
3699 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003700 if (showit != 0)
3701 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003702
Bram Moolenaar30613902019-12-01 22:11:18 +01003703 // When the tabs change from hidden to shown or from shown to
3704 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003705 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003706 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003707 }
3708}
3709
3710/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003711 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003712 */
3713 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003714get_tabline_label(
3715 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003716 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003717{
3718 int modified = FALSE;
3719 char_u buf[40];
3720 int wincount;
3721 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003722 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003723
Bram Moolenaar30613902019-12-01 22:11:18 +01003724 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003725 opt = (tooltip ? &p_gtt : &p_gtl);
3726 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003727 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003728 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003729 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003730 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003731 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003732 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3733 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003734
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003735 printer_page_num = tabpage_index(tp);
3736# ifdef FEAT_EVAL
3737 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003738 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003739# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003740 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003741 curtab->tp_firstwin = firstwin;
3742 curtab->tp_lastwin = lastwin;
3743 curtab->tp_curwin = curwin;
3744 save_curtab = curtab;
3745 curtab = tp;
3746 topframe = curtab->tp_topframe;
3747 firstwin = curtab->tp_firstwin;
3748 lastwin = curtab->tp_lastwin;
3749 curwin = curtab->tp_curwin;
3750 curbuf = curwin->w_buffer;
3751
Bram Moolenaar30613902019-12-01 22:11:18 +01003752 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003753 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003754 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003755 STRCPY(NameBuff, res);
3756
Bram Moolenaar30613902019-12-01 22:11:18 +01003757 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003758 curtab = save_curtab;
3759 topframe = curtab->tp_topframe;
3760 firstwin = curtab->tp_firstwin;
3761 lastwin = curtab->tp_lastwin;
3762 curwin = curtab->tp_curwin;
3763 curbuf = curwin->w_buffer;
3764
Bram Moolenaar53989552019-12-23 22:59:18 +01003765 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003766 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003767 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003768 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003769
Bram Moolenaar30613902019-12-01 22:11:18 +01003770 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3771 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003772 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003773 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003774 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003775 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003776 if (!tooltip)
3777 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003778
3779 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3780 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3781 if (bufIsChanged(wp->w_buffer))
3782 modified = TRUE;
3783 if (modified || wincount > 1)
3784 {
3785 if (wincount > 1)
3786 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3787 else
3788 buf[0] = NUL;
3789 if (modified)
3790 STRCAT(buf, "+");
3791 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003792 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003793 mch_memmove(NameBuff, buf, STRLEN(buf));
3794 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003795 }
3796}
3797
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003798/*
3799 * Send the event for clicking to select tab page "nr".
3800 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003801 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003802 */
3803 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003804send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003805{
3806 char_u string[3];
3807
3808 if (nr == tabpage_index(curtab))
3809 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003810
Bram Moolenaar30613902019-12-01 22:11:18 +01003811 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003812 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003813# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003814 || cmdwin_type != 0
3815# endif
3816 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003817 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003818 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003819 gui_mch_set_curtab(tabpage_index(curtab));
3820 return FALSE;
3821 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003822
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003823 string[0] = CSI;
3824 string[1] = KS_TABLINE;
3825 string[2] = KE_FILLER;
3826 add_to_input_buf(string, 3);
3827 string[0] = nr;
3828 add_to_input_buf_csi(string, 1);
3829 return TRUE;
3830}
3831
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003832/*
3833 * Send a tabline menu event
3834 */
3835 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003836send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003837{
3838 char_u string[3];
3839
Bram Moolenaar29547192018-12-11 20:39:19 +01003840 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003841 if (hold_gui_events)
3842 return;
3843
Bram Moolenaar29547192018-12-11 20:39:19 +01003844 // Cannot close the last tabpage.
3845 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3846 return;
3847
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003848 string[0] = CSI;
3849 string[1] = KS_TABMENU;
3850 string[2] = KE_FILLER;
3851 add_to_input_buf(string, 3);
3852 string[0] = tabidx;
3853 string[1] = (char_u)(long)event;
3854 add_to_input_buf_csi(string, 2);
3855}
3856
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858
3859/*
3860 * Scrollbar stuff:
3861 */
3862
Bram Moolenaare45828b2006-02-15 22:12:56 +00003863/*
3864 * Remove all scrollbars. Used before switching to another tab page.
3865 */
3866 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003867gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003868{
3869 int i;
3870 win_T *wp;
3871
3872 for (i = 0; i < 3; i++)
3873 {
3874 if (i == SBAR_BOTTOM)
3875 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3876 else
3877 {
3878 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003879 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003880 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003881 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003882 }
3883}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003884
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003886gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887{
3888 static int sbar_ident = 0;
3889
Bram Moolenaar30613902019-12-01 22:11:18 +01003890 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 sb->wp = wp;
3892 sb->type = type;
3893 sb->value = 0;
3894#ifdef FEAT_GUI_ATHENA
3895 sb->pixval = 0;
3896#endif
3897 sb->size = 1;
3898 sb->max = 1;
3899 sb->top = 0;
3900 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 sb->status_height = 0;
3903 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3904}
3905
3906/*
3907 * Find the scrollbar with the given index.
3908 */
3909 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003910gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911{
3912 win_T *wp;
3913
3914 if (gui.bottom_sbar.ident == ident)
3915 return &gui.bottom_sbar;
3916 FOR_ALL_WINDOWS(wp)
3917 {
3918 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3919 return &wp->w_scrollbars[SBAR_LEFT];
3920 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3921 return &wp->w_scrollbars[SBAR_RIGHT];
3922 }
3923 return NULL;
3924}
3925
3926/*
3927 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3928 *
3929 * For Win32, Macintosh and GTK+ 2:
3930 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3931 * you stop dragging the scrollbar. We get here each time the scrollbar is
3932 * dragged another pixel, but as far as the rest of vim goes, it thinks
3933 * we're just hanging in the call to DispatchMessage() in
3934 * process_message(). The DispatchMessage() call that hangs was passed a
3935 * mouse button click event in the scrollbar window. -- webb.
3936 *
3937 * Solution: Do the scrolling right here. But only when allowed.
3938 * Ignore the scrollbars while executing an external command or when there
3939 * are still characters to be processed.
3940 */
3941 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003942gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 int sb_num;
3946#ifdef USE_ON_FLY_SCROLL
3947 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949# ifdef FEAT_DIFF
3950 int old_topfill = curwin->w_topfill;
3951# endif
3952#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003953 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 int byte_count;
3955#endif
3956
3957 if (sb == NULL)
3958 return;
3959
Bram Moolenaar30613902019-12-01 22:11:18 +01003960 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 if (hold_gui_events)
3962 return;
3963
3964#ifdef FEAT_CMDWIN
3965 if (cmdwin_type != 0 && sb->wp != curwin)
3966 return;
3967#endif
3968
3969 if (still_dragging)
3970 {
3971 if (sb->wp == NULL)
3972 gui.dragged_sb = SBAR_BOTTOM;
3973 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3974 gui.dragged_sb = SBAR_LEFT;
3975 else
3976 gui.dragged_sb = SBAR_RIGHT;
3977 gui.dragged_wp = sb->wp;
3978 }
3979 else
3980 {
3981 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003982#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003983 // Keep the "dragged_wp" value until after the scrolling, for when the
3984 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 gui.dragged_wp = NULL;
3986#endif
3987 }
3988
Bram Moolenaar30613902019-12-01 22:11:18 +01003989 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 if (sb->wp != NULL)
3991 sb = &sb->wp->w_scrollbars[0];
3992
3993 /*
3994 * Check validity of value
3995 */
3996 if (value < 0)
3997 value = 0;
3998#ifdef SCROLL_PAST_END
3999 else if (value > sb->max)
4000 value = sb->max;
4001#else
4002 if (value > sb->max - sb->size + 1)
4003 value = sb->max - sb->size + 1;
4004#endif
4005
4006 sb->value = value;
4007
4008#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004009 // When not allowed to do the scrolling right now, return.
4010 // This also checked input_available(), but that causes the first click in
4011 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004012 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 return;
4014#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004015 // Disallow scrolling the current window when the completion popup menu is
4016 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004017 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4018 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019
4020#ifdef FEAT_RIGHTLEFT
4021 if (sb->wp == NULL && curwin->w_p_rl)
4022 {
4023 value = sb->max + 1 - sb->size - value;
4024 if (value < 0)
4025 value = 0;
4026 }
4027#endif
4028
Bram Moolenaar30613902019-12-01 22:11:18 +01004029 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 {
4031 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4033 sb_num++;
4034 if (wp == NULL)
4035 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037#ifdef USE_ON_FLY_SCROLL
4038 current_scrollbar = sb_num;
4039 scrollbar_value = value;
4040 if (State & NORMAL)
4041 {
4042 gui_do_scroll();
4043 setcursor();
4044 }
4045 else if (State & INSERT)
4046 {
4047 ins_scroll();
4048 setcursor();
4049 }
4050 else if (State & CMDLINE)
4051 {
4052 if (msg_scrolled == 0)
4053 {
4054 gui_do_scroll();
4055 redrawcmdline();
4056 }
4057 }
4058# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004059 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 sb->value = sb->wp->w_topline - 1;
4061# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004062
Bram Moolenaar30613902019-12-01 22:11:18 +01004063 // When dragging one scrollbar and there is another one at the other
4064 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004065 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4066 gui_mch_set_scrollbar_thumb(
4067 &sb->wp->w_scrollbars[
4068 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4069 ? SBAR_LEFT : SBAR_RIGHT],
4070 sb->value, sb->size, sb->max);
4071
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072#else
4073 bytes[0] = CSI;
4074 bytes[1] = KS_VER_SCROLLBAR;
4075 bytes[2] = KE_FILLER;
4076 bytes[3] = (char_u)sb_num;
4077 byte_count = 4;
4078#endif
4079 }
4080 else
4081 {
4082#ifdef USE_ON_FLY_SCROLL
4083 scrollbar_value = value;
4084
4085 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004086 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 else if (State & INSERT)
4088 ins_horscroll();
4089 else if (State & CMDLINE)
4090 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004091 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004093 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 redrawcmdline();
4095 }
4096 }
4097 if (old_leftcol != curwin->w_leftcol)
4098 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004099 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 setcursor();
4101 }
4102#else
4103 bytes[0] = CSI;
4104 bytes[1] = KS_HOR_SCROLLBAR;
4105 bytes[2] = KE_FILLER;
4106 byte_count = 3;
4107#endif
4108 }
4109
4110#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 /*
4112 * synchronize other windows, as necessary according to 'scrollbind'
4113 */
4114 if (curwin->w_p_scb
4115 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4116 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004117# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 ))))
4121 {
4122 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004123 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004124 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 if (wp->w_redr_type > 0)
4126 updateWindow(wp);
4127 setcursor();
4128 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004129 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004131 add_to_input_buf(bytes, byte_count);
4132 add_long_to_buf((long_u)value, bytes);
4133 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134#endif
4135}
4136
4137/*
4138 * Scrollbar stuff:
4139 */
4140
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004141/*
4142 * Called when something in the window layout has changed.
4143 */
4144 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004145gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004146{
4147 if (gui.in_use && starting == 0)
4148 {
4149 out_flush();
4150 gui_init_which_components(NULL);
4151 gui_update_scrollbars(TRUE);
4152 }
4153 need_mouse_correct = TRUE;
4154}
4155
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004157gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004158 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159{
4160 win_T *wp;
4161 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004162 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 int which_sb;
4164 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166
Bram Moolenaar30613902019-12-01 22:11:18 +01004167 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 gui_update_horiz_scrollbar(force);
4169
Bram Moolenaar4f974752019-02-17 17:44:42 +01004170#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004171 // Return straight away if there is neither a left nor right scrollbar.
4172 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4174 return;
4175#endif
4176
4177 /*
4178 * Don't want to update a scrollbar while we're dragging it. But if we
4179 * have both a left and right scrollbar, and we drag one of them, we still
4180 * need to update the other one.
4181 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004182 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4183 && gui.which_scrollbars[SBAR_LEFT]
4184 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 {
4186 /*
4187 * If we have two scrollbars and one of them is being dragged, just
4188 * copy the scrollbar position from the dragged one to the other one.
4189 */
4190 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4191 if (gui.dragged_wp != NULL)
4192 gui_mch_set_scrollbar_thumb(
4193 &gui.dragged_wp->w_scrollbars[which_sb],
4194 gui.dragged_wp->w_scrollbars[0].value,
4195 gui.dragged_wp->w_scrollbars[0].size,
4196 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 }
4198
Bram Moolenaar30613902019-12-01 22:11:18 +01004199 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 ++hold_gui_events;
4201
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004202 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004204 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004206 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004207 if (!force && (gui.dragged_sb == SBAR_LEFT
4208 || gui.dragged_sb == SBAR_RIGHT)
4209 && gui.dragged_wp == wp)
4210 continue;
4211
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212#ifdef SCROLL_PAST_END
4213 max = wp->w_buffer->b_ml.ml_line_count - 1;
4214#else
4215 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4216#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004217 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 max = 0;
4219 val = wp->w_topline - 1;
4220 size = wp->w_height;
4221#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004222 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 val = max;
4224#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004225 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 size = max + 1;
4227 if (val > max - size + 1)
4228 val = max - size + 1;
4229#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004230 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 val = 0;
4232
4233 /*
4234 * Scrollbar at index 0 (the left one) contains all the information.
4235 * It would be the same info for left and right so we just store it for
4236 * one of them.
4237 */
4238 sb = &wp->w_scrollbars[0];
4239
4240 /*
4241 * Note: no check for valid w_botline. If it's not valid the
4242 * scrollbars will be updated later anyway.
4243 */
4244 if (size < 1 || wp->w_botline - 2 > max)
4245 {
4246 /*
4247 * This can happen during changing files. Just don't update the
4248 * scrollbar for now.
4249 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004250 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 if (gui.which_scrollbars[SBAR_LEFT])
4252 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4253 if (gui.which_scrollbars[SBAR_RIGHT])
4254 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4255 continue;
4256 }
4257 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 || sb->top != wp->w_winrow
4259 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004261 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004263 // Height, width or position of scrollbar has changed. For
4264 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 sb->top = wp->w_winrow;
4267 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269
Bram Moolenaar30613902019-12-01 22:11:18 +01004270 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 h = (sb->height + sb->status_height) * gui.char_height;
4272 y = sb->top * gui.char_height + gui.border_offset;
4273#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4274 if (gui.menu_is_active)
4275 y += gui.menu_height;
4276#endif
4277
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004278#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA) \
4279 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004281# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 y += gui.toolbar_height;
4283# else
4284# ifdef FEAT_GUI_MSWIN
4285 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4286# endif
4287# endif
4288#endif
4289
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004290#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004291 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004292 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004293#endif
4294
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004297 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 h += gui.border_offset;
4299 y -= gui.border_offset;
4300 }
4301 if (gui.which_scrollbars[SBAR_LEFT])
4302 {
4303 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4304 gui.left_sbar_x, y,
4305 gui.scrollbar_width, h);
4306 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4307 }
4308 if (gui.which_scrollbars[SBAR_RIGHT])
4309 {
4310 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4311 gui.right_sbar_x, y,
4312 gui.scrollbar_width, h);
4313 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4314 }
4315 }
4316
Bram Moolenaar30613902019-12-01 22:11:18 +01004317 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4318 // checking if the thumb moved at least a pixel. Only do this for
4319 // Athena, most other GUIs require the update anyway to make the
4320 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321#ifdef FEAT_GUI_ATHENA
4322 if (max == 0)
4323 y = 0;
4324 else
4325 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4326 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4327#else
4328 if (force || sb->value != val || sb->size != size || sb->max != max)
4329#endif
4330 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004331 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 sb->value = val;
4333#ifdef FEAT_GUI_ATHENA
4334 sb->pixval = y;
4335#endif
4336 sb->size = size;
4337 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004338 if (gui.which_scrollbars[SBAR_LEFT]
4339 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4341 val, size, max);
4342 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004343 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4345 val, size, max);
4346 }
4347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 --hold_gui_events;
4350}
4351
4352/*
4353 * Enable or disable a scrollbar.
4354 * Check for scrollbars for vertically split windows which are not enabled
4355 * sometimes.
4356 */
4357 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004358gui_do_scrollbar(
4359 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004360 int which, // SBAR_LEFT or SBAR_RIGHT
4361 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 int midcol = curwin->w_wincol + curwin->w_width / 2;
4364 int has_midcol = (wp->w_wincol <= midcol
4365 && wp->w_wincol + wp->w_width >= midcol);
4366
Bram Moolenaar30613902019-12-01 22:11:18 +01004367 // Only enable scrollbars that contain the middle column of the current
4368 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4370 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004371 // Scrollbars only on one side. Don't enable scrollbars that don't
4372 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 if (!has_midcol)
4374 enable = FALSE;
4375 }
4376 else
4377 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004378 // Scrollbars on both sides. Don't enable scrollbars that neither
4379 // contain the middle column of the current window nor are on the far
4380 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 if (midcol > Columns / 2)
4382 {
4383 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4384 enable = FALSE;
4385 }
4386 else
4387 {
4388 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4389 : !has_midcol)
4390 enable = FALSE;
4391 }
4392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4394}
4395
4396/*
4397 * Scroll a window according to the values set in the globals current_scrollbar
4398 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4399 * or FALSE otherwise.
4400 */
4401 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004402gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403{
4404 win_T *wp, *save_wp;
4405 int i;
4406 long nlines;
4407 pos_T old_cursor;
4408 linenr_T old_topline;
4409#ifdef FEAT_DIFF
4410 int old_topfill;
4411#endif
4412
4413 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4414 if (wp == NULL)
4415 break;
4416 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004417 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 return FALSE;
4419
4420 /*
4421 * Compute number of lines to scroll. If zero, nothing to do.
4422 */
4423 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4424 if (nlines == 0)
4425 return FALSE;
4426
4427 save_wp = curwin;
4428 old_topline = wp->w_topline;
4429#ifdef FEAT_DIFF
4430 old_topfill = wp->w_topfill;
4431#endif
4432 old_cursor = wp->w_cursor;
4433 curwin = wp;
4434 curbuf = wp->w_buffer;
4435 if (nlines < 0)
4436 scrolldown(-nlines, gui.dragged_wp == NULL);
4437 else
4438 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004439 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4440 // the mouse-up event already, but we still want it to behave like when
4441 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 if (gui.dragged_sb == SBAR_NONE)
4443 gui.dragged_wp = NULL;
4444
4445 if (old_topline != wp->w_topline
4446#ifdef FEAT_DIFF
4447 || old_topfill != wp->w_topfill
4448#endif
4449 )
4450 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004451 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004453 cursor_correct(); // fix window for 'so'
4454 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 }
4456 if (old_cursor.lnum != wp->w_cursor.lnum)
4457 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 }
4460
Bram Moolenaar30613902019-12-01 22:11:18 +01004461 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004462 validate_cursor();
4463
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 curwin = save_wp;
4465 curbuf = save_wp->w_buffer;
4466
4467 /*
4468 * Don't call updateWindow() when nothing has changed (it will overwrite
4469 * the status line!).
4470 */
4471 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004472 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473#ifdef FEAT_DIFF
4474 || old_topfill != wp->w_topfill
4475#endif
4476 )
4477 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004478 int type = VALID;
4479
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004480 if (pum_visible())
4481 {
4482 type = NOT_VALID;
4483 wp->w_lines_valid = 0;
4484 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004485
Bram Moolenaar30613902019-12-01 22:11:18 +01004486 // Don't set must_redraw here, it may cause the popup menu to
4487 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004488 if (wp->w_redr_type < type)
4489 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004490 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004491 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004492 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 }
4494
Bram Moolenaar30613902019-12-01 22:11:18 +01004495 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004496 if (pum_visible())
4497 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004498
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004499 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500}
4501
4502
4503/*
4504 * Horizontal scrollbar stuff:
4505 */
4506
4507/*
4508 * Return length of line "lnum" for horizontal scrolling.
4509 */
4510 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004511scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512{
4513 char_u *p;
4514 colnr_T col;
4515 int w;
4516
4517 p = ml_get(lnum);
4518 col = 0;
4519 if (*p != NUL)
4520 for (;;)
4521 {
4522 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004523 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004524 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 break;
4526 col += w;
4527 }
4528 return col;
4529}
4530
Bram Moolenaar30613902019-12-01 22:11:18 +01004531// Remember which line is currently the longest, so that we don't have to
4532// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533static linenr_T longest_lnum = 0;
4534
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004535/*
4536 * Find longest visible line number. If this is not possible (or not desired,
4537 * by setting 'h' in "guioptions") then the current line number is returned.
4538 */
4539 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004540gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004541{
4542 linenr_T ret = 0;
4543
Bram Moolenaar30613902019-12-01 22:11:18 +01004544 // Calculate maximum for horizontal scrollbar. Check for reasonable
4545 // line numbers, topline and botline can be invalid when displaying is
4546 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004547 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4548 && curwin->w_topline <= curwin->w_cursor.lnum
4549 && curwin->w_botline > curwin->w_cursor.lnum
4550 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4551 {
4552 linenr_T lnum;
4553 colnr_T n;
4554 long max = 0;
4555
Bram Moolenaar30613902019-12-01 22:11:18 +01004556 // Use maximum of all visible lines. Remember the lnum of the
4557 // longest line, closest to the cursor line. Used when scrolling
4558 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004559 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4560 {
4561 n = scroll_line_len(lnum);
4562 if (n > (colnr_T)max)
4563 {
4564 max = n;
4565 ret = lnum;
4566 }
4567 else if (n == (colnr_T)max
4568 && abs((int)(lnum - curwin->w_cursor.lnum))
4569 < abs((int)(ret - curwin->w_cursor.lnum)))
4570 ret = lnum;
4571 }
4572 }
4573 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004574 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004575 ret = curwin->w_cursor.lnum;
4576
4577 return ret;
4578}
4579
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004581gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582{
Bram Moolenaar30613902019-12-01 22:11:18 +01004583 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584
4585 if (!gui.which_scrollbars[SBAR_BOTTOM])
4586 return;
4587
4588 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4589 return;
4590
4591 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4592 return;
4593
4594 /*
4595 * It is possible for the cursor to be invalid if we're in the middle of
4596 * something (like changing files). If so, don't do anything for now.
4597 */
4598 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4599 {
4600 gui.bottom_sbar.value = -1;
4601 return;
4602 }
4603
Bram Moolenaar02631462017-09-22 15:20:32 +02004604 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 if (curwin->w_p_wrap)
4606 {
4607 value = 0;
4608#ifdef SCROLL_PAST_END
4609 max = 0;
4610#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004611 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612#endif
4613 }
4614 else
4615 {
4616 value = curwin->w_leftcol;
4617
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004618 longest_lnum = gui_find_longest_lnum();
4619 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 if (virtual_active())
4622 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004623 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (curwin->w_virtcol >= (colnr_T)max)
4625 max = curwin->w_virtcol;
4626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627
4628#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004629 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004631 // The line number isn't scrolled, thus there is less space when
4632 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 size -= curwin_col_off();
4634#ifndef SCROLL_PAST_END
4635 max -= curwin_col_off();
4636#endif
4637 }
4638
4639#ifndef SCROLL_PAST_END
4640 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004641 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642#endif
4643
4644#ifdef FEAT_RIGHTLEFT
4645 if (curwin->w_p_rl)
4646 {
4647 value = max + 1 - size - value;
4648 if (value < 0)
4649 {
4650 size += value;
4651 value = 0;
4652 }
4653 }
4654#endif
4655 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4656 && max == gui.bottom_sbar.max)
4657 return;
4658
4659 gui.bottom_sbar.value = value;
4660 gui.bottom_sbar.size = size;
4661 gui.bottom_sbar.max = max;
4662 gui.prev_wrap = curwin->w_p_wrap;
4663
4664 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4665}
4666
4667/*
4668 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4669 */
4670 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004671gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672{
Bram Moolenaar30613902019-12-01 22:11:18 +01004673 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 if (curwin->w_p_wrap)
4675 return FALSE;
4676
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004677 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 return FALSE;
4679
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004680 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681
Bram Moolenaar30613902019-12-01 22:11:18 +01004682 // When the line of the cursor is too short, move the cursor to the
4683 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004685 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004686 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004688 if (compute_longest_lnum)
4689 {
4690 curwin->w_cursor.lnum = gui_find_longest_lnum();
4691 curwin->w_cursor.col = 0;
4692 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004693 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004694 else if (longest_lnum >= curwin->w_topline
4695 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 {
4697 curwin->w_cursor.lnum = longest_lnum;
4698 curwin->w_cursor.col = 0;
4699 }
4700 }
4701
4702 return leftcol_changed();
4703}
4704
4705/*
4706 * Check that none of the colors are the same as the background color
4707 */
4708 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004709gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710{
4711 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4712 {
4713 gui_set_bg_color((char_u *)"White");
4714 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4715 gui_set_fg_color((char_u *)"Black");
4716 }
4717}
4718
Bram Moolenaar3918c952005-03-15 22:34:55 +00004719 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004720gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721{
4722 gui.norm_pixel = gui_get_color(name);
4723 hl_set_fg_color_name(vim_strsave(name));
4724}
4725
Bram Moolenaar3918c952005-03-15 22:34:55 +00004726 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004727gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728{
4729 gui.back_pixel = gui_get_color(name);
4730 hl_set_bg_color_name(vim_strsave(name));
4731}
4732
4733/*
4734 * Allocate a color by name.
4735 * Returns INVALCOLOR and gives an error message when failed.
4736 */
4737 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004738gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739{
4740 guicolor_T t;
4741
4742 if (*name == NUL)
4743 return INVALCOLOR;
4744 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004745
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004747#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 && gui.in_use
4749#endif
4750 )
Bram Moolenaar87202262020-05-24 17:23:45 +02004751 semsg(_(e_alloc_color), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 return t;
4753}
4754
4755/*
4756 * Return the grey value of a color (range 0-255).
4757 */
4758 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004759gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004761 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004763 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004764 + (((rgb >> 8) & 0xff) * 587)
4765 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766}
4767
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004768 char_u *
4769gui_bg_default(void)
4770{
4771 if (gui_get_lightness(gui.back_pixel) < 127)
4772 return (char_u *)"dark";
4773 return (char_u *)"light";
4774}
4775
4776/*
4777 * Option initializations that can only be done after opening the GUI window.
4778 */
4779 void
4780init_gui_options(void)
4781{
Bram Moolenaar30613902019-12-01 22:11:18 +01004782 // Set the 'background' option according to the lightness of the
4783 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004784 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4785 {
4786 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4787 highlight_changed();
4788 }
4789}
4790
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791#if defined(FEAT_GUI_X11) || defined(PROTO)
4792 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004793gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794{
4795 win_T *wp;
4796
Bram Moolenaar30613902019-12-01 22:11:18 +01004797 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 if (!gui.in_use)
4799 return;
4800
4801 FOR_ALL_WINDOWS(wp)
4802 {
4803 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4804 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4805 }
4806 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4807}
4808#endif
4809
4810/*
4811 * Call this when focus has changed.
4812 */
4813 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004814gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815{
4816/*
4817 * Skip this code to avoid drawing the cursor when debugging and switching
4818 * between the debugger window and gvim.
4819 */
4820#if 1
4821 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004822 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823
4824# ifdef FEAT_XIM
4825 xim_set_focus(in_focus);
4826# endif
4827
Bram Moolenaar30613902019-12-01 22:11:18 +01004828 // Put events in the input queue only when allowed.
4829 // ui_focus_change() isn't called directly, because it invokes
4830 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004831 if (!hold_gui_events)
4832 {
4833 char_u bytes[3];
4834
4835 bytes[0] = CSI;
4836 bytes[1] = KS_EXTRA;
4837 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4838 add_to_input_buf(bytes, 3);
4839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840#endif
4841}
4842
4843/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004844 * When mouse moved: apply 'mousefocus'.
4845 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004847 static void
4848gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849{
4850 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004851 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
4853#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004854 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004855 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856#endif
4857
Bram Moolenaar30613902019-12-01 22:11:18 +01004858 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004860 && !hold_gui_events // not holding events
4861 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4862 && State != HITRETURN // but not hit-return prompt
4863 && msg_scrolled == 0 // no scrolled message
4864 && !need_mouse_correct // not moving the pointer
4865 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004867 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 if (x < 0 || x > Columns * gui.char_width)
4869 return;
4870#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004871 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872#endif
4873 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004874 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875
Bram Moolenaar30613902019-12-01 22:11:18 +01004876 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004877 if (Y_2_ROW(y) < tabline_height())
4878 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004879
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 /*
4881 * format a mouse click on status line input
4882 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004883 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4884 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 */
4886 if (finish_op)
4887 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004888 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 st[0] = ESC;
4890 add_to_input_buf(st, 1);
4891 }
4892 st[0] = CSI;
4893 st[1] = KS_MOUSE;
4894 st[2] = KE_FILLER;
4895 st[3] = (char_u)MOUSE_LEFT;
4896 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004897 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 wp->w_height + W_WINROW(wp));
4899
4900 add_to_input_buf(st, 8);
4901 st[3] = (char_u)MOUSE_RELEASE;
4902 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004904 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 if (gtk_main_level() > 0)
4906 gtk_main_quit();
4907#endif
4908 }
4909}
4910
4911/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004912 * Called when the mouse moved (but not when dragging).
4913 */
4914 void
4915gui_mouse_moved(int x, int y)
4916{
4917 // Ignore this while still starting up.
4918 if (!gui.in_use || gui.starting)
4919 return;
4920
4921 // apply 'mousefocus' and pointer shape
4922 gui_mouse_focus(x, y);
4923
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004924#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004925 if (popup_visible)
4926 // Generate a mouse-moved event, so that the popup can perhaps be
4927 // closed, just like in the terminal.
4928 gui_send_mouse_event(MOUSE_DRAG, x, y, FALSE, 0);
4929#endif
4930}
4931
4932/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004933 * Get the window where the mouse pointer is on.
4934 * Returns NULL if not found.
4935 */
4936 win_T *
4937gui_mouse_window(mouse_find_T popup)
4938{
4939 int x, y;
4940
4941 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4942 return NULL;
4943 gui_mch_getmouse(&x, &y);
4944
4945 // Only use the mouse when it's on the Vim window
4946 if (x >= 0 && x <= Columns * gui.char_width
4947 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4948 return xy2win(x, y, popup);
4949 return NULL;
4950}
4951
4952/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 * Called when mouse should be moved to window with focus.
4954 */
4955 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004956gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 win_T *wp = NULL;
4959
4960 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004961
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004962 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004963 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004965 validate_cline_row();
4966 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4967 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970}
4971
4972/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004973 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004974 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004977xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 int row;
4980 int col;
4981 win_T *wp;
4982
4983 row = Y_2_ROW(y);
4984 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004985 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004987 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004988 if (wp == NULL)
4989 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004990#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 if (State == HITRETURN || State == ASKMORE)
4992 {
4993 if (Y_2_ROW(y) >= msg_row)
4994 update_mouseshape(SHAPE_IDX_MOREL);
4995 else
4996 update_mouseshape(SHAPE_IDX_MORE);
4997 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004998 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02005000 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005001 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02005003 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005004 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 update_mouseshape(SHAPE_IDX_STATUS);
5006 else
5007 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005009 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010}
5011
5012/*
5013 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5014 * File names may be given to redefine the args list.
5015 */
5016 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005017ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018{
5019 char_u *arg = eap->arg;
5020
5021 /*
5022 * Check for "-f" argument: foreground, don't fork.
5023 * Also don't fork when started with "gvim -f".
5024 * Do fork when using "gui -b".
5025 */
5026 if (arg[0] == '-'
5027 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005028 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 {
5030 gui.dofork = (arg[1] == 'b');
5031 eap->arg = skipwhite(eap->arg + 2);
5032 }
5033 if (!gui.in_use)
5034 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005035#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005036 if (!gui.starting)
5037 {
5038 emsg(_(e_nogvim));
5039 return;
5040 }
5041#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005042 // Clear the command. Needed for when forking+exiting, to avoid part
5043 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005045#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005046 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005047 gui_start(eap->arg);
5048 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005049#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005050 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005051#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005052 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005053#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005055 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 ex_next(eap);
5057}
5058
Bram Moolenaar4f974752019-02-17 17:44:42 +01005059#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005060 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5061 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005062 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063/*
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005064 * This is shared between Athena, Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066
5067/*
5068 * Callback function for do_in_runtimepath().
5069 */
5070 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005071gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005073 char_u *gfp_buffer = cookie;
5074
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 if (STRLEN(fname) >= MAXPATHL)
5076 *gfp_buffer = NUL;
5077 else
5078 STRCPY(gfp_buffer, fname);
5079}
5080
5081/*
5082 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5083 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5084 */
5085 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005086gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087{
5088 if (STRLEN(name) > MAXPATHL - 14)
5089 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005090 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005091 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005092 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 return FAIL;
5094 return OK;
5095}
5096
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005097# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098/*
5099 * Given the name of the "icon=" argument, try finding the bitmap file for the
5100 * icon. If it is an absolute path name, use it as it is. Otherwise append
5101 * "ext" and search for it in 'runtimepath'.
5102 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5103 * contains "name".
5104 */
5105 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005106gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107{
5108 char_u buf[MAXPATHL + 1];
5109
5110 expand_env(name, buffer, MAXPATHL);
5111 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5112 STRCPY(buffer, buf);
5113}
5114# endif
5115#endif
5116
Bram Moolenaar9e175142020-04-30 22:51:01 +02005117#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5118 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005120display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121{
5122 char_u *p;
5123
5124 if (isatty(2))
5125 fflush(stderr);
5126 else if (error_ga.ga_data != NULL)
5127 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005128 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5130 if (!isspace(*p))
5131 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005132 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 if (STRLEN(p) > 2000)
5134 STRCPY(p + 2000 - 14, "...(truncated)");
5135 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005136 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 break;
5138 }
5139 ga_clear(&error_ga);
5140 }
5141}
5142#endif
5143
5144#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5145/*
5146 * Return TRUE if still starting up and there is no place to enter text.
5147 * For GTK and X11 we check if stderr is not a tty, which means we were
5148 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5149 * allow typing on stdin.
5150 */
5151 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005152no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153{
5154 return ((!gui.in_use || gui.starting)
5155# ifndef NO_CONSOLE
5156 && !isatty(0) && !isatty(2)
5157# endif
5158 );
5159}
5160#endif
5161
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005162#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005163 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005164 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165/*
5166 * Update the current window and the screen.
5167 */
5168 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005169gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005171# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005172 linenr_T conceal_old_cursor_line = 0;
5173 linenr_T conceal_new_cursor_line = 0;
5174 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005175# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005176
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 update_topline();
5178 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005179
Bram Moolenaar30613902019-12-01 22:11:18 +01005180 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005181 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005182# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005183 || popup_visible
5184# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005185# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005186 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005187# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005188 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005189 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005190 if (has_cursormoved())
5191 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005192#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005193 if (popup_visible)
5194 popup_check_cursor_pos();
5195#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005196# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005197 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005198 {
5199 conceal_old_cursor_line = last_cursormoved.lnum;
5200 conceal_new_cursor_line = curwin->w_cursor.lnum;
5201 conceal_update_lines = TRUE;
5202 }
5203# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005204 last_cursormoved = curwin->w_cursor;
5205 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005206
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005207# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005208 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005209 && (conceal_old_cursor_line != conceal_new_cursor_line
5210 || conceal_cursor_line(curwin)
5211 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005212 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005213 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005214 redrawWinline(curwin, conceal_old_cursor_line);
5215 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005216 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005217 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005218 }
5219# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005220 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005221 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005222 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223}
5224#endif
5225
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005226#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227/*
5228 * Get the text to use in a find/replace dialog. Uses the last search pattern
5229 * if the argument is empty.
5230 * Returns an allocated string.
5231 */
5232 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005233get_find_dialog_text(
5234 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005235 int *wwordp, // return: TRUE if \< \> found
5236 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237{
5238 char_u *text;
5239
5240 if (*arg == NUL)
5241 text = last_search_pat();
5242 else
5243 text = arg;
5244 if (text != NULL)
5245 {
5246 text = vim_strsave(text);
5247 if (text != NULL)
5248 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005249 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 int i;
5251
Bram Moolenaar30613902019-12-01 22:11:18 +01005252 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5254 {
5255 mch_memmove(text, text + 2, (size_t)(len - 1));
5256 len -= 2;
5257 }
5258
Bram Moolenaar30613902019-12-01 22:11:18 +01005259 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5261 {
5262 *mcasep = (text[1] == 'C');
5263 mch_memmove(text, text + 2, (size_t)(len - 1));
5264 len -= 2;
5265 }
5266
Bram Moolenaar30613902019-12-01 22:11:18 +01005267 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 if (len >= 4
5269 && STRNCMP(text, "\\<", 2) == 0
5270 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5271 {
5272 *wwordp = TRUE;
5273 mch_memmove(text, text + 2, (size_t)(len - 4));
5274 text[len - 4] = NUL;
5275 }
5276
Bram Moolenaar30613902019-12-01 22:11:18 +01005277 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 for (i = 0; i + 1 < len; ++i)
5279 if (text[i] == '\\' && (text[i + 1] == '/'
5280 || text[i + 1] == '?'))
5281 {
5282 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5283 --len;
5284 }
5285 }
5286 }
5287 return text;
5288}
5289
5290/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291 * Handle the press of a button in the find-replace dialog.
5292 * Return TRUE when something was added to the input buffer.
5293 */
5294 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005295gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005296 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005297 char_u *find_text,
5298 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005299 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300{
5301 garray_T ga;
5302 int i;
5303 int type = (flags & FRD_TYPE_MASK);
5304 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005305 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005306 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005307 static int busy = FALSE;
5308
Bram Moolenaar30613902019-12-01 22:11:18 +01005309 // When the screen is being updated we should not change buffers and
5310 // windows structures, it may cause freed memory to be used. Also don't
5311 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005312 if (updating_screen || busy)
5313 return FALSE;
5314
Bram Moolenaar30613902019-12-01 22:11:18 +01005315 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005316 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5317 return FALSE;
5318
5319 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320
5321 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005322 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 ga_concat(&ga, (char_u *)"%s/");
5324
5325 ga_concat(&ga, (char_u *)"\\V");
5326 if (flags & FRD_MATCH_CASE)
5327 ga_concat(&ga, (char_u *)"\\C");
5328 else
5329 ga_concat(&ga, (char_u *)"\\c");
5330 if (flags & FRD_WHOLE_WORD)
5331 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005332 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005333 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5334 if (p != NULL)
5335 ga_concat(&ga, p);
5336 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 if (flags & FRD_WHOLE_WORD)
5338 ga_concat(&ga, (char_u *)"\\>");
5339
5340 if (type == FRD_REPLACEALL)
5341 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005343 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005344 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5345 if (p != NULL)
5346 ga_concat(&ga, p);
5347 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005349 }
5350 ga_append(&ga, NUL);
5351
5352 if (type == FRD_REPLACE)
5353 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005354 // Do the replacement when the text at the cursor matches. Thus no
5355 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005356 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5357 regmatch.rm_ic = 0;
5358 if (regmatch.regprog != NULL)
5359 {
5360 p = ml_get_cursor();
5361 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5362 && regmatch.startp[0] == p)
5363 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005364 // Clear the command line to remove any old "No match"
5365 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005366 msg_end_prompt();
5367
5368 if (u_save_cursor() == OK)
5369 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005370 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005371 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005372
5373 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005374 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005375 ins_str(repl_text);
5376 }
5377 }
5378 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005379 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005380 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005381 }
5382 }
5383
5384 if (type == FRD_REPLACEALL)
5385 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005386 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005387 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 do_cmdline_cmd(ga.ga_data);
5389 }
5390 else
5391 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005392 int searchflags = SEARCH_MSG + SEARCH_MARK;
5393
Bram Moolenaar30613902019-12-01 22:11:18 +01005394 // Search for the next match.
5395 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005396 if (type == FRD_REPLACE)
5397 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005399 if (down)
5400 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005401 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005402 }
5403 else
5404 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005405 // We need to escape '?' if and only if we are searching in the up
5406 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005407 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5408 if (p != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01005409 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005410 vim_free(p);
5411 }
5412
Bram Moolenaar30613902019-12-01 22:11:18 +01005413 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 }
5415
Bram Moolenaar30613902019-12-01 22:11:18 +01005416 // Don't want to pass did_emsg to other code, it may cause disabling
5417 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005418 did_emsg = save_did_emsg;
5419
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 if (State & (NORMAL | INSERT))
5421 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005422 gui_update_screen(); // update the screen
5423 msg_didout = 0; // overwrite any message
5424 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 }
5426
5427 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005428 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 return (ga.ga_len > 0);
5430}
5431
5432#endif
5433
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005434#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435/*
5436 * Jump to the window at specified point (x, y).
5437 */
5438 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005439gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440{
5441 int row = Y_2_ROW(y);
5442 int col = X_2_COL(x);
5443 win_T *wp;
5444
5445 if (row >= 0 && col >= 0)
5446 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005447 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 if (wp != NULL && wp != curwin)
5449 win_goto(wp);
5450 }
5451}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452
5453/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005454 * Function passed to handle_drop() for the actions to be done after the
5455 * argument list has been updated.
5456 */
5457 static void
5458drop_callback(void *cookie)
5459{
5460 char_u *p = cookie;
5461
Bram Moolenaar30613902019-12-01 22:11:18 +01005462 // If Shift held down, change to first file's directory. If the first
5463 // item is a directory, change to that directory (and let the explorer
5464 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005465 if (p != NULL)
5466 {
5467 if (mch_isdir(p))
5468 {
5469 if (mch_chdir((char *)p) == 0)
5470 shorten_fnames(TRUE);
5471 }
5472 else if (vim_chdirfile(p, "drop") == OK)
5473 shorten_fnames(TRUE);
5474 vim_free(p);
5475 }
5476
Bram Moolenaar30613902019-12-01 22:11:18 +01005477 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005478 update_screen(NOT_VALID);
5479# ifdef FEAT_MENU
5480 gui_update_menus(0);
5481# endif
5482#ifdef FEAT_TITLE
5483 maketitle();
5484#endif
5485 setcursor();
5486 out_flush_cursor(FALSE, FALSE);
5487}
5488
5489/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 * Process file drop. Mouse cursor position, key modifiers, name of files
5491 * and count of files are given. Argument "fnames[count]" has full pathnames
5492 * of dropped files, they will be freed in this function, and caller can't use
5493 * fnames after call this function.
5494 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005496gui_handle_drop(
5497 int x UNUSED,
5498 int y UNUSED,
5499 int_u modifiers,
5500 char_u **fnames,
5501 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502{
5503 int i;
5504 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005505 static int entered = FALSE;
5506
5507 /*
5508 * This function is called by event handlers. Just in case we get a
5509 * second event before the first one is handled, ignore the second one.
5510 * Not sure if this can ever happen, just in case.
5511 */
5512 if (entered)
5513 return;
5514 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515
5516 /*
5517 * When the cursor is at the command line, add the file names to the
5518 * command line, don't edit the files.
5519 */
5520 if (State & CMDLINE)
5521 {
5522 shorten_filenames(fnames, count);
5523 for (i = 0; i < count; ++i)
5524 {
5525 if (fnames[i] != NULL)
5526 {
5527 if (i > 0)
5528 add_to_input_buf((char_u*)" ", 1);
5529
Bram Moolenaar30613902019-12-01 22:11:18 +01005530 // We don't know what command is used thus we can't be sure
5531 // about which characters need to be escaped. Only escape the
5532 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533# ifdef BACKSLASH_IN_FILENAME
5534 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5535# else
5536 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5537# endif
5538 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005539 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 vim_free(p);
5541 vim_free(fnames[i]);
5542 }
5543 }
5544 vim_free(fnames);
5545 }
5546 else
5547 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005548 // Go to the window under mouse cursor, then shorten given "fnames" by
5549 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 shorten_filenames(fnames, count);
5552
Bram Moolenaar30613902019-12-01 22:11:18 +01005553 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 if ((modifiers & MOUSE_SHIFT) != 0)
5555 p = vim_strsave(fnames[0]);
5556 else
5557 p = NULL;
5558
Bram Moolenaar30613902019-12-01 22:11:18 +01005559 // Handle the drop, :edit or :split to get to the file. This also
5560 // frees fnames[]. Skip this if there is only one item, it's a
5561 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5563 && mch_isdir(fnames[0]))
5564 {
5565 vim_free(fnames[0]);
5566 vim_free(fnames);
5567 }
5568 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005569 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5570 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005572
5573 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574}
5575#endif