blob: 3df99214847060abc8cfeca70e57492b9804ab87 [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 Moolenaarf4ae6b22020-05-30 19:52:46 +0200806 // In the GUI modifiers are prepended to keys.
807 seenModifyOtherKeys = TRUE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000808
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
810 if (!im_xim_isvalid_imactivate())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100811 emsg(_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100813 // When 'cmdheight' was set during startup it may not have taken
814 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000815 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000816 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817
818 return;
819 }
820
821error2:
822#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100823 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 gui_mch_uninit();
825#endif
826
827error:
828 gui.in_use = FALSE;
829 clip_init(FALSE);
830}
831
832
833 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100834gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
Bram Moolenaar30613902019-12-01 22:11:18 +0100836 // don't free the fonts, it leads to a BUS error
837 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 gui.in_use = FALSE;
840 gui_mch_exit(rc);
841}
842
Bram Moolenaar9372a112005-12-06 19:59:18 +0000843#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000845# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846/*
847 * Called when the GUI shell is closed by the user. If there are no changed
848 * files Vim exits, otherwise there will be a dialog to ask the user what to
849 * do.
850 * When this function returns, Vim should NOT exit!
851 */
852 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100853gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854{
855 cmdmod_T save_cmdmod;
856
857 save_cmdmod = cmdmod;
858
Bram Moolenaar30613902019-12-01 22:11:18 +0100859 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 exiting = TRUE;
861# ifdef FEAT_BROWSE
862 cmdmod.browse = TRUE;
863# endif
864# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
865 cmdmod.confirm = TRUE;
866# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100867 // If there are changed buffers, present the user with a dialog if
868 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100869 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 getout(0);
871
872 exiting = FALSE;
873 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100874 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875}
876#endif
877
878/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200879 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 * first font name that works is used. If none is found, use the default
881 * font.
882 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
883 * Return OK when able to set the font. When it failed FAIL is returned and
884 * the fonts are unchanged.
885 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100887gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889#define FONTLEN 320
890 char_u font_name[FONTLEN];
891 int font_list_empty = FALSE;
892 int ret = FAIL;
893
894 if (!gui.in_use)
895 return FAIL;
896
897 font_name[0] = NUL;
898 if (*font_list == NUL)
899 font_list_empty = TRUE;
900 else
901 {
902#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100903 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 if (fontset)
905 ret = gui_mch_init_font(font_list, TRUE);
906 else
907#endif
908 while (*font_list != NUL)
909 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100910 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
912
Bram Moolenaar30613902019-12-01 22:11:18 +0100913 // Careful!!! The Win32 version of gui_mch_init_font(), when
914 // called with "*" will change p_guifont to the selected font
915 // name, which frees the old value. This makes font_list
916 // invalid. Thus when OK is returned here, font_list must no
917 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 if (gui_mch_init_font(font_name, FALSE) == OK)
919 {
Bram Moolenaar13505972019-01-24 15:04:48 +0100920#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100921 // If it's a Unicode font, try setting 'guifontwide' to a
922 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
924 && strstr((char *)font_name, "10646") != NULL)
925 set_guifontwide(font_name);
926#endif
927 ret = OK;
928 break;
929 }
930 }
931 }
932
933 if (ret != OK
934 && STRCMP(font_list, "*") != 0
935 && (font_list_empty || gui.norm_font == NOFONT))
936 {
937 /*
938 * Couldn't load any font in 'font_list', keep the current font if
939 * there is one. If 'font_list' is empty, or if there is no current
940 * font, tell gui_mch_init_font() to try to find a font we can load.
941 */
942 ret = gui_mch_init_font(NULL, FALSE);
943 }
944
945 if (ret == OK)
946 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200947#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100948 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949# ifdef FEAT_XFONTSET
950 if (gui.fontset != NOFONTSET)
951 gui_mch_set_fontset(gui.fontset);
952 else
953# endif
954 gui_mch_set_font(gui.norm_font);
955#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100956 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 }
958
959 return ret;
960}
961
Bram Moolenaar13505972019-01-24 15:04:48 +0100962#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963/*
964 * Try setting 'guifontwide' to a font twice as wide as "name".
965 */
966 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100967set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968{
969 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100970 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 char_u *wp = NULL;
972 char_u *p;
973 GuiFont font;
974
975 wp = wide_name;
976 for (p = name; *p != NUL; ++p)
977 {
978 *wp++ = *p;
979 if (*p == '-')
980 {
981 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100982 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 {
984 if (p[1] == '-')
985 *wp++ = '*';
986 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100987 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 {
989 ++p;
990 i = getdigits(&p);
991 if (i != 0)
992 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100993 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 sprintf((char *)wp, "%d%s", i * 2, p);
995 font = gui_mch_get_font(wide_name, FALSE);
996 if (font != NOFONT)
997 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000998 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 gui.wide_font = font;
1000 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001001 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 }
1003 }
1004 break;
1005 }
1006 }
1007 }
1008}
Bram Moolenaar30613902019-12-01 22:11:18 +01001009#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010
1011/*
1012 * Get the font for 'guifontwide'.
1013 * Return FAIL for an invalid font name.
1014 */
1015 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001016gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017{
1018 GuiFont font = NOFONT;
1019 char_u font_name[FONTLEN];
1020 char_u *p;
1021
Bram Moolenaar30613902019-12-01 22:11:18 +01001022 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1023 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024
1025 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1026 {
1027 for (p = p_guifontwide; *p != NUL; )
1028 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001029 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1031 font = gui_mch_get_font(font_name, FALSE);
1032 if (font != NOFONT)
1033 break;
1034 }
1035 if (font == NOFONT)
1036 return FAIL;
1037 }
1038
1039 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001040#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001041 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 if (font != NOFONT && gui.norm_font != NOFONT
1043 && pango_font_description_equal(font, gui.norm_font))
1044 {
1045 gui.wide_font = NOFONT;
1046 gui_mch_free_font(font);
1047 }
1048 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001051#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001052 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001053#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001054 /*
1055 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1056 * support those fonts for 'guifontwide'.
1057 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 return OK;
1060}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001062 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001063gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
1065 gui.row = row;
1066 gui.col = col;
1067}
1068
1069/*
1070 * gui_check_pos - check if the cursor is on the screen.
1071 */
1072 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001073gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074{
1075 if (gui.row >= screen_Rows)
1076 gui.row = screen_Rows - 1;
1077 if (gui.col >= screen_Columns)
1078 gui.col = screen_Columns - 1;
1079 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1080 gui.cursor_is_valid = FALSE;
1081}
1082
1083/*
1084 * Redraw the cursor if necessary or when forced.
1085 * Careful: The contents of ScreenLines[] must match what is on the screen,
1086 * otherwise this goes wrong. May need to call out_flush() first.
1087 */
1088 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001089gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001090 int force, // when TRUE, update even when not moved
1091 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092{
1093 int cur_width = 0;
1094 int cur_height = 0;
1095 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001096 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001098#ifdef FEAT_TERMINAL
1099 guicolor_T shape_fg = INVALCOLOR;
1100 guicolor_T shape_bg = INVALCOLOR;
1101#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001102 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1103 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 int attr;
1105 attrentry_T *aep = NULL;
1106
Bram Moolenaar30613902019-12-01 22:11:18 +01001107 // Don't update the cursor when halfway busy scrolling or the screen size
1108 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001109 if (!can_update_cursor || screen_Columns != gui.num_cols
1110 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 return;
1112
1113 gui_check_pos();
1114 if (!gui.cursor_is_valid || force
1115 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1116 {
1117 gui_undraw_cursor();
1118 if (gui.row < 0)
1119 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001120#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1122 im_set_position(gui.row, gui.col);
1123#endif
1124 gui.cursor_row = gui.row;
1125 gui.cursor_col = gui.col;
1126
Bram Moolenaar30613902019-12-01 22:11:18 +01001127 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 if (!screen_cleared || ScreenLines == NULL)
1129 return;
1130
Bram Moolenaar30613902019-12-01 22:11:18 +01001131 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 if (clear_selection)
1133 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001134 // Check that the cursor is inside the shell (resizing may have made
1135 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1137 return;
1138
1139 gui.cursor_is_valid = TRUE;
1140
1141 /*
1142 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001143 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001145#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001146 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001147 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001149#endif
1150 shape = &shape_table[get_shape_idx(FALSE)];
1151 if (State & LANGMAP)
1152 id = shape->id_lm;
1153 else
1154 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155
Bram Moolenaar30613902019-12-01 22:11:18 +01001156 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 cfg = INVALCOLOR;
1158 cbg = INVALCOLOR;
1159 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001160 gui_mch_set_blinking(shape->blinkwait,
1161 shape->blinkon,
1162 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001163 if (shape->blinkwait == 0 || shape->blinkon == 0
1164 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001165 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001166#ifdef FEAT_TERMINAL
1167 if (shape_bg != INVALCOLOR)
1168 {
1169 cattr = 0;
1170 cfg = shape_fg;
1171 cbg = shape_bg;
1172 }
1173 else
1174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 if (id > 0)
1176 {
1177 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001178#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 {
1180 static int iid;
1181 guicolor_T fg, bg;
1182
Bram Moolenaarc236c162008-07-13 17:41:49 +00001183 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001184# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001185 preedit_get_status()
1186# else
1187 im_get_status()
1188# endif
1189 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
1191 iid = syn_name2id((char_u *)"CursorIM");
1192 if (iid > 0)
1193 {
1194 syn_id2colors(iid, &fg, &bg);
1195 if (bg != INVALCOLOR)
1196 cbg = bg;
1197 if (fg != INVALCOLOR)
1198 cfg = fg;
1199 }
1200 }
1201 }
1202#endif
1203 }
1204
1205 /*
1206 * Get the attributes for the character under the cursor.
1207 * When no cursor color was given, use the character color.
1208 */
1209 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1210 if (attr > HL_ALL)
1211 aep = syn_gui_attr2entry(attr);
1212 if (aep != NULL)
1213 {
1214 attr = aep->ae_attr;
1215 if (cfg == INVALCOLOR)
1216 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1217 : aep->ae_u.gui.fg_color);
1218 if (cbg == INVALCOLOR)
1219 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1220 : aep->ae_u.gui.bg_color);
1221 }
1222 if (cfg == INVALCOLOR)
1223 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1224 if (cbg == INVALCOLOR)
1225 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1226
1227#ifdef FEAT_XIM
1228 if (aep != NULL)
1229 {
1230 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1231 : aep->ae_u.gui.bg_color);
1232 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1233 : aep->ae_u.gui.fg_color);
1234 if (xim_bg_color == INVALCOLOR)
1235 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1236 : gui.back_pixel;
1237 if (xim_fg_color == INVALCOLOR)
1238 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1239 : gui.norm_pixel;
1240 }
1241 else
1242 {
1243 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1244 : gui.back_pixel;
1245 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1246 : gui.norm_pixel;
1247 }
1248#endif
1249
1250 attr &= ~HL_INVERSE;
1251 if (cattr & HL_INVERSE)
1252 {
1253 cc = cbg;
1254 cbg = cfg;
1255 cfg = cc;
1256 }
1257 cattr &= ~HL_INVERSE;
1258
1259 /*
1260 * When we don't have window focus, draw a hollow cursor.
1261 */
1262 if (!gui.in_focus)
1263 {
1264 gui_mch_draw_hollow_cursor(cbg);
1265 return;
1266 }
1267
1268 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001269 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 {
1271 /*
1272 * Draw the text character with the cursor colors. Use the
1273 * character attributes plus the cursor attributes.
1274 */
1275 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001276 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1278 }
1279 else
1280 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001281#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 int col_off = FALSE;
1283#endif
1284 /*
1285 * First draw the partial cursor, then overwrite with the text
1286 * character, using a transparent background.
1287 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001288 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 {
1290 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001291 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 }
1293 else
1294 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001295 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 cur_width = gui.char_width;
1297 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001298 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1299 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001301 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001302 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001304#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 if (CURSOR_BAR_RIGHT)
1306 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001307 // gui.col points to the left halve of the character but
1308 // the vertical line needs to be on the right halve.
1309 // A double-wide horizontal line is also drawn from the
1310 // right halve in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 col_off = TRUE;
1312 ++gui.col;
1313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001317#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 if (col_off)
1319 --gui.col;
1320#endif
1321
Bram Moolenaar30613902019-12-01 22:11:18 +01001322#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1324 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1325 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1326 (guicolor_T)0, (guicolor_T)0, 0);
1327#endif
1328 }
1329 gui.highlight_mask = old_hl_mask;
1330 }
1331}
1332
1333#if defined(FEAT_MENU) || defined(PROTO)
1334 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001335gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001337# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 if (gui.menu_is_active && gui.in_use)
1339 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1340# endif
1341}
1342#endif
1343
1344/*
1345 * Position the various GUI components (text area, menu). The vertical
1346 * scrollbars are NOT handled here. See gui_update_scrollbars().
1347 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001349gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350{
1351 int text_area_x;
1352 int text_area_y;
1353 int text_area_width;
1354 int text_area_height;
1355
Bram Moolenaar30613902019-12-01 22:11:18 +01001356 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 ++hold_gui_events;
1358
1359 text_area_x = 0;
1360 if (gui.which_scrollbars[SBAR_LEFT])
1361 text_area_x += gui.scrollbar_width;
1362
1363 text_area_y = 0;
1364#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1365 gui.menu_width = total_width;
1366 if (gui.menu_is_active)
1367 text_area_y += gui.menu_height;
1368#endif
1369#if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_MSWIN)
1370 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1371 text_area_y = TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
1372#endif
1373
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001374# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar367329b2007-08-30 11:53:22 +00001375 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_MAC))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001376 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001377 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001378#endif
1379
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001380#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) \
1381 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1383 {
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001384# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 gui_mch_set_toolbar_pos(0, text_area_y,
1386 gui.menu_width, gui.toolbar_height);
1387# endif
1388 text_area_y += gui.toolbar_height;
1389 }
1390#endif
1391
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001392# if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
1393 gui_mch_set_tabline_pos(0, text_area_y,
1394 gui.menu_width, gui.tabline_height);
1395 if (gui_has_tabline())
1396 text_area_y += gui.tabline_height;
1397#endif
1398
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1400 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1401
1402 gui_mch_set_text_area_pos(text_area_x,
1403 text_area_y,
1404 text_area_width,
1405 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001406#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 + xim_get_status_area_height()
1408#endif
1409 );
1410#ifdef FEAT_MENU
1411 gui_position_menu();
1412#endif
1413 if (gui.which_scrollbars[SBAR_BOTTOM])
1414 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1415 text_area_x,
1416 text_area_y + text_area_height,
1417 text_area_width,
1418 gui.scrollbar_height);
1419 gui.left_sbar_x = 0;
1420 gui.right_sbar_x = text_area_x + text_area_width;
1421
1422 --hold_gui_events;
1423}
1424
Bram Moolenaar02743632005-07-25 20:42:36 +00001425/*
1426 * Get the width of the widgets and decorations to the side of the text area.
1427 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001429gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430{
1431 int base_width;
1432
1433 base_width = 2 * gui.border_offset;
1434 if (gui.which_scrollbars[SBAR_LEFT])
1435 base_width += gui.scrollbar_width;
1436 if (gui.which_scrollbars[SBAR_RIGHT])
1437 base_width += gui.scrollbar_width;
1438 return base_width;
1439}
1440
Bram Moolenaar02743632005-07-25 20:42:36 +00001441/*
1442 * Get the height of the widgets and decorations above and below the text area.
1443 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001445gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446{
1447 int base_height;
1448
1449 base_height = 2 * gui.border_offset;
1450 if (gui.which_scrollbars[SBAR_BOTTOM])
1451 base_height += gui.scrollbar_height;
1452#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001453 // We can't take the sizes properly into account until anything is
1454 // realized. Therefore we recalculate all the values here just before
1455 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456#else
1457# ifdef FEAT_MENU
1458 if (gui.menu_is_active)
1459 base_height += gui.menu_height;
1460# endif
1461# ifdef FEAT_TOOLBAR
1462 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1463# if defined(FEAT_GUI_MSWIN) && defined(FEAT_TOOLBAR)
1464 base_height += (TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT);
1465# else
1466 base_height += gui.toolbar_height;
1467# endif
1468# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001469# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001470 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001471 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001472 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001473# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474# ifdef FEAT_FOOTER
1475 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1476 base_height += gui.footer_height;
1477# endif
1478# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1479 base_height += gui_mch_text_area_extra_height();
1480# endif
1481#endif
1482 return base_height;
1483}
1484
1485/*
1486 * Should be called after the GUI shell has been resized. Its arguments are
1487 * the new width and height of the shell in pixels.
1488 */
1489 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001490gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491{
1492 static int busy = FALSE;
1493
Bram Moolenaar30613902019-12-01 22:11:18 +01001494 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 return;
1496
1497 /*
1498 * Can't resize the screen while it is being redrawn. Remember the new
1499 * size and handle it later.
1500 */
1501 if (updating_screen || busy)
1502 {
1503 new_pixel_width = pixel_width;
1504 new_pixel_height = pixel_height;
1505 return;
1506 }
1507
1508again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001509 new_pixel_width = 0;
1510 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 busy = TRUE;
1512
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001513#ifdef FEAT_GUI_HAIKU
1514 vim_lock_screen();
1515#endif
1516
Bram Moolenaar30613902019-12-01 22:11:18 +01001517 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 out_flush();
1519
1520 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001521 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522
1523 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001525
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 /*
1527 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1528 * at the last line here (why does it have to be one row too low?).
1529 */
1530 if (State == ASKMORE || State == CONFIRM)
1531 gui.row = gui.num_rows;
1532
Bram Moolenaar30613902019-12-01 22:11:18 +01001533 // Only comparing Rows and Columns may be sufficient, but let's stay on
1534 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1536 || gui.num_rows != Rows || gui.num_cols != Columns)
1537 shell_resized();
1538
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001539#ifdef FEAT_GUI_HAIKU
1540 vim_unlock_screen();
1541#endif
1542
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 gui_update_scrollbars(TRUE);
1544 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001545#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 xim_set_status_area();
1547#endif
1548
1549 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001550
Bram Moolenaar30613902019-12-01 22:11:18 +01001551 // We may have been called again while redrawing the screen.
1552 // Need to do it all again with the latest size then. But only if the size
1553 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 if (new_pixel_height)
1555 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001556 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1557 {
1558 new_pixel_width = 0;
1559 new_pixel_height = 0;
1560 }
1561 else
1562 {
1563 pixel_width = new_pixel_width;
1564 pixel_height = new_pixel_height;
1565 goto again;
1566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 }
1568}
1569
1570/*
1571 * Check if gui_resize_shell() must be called.
1572 */
1573 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001574gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001577 // careful: gui_resize_shell() may postpone the resize again if we
1578 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001579 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580}
1581
1582 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001583gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584{
1585 Rows = gui.num_rows;
1586 Columns = gui.num_cols;
1587 return OK;
1588}
1589
1590/*
1591 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001592 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1593 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001594 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1595 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001598gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001599 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001600 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001601 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602{
1603 int base_width;
1604 int base_height;
1605 int width;
1606 int height;
1607 int min_width;
1608 int min_height;
1609 int screen_w;
1610 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001611#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001612 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001613 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001614#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001615 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616
1617 if (!gui.shell_created)
1618 return;
1619
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001620#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001621 // If not setting to a user specified size and maximized, calculate the
1622 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001623 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1624 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 {
1626 gui_mch_newfont();
1627 return;
1628 }
1629#endif
1630
1631 base_width = gui_get_base_width();
1632 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001633 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001634 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001635 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001636
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001637 width = Columns * gui.char_width + base_width;
1638 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639
1640 if (fit_to_display)
1641 {
1642 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001643 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 {
1645 Columns = (screen_w - base_width) / gui.char_width;
1646 if (Columns < MIN_COLUMNS)
1647 Columns = MIN_COLUMNS;
1648 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001649#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001650 ++did_adjust;
1651#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001653 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 {
1655 Rows = (screen_h - base_height) / gui.char_height;
1656 check_shellsize();
1657 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001658#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001659 ++did_adjust;
1660#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001662#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001663 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1664 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001665 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001666 un_maximize = FALSE;
1667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001669 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 gui.num_cols = Columns;
1671 gui.num_rows = Rows;
1672
1673 min_width = base_width + MIN_COLUMNS * gui.char_width;
1674 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001675 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001676
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001677#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001678 if (un_maximize)
1679 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001680 // If the window size is smaller than the screen unmaximize the
1681 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001682 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1683 if ((width + gui.char_width < screen_w
1684 || height + gui.char_height * 2 < screen_h)
1685 && gui_mch_maximized())
1686 gui_mch_unmaximize();
1687 }
1688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689
1690 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001691 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001693 if (fit_to_display && x >= 0 && y >= 0)
1694 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001695 // Some window managers put the Vim window left of/above the screen.
1696 // Only change the position if it wasn't already negative before
1697 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 gui_mch_update();
1699 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1700 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1701 }
1702
1703 gui_position_components(width);
1704 gui_update_scrollbars(TRUE);
1705 gui_reset_scroll_region();
1706}
1707
1708/*
1709 * Called when Rows and/or Columns has changed.
1710 */
1711 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001712gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
1714 gui_reset_scroll_region();
1715}
1716
1717/*
1718 * Make scroll region cover whole screen.
1719 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001720 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001721gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
1723 gui.scroll_region_top = 0;
1724 gui.scroll_region_bot = gui.num_rows - 1;
1725 gui.scroll_region_left = 0;
1726 gui.scroll_region_right = gui.num_cols - 1;
1727}
1728
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001729 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001730gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaar30613902019-12-01 22:11:18 +01001732 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001734 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 gui.highlight_mask |= mask;
1736}
1737
1738 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001739gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740{
Bram Moolenaar30613902019-12-01 22:11:18 +01001741 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001743 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 gui.highlight_mask &= ~mask;
1745}
1746
1747/*
1748 * Clear a rectangular region of the screen from text pos (row1, col1) to
1749 * (row2, col2) inclusive.
1750 */
1751 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001752gui_clear_block(
1753 int row1,
1754 int col1,
1755 int row2,
1756 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757{
Bram Moolenaar30613902019-12-01 22:11:18 +01001758 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 clip_may_clear_selection(row1, row2);
1760
1761 gui_mch_clear_block(row1, col1, row2, col2);
1762
Bram Moolenaar30613902019-12-01 22:11:18 +01001763 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1765 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1766 gui.cursor_is_valid = FALSE;
1767}
1768
1769/*
1770 * Write code to update the cursor later. This avoids the need to flush the
1771 * output buffer before calling gui_update_cursor().
1772 */
1773 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001774gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775{
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001776 OUT_STR(IF_EB("\033|s", ESC_STR "|s"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777}
1778
1779 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001780gui_write(
1781 char_u *s,
1782 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
1784 char_u *p;
1785 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001786 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 int force_scrollbar = FALSE;
1788 static win_T *old_curwin = NULL;
1789
Bram Moolenaar30613902019-12-01 22:11:18 +01001790// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791#ifdef DEBUG_GUI_WRITE
1792 {
1793 int i;
1794 char_u *str;
1795
1796 printf("gui_write(%d):\n ", len);
1797 for (i = 0; i < len; i++)
1798 if (s[i] == ESC)
1799 {
1800 if (i != 0)
1801 printf("\n ");
1802 printf("<ESC>");
1803 }
1804 else
1805 {
1806 str = transchar_byte(s[i]);
1807 if (str[0] && str[1])
1808 printf("<%s>", (char *)str);
1809 else
1810 printf("%s", (char *)str);
1811 }
1812 printf("\n");
1813 }
1814#endif
1815 while (len)
1816 {
1817 if (s[0] == ESC && s[1] == '|')
1818 {
1819 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001820 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 {
1822 arg1 = getdigits(&p);
1823 if (p > s + len)
1824 break;
1825 if (*p == ';')
1826 {
1827 ++p;
1828 arg2 = getdigits(&p);
1829 if (p > s + len)
1830 break;
1831 }
1832 }
1833 switch (*p)
1834 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001835 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 clip_scroll_selection(9999);
1837 gui_mch_clear_all();
1838 gui.cursor_is_valid = FALSE;
1839 force_scrollbar = TRUE;
1840 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001841 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 gui_set_cursor(arg1, arg2);
1843 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001844 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 force_cursor = TRUE;
1846 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001847 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 if (arg1 < arg2)
1849 {
1850 gui.scroll_region_top = arg1;
1851 gui.scroll_region_bot = arg2;
1852 }
1853 else
1854 {
1855 gui.scroll_region_top = arg2;
1856 gui.scroll_region_bot = arg1;
1857 }
1858 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001859 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 if (arg1 < arg2)
1861 {
1862 gui.scroll_region_left = arg1;
1863 gui.scroll_region_right = arg2;
1864 }
1865 else
1866 {
1867 gui.scroll_region_left = arg2;
1868 gui.scroll_region_right = arg1;
1869 }
1870 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001871 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 gui_delete_lines(gui.row, 1);
1873 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001874 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 gui_delete_lines(gui.row, arg1);
1876 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001877 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 gui_insert_lines(gui.row, 1);
1879 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001880 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 gui_insert_lines(gui.row, arg1);
1882 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001883 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 gui_clear_block(gui.row, gui.col, gui.row,
1885 (int)Columns - 1);
1886 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001887 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 gui_start_highlight(arg1);
1889 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001890 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 gui_stop_highlight(arg1);
1892 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001893 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1895 break;
1896 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001897 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 break;
1899 }
1900 len -= (int)(++p - s);
1901 s = p;
1902 }
1903 else if (
1904#ifdef EBCDIC
Bram Moolenaar30613902019-12-01 22:11:18 +01001905 CtrlChar(s[0]) != 0 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906#else
Bram Moolenaar30613902019-12-01 22:11:18 +01001907 s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908#endif
1909#ifdef FEAT_SIGN_ICONS
1910 && s[0] != SIGN_BYTE
1911# ifdef FEAT_NETBEANS_INTG
1912 && s[0] != MULTISIGN_BYTE
1913# endif
1914#endif
1915 )
1916 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001917 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 {
1919 gui.col = 0;
1920 if (gui.row < gui.scroll_region_bot)
1921 gui.row++;
1922 else
1923 gui_delete_lines(gui.scroll_region_top, 1);
1924 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001925 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 {
1927 gui.col = 0;
1928 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 {
1931 if (gui.col)
1932 --gui.col;
1933 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001934 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
1936 ++gui.col;
1937 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001938 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
1940 gui_mch_beep();
1941 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001942 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943
Bram Moolenaar30613902019-12-01 22:11:18 +01001944 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 ++s;
1946 }
1947 else
1948 {
1949 p = s;
1950 while (len > 0 && (
1951#ifdef EBCDIC
1952 CtrlChar(*p) == 0
1953#else
1954 *p >= 0x20
1955#endif
1956#ifdef FEAT_SIGN_ICONS
1957 || *p == SIGN_BYTE
1958# ifdef FEAT_NETBEANS_INTG
1959 || *p == MULTISIGN_BYTE
1960# endif
1961#endif
1962 ))
1963 {
1964 len--;
1965 p++;
1966 }
1967 gui_outstr(s, (int)(p - s));
1968 s = p;
1969 }
1970 }
1971
Bram Moolenaar30613902019-12-01 22:11:18 +01001972 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
1973 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 if (force_cursor)
1975 gui_update_cursor(TRUE, TRUE);
1976
Bram Moolenaar30613902019-12-01 22:11:18 +01001977 // When switching to another window the dragging must have stopped.
1978 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 if (old_curwin != curwin)
1980 gui.dragged_sb = SBAR_NONE;
1981
Bram Moolenaar30613902019-12-01 22:11:18 +01001982 // Update the scrollbars after clearing the screen or when switched
1983 // to another window.
1984 // Update the horizontal scrollbar always, it's difficult to check all
1985 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 if (force_scrollbar || old_curwin != curwin)
1987 gui_update_scrollbars(force_scrollbar);
1988 else
1989 gui_update_horiz_scrollbar(FALSE);
1990 old_curwin = curwin;
1991
1992 /*
1993 * We need to make sure this is cleared since Athena doesn't tell us when
1994 * he is done dragging. Do the same for GTK.
1995 */
Bram Moolenaar9372a112005-12-06 19:59:18 +00001996#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 gui.dragged_sb = SBAR_NONE;
1998#endif
1999
Bram Moolenaar30613902019-12-01 22:11:18 +01002000 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001}
2002
2003/*
2004 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2005 * produces wrong results. Call gui_dont_update_cursor() before that code and
2006 * gui_can_update_cursor() afterwards.
2007 */
2008 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002009gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010{
2011 if (gui.in_use)
2012 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002013 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002014 if (undraw)
2015 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 can_update_cursor = FALSE;
2017 }
2018}
2019
2020 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002021gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002024 // No need to update the cursor right now, there is always more output
2025 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026}
2027
Bram Moolenaara338adc2018-01-31 20:51:47 +01002028/*
2029 * Disable issuing gui_mch_flush().
2030 */
2031 void
2032gui_disable_flush(void)
2033{
2034 ++disable_flush;
2035}
2036
2037/*
2038 * Enable issuing gui_mch_flush().
2039 */
2040 void
2041gui_enable_flush(void)
2042{
2043 --disable_flush;
2044}
2045
2046/*
2047 * Issue gui_mch_flush() if it is not disabled.
2048 */
2049 void
2050gui_may_flush(void)
2051{
2052 if (disable_flush == 0)
2053 gui_mch_flush();
2054}
2055
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002057gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058{
2059 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061
2062 if (len == 0)
2063 return;
2064
2065 if (len < 0)
2066 len = (int)STRLEN(s);
2067
2068 while (len > 0)
2069 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 if (has_mbyte)
2071 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002072 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 cells = 0;
2074 for (this_len = 0; this_len < len; )
2075 {
2076 cells += (*mb_ptr2cells)(s + this_len);
2077 if (gui.col + cells > Columns)
2078 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002079 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 }
2081 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002082 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 }
2084 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 if (gui.col + len > Columns)
2086 this_len = Columns - gui.col;
2087 else
2088 this_len = len;
2089
2090 (void)gui_outstr_nowrap(s, this_len,
2091 0, (guicolor_T)0, (guicolor_T)0, 0);
2092 s += this_len;
2093 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002094 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 if (len > 0 && gui.col < Columns)
2096 (void)gui_outstr_nowrap((char_u *)" ", 1,
2097 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002098 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 if (gui.col >= Columns)
2100 {
2101 gui.col = 0;
2102 gui.row++;
2103 }
2104 }
2105}
2106
2107/*
2108 * Output one character (may be one or two display cells).
2109 * Caller must check for valid "off".
2110 * Returns FAIL or OK, just like gui_outstr_nowrap().
2111 */
2112 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002113gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002114 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002115 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002116 guicolor_T fg, // colors for cursor
2117 guicolor_T bg, // colors for cursor
2118 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 char_u buf[MB_MAXBYTES + 1];
2121
Bram Moolenaar30613902019-12-01 22:11:18 +01002122 // Don't draw right halve of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 if (enc_utf8 && ScreenLines[off] == 0)
2124 return OK;
2125
2126 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002127 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2129 flags, fg, bg, back);
2130
2131 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2132 {
2133 buf[0] = ScreenLines[off];
2134 buf[1] = ScreenLines2[off];
2135 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2136 }
2137
Bram Moolenaar30613902019-12-01 22:11:18 +01002138 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002140 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142}
2143
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002144#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145/*
2146 * Output the string at the given screen position. This is used in place
2147 * of gui_screenchar() where possible because Pango needs as much context
2148 * as possible to work nicely. It's a lot faster as well.
2149 */
2150 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002151gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002152 int off, // Offset from start of screen
2153 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002154 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002155 guicolor_T fg, // colors for cursor
2156 guicolor_T bg, // colors for cursor
2157 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158{
2159 char_u *buf;
2160 int outlen = 0;
2161 int i;
2162 int retval;
2163
Bram Moolenaar30613902019-12-01 22:11:18 +01002164 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 return OK;
2166
2167 if (enc_utf8)
2168 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002169 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002171 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172
2173 for (i = off; i < off + len; ++i)
2174 {
2175 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002176 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178 if (ScreenLinesUC[i] == 0)
2179 buf[outlen++] = ScreenLines[i];
2180 else
2181 outlen += utfc_char2bytes(i, buf + outlen);
2182 }
2183
Bram Moolenaar30613902019-12-01 22:11:18 +01002184 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2186 vim_free(buf);
2187
2188 return retval;
2189 }
2190 else if (enc_dbcs == DBCS_JPNU)
2191 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002192 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002194 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195
2196 for (i = off; i < off + len; ++i)
2197 {
2198 buf[outlen++] = ScreenLines[i];
2199
Bram Moolenaar30613902019-12-01 22:11:18 +01002200 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 if (ScreenLines[i] == 0x8e)
2202 buf[outlen++] = ScreenLines2[i];
2203 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2204 buf[outlen++] = ScreenLines[++i];
2205 }
2206
Bram Moolenaar30613902019-12-01 22:11:18 +01002207 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2209 vim_free(buf);
2210
2211 return retval;
2212 }
2213 else
2214 {
2215 return gui_outstr_nowrap(&ScreenLines[off], len,
2216 flags, fg, bg, back);
2217 }
2218}
Bram Moolenaar30613902019-12-01 22:11:18 +01002219#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220
2221/*
2222 * Output the given string at the current cursor position. If the string is
2223 * too long to fit on the line, then it is truncated.
2224 * "flags":
2225 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2226 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002227 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 * background.
2229 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2230 * it.
2231 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2232 * FAIL (the caller should start drawing "back" chars back).
2233 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002234 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002235gui_outstr_nowrap(
2236 char_u *s,
2237 int len,
2238 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002239 guicolor_T fg, // colors for cursor
2240 guicolor_T bg, // colors for cursor
2241 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242{
2243 long_u highlight_mask;
2244 long_u hl_mask_todo;
2245 guicolor_T fg_color;
2246 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002247 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002248#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002250 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251# ifdef FEAT_XFONTSET
2252 GuiFontset fontset = NOFONTSET;
2253# endif
2254#endif
2255 attrentry_T *aep = NULL;
2256 int draw_flags;
2257 int col = gui.col;
2258#ifdef FEAT_SIGN_ICONS
2259 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002260 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002261 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262# ifdef FEAT_NETBEANS_INTG
2263 int multi_sign = FALSE;
2264# endif
2265#endif
2266
2267 if (len < 0)
2268 len = (int)STRLEN(s);
2269 if (len == 0)
2270 return OK;
2271
2272#ifdef FEAT_SIGN_ICONS
2273 if (*s == SIGN_BYTE
2274# ifdef FEAT_NETBEANS_INTG
2275 || *s == MULTISIGN_BYTE
2276# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002277 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 {
2279# ifdef FEAT_NETBEANS_INTG
2280 if (*s == MULTISIGN_BYTE)
2281 multi_sign = TRUE;
2282# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002283 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002284 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2285 (curwin->w_p_nu || curwin->w_p_rnu))
2286 {
2287 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2288 s = extra;
2289 }
2290 else
2291 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 if (len == 1 && col > 0)
2293 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002294 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002295 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002296 // right align sign icon in the number column
2297 signcol = col + len - 3;
2298 else
2299 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 draw_sign = TRUE;
2301 highlight_mask = 0;
2302 }
2303 else
2304#endif
2305 if (gui.highlight_mask > HL_ALL)
2306 {
2307 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002308 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 highlight_mask = 0;
2310 else
2311 highlight_mask = aep->ae_attr;
2312 }
2313 else
2314 highlight_mask = gui.highlight_mask;
2315 hl_mask_todo = highlight_mask;
2316
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002317#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002318 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2320 font = aep->ae_u.gui.font;
2321# ifdef FEAT_XFONTSET
2322 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2323 fontset = aep->ae_u.gui.fontset;
2324# endif
2325 else
2326 {
2327# ifdef FEAT_XFONTSET
2328 if (gui.fontset != NOFONTSET)
2329 fontset = gui.fontset;
2330 else
2331# endif
2332 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2333 {
2334 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2335 {
2336 font = gui.boldital_font;
2337 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2338 }
2339 else if (gui.bold_font != NOFONT)
2340 {
2341 font = gui.bold_font;
2342 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2343 }
2344 else
2345 font = gui.norm_font;
2346 }
2347 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2348 {
2349 font = gui.ital_font;
2350 hl_mask_todo &= ~HL_ITALIC;
2351 }
2352 else
2353 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002354
Bram Moolenaardb250522013-06-17 22:43:25 +02002355 /*
2356 * Choose correct wide_font by font. wide_font should be set with font
2357 * at same time in above block. But it will make many "ifdef" nasty
2358 * blocks. So we do it here.
2359 */
2360 if (font == gui.boldital_font && gui.wide_boldital_font)
2361 wide_font = gui.wide_boldital_font;
2362 else if (font == gui.bold_font && gui.wide_bold_font)
2363 wide_font = gui.wide_bold_font;
2364 else if (font == gui.ital_font && gui.wide_ital_font)
2365 wide_font = gui.wide_ital_font;
2366 else if (font == gui.norm_font && gui.wide_font)
2367 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 }
2369# ifdef FEAT_XFONTSET
2370 if (fontset != NOFONTSET)
2371 gui_mch_set_fontset(fontset);
2372 else
2373# endif
2374 gui_mch_set_font(font);
2375#endif
2376
2377 draw_flags = 0;
2378
Bram Moolenaar30613902019-12-01 22:11:18 +01002379 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 bg_color = gui.back_pixel;
2381 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2382 {
2383 draw_flags |= DRAW_CURSOR;
2384 fg_color = fg;
2385 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002386 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 }
2388 else if (aep != NULL)
2389 {
2390 fg_color = aep->ae_u.gui.fg_color;
2391 if (fg_color == INVALCOLOR)
2392 fg_color = gui.norm_pixel;
2393 bg_color = aep->ae_u.gui.bg_color;
2394 if (bg_color == INVALCOLOR)
2395 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002396 sp_color = aep->ae_u.gui.sp_color;
2397 if (sp_color == INVALCOLOR)
2398 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 }
2400 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002401 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002403 sp_color = fg_color;
2404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405
2406 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2407 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002408#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 gui_mch_set_colors(bg_color, fg_color);
2410#else
2411 gui_mch_set_fg_color(bg_color);
2412 gui_mch_set_bg_color(fg_color);
2413#endif
2414 }
2415 else
2416 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02002417#if defined(AMIGA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 gui_mch_set_colors(fg_color, bg_color);
2419#else
2420 gui_mch_set_fg_color(fg_color);
2421 gui_mch_set_bg_color(bg_color);
2422#endif
2423 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002424 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425
Bram Moolenaar30613902019-12-01 22:11:18 +01002426 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 if (!(flags & GUI_MON_NOCLEAR))
2428 clip_may_clear_selection(gui.row, gui.row);
2429
2430
Bram Moolenaar30613902019-12-01 22:11:18 +01002431 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2433 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
2435 /*
2436 * When drawing bold or italic characters the spill-over from the left
2437 * neighbor may be destroyed. Let the caller backup to start redrawing
2438 * just after a blank.
2439 */
2440 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2441 return FAIL;
2442
Bram Moolenaare60acc12011-05-10 16:41:25 +02002443#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002444 // If there's no italic font, then fake it.
2445 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 if (hl_mask_todo & HL_ITALIC)
2447 draw_flags |= DRAW_ITALIC;
2448
Bram Moolenaar30613902019-12-01 22:11:18 +01002449 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (hl_mask_todo & HL_UNDERLINE)
2451 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002452
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002454 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002455 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 draw_flags |= DRAW_UNDERL;
2457#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002458 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002459 if (hl_mask_todo & HL_UNDERCURL)
2460 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461
Bram Moolenaar30613902019-12-01 22:11:18 +01002462 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002463 if (hl_mask_todo & HL_STRIKETHROUGH)
2464 draw_flags |= DRAW_STRIKE;
2465
Bram Moolenaar30613902019-12-01 22:11:18 +01002466 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 if (flags & GUI_MON_TRS_CURSOR)
2468 draw_flags |= DRAW_TRANSP;
2469
2470 /*
2471 * Draw the text.
2472 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002473#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002474 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2476#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 if (enc_utf8)
2478 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002479 int start; // index of bytes to be drawn
2480 int cells; // cellwidth of bytes to be drawn
2481 int thislen; // length of bytes to be drawn
2482 int cn; // cellwidth of current char
2483 int i; // index of current char
2484 int c; // current char value
2485 int cl; // byte length of current char
2486 int comping; // current char is composing
2487 int scol = col; // screen column
2488 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002489 int prev_wide = FALSE;
2490 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002491# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002492 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002493# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002494 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002495# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496
Bram Moolenaar30613902019-12-01 22:11:18 +01002497 // Break the string at a composing character, it has to be drawn on
2498 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 start = 0;
2500 cells = 0;
2501 for (i = 0; i < len; i += cl)
2502 {
2503 c = utf_ptr2char(s + i);
2504 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002506 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002508 if (!comping || sep_comp)
2509 {
2510 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002511# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002512 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002513# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002514 && wide_font != NOFONT)
2515 curr_wide = TRUE;
2516 else
2517 curr_wide = FALSE;
2518 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002519 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002520 if (cl == 0) // hit end of string
2521 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522
Bram Moolenaar45933962013-01-23 17:43:57 +01002523 wide_changed = curr_wide != prev_wide;
2524
Bram Moolenaar30613902019-12-01 22:11:18 +01002525 // Print the string so far if it's the last character or there is
2526 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002527 if (i + cl >= len || (comping && sep_comp && i > start)
2528 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002529# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002531# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002532 // No fontset: At least draw char after wide char at
2533 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002536 )
2537# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 )
2539 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002540 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 thislen = i - start;
2542 else
2543 thislen = i - start + cl;
2544 if (thislen > 0)
2545 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002546 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002547 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2549 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002550 if (prev_wide)
2551 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 start += thislen;
2553 }
2554 scol += cells;
2555 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002556 // Adjust to not draw a character which width is changed
2557 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002558 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002560 scol -= cn;
2561 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 }
2563
Bram Moolenaar13505972019-01-24 15:04:48 +01002564# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002565 // No fontset: draw a space to fill the gap after a wide char
2566 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002568# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002570# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002571 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2573 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002574# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002576 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002577 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002579# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002580 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002581 gui_mch_draw_string(gui.row, scol, s + i, cl,
2582 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002583# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002584 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2585 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002586# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 start = i + cl;
2588 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002589 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002591 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 len = scol - col;
2593 }
2594 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
2596 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 if (enc_dbcs == DBCS_JPNU)
2598 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002599 // Get the length in display cells, this can be different from the
2600 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002601 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002604#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
2606 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2607 gui.col = col + len;
2608
Bram Moolenaar30613902019-12-01 22:11:18 +01002609 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 if (flags & GUI_MON_NOCLEAR)
2611 clip_may_redraw_selection(gui.row, col, len);
2612
2613 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2614 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002615 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 if (gui.cursor_row == gui.row
2617 && gui.cursor_col >= col
2618 && gui.cursor_col < col + len)
2619 gui.cursor_is_valid = FALSE;
2620 }
2621
2622#ifdef FEAT_SIGN_ICONS
2623 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002624 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002625 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002626# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002627 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 if (multi_sign)
2629 netbeans_draw_multisign_indicator(gui.row);
2630# endif
2631#endif
2632
2633 return OK;
2634}
2635
2636/*
2637 * Un-draw the cursor. Actually this just redraws the character at the given
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002638 * position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 */
2640 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002641gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642{
2643 if (gui.cursor_is_valid)
2644 {
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002645 // Redraw the character just before too, if there is one, because with
2646 // some fonts and characters there can be a one pixel overlap.
2647 gui_redraw_block(gui.cursor_row,
2648 gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col,
2649 gui.cursor_row, gui.cursor_col, GUI_MON_NOCLEAR);
2650
Bram Moolenaar54612582019-11-21 17:13:31 +01002651 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2652 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 gui.cursor_is_valid = FALSE;
2654 }
2655}
2656
2657 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002658gui_redraw(
2659 int x,
2660 int y,
2661 int w,
2662 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663{
2664 int row1, col1, row2, col2;
2665
2666 row1 = Y_2_ROW(y);
2667 col1 = X_2_COL(x);
2668 row2 = Y_2_ROW(y + h - 1);
2669 col2 = X_2_COL(x + w - 1);
2670
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002671 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
2673 /*
2674 * We may need to redraw the cursor, but don't take it upon us to change
2675 * its location after a scroll.
2676 * (maybe be more strict even and test col too?)
2677 * These things may be outside the update/clipping region and reality may
2678 * not reflect Vims internal ideas if these operations are clipped away.
2679 */
2680 if (gui.row == gui.cursor_row)
2681 gui_update_cursor(TRUE, TRUE);
2682}
2683
2684/*
2685 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2686 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002688 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002689gui_redraw_block(
2690 int row1,
2691 int col1,
2692 int row2,
2693 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002694 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695{
2696 int old_row, old_col;
2697 long_u old_hl_mask;
2698 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002699 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 int idx, len;
2701 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
Bram Moolenaar30613902019-12-01 22:11:18 +01002704 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002706 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707
Bram Moolenaar30613902019-12-01 22:11:18 +01002708 // Don't try to draw outside the shell!
2709 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 col1 = check_col(col1);
2711 col2 = check_col(col2);
2712 row1 = check_row(row1);
2713 row2 = check_row(row2);
2714
Bram Moolenaar30613902019-12-01 22:11:18 +01002715 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 old_row = gui.row;
2717 old_col = gui.col;
2718 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 orig_col1 = col1;
2720 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721
2722 for (gui.row = row1; gui.row <= row2; gui.row++)
2723 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002724 // When only half of a double-wide character is in the block, include
2725 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 col1 = orig_col1;
2727 col2 = orig_col2;
2728 off = LineOffset[gui.row];
2729 if (enc_dbcs != 0)
2730 {
2731 if (col1 > 0)
2732 col1 -= dbcs_screen_head_off(ScreenLines + off,
2733 ScreenLines + off + col1);
2734 col2 += dbcs_screen_tail_off(ScreenLines + off,
2735 ScreenLines + off + col2);
2736 }
2737 else if (enc_utf8)
2738 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002739 if (ScreenLines[off + col1] == 0)
2740 {
2741 if (col1 > 0)
2742 --col1;
2743 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002744 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002745 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002746 // Make this IEMSGN when it no longer breaks Travis CI.
2747 vim_snprintf((char *)IObuff, IOSIZE,
2748 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2749 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002750 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002751 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002752 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002753#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2755 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 gui.col = col1;
2759 off = LineOffset[gui.row] + gui.col;
2760 len = col2 - col1 + 1;
2761
Bram Moolenaar30613902019-12-01 22:11:18 +01002762 // Find how many chars back this highlighting starts, or where a space
2763 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 for (back = 0; back < col1; ++back)
2765 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2766 || ScreenLines[off - 1 - back] == ' ')
2767 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768
Bram Moolenaar30613902019-12-01 22:11:18 +01002769 // Break it up in strings of characters with the same attributes.
2770 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 while (len > 0)
2772 {
2773 first_attr = ScreenAttrs[off];
2774 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002775#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 if (enc_utf8 && ScreenLinesUC[off] != 0)
2777 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002778 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 nback = gui_screenchar(off, flags,
2780 (guicolor_T)0, (guicolor_T)0, back);
2781 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2782 idx = 2;
2783 else
2784 idx = 1;
2785 }
2786 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2787 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002788 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 nback = gui_screenchar(off, flags,
2790 (guicolor_T)0, (guicolor_T)0, back);
2791 idx = 1;
2792 }
2793 else
2794#endif
2795 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002796#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 for (idx = 0; idx < len; ++idx)
2798 {
2799 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002800 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 if (ScreenAttrs[off + idx] != first_attr)
2802 break;
2803 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002804 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 nback = gui_screenstr(off, idx, flags,
2806 (guicolor_T)0, (guicolor_T)0, back);
2807#else
2808 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2809 idx++)
2810 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002811 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2813 break;
2814 if (enc_dbcs == DBCS_JPNU)
2815 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002816 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 if (ScreenLines[off + idx] == 0x8e)
2818 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002819 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002821 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 }
2824 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2825 (guicolor_T)0, (guicolor_T)0, back);
2826#endif
2827 }
2828 if (nback == FAIL)
2829 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002830 // Must back up to start drawing where a bold or italic word
2831 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 off -= back;
2833 len += back;
2834 gui.col -= back;
2835 }
2836 else
2837 {
2838 off += idx;
2839 len -= idx;
2840 }
2841 back = 0;
2842 }
2843 }
2844
Bram Moolenaar30613902019-12-01 22:11:18 +01002845 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 gui.row = old_row;
2847 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002848 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849}
2850
2851 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002852gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853{
2854 if (count <= 0)
2855 return;
2856
2857 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002858 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 gui_clear_block(row, gui.scroll_region_left,
2860 gui.scroll_region_bot, gui.scroll_region_right);
2861 else
2862 {
2863 gui_mch_delete_lines(row, count);
2864
Bram Moolenaar30613902019-12-01 22:11:18 +01002865 // If the cursor was in the deleted lines it's now gone. If the
2866 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 if (gui.cursor_row >= row
2868 && gui.cursor_col >= gui.scroll_region_left
2869 && gui.cursor_col <= gui.scroll_region_right)
2870 {
2871 if (gui.cursor_row < row + count)
2872 gui.cursor_is_valid = FALSE;
2873 else if (gui.cursor_row <= gui.scroll_region_bot)
2874 gui.cursor_row -= count;
2875 }
2876 }
2877}
2878
2879 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002880gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881{
2882 if (count <= 0)
2883 return;
2884
2885 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002886 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 gui_clear_block(row, gui.scroll_region_left,
2888 gui.scroll_region_bot, gui.scroll_region_right);
2889 else
2890 {
2891 gui_mch_insert_lines(row, count);
2892
2893 if (gui.cursor_row >= gui.row
2894 && gui.cursor_col >= gui.scroll_region_left
2895 && gui.cursor_col <= gui.scroll_region_right)
2896 {
2897 if (gui.cursor_row <= gui.scroll_region_bot - count)
2898 gui.cursor_row += count;
2899 else if (gui.cursor_row <= gui.scroll_region_bot)
2900 gui.cursor_is_valid = FALSE;
2901 }
2902 }
2903}
2904
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002905#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002906/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002907 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2908 */
2909 static int
2910gui_wait_for_chars_3(
2911 long wtime,
2912 int *interrupted UNUSED,
2913 int ignore_input UNUSED)
2914{
2915 return gui_mch_wait_for_chars(wtime);
2916}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002917#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002918
2919/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002920 * Returns OK if a character was found to be available within the given time,
2921 * or FAIL otherwise.
2922 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002923 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002924gui_wait_for_chars_or_timer(
2925 long wtime,
2926 int *interrupted UNUSED,
2927 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002928{
2929#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002930 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2931 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002932#else
2933 return gui_mch_wait_for_chars(wtime);
2934#endif
2935}
2936
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937/*
2938 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002939 * "wtime" == -1 Wait forever.
2940 * "wtime" == 0 Don't wait.
2941 * "wtime" > 0 Wait wtime milliseconds for a character.
2942 *
2943 * Returns the number of characters read or zero when timed out or interrupted.
2944 * "buf" may be NULL, in which case a non-zero number is returned if characters
2945 * are available.
2946 */
2947 static int
2948gui_wait_for_chars_buf(
2949 char_u *buf,
2950 int maxlen,
2951 long wtime, // don't use "time", MIPS cannot handle it
2952 int tb_change_cnt)
2953{
2954 int retval;
2955
2956#ifdef FEAT_MENU
2957 // If we're going to wait a bit, update the menus and mouse shape for the
2958 // current State.
2959 if (wtime != 0)
2960 gui_update_menus(0);
2961#endif
2962
2963 gui_mch_update();
2964 if (input_available()) // Got char, return immediately
2965 {
2966 if (buf != NULL && !typebuf_changed(tb_change_cnt))
2967 return read_from_input_buf(buf, (long)maxlen);
2968 return 0;
2969 }
2970 if (wtime == 0) // Don't wait for char
2971 return FAIL;
2972
2973 // Before waiting, flush any output to the screen.
2974 gui_mch_flush();
2975
2976 // Blink while waiting for a character.
2977 gui_mch_start_blink();
2978
2979 // Common function to loop until "wtime" is met, while handling timers and
2980 // other callbacks.
2981 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
2982 gui_wait_for_chars_or_timer, NULL);
2983
2984 gui_mch_stop_blink(TRUE);
2985
2986 return retval;
2987}
2988
2989/*
2990 * Wait for a character from the keyboard without actually reading it.
2991 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 * wtime == -1 Wait forever.
2993 * wtime == 0 Don't wait.
2994 * wtime > 0 Wait wtime milliseconds for a character.
2995 * Returns OK if a character was found to be available within the given time,
2996 * or FAIL otherwise.
2997 */
2998 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002999gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003001 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002}
3003
3004/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003005 * Equivalent of mch_inchar() for the GUI.
3006 */
3007 int
3008gui_inchar(
3009 char_u *buf,
3010 int maxlen,
Bram Moolenaar30613902019-12-01 22:11:18 +01003011 long wtime, // milli seconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003012 int tb_change_cnt)
3013{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003014 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003015}
3016
3017/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003018 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 */
3020 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003021fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
3023 p[0] = (char_u)(col / 128 + ' ' + 1);
3024 p[1] = (char_u)(col % 128 + ' ' + 1);
3025 p[2] = (char_u)(row / 128 + ' ' + 1);
3026 p[3] = (char_u)(row % 128 + ' ' + 1);
3027}
3028
3029/*
3030 * Generic mouse support function. Add a mouse event to the input buffer with
3031 * the given properties.
3032 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3033 * MOUSE_X1, MOUSE_X2
3034 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003035 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3036 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 * x, y --- Coordinates of mouse in pixels.
3038 * repeated_click --- TRUE if this click comes only a short time after a
3039 * previous click.
3040 * modifiers --- Bit field which may be any of the following modifiers
3041 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3042 * This function will ignore drag events where the mouse has not moved to a new
3043 * character.
3044 */
3045 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003046gui_send_mouse_event(
3047 int button,
3048 int x,
3049 int y,
3050 int repeated_click,
3051 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052{
3053 static int prev_row = 0, prev_col = 0;
3054 static int prev_button = -1;
3055 static int num_clicks = 1;
3056 char_u string[10];
3057 enum key_extra button_char;
3058 int row, col;
3059#ifdef FEAT_CLIPBOARD
3060 int checkfor;
3061 int did_clip = FALSE;
3062#endif
3063
3064 /*
3065 * Scrolling may happen at any time, also while a selection is present.
3066 */
3067 switch (button)
3068 {
3069 case MOUSE_X1:
3070 button_char = KE_X1MOUSE;
3071 goto button_set;
3072 case MOUSE_X2:
3073 button_char = KE_X2MOUSE;
3074 goto button_set;
3075 case MOUSE_4:
3076 button_char = KE_MOUSEDOWN;
3077 goto button_set;
3078 case MOUSE_5:
3079 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003080 goto button_set;
3081 case MOUSE_6:
3082 button_char = KE_MOUSELEFT;
3083 goto button_set;
3084 case MOUSE_7:
3085 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086button_set:
3087 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003088 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 if (hold_gui_events)
3090 return;
3091
3092 string[3] = CSI;
3093 string[4] = KS_EXTRA;
3094 string[5] = (int)button_char;
3095
Bram Moolenaar30613902019-12-01 22:11:18 +01003096 // Pass the pointer coordinates of the scroll event so that we
3097 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 row = gui_xy2colrow(x, y, &col);
3099 string[6] = (char_u)(col / 128 + ' ' + 1);
3100 string[7] = (char_u)(col % 128 + ' ' + 1);
3101 string[8] = (char_u)(row / 128 + ' ' + 1);
3102 string[9] = (char_u)(row % 128 + ' ' + 1);
3103
3104 if (modifiers == 0)
3105 add_to_input_buf(string + 3, 7);
3106 else
3107 {
3108 string[0] = CSI;
3109 string[1] = KS_MODIFIER;
3110 string[2] = 0;
3111 if (modifiers & MOUSE_SHIFT)
3112 string[2] |= MOD_MASK_SHIFT;
3113 if (modifiers & MOUSE_CTRL)
3114 string[2] |= MOD_MASK_CTRL;
3115 if (modifiers & MOUSE_ALT)
3116 string[2] |= MOD_MASK_ALT;
3117 add_to_input_buf(string, 10);
3118 }
3119 return;
3120 }
3121 }
3122
3123#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003124 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 if (clip_star.state == SELECT_IN_PROGRESS)
3126 {
3127 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003128
3129 // A release event may still need to be sent if the position is equal.
3130 row = gui_xy2colrow(x, y, &col);
3131 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3132 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 }
3134
Bram Moolenaar30613902019-12-01 22:11:18 +01003135 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 switch (get_real_state())
3137 {
3138 case NORMAL_BUSY:
3139 case OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003140# ifdef FEAT_TERMINAL
3141 case TERMINAL:
3142# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 case NORMAL: checkfor = MOUSE_NORMAL; break;
3144 case VISUAL: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar371d5402006-03-20 21:47:49 +00003145 case SELECTMODE: checkfor = MOUSE_VISUAL; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 case REPLACE:
3147 case REPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 case VREPLACE:
3149 case VREPLACE+LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 case INSERT:
3151 case INSERT+LANGMAP: checkfor = MOUSE_INSERT; break;
3152 case ASKMORE:
Bram Moolenaar30613902019-12-01 22:11:18 +01003153 case HITRETURN: // At the more- and hit-enter prompt pass the
3154 // mouse event for a click on or below the
3155 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 if (Y_2_ROW(y) >= msg_row)
3157 checkfor = MOUSE_NORMAL;
3158 else
3159 checkfor = MOUSE_RETURN;
3160 break;
3161
3162 /*
3163 * On the command line, use the clipboard selection on all lines
3164 * but the command line. But not when pasting.
3165 */
3166 case CMDLINE:
3167 case CMDLINE+LANGMAP:
3168 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3169 checkfor = MOUSE_NONE;
3170 else
3171 checkfor = MOUSE_COMMAND;
3172 break;
3173
3174 default:
3175 checkfor = MOUSE_NONE;
3176 break;
3177 };
3178
3179 /*
3180 * Allow clipboard selection of text on the command line in "normal"
3181 * modes. Don't do this when dragging the status line, or extending a
3182 * Visual selection.
3183 */
3184 if ((State == NORMAL || State == NORMAL_BUSY || (State & INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003185 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 && button != MOUSE_DRAG
3187# ifdef FEAT_MOUSESHAPE
3188 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190# endif
3191 )
3192 checkfor = MOUSE_NONE;
3193
3194 /*
3195 * Use modeless selection when holding CTRL and SHIFT pressed.
3196 */
3197 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3198 checkfor = MOUSE_NONEF;
3199
3200 /*
3201 * In Ex mode, always use modeless selection.
3202 */
3203 if (exmode_active)
3204 checkfor = MOUSE_NONE;
3205
3206 /*
3207 * If the mouse settings say to not use the mouse, use the modeless
3208 * selection. But if Visual is active, assume that only the Visual area
3209 * will be selected.
3210 * Exception: On the command line, both the selection is used and a mouse
3211 * key is send.
3212 */
3213 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3214 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003215 // Don't do modeless selection in Visual mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 if (checkfor != MOUSE_NONEF && VIsual_active && (State & NORMAL))
3217 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218
3219 /*
3220 * When 'mousemodel' is "popup", shift-left is translated to right.
3221 * But not when also using Ctrl.
3222 */
3223 if (mouse_model_popup() && button == MOUSE_LEFT
3224 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3225 {
3226 button = MOUSE_RIGHT;
3227 modifiers &= ~ MOUSE_SHIFT;
3228 }
3229
Bram Moolenaar30613902019-12-01 22:11:18 +01003230 // If the selection is done, allow the right button to extend it.
3231 // If the selection is cleared, allow the right button to start it
3232 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 if (button == MOUSE_RIGHT)
3234 {
3235 if (clip_star.state == SELECT_CLEARED)
3236 {
3237 if (State & CMDLINE)
3238 {
3239 col = msg_col;
3240 row = msg_row;
3241 }
3242 else
3243 {
3244 col = curwin->w_wcol;
3245 row = curwin->w_wrow + W_WINROW(curwin);
3246 }
3247 clip_start_selection(col, row, FALSE);
3248 }
3249 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3250 repeated_click);
3251 did_clip = TRUE;
3252 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003253 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003254 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 {
3256 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3257 did_clip = TRUE;
3258 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259
Bram Moolenaar30613902019-12-01 22:11:18 +01003260 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 if (button != MOUSE_MIDDLE)
3262 {
3263 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3264 return;
3265 if (checkfor != MOUSE_COMMAND)
3266 button = MOUSE_LEFT;
3267 }
3268 repeated_click = FALSE;
3269 }
3270
3271 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003272 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273#endif
3274
Bram Moolenaar30613902019-12-01 22:11:18 +01003275 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 if (hold_gui_events)
3277 return;
3278
3279 row = gui_xy2colrow(x, y, &col);
3280
3281 /*
3282 * If we are dragging and the mouse hasn't moved far enough to be on a
3283 * different character, then don't send an event to vim.
3284 */
3285 if (button == MOUSE_DRAG)
3286 {
3287 if (row == prev_row && col == prev_col)
3288 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003289 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 if (y < 0)
3291 row = -1;
3292 }
3293
3294 /*
3295 * If topline has changed (window scrolled) since the last click, reset
3296 * repeated_click, because we don't want starting Visual mode when
3297 * clicking on a different character in the text.
3298 */
3299 if (curwin->w_topline != gui_prev_topline
3300#ifdef FEAT_DIFF
3301 || curwin->w_topfill != gui_prev_topfill
3302#endif
3303 )
3304 repeated_click = FALSE;
3305
Bram Moolenaar30613902019-12-01 22:11:18 +01003306 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 string[1] = KS_MOUSE;
3308 string[2] = KE_FILLER;
3309 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3310 {
3311 if (repeated_click)
3312 {
3313 /*
3314 * Handle multiple clicks. They only count if the mouse is still
3315 * pointing at the same character.
3316 */
3317 if (button != prev_button || row != prev_row || col != prev_col)
3318 num_clicks = 1;
3319 else if (++num_clicks > 4)
3320 num_clicks = 1;
3321 }
3322 else
3323 num_clicks = 1;
3324 prev_button = button;
3325 gui_prev_topline = curwin->w_topline;
3326#ifdef FEAT_DIFF
3327 gui_prev_topfill = curwin->w_topfill;
3328#endif
3329
3330 string[3] = (char_u)(button | 0x20);
3331 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3332 }
3333 else
3334 string[3] = (char_u)button;
3335
3336 string[3] |= modifiers;
3337 fill_mouse_coord(string + 4, col, row);
3338 add_to_input_buf(string, 8);
3339
3340 if (row < 0)
3341 prev_row = 0;
3342 else
3343 prev_row = row;
3344 prev_col = col;
3345
3346 /*
3347 * We need to make sure this is cleared since Athena doesn't tell us when
3348 * he is done dragging. Neither does GTK+ 2 -- at least for now.
3349 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003350#if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 gui.dragged_sb = SBAR_NONE;
3352#endif
3353}
3354
3355/*
3356 * Convert x and y coordinate to column and row in text window.
3357 * Corrects for multi-byte character.
3358 * returns column in "*colp" and row as return value;
3359 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003360 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003361gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362{
3363 int col = check_col(X_2_COL(x));
3364 int row = check_row(Y_2_ROW(y));
3365
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 return row;
3368}
3369
3370#if defined(FEAT_MENU) || defined(PROTO)
3371/*
3372 * Callback function for when a menu entry has been selected.
3373 */
3374 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003375gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003377 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378
Bram Moolenaar30613902019-12-01 22:11:18 +01003379 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 if (hold_gui_events)
3381 return;
3382
3383 bytes[0] = CSI;
3384 bytes[1] = KS_MENU;
3385 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003386 add_to_input_buf(bytes, 3);
3387 add_long_to_buf((long_u)menu, bytes);
3388 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389}
3390#endif
3391
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003392static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003393
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394/*
3395 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003396 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 * in p_go.
3398 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003400gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003402#ifdef FEAT_GUI_DARKTHEME
3403 static int prev_dark_theme = -1;
3404 int using_dark_theme = FALSE;
3405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406#ifdef FEAT_MENU
3407 static int prev_menu_is_active = -1;
3408#endif
3409#ifdef FEAT_TOOLBAR
3410 static int prev_toolbar = -1;
3411 int using_toolbar = FALSE;
3412#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003413#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003414 int using_tabline;
3415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416#ifdef FEAT_FOOTER
3417 static int prev_footer = -1;
3418 int using_footer = FALSE;
3419#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003420#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 static int prev_tearoff = -1;
3422 int using_tearoff = FALSE;
3423#endif
3424
3425 char_u *p;
3426 int i;
3427#ifdef FEAT_MENU
3428 int grey_old, grey_new;
3429 char_u *temp;
3430#endif
3431 win_T *wp;
3432 int need_set_size;
3433 int fix_size;
3434
3435#ifdef FEAT_MENU
3436 if (oldval != NULL && gui.in_use)
3437 {
3438 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003439 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 */
3441 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3442 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3443 if (grey_old != grey_new)
3444 {
3445 temp = p_go;
3446 p_go = oldval;
3447 gui_update_menus(MENU_ALL_MODES);
3448 p_go = temp;
3449 }
3450 }
3451 gui.menu_is_active = FALSE;
3452#endif
3453
3454 for (i = 0; i < 3; i++)
3455 gui.which_scrollbars[i] = FALSE;
3456 for (p = p_go; *p; p++)
3457 switch (*p)
3458 {
3459 case GO_LEFT:
3460 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3461 break;
3462 case GO_RIGHT:
3463 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3464 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 case GO_VLEFT:
3466 if (win_hasvertsplit())
3467 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3468 break;
3469 case GO_VRIGHT:
3470 if (win_hasvertsplit())
3471 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3472 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 case GO_BOT:
3474 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3475 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003476#ifdef FEAT_GUI_DARKTHEME
3477 case GO_DARKTHEME:
3478 using_dark_theme = TRUE;
3479 break;
3480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481#ifdef FEAT_MENU
3482 case GO_MENUS:
3483 gui.menu_is_active = TRUE;
3484 break;
3485#endif
3486 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003487 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 break;
3489#ifdef FEAT_TOOLBAR
3490 case GO_TOOLBAR:
3491 using_toolbar = TRUE;
3492 break;
3493#endif
3494#ifdef FEAT_FOOTER
3495 case GO_FOOTER:
3496 using_footer = TRUE;
3497 break;
3498#endif
3499 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003500#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 using_tearoff = TRUE;
3502#endif
3503 break;
3504 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003505 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 break;
3507 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003508
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 if (gui.in_use)
3510 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003511 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003513
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003514#ifdef FEAT_GUI_DARKTHEME
3515 if (using_dark_theme != prev_dark_theme)
3516 {
3517 gui_mch_set_dark_theme(using_dark_theme);
3518 prev_dark_theme = using_dark_theme;
3519 }
3520#endif
3521
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003522#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003523 // Update the GUI tab line, it may appear or disappear. This may
3524 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003525 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003526 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003527 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003528 // We don't want a resize event change "Rows" here, save and
3529 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003530 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003531 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003532 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003533 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003534 if (using_tabline)
3535 fix_size = TRUE;
3536 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003537 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003538 }
3539#endif
3540
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 for (i = 0; i < 3; i++)
3542 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003543 // The scrollbar needs to be updated when it is shown/unshown and
3544 // when switching tab pages. But the size only changes when it's
3545 // shown/unshown. Thus we need two places to remember whether a
3546 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003547 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003548 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003549 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 {
3551 if (i == SBAR_BOTTOM)
3552 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3553 gui.which_scrollbars[i]);
3554 else
3555 {
3556 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003559 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3560 {
3561 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003562 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003563 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003564 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003565 if (gui.which_scrollbars[i])
3566 fix_size = TRUE;
3567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003569 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003570 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 }
3572
3573#ifdef FEAT_MENU
3574 if (gui.menu_is_active != prev_menu_is_active)
3575 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003576 // We don't want a resize event change "Rows" here, save and
3577 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 i = Rows;
3579 gui_mch_enable_menu(gui.menu_is_active);
3580 Rows = i;
3581 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003582 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 if (gui.menu_is_active)
3584 fix_size = TRUE;
3585 }
3586#endif
3587
3588#ifdef FEAT_TOOLBAR
3589 if (using_toolbar != prev_toolbar)
3590 {
3591 gui_mch_show_toolbar(using_toolbar);
3592 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003593 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 if (using_toolbar)
3595 fix_size = TRUE;
3596 }
3597#endif
3598#ifdef FEAT_FOOTER
3599 if (using_footer != prev_footer)
3600 {
3601 gui_mch_enable_footer(using_footer);
3602 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003603 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 if (using_footer)
3605 fix_size = TRUE;
3606 }
3607#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003608#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (using_tearoff != prev_tearoff)
3610 {
3611 gui_mch_toggle_tearoffs(using_tearoff);
3612 prev_tearoff = using_tearoff;
3613 }
3614#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003615 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003616 {
3617#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003618 long prev_Columns = Columns;
3619 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003620#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003621 // Adjust the size of the window to make the text area keep the
3622 // same size and to avoid that part of our window is off-screen
3623 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003624 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003625
3626#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003627 // GTK has the annoying habit of sending us resize events when
3628 // changing the window size ourselves. This mostly happens when
3629 // waiting for a character to arrive, quite unpredictably, and may
3630 // change Columns and Rows when we don't want it. Wait for a
3631 // character here to avoid this effect.
3632 // If you remove this, please test this command for resizing
3633 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3634 // Don't do this while starting up though.
3635 // Don't change Rows when adding menu/toolbar/tabline.
3636 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003637 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003638 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003639 if ((need_set_size & RESIZE_VERT) == 0)
3640 Rows = prev_Rows;
3641 if ((need_set_size & RESIZE_HOR) == 0)
3642 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003643#endif
3644 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003645 // When the console tabline appears or disappears the window positions
3646 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003647 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003648 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 }
3650}
3651
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003652#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3653/*
3654 * Return TRUE if the GUI is taking care of the tabline.
3655 * It may still be hidden if 'showtabline' is zero.
3656 */
3657 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003658gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003659{
3660 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3661}
3662
3663/*
3664 * Return TRUE if the GUI is showing the tabline.
3665 * This uses 'showtabline'.
3666 */
3667 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003668gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003669{
3670 if (!gui_use_tabline()
3671 || p_stal == 0
3672 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3673 return FALSE;
3674 return TRUE;
3675}
3676
3677/*
3678 * Update the tabline.
3679 * This may display/undisplay the tabline and update the labels.
3680 */
3681 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003682gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003683{
3684 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003685 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003686
3687 if (!gui.starting && starting == 0)
3688 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003689 // Updating the tabline uses direct GUI commands, flush
3690 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003691 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003692
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003693 if (!showit != !shown)
3694 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003695 if (showit != 0)
3696 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003697
Bram Moolenaar30613902019-12-01 22:11:18 +01003698 // When the tabs change from hidden to shown or from shown to
3699 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003700 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003701 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003702 }
3703}
3704
3705/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003706 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003707 */
3708 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003709get_tabline_label(
3710 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003711 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003712{
3713 int modified = FALSE;
3714 char_u buf[40];
3715 int wincount;
3716 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003717 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003718
Bram Moolenaar30613902019-12-01 22:11:18 +01003719 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003720 opt = (tooltip ? &p_gtt : &p_gtl);
3721 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003722 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003723 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003724 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003725 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003726 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003727 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3728 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003729
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003730 printer_page_num = tabpage_index(tp);
3731# ifdef FEAT_EVAL
3732 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003733 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003734# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003735 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003736 curtab->tp_firstwin = firstwin;
3737 curtab->tp_lastwin = lastwin;
3738 curtab->tp_curwin = curwin;
3739 save_curtab = curtab;
3740 curtab = tp;
3741 topframe = curtab->tp_topframe;
3742 firstwin = curtab->tp_firstwin;
3743 lastwin = curtab->tp_lastwin;
3744 curwin = curtab->tp_curwin;
3745 curbuf = curwin->w_buffer;
3746
Bram Moolenaar30613902019-12-01 22:11:18 +01003747 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003748 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003749 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003750 STRCPY(NameBuff, res);
3751
Bram Moolenaar30613902019-12-01 22:11:18 +01003752 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003753 curtab = save_curtab;
3754 topframe = curtab->tp_topframe;
3755 firstwin = curtab->tp_firstwin;
3756 lastwin = curtab->tp_lastwin;
3757 curwin = curtab->tp_curwin;
3758 curbuf = curwin->w_buffer;
3759
Bram Moolenaar53989552019-12-23 22:59:18 +01003760 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003761 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003762 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003763 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003764
Bram Moolenaar30613902019-12-01 22:11:18 +01003765 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3766 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003767 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003768 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003769 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003770 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003771 if (!tooltip)
3772 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003773
3774 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3775 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3776 if (bufIsChanged(wp->w_buffer))
3777 modified = TRUE;
3778 if (modified || wincount > 1)
3779 {
3780 if (wincount > 1)
3781 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3782 else
3783 buf[0] = NUL;
3784 if (modified)
3785 STRCAT(buf, "+");
3786 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003787 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003788 mch_memmove(NameBuff, buf, STRLEN(buf));
3789 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003790 }
3791}
3792
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003793/*
3794 * Send the event for clicking to select tab page "nr".
3795 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003796 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003797 */
3798 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003799send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003800{
3801 char_u string[3];
3802
3803 if (nr == tabpage_index(curtab))
3804 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003805
Bram Moolenaar30613902019-12-01 22:11:18 +01003806 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003807 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003808# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003809 || cmdwin_type != 0
3810# endif
3811 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003812 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003813 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003814 gui_mch_set_curtab(tabpage_index(curtab));
3815 return FALSE;
3816 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003817
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003818 string[0] = CSI;
3819 string[1] = KS_TABLINE;
3820 string[2] = KE_FILLER;
3821 add_to_input_buf(string, 3);
3822 string[0] = nr;
3823 add_to_input_buf_csi(string, 1);
3824 return TRUE;
3825}
3826
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003827/*
3828 * Send a tabline menu event
3829 */
3830 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003831send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003832{
3833 char_u string[3];
3834
Bram Moolenaar29547192018-12-11 20:39:19 +01003835 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003836 if (hold_gui_events)
3837 return;
3838
Bram Moolenaar29547192018-12-11 20:39:19 +01003839 // Cannot close the last tabpage.
3840 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3841 return;
3842
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003843 string[0] = CSI;
3844 string[1] = KS_TABMENU;
3845 string[2] = KE_FILLER;
3846 add_to_input_buf(string, 3);
3847 string[0] = tabidx;
3848 string[1] = (char_u)(long)event;
3849 add_to_input_buf_csi(string, 2);
3850}
3851
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853
3854/*
3855 * Scrollbar stuff:
3856 */
3857
Bram Moolenaare45828b2006-02-15 22:12:56 +00003858/*
3859 * Remove all scrollbars. Used before switching to another tab page.
3860 */
3861 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003862gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003863{
3864 int i;
3865 win_T *wp;
3866
3867 for (i = 0; i < 3; i++)
3868 {
3869 if (i == SBAR_BOTTOM)
3870 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3871 else
3872 {
3873 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003874 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003875 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003876 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003877 }
3878}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003879
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003881gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882{
3883 static int sbar_ident = 0;
3884
Bram Moolenaar30613902019-12-01 22:11:18 +01003885 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 sb->wp = wp;
3887 sb->type = type;
3888 sb->value = 0;
3889#ifdef FEAT_GUI_ATHENA
3890 sb->pixval = 0;
3891#endif
3892 sb->size = 1;
3893 sb->max = 1;
3894 sb->top = 0;
3895 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 sb->status_height = 0;
3898 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3899}
3900
3901/*
3902 * Find the scrollbar with the given index.
3903 */
3904 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003905gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906{
3907 win_T *wp;
3908
3909 if (gui.bottom_sbar.ident == ident)
3910 return &gui.bottom_sbar;
3911 FOR_ALL_WINDOWS(wp)
3912 {
3913 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3914 return &wp->w_scrollbars[SBAR_LEFT];
3915 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3916 return &wp->w_scrollbars[SBAR_RIGHT];
3917 }
3918 return NULL;
3919}
3920
3921/*
3922 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3923 *
3924 * For Win32, Macintosh and GTK+ 2:
3925 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3926 * you stop dragging the scrollbar. We get here each time the scrollbar is
3927 * dragged another pixel, but as far as the rest of vim goes, it thinks
3928 * we're just hanging in the call to DispatchMessage() in
3929 * process_message(). The DispatchMessage() call that hangs was passed a
3930 * mouse button click event in the scrollbar window. -- webb.
3931 *
3932 * Solution: Do the scrolling right here. But only when allowed.
3933 * Ignore the scrollbars while executing an external command or when there
3934 * are still characters to be processed.
3935 */
3936 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003937gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 int sb_num;
3941#ifdef USE_ON_FLY_SCROLL
3942 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944# ifdef FEAT_DIFF
3945 int old_topfill = curwin->w_topfill;
3946# endif
3947#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003948 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 int byte_count;
3950#endif
3951
3952 if (sb == NULL)
3953 return;
3954
Bram Moolenaar30613902019-12-01 22:11:18 +01003955 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 if (hold_gui_events)
3957 return;
3958
3959#ifdef FEAT_CMDWIN
3960 if (cmdwin_type != 0 && sb->wp != curwin)
3961 return;
3962#endif
3963
3964 if (still_dragging)
3965 {
3966 if (sb->wp == NULL)
3967 gui.dragged_sb = SBAR_BOTTOM;
3968 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
3969 gui.dragged_sb = SBAR_LEFT;
3970 else
3971 gui.dragged_sb = SBAR_RIGHT;
3972 gui.dragged_wp = sb->wp;
3973 }
3974 else
3975 {
3976 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003977#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003978 // Keep the "dragged_wp" value until after the scrolling, for when the
3979 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 gui.dragged_wp = NULL;
3981#endif
3982 }
3983
Bram Moolenaar30613902019-12-01 22:11:18 +01003984 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 if (sb->wp != NULL)
3986 sb = &sb->wp->w_scrollbars[0];
3987
3988 /*
3989 * Check validity of value
3990 */
3991 if (value < 0)
3992 value = 0;
3993#ifdef SCROLL_PAST_END
3994 else if (value > sb->max)
3995 value = sb->max;
3996#else
3997 if (value > sb->max - sb->size + 1)
3998 value = sb->max - sb->size + 1;
3999#endif
4000
4001 sb->value = value;
4002
4003#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004004 // When not allowed to do the scrolling right now, return.
4005 // This also checked input_available(), but that causes the first click in
4006 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004007 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 return;
4009#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004010 // Disallow scrolling the current window when the completion popup menu is
4011 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004012 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4013 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014
4015#ifdef FEAT_RIGHTLEFT
4016 if (sb->wp == NULL && curwin->w_p_rl)
4017 {
4018 value = sb->max + 1 - sb->size - value;
4019 if (value < 0)
4020 value = 0;
4021 }
4022#endif
4023
Bram Moolenaar30613902019-12-01 22:11:18 +01004024 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 {
4026 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4028 sb_num++;
4029 if (wp == NULL)
4030 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031
4032#ifdef USE_ON_FLY_SCROLL
4033 current_scrollbar = sb_num;
4034 scrollbar_value = value;
4035 if (State & NORMAL)
4036 {
4037 gui_do_scroll();
4038 setcursor();
4039 }
4040 else if (State & INSERT)
4041 {
4042 ins_scroll();
4043 setcursor();
4044 }
4045 else if (State & CMDLINE)
4046 {
4047 if (msg_scrolled == 0)
4048 {
4049 gui_do_scroll();
4050 redrawcmdline();
4051 }
4052 }
4053# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004054 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 sb->value = sb->wp->w_topline - 1;
4056# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004057
Bram Moolenaar30613902019-12-01 22:11:18 +01004058 // When dragging one scrollbar and there is another one at the other
4059 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004060 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4061 gui_mch_set_scrollbar_thumb(
4062 &sb->wp->w_scrollbars[
4063 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4064 ? SBAR_LEFT : SBAR_RIGHT],
4065 sb->value, sb->size, sb->max);
4066
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067#else
4068 bytes[0] = CSI;
4069 bytes[1] = KS_VER_SCROLLBAR;
4070 bytes[2] = KE_FILLER;
4071 bytes[3] = (char_u)sb_num;
4072 byte_count = 4;
4073#endif
4074 }
4075 else
4076 {
4077#ifdef USE_ON_FLY_SCROLL
4078 scrollbar_value = value;
4079
4080 if (State & NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004081 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 else if (State & INSERT)
4083 ins_horscroll();
4084 else if (State & CMDLINE)
4085 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004086 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004088 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 redrawcmdline();
4090 }
4091 }
4092 if (old_leftcol != curwin->w_leftcol)
4093 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004094 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 setcursor();
4096 }
4097#else
4098 bytes[0] = CSI;
4099 bytes[1] = KS_HOR_SCROLLBAR;
4100 bytes[2] = KE_FILLER;
4101 byte_count = 3;
4102#endif
4103 }
4104
4105#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 /*
4107 * synchronize other windows, as necessary according to 'scrollbind'
4108 */
4109 if (curwin->w_p_scb
4110 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4111 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004112# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004114# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 ))))
4116 {
4117 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004118 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004119 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 if (wp->w_redr_type > 0)
4121 updateWindow(wp);
4122 setcursor();
4123 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004124 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004126 add_to_input_buf(bytes, byte_count);
4127 add_long_to_buf((long_u)value, bytes);
4128 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129#endif
4130}
4131
4132/*
4133 * Scrollbar stuff:
4134 */
4135
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004136/*
4137 * Called when something in the window layout has changed.
4138 */
4139 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004140gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004141{
4142 if (gui.in_use && starting == 0)
4143 {
4144 out_flush();
4145 gui_init_which_components(NULL);
4146 gui_update_scrollbars(TRUE);
4147 }
4148 need_mouse_correct = TRUE;
4149}
4150
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004152gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004153 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154{
4155 win_T *wp;
4156 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004157 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 int which_sb;
4159 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161
Bram Moolenaar30613902019-12-01 22:11:18 +01004162 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 gui_update_horiz_scrollbar(force);
4164
Bram Moolenaar4f974752019-02-17 17:44:42 +01004165#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004166 // Return straight away if there is neither a left nor right scrollbar.
4167 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4169 return;
4170#endif
4171
4172 /*
4173 * Don't want to update a scrollbar while we're dragging it. But if we
4174 * have both a left and right scrollbar, and we drag one of them, we still
4175 * need to update the other one.
4176 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004177 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4178 && gui.which_scrollbars[SBAR_LEFT]
4179 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 {
4181 /*
4182 * If we have two scrollbars and one of them is being dragged, just
4183 * copy the scrollbar position from the dragged one to the other one.
4184 */
4185 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4186 if (gui.dragged_wp != NULL)
4187 gui_mch_set_scrollbar_thumb(
4188 &gui.dragged_wp->w_scrollbars[which_sb],
4189 gui.dragged_wp->w_scrollbars[0].value,
4190 gui.dragged_wp->w_scrollbars[0].size,
4191 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 }
4193
Bram Moolenaar30613902019-12-01 22:11:18 +01004194 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 ++hold_gui_events;
4196
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004197 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004199 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004201 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004202 if (!force && (gui.dragged_sb == SBAR_LEFT
4203 || gui.dragged_sb == SBAR_RIGHT)
4204 && gui.dragged_wp == wp)
4205 continue;
4206
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207#ifdef SCROLL_PAST_END
4208 max = wp->w_buffer->b_ml.ml_line_count - 1;
4209#else
4210 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4211#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004212 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 max = 0;
4214 val = wp->w_topline - 1;
4215 size = wp->w_height;
4216#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004217 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 val = max;
4219#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004220 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 size = max + 1;
4222 if (val > max - size + 1)
4223 val = max - size + 1;
4224#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004225 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 val = 0;
4227
4228 /*
4229 * Scrollbar at index 0 (the left one) contains all the information.
4230 * It would be the same info for left and right so we just store it for
4231 * one of them.
4232 */
4233 sb = &wp->w_scrollbars[0];
4234
4235 /*
4236 * Note: no check for valid w_botline. If it's not valid the
4237 * scrollbars will be updated later anyway.
4238 */
4239 if (size < 1 || wp->w_botline - 2 > max)
4240 {
4241 /*
4242 * This can happen during changing files. Just don't update the
4243 * scrollbar for now.
4244 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004245 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 if (gui.which_scrollbars[SBAR_LEFT])
4247 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4248 if (gui.which_scrollbars[SBAR_RIGHT])
4249 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4250 continue;
4251 }
4252 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 || sb->top != wp->w_winrow
4254 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004256 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004258 // Height, width or position of scrollbar has changed. For
4259 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 sb->top = wp->w_winrow;
4262 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264
Bram Moolenaar30613902019-12-01 22:11:18 +01004265 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 h = (sb->height + sb->status_height) * gui.char_height;
4267 y = sb->top * gui.char_height + gui.border_offset;
4268#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4269 if (gui.menu_is_active)
4270 y += gui.menu_height;
4271#endif
4272
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004273#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_ATHENA) \
4274 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004276# if defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 y += gui.toolbar_height;
4278# else
4279# ifdef FEAT_GUI_MSWIN
4280 y += TOOLBAR_BUTTON_HEIGHT + TOOLBAR_BORDER_HEIGHT;
4281# endif
4282# endif
4283#endif
4284
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004285#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004286 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004287 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004288#endif
4289
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004292 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 h += gui.border_offset;
4294 y -= gui.border_offset;
4295 }
4296 if (gui.which_scrollbars[SBAR_LEFT])
4297 {
4298 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4299 gui.left_sbar_x, y,
4300 gui.scrollbar_width, h);
4301 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4302 }
4303 if (gui.which_scrollbars[SBAR_RIGHT])
4304 {
4305 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4306 gui.right_sbar_x, y,
4307 gui.scrollbar_width, h);
4308 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4309 }
4310 }
4311
Bram Moolenaar30613902019-12-01 22:11:18 +01004312 // Reduce the number of calls to gui_mch_set_scrollbar_thumb() by
4313 // checking if the thumb moved at least a pixel. Only do this for
4314 // Athena, most other GUIs require the update anyway to make the
4315 // arrows work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316#ifdef FEAT_GUI_ATHENA
4317 if (max == 0)
4318 y = 0;
4319 else
4320 y = (val * (sb->height + 2) * gui.char_height + max / 2) / max;
4321 if (force || sb->pixval != y || sb->size != size || sb->max != max)
4322#else
4323 if (force || sb->value != val || sb->size != size || sb->max != max)
4324#endif
4325 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004326 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 sb->value = val;
4328#ifdef FEAT_GUI_ATHENA
4329 sb->pixval = y;
4330#endif
4331 sb->size = size;
4332 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004333 if (gui.which_scrollbars[SBAR_LEFT]
4334 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4336 val, size, max);
4337 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004338 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4340 val, size, max);
4341 }
4342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 --hold_gui_events;
4345}
4346
4347/*
4348 * Enable or disable a scrollbar.
4349 * Check for scrollbars for vertically split windows which are not enabled
4350 * sometimes.
4351 */
4352 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004353gui_do_scrollbar(
4354 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004355 int which, // SBAR_LEFT or SBAR_RIGHT
4356 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 int midcol = curwin->w_wincol + curwin->w_width / 2;
4359 int has_midcol = (wp->w_wincol <= midcol
4360 && wp->w_wincol + wp->w_width >= midcol);
4361
Bram Moolenaar30613902019-12-01 22:11:18 +01004362 // Only enable scrollbars that contain the middle column of the current
4363 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4365 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004366 // Scrollbars only on one side. Don't enable scrollbars that don't
4367 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 if (!has_midcol)
4369 enable = FALSE;
4370 }
4371 else
4372 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004373 // Scrollbars on both sides. Don't enable scrollbars that neither
4374 // contain the middle column of the current window nor are on the far
4375 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 if (midcol > Columns / 2)
4377 {
4378 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4379 enable = FALSE;
4380 }
4381 else
4382 {
4383 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4384 : !has_midcol)
4385 enable = FALSE;
4386 }
4387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4389}
4390
4391/*
4392 * Scroll a window according to the values set in the globals current_scrollbar
4393 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4394 * or FALSE otherwise.
4395 */
4396 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004397gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398{
4399 win_T *wp, *save_wp;
4400 int i;
4401 long nlines;
4402 pos_T old_cursor;
4403 linenr_T old_topline;
4404#ifdef FEAT_DIFF
4405 int old_topfill;
4406#endif
4407
4408 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4409 if (wp == NULL)
4410 break;
4411 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004412 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 return FALSE;
4414
4415 /*
4416 * Compute number of lines to scroll. If zero, nothing to do.
4417 */
4418 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4419 if (nlines == 0)
4420 return FALSE;
4421
4422 save_wp = curwin;
4423 old_topline = wp->w_topline;
4424#ifdef FEAT_DIFF
4425 old_topfill = wp->w_topfill;
4426#endif
4427 old_cursor = wp->w_cursor;
4428 curwin = wp;
4429 curbuf = wp->w_buffer;
4430 if (nlines < 0)
4431 scrolldown(-nlines, gui.dragged_wp == NULL);
4432 else
4433 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004434 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4435 // the mouse-up event already, but we still want it to behave like when
4436 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (gui.dragged_sb == SBAR_NONE)
4438 gui.dragged_wp = NULL;
4439
4440 if (old_topline != wp->w_topline
4441#ifdef FEAT_DIFF
4442 || old_topfill != wp->w_topfill
4443#endif
4444 )
4445 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004446 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004448 cursor_correct(); // fix window for 'so'
4449 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 }
4451 if (old_cursor.lnum != wp->w_cursor.lnum)
4452 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 }
4455
Bram Moolenaar30613902019-12-01 22:11:18 +01004456 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004457 validate_cursor();
4458
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 curwin = save_wp;
4460 curbuf = save_wp->w_buffer;
4461
4462 /*
4463 * Don't call updateWindow() when nothing has changed (it will overwrite
4464 * the status line!).
4465 */
4466 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004467 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468#ifdef FEAT_DIFF
4469 || old_topfill != wp->w_topfill
4470#endif
4471 )
4472 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004473 int type = VALID;
4474
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004475 if (pum_visible())
4476 {
4477 type = NOT_VALID;
4478 wp->w_lines_valid = 0;
4479 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004480
Bram Moolenaar30613902019-12-01 22:11:18 +01004481 // Don't set must_redraw here, it may cause the popup menu to
4482 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004483 if (wp->w_redr_type < type)
4484 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004485 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004486 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004487 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 }
4489
Bram Moolenaar30613902019-12-01 22:11:18 +01004490 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004491 if (pum_visible())
4492 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004493
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004494 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495}
4496
4497
4498/*
4499 * Horizontal scrollbar stuff:
4500 */
4501
4502/*
4503 * Return length of line "lnum" for horizontal scrolling.
4504 */
4505 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004506scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507{
4508 char_u *p;
4509 colnr_T col;
4510 int w;
4511
4512 p = ml_get(lnum);
4513 col = 0;
4514 if (*p != NUL)
4515 for (;;)
4516 {
4517 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004518 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004519 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 break;
4521 col += w;
4522 }
4523 return col;
4524}
4525
Bram Moolenaar30613902019-12-01 22:11:18 +01004526// Remember which line is currently the longest, so that we don't have to
4527// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528static linenr_T longest_lnum = 0;
4529
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004530/*
4531 * Find longest visible line number. If this is not possible (or not desired,
4532 * by setting 'h' in "guioptions") then the current line number is returned.
4533 */
4534 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004535gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004536{
4537 linenr_T ret = 0;
4538
Bram Moolenaar30613902019-12-01 22:11:18 +01004539 // Calculate maximum for horizontal scrollbar. Check for reasonable
4540 // line numbers, topline and botline can be invalid when displaying is
4541 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004542 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4543 && curwin->w_topline <= curwin->w_cursor.lnum
4544 && curwin->w_botline > curwin->w_cursor.lnum
4545 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4546 {
4547 linenr_T lnum;
4548 colnr_T n;
4549 long max = 0;
4550
Bram Moolenaar30613902019-12-01 22:11:18 +01004551 // Use maximum of all visible lines. Remember the lnum of the
4552 // longest line, closest to the cursor line. Used when scrolling
4553 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004554 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4555 {
4556 n = scroll_line_len(lnum);
4557 if (n > (colnr_T)max)
4558 {
4559 max = n;
4560 ret = lnum;
4561 }
4562 else if (n == (colnr_T)max
4563 && abs((int)(lnum - curwin->w_cursor.lnum))
4564 < abs((int)(ret - curwin->w_cursor.lnum)))
4565 ret = lnum;
4566 }
4567 }
4568 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004569 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004570 ret = curwin->w_cursor.lnum;
4571
4572 return ret;
4573}
4574
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004576gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577{
Bram Moolenaar30613902019-12-01 22:11:18 +01004578 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579
4580 if (!gui.which_scrollbars[SBAR_BOTTOM])
4581 return;
4582
4583 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4584 return;
4585
4586 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4587 return;
4588
4589 /*
4590 * It is possible for the cursor to be invalid if we're in the middle of
4591 * something (like changing files). If so, don't do anything for now.
4592 */
4593 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4594 {
4595 gui.bottom_sbar.value = -1;
4596 return;
4597 }
4598
Bram Moolenaar02631462017-09-22 15:20:32 +02004599 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 if (curwin->w_p_wrap)
4601 {
4602 value = 0;
4603#ifdef SCROLL_PAST_END
4604 max = 0;
4605#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004606 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607#endif
4608 }
4609 else
4610 {
4611 value = curwin->w_leftcol;
4612
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004613 longest_lnum = gui_find_longest_lnum();
4614 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 if (virtual_active())
4617 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004618 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 if (curwin->w_virtcol >= (colnr_T)max)
4620 max = curwin->w_virtcol;
4621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622
4623#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004624 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004626 // The line number isn't scrolled, thus there is less space when
4627 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 size -= curwin_col_off();
4629#ifndef SCROLL_PAST_END
4630 max -= curwin_col_off();
4631#endif
4632 }
4633
4634#ifndef SCROLL_PAST_END
4635 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004636 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637#endif
4638
4639#ifdef FEAT_RIGHTLEFT
4640 if (curwin->w_p_rl)
4641 {
4642 value = max + 1 - size - value;
4643 if (value < 0)
4644 {
4645 size += value;
4646 value = 0;
4647 }
4648 }
4649#endif
4650 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4651 && max == gui.bottom_sbar.max)
4652 return;
4653
4654 gui.bottom_sbar.value = value;
4655 gui.bottom_sbar.size = size;
4656 gui.bottom_sbar.max = max;
4657 gui.prev_wrap = curwin->w_p_wrap;
4658
4659 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4660}
4661
4662/*
4663 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4664 */
4665 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004666gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667{
Bram Moolenaar30613902019-12-01 22:11:18 +01004668 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 if (curwin->w_p_wrap)
4670 return FALSE;
4671
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004672 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 return FALSE;
4674
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004675 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676
Bram Moolenaar30613902019-12-01 22:11:18 +01004677 // When the line of the cursor is too short, move the cursor to the
4678 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004680 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004681 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004683 if (compute_longest_lnum)
4684 {
4685 curwin->w_cursor.lnum = gui_find_longest_lnum();
4686 curwin->w_cursor.col = 0;
4687 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004688 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004689 else if (longest_lnum >= curwin->w_topline
4690 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 {
4692 curwin->w_cursor.lnum = longest_lnum;
4693 curwin->w_cursor.col = 0;
4694 }
4695 }
4696
4697 return leftcol_changed();
4698}
4699
4700/*
4701 * Check that none of the colors are the same as the background color
4702 */
4703 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004704gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705{
4706 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4707 {
4708 gui_set_bg_color((char_u *)"White");
4709 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4710 gui_set_fg_color((char_u *)"Black");
4711 }
4712}
4713
Bram Moolenaar3918c952005-03-15 22:34:55 +00004714 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004715gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716{
4717 gui.norm_pixel = gui_get_color(name);
4718 hl_set_fg_color_name(vim_strsave(name));
4719}
4720
Bram Moolenaar3918c952005-03-15 22:34:55 +00004721 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004722gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723{
4724 gui.back_pixel = gui_get_color(name);
4725 hl_set_bg_color_name(vim_strsave(name));
4726}
4727
4728/*
4729 * Allocate a color by name.
4730 * Returns INVALCOLOR and gives an error message when failed.
4731 */
4732 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004733gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734{
4735 guicolor_T t;
4736
4737 if (*name == NUL)
4738 return INVALCOLOR;
4739 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004740
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004742#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 && gui.in_use
4744#endif
4745 )
Bram Moolenaar87202262020-05-24 17:23:45 +02004746 semsg(_(e_alloc_color), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 return t;
4748}
4749
4750/*
4751 * Return the grey value of a color (range 0-255).
4752 */
4753 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004754gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004756 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004758 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004759 + (((rgb >> 8) & 0xff) * 587)
4760 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761}
4762
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004763 char_u *
4764gui_bg_default(void)
4765{
4766 if (gui_get_lightness(gui.back_pixel) < 127)
4767 return (char_u *)"dark";
4768 return (char_u *)"light";
4769}
4770
4771/*
4772 * Option initializations that can only be done after opening the GUI window.
4773 */
4774 void
4775init_gui_options(void)
4776{
Bram Moolenaar30613902019-12-01 22:11:18 +01004777 // Set the 'background' option according to the lightness of the
4778 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004779 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4780 {
4781 set_option_value((char_u *)"bg", 0L, gui_bg_default(), 0);
4782 highlight_changed();
4783 }
4784}
4785
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786#if defined(FEAT_GUI_X11) || defined(PROTO)
4787 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004788gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789{
4790 win_T *wp;
4791
Bram Moolenaar30613902019-12-01 22:11:18 +01004792 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 if (!gui.in_use)
4794 return;
4795
4796 FOR_ALL_WINDOWS(wp)
4797 {
4798 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4799 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4800 }
4801 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4802}
4803#endif
4804
4805/*
4806 * Call this when focus has changed.
4807 */
4808 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004809gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810{
4811/*
4812 * Skip this code to avoid drawing the cursor when debugging and switching
4813 * between the debugger window and gvim.
4814 */
4815#if 1
4816 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004817 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818
4819# ifdef FEAT_XIM
4820 xim_set_focus(in_focus);
4821# endif
4822
Bram Moolenaar30613902019-12-01 22:11:18 +01004823 // Put events in the input queue only when allowed.
4824 // ui_focus_change() isn't called directly, because it invokes
4825 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004826 if (!hold_gui_events)
4827 {
4828 char_u bytes[3];
4829
4830 bytes[0] = CSI;
4831 bytes[1] = KS_EXTRA;
4832 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4833 add_to_input_buf(bytes, 3);
4834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835#endif
4836}
4837
4838/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004839 * When mouse moved: apply 'mousefocus'.
4840 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004842 static void
4843gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844{
4845 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004846 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847
4848#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004849 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004850 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851#endif
4852
Bram Moolenaar30613902019-12-01 22:11:18 +01004853 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004855 && !hold_gui_events // not holding events
4856 && (State & (NORMAL|INSERT))// Normal/Visual/Insert mode
4857 && State != HITRETURN // but not hit-return prompt
4858 && msg_scrolled == 0 // no scrolled message
4859 && !need_mouse_correct // not moving the pointer
4860 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004862 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 if (x < 0 || x > Columns * gui.char_width)
4864 return;
4865#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004866 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867#endif
4868 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004869 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870
Bram Moolenaar30613902019-12-01 22:11:18 +01004871 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004872 if (Y_2_ROW(y) < tabline_height())
4873 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004874
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 /*
4876 * format a mouse click on status line input
4877 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004878 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4879 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 */
4881 if (finish_op)
4882 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004883 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 st[0] = ESC;
4885 add_to_input_buf(st, 1);
4886 }
4887 st[0] = CSI;
4888 st[1] = KS_MOUSE;
4889 st[2] = KE_FILLER;
4890 st[3] = (char_u)MOUSE_LEFT;
4891 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004892 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 wp->w_height + W_WINROW(wp));
4894
4895 add_to_input_buf(st, 8);
4896 st[3] = (char_u)MOUSE_RELEASE;
4897 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004899 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 if (gtk_main_level() > 0)
4901 gtk_main_quit();
4902#endif
4903 }
4904}
4905
4906/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004907 * Called when the mouse moved (but not when dragging).
4908 */
4909 void
4910gui_mouse_moved(int x, int y)
4911{
4912 // Ignore this while still starting up.
4913 if (!gui.in_use || gui.starting)
4914 return;
4915
4916 // apply 'mousefocus' and pointer shape
4917 gui_mouse_focus(x, y);
4918
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004919#ifdef FEAT_PROP_POPUP
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004920 if (popup_visible)
4921 // Generate a mouse-moved event, so that the popup can perhaps be
4922 // closed, just like in the terminal.
4923 gui_send_mouse_event(MOUSE_DRAG, x, y, FALSE, 0);
4924#endif
4925}
4926
4927/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004928 * Get the window where the mouse pointer is on.
4929 * Returns NULL if not found.
4930 */
4931 win_T *
4932gui_mouse_window(mouse_find_T popup)
4933{
4934 int x, y;
4935
4936 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4937 return NULL;
4938 gui_mch_getmouse(&x, &y);
4939
4940 // Only use the mouse when it's on the Vim window
4941 if (x >= 0 && x <= Columns * gui.char_width
4942 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4943 return xy2win(x, y, popup);
4944 return NULL;
4945}
4946
4947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 * Called when mouse should be moved to window with focus.
4949 */
4950 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004951gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 win_T *wp = NULL;
4954
4955 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004956
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004957 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004958 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004960 validate_cline_row();
4961 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4962 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 }
4965}
4966
4967/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004968 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004969 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004972xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 int row;
4975 int col;
4976 win_T *wp;
4977
4978 row = Y_2_ROW(y);
4979 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004980 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004982 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004983 if (wp == NULL)
4984 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004985#ifdef FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 if (State == HITRETURN || State == ASKMORE)
4987 {
4988 if (Y_2_ROW(y) >= msg_row)
4989 update_mouseshape(SHAPE_IDX_MOREL);
4990 else
4991 update_mouseshape(SHAPE_IDX_MORE);
4992 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004993 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004995 else if (!(State & CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004996 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaare0de17d2017-09-24 16:24:34 +02004998 else if (!(State & CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004999 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 update_mouseshape(SHAPE_IDX_STATUS);
5001 else
5002 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005004 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005}
5006
5007/*
5008 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5009 * File names may be given to redefine the args list.
5010 */
5011 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005012ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013{
5014 char_u *arg = eap->arg;
5015
5016 /*
5017 * Check for "-f" argument: foreground, don't fork.
5018 * Also don't fork when started with "gvim -f".
5019 * Do fork when using "gui -b".
5020 */
5021 if (arg[0] == '-'
5022 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005023 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 {
5025 gui.dofork = (arg[1] == 'b');
5026 eap->arg = skipwhite(eap->arg + 2);
5027 }
5028 if (!gui.in_use)
5029 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005030#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005031 if (!gui.starting)
5032 {
5033 emsg(_(e_nogvim));
5034 return;
5035 }
5036#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005037 // Clear the command. Needed for when forking+exiting, to avoid part
5038 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005040#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005041 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005042 gui_start(eap->arg);
5043 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005044#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005045 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005046#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005047 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005048#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005050 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 ex_next(eap);
5052}
5053
Bram Moolenaar4f974752019-02-17 17:44:42 +01005054#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005055 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5056 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005057 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058/*
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005059 * This is shared between Athena, Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061
5062/*
5063 * Callback function for do_in_runtimepath().
5064 */
5065 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005066gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005068 char_u *gfp_buffer = cookie;
5069
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 if (STRLEN(fname) >= MAXPATHL)
5071 *gfp_buffer = NUL;
5072 else
5073 STRCPY(gfp_buffer, fname);
5074}
5075
5076/*
5077 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5078 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5079 */
5080 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005081gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082{
5083 if (STRLEN(name) > MAXPATHL - 14)
5084 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005085 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005086 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005087 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 return FAIL;
5089 return OK;
5090}
5091
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005092# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093/*
5094 * Given the name of the "icon=" argument, try finding the bitmap file for the
5095 * icon. If it is an absolute path name, use it as it is. Otherwise append
5096 * "ext" and search for it in 'runtimepath'.
5097 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5098 * contains "name".
5099 */
5100 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005101gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102{
5103 char_u buf[MAXPATHL + 1];
5104
5105 expand_env(name, buffer, MAXPATHL);
5106 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5107 STRCPY(buffer, buf);
5108}
5109# endif
5110#endif
5111
Bram Moolenaar9e175142020-04-30 22:51:01 +02005112#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5113 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005115display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116{
5117 char_u *p;
5118
5119 if (isatty(2))
5120 fflush(stderr);
5121 else if (error_ga.ga_data != NULL)
5122 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005123 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5125 if (!isspace(*p))
5126 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005127 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 if (STRLEN(p) > 2000)
5129 STRCPY(p + 2000 - 14, "...(truncated)");
5130 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005131 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 break;
5133 }
5134 ga_clear(&error_ga);
5135 }
5136}
5137#endif
5138
5139#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5140/*
5141 * Return TRUE if still starting up and there is no place to enter text.
5142 * For GTK and X11 we check if stderr is not a tty, which means we were
5143 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5144 * allow typing on stdin.
5145 */
5146 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005147no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148{
5149 return ((!gui.in_use || gui.starting)
5150# ifndef NO_CONSOLE
5151 && !isatty(0) && !isatty(2)
5152# endif
5153 );
5154}
5155#endif
5156
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005157#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005158 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005159 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160/*
5161 * Update the current window and the screen.
5162 */
5163 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005164gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005166# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005167 linenr_T conceal_old_cursor_line = 0;
5168 linenr_T conceal_new_cursor_line = 0;
5169 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005170# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005171
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 update_topline();
5173 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005174
Bram Moolenaar30613902019-12-01 22:11:18 +01005175 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005176 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005177# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005178 || popup_visible
5179# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005180# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005181 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005182# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005183 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005184 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005185 if (has_cursormoved())
5186 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005187#ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005188 if (popup_visible)
5189 popup_check_cursor_pos();
5190#endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005191# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005192 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005193 {
5194 conceal_old_cursor_line = last_cursormoved.lnum;
5195 conceal_new_cursor_line = curwin->w_cursor.lnum;
5196 conceal_update_lines = TRUE;
5197 }
5198# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005199 last_cursormoved = curwin->w_cursor;
5200 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005201
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005202# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005203 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005204 && (conceal_old_cursor_line != conceal_new_cursor_line
5205 || conceal_cursor_line(curwin)
5206 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005207 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005208 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005209 redrawWinline(curwin, conceal_old_cursor_line);
5210 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005211 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005212 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005213 }
5214# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005215 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005216 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005217 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218}
5219#endif
5220
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005221#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222/*
5223 * Get the text to use in a find/replace dialog. Uses the last search pattern
5224 * if the argument is empty.
5225 * Returns an allocated string.
5226 */
5227 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005228get_find_dialog_text(
5229 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005230 int *wwordp, // return: TRUE if \< \> found
5231 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232{
5233 char_u *text;
5234
5235 if (*arg == NUL)
5236 text = last_search_pat();
5237 else
5238 text = arg;
5239 if (text != NULL)
5240 {
5241 text = vim_strsave(text);
5242 if (text != NULL)
5243 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005244 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 int i;
5246
Bram Moolenaar30613902019-12-01 22:11:18 +01005247 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5249 {
5250 mch_memmove(text, text + 2, (size_t)(len - 1));
5251 len -= 2;
5252 }
5253
Bram Moolenaar30613902019-12-01 22:11:18 +01005254 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5256 {
5257 *mcasep = (text[1] == 'C');
5258 mch_memmove(text, text + 2, (size_t)(len - 1));
5259 len -= 2;
5260 }
5261
Bram Moolenaar30613902019-12-01 22:11:18 +01005262 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 if (len >= 4
5264 && STRNCMP(text, "\\<", 2) == 0
5265 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5266 {
5267 *wwordp = TRUE;
5268 mch_memmove(text, text + 2, (size_t)(len - 4));
5269 text[len - 4] = NUL;
5270 }
5271
Bram Moolenaar30613902019-12-01 22:11:18 +01005272 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 for (i = 0; i + 1 < len; ++i)
5274 if (text[i] == '\\' && (text[i + 1] == '/'
5275 || text[i + 1] == '?'))
5276 {
5277 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5278 --len;
5279 }
5280 }
5281 }
5282 return text;
5283}
5284
5285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 * Handle the press of a button in the find-replace dialog.
5287 * Return TRUE when something was added to the input buffer.
5288 */
5289 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005290gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005291 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005292 char_u *find_text,
5293 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005294 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295{
5296 garray_T ga;
5297 int i;
5298 int type = (flags & FRD_TYPE_MASK);
5299 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005300 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005301 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005302 static int busy = FALSE;
5303
Bram Moolenaar30613902019-12-01 22:11:18 +01005304 // When the screen is being updated we should not change buffers and
5305 // windows structures, it may cause freed memory to be used. Also don't
5306 // do this recursively (pressing "Find" quickly several times.
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005307 if (updating_screen || busy)
5308 return FALSE;
5309
Bram Moolenaar30613902019-12-01 22:11:18 +01005310 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005311 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5312 return FALSE;
5313
5314 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315
5316 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005317 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 ga_concat(&ga, (char_u *)"%s/");
5319
5320 ga_concat(&ga, (char_u *)"\\V");
5321 if (flags & FRD_MATCH_CASE)
5322 ga_concat(&ga, (char_u *)"\\C");
5323 else
5324 ga_concat(&ga, (char_u *)"\\c");
5325 if (flags & FRD_WHOLE_WORD)
5326 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005327 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005328 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5329 if (p != NULL)
5330 ga_concat(&ga, p);
5331 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 if (flags & FRD_WHOLE_WORD)
5333 ga_concat(&ga, (char_u *)"\\>");
5334
5335 if (type == FRD_REPLACEALL)
5336 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005338 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005339 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5340 if (p != NULL)
5341 ga_concat(&ga, p);
5342 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005344 }
5345 ga_append(&ga, NUL);
5346
5347 if (type == FRD_REPLACE)
5348 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005349 // Do the replacement when the text at the cursor matches. Thus no
5350 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005351 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5352 regmatch.rm_ic = 0;
5353 if (regmatch.regprog != NULL)
5354 {
5355 p = ml_get_cursor();
5356 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5357 && regmatch.startp[0] == p)
5358 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005359 // Clear the command line to remove any old "No match"
5360 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005361 msg_end_prompt();
5362
5363 if (u_save_cursor() == OK)
5364 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005365 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005366 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005367
5368 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005369 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005370 ins_str(repl_text);
5371 }
5372 }
5373 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005374 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005375 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005376 }
5377 }
5378
5379 if (type == FRD_REPLACEALL)
5380 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005381 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005382 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 do_cmdline_cmd(ga.ga_data);
5384 }
5385 else
5386 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005387 int searchflags = SEARCH_MSG + SEARCH_MARK;
5388
Bram Moolenaar30613902019-12-01 22:11:18 +01005389 // Search for the next match.
5390 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005391 if (type == FRD_REPLACE)
5392 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005394 if (down)
5395 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005396 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005397 }
5398 else
5399 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005400 // We need to escape '?' if and only if we are searching in the up
5401 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005402 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5403 if (p != NULL)
Bram Moolenaarc036e872020-02-21 21:30:52 +01005404 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005405 vim_free(p);
5406 }
5407
Bram Moolenaar30613902019-12-01 22:11:18 +01005408 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 }
5410
Bram Moolenaar30613902019-12-01 22:11:18 +01005411 // Don't want to pass did_emsg to other code, it may cause disabling
5412 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005413 did_emsg = save_did_emsg;
5414
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 if (State & (NORMAL | INSERT))
5416 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005417 gui_update_screen(); // update the screen
5418 msg_didout = 0; // overwrite any message
5419 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 }
5421
5422 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005423 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 return (ga.ga_len > 0);
5425}
5426
5427#endif
5428
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005429#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430/*
5431 * Jump to the window at specified point (x, y).
5432 */
5433 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005434gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435{
5436 int row = Y_2_ROW(y);
5437 int col = X_2_COL(x);
5438 win_T *wp;
5439
5440 if (row >= 0 && col >= 0)
5441 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005442 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 if (wp != NULL && wp != curwin)
5444 win_goto(wp);
5445 }
5446}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447
5448/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005449 * Function passed to handle_drop() for the actions to be done after the
5450 * argument list has been updated.
5451 */
5452 static void
5453drop_callback(void *cookie)
5454{
5455 char_u *p = cookie;
5456
Bram Moolenaar30613902019-12-01 22:11:18 +01005457 // If Shift held down, change to first file's directory. If the first
5458 // item is a directory, change to that directory (and let the explorer
5459 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005460 if (p != NULL)
5461 {
5462 if (mch_isdir(p))
5463 {
5464 if (mch_chdir((char *)p) == 0)
5465 shorten_fnames(TRUE);
5466 }
5467 else if (vim_chdirfile(p, "drop") == OK)
5468 shorten_fnames(TRUE);
5469 vim_free(p);
5470 }
5471
Bram Moolenaar30613902019-12-01 22:11:18 +01005472 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005473 update_screen(NOT_VALID);
5474# ifdef FEAT_MENU
5475 gui_update_menus(0);
5476# endif
5477#ifdef FEAT_TITLE
5478 maketitle();
5479#endif
5480 setcursor();
5481 out_flush_cursor(FALSE, FALSE);
5482}
5483
5484/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 * Process file drop. Mouse cursor position, key modifiers, name of files
5486 * and count of files are given. Argument "fnames[count]" has full pathnames
5487 * of dropped files, they will be freed in this function, and caller can't use
5488 * fnames after call this function.
5489 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005491gui_handle_drop(
5492 int x UNUSED,
5493 int y UNUSED,
5494 int_u modifiers,
5495 char_u **fnames,
5496 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497{
5498 int i;
5499 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005500 static int entered = FALSE;
5501
5502 /*
5503 * This function is called by event handlers. Just in case we get a
5504 * second event before the first one is handled, ignore the second one.
5505 * Not sure if this can ever happen, just in case.
5506 */
5507 if (entered)
5508 return;
5509 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511 /*
5512 * When the cursor is at the command line, add the file names to the
5513 * command line, don't edit the files.
5514 */
5515 if (State & CMDLINE)
5516 {
5517 shorten_filenames(fnames, count);
5518 for (i = 0; i < count; ++i)
5519 {
5520 if (fnames[i] != NULL)
5521 {
5522 if (i > 0)
5523 add_to_input_buf((char_u*)" ", 1);
5524
Bram Moolenaar30613902019-12-01 22:11:18 +01005525 // We don't know what command is used thus we can't be sure
5526 // about which characters need to be escaped. Only escape the
5527 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528# ifdef BACKSLASH_IN_FILENAME
5529 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5530# else
5531 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5532# endif
5533 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005534 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 vim_free(p);
5536 vim_free(fnames[i]);
5537 }
5538 }
5539 vim_free(fnames);
5540 }
5541 else
5542 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005543 // Go to the window under mouse cursor, then shorten given "fnames" by
5544 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 shorten_filenames(fnames, count);
5547
Bram Moolenaar30613902019-12-01 22:11:18 +01005548 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 if ((modifiers & MOUSE_SHIFT) != 0)
5550 p = vim_strsave(fnames[0]);
5551 else
5552 p = NULL;
5553
Bram Moolenaar30613902019-12-01 22:11:18 +01005554 // Handle the drop, :edit or :split to get to the file. This also
5555 // frees fnames[]. Skip this if there is only one item, it's a
5556 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5558 && mch_isdir(fnames[0]))
5559 {
5560 vim_free(fnames[0]);
5561 vim_free(fnames);
5562 }
5563 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005564 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
5565 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005567
5568 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569}
5570#endif