blob: b245002da18ba700c7b120e029bc95e9a036ad28 [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
K.Takata94373c42022-01-27 15:04:22 +000016#if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
17# define USE_SET_GUIFONTWIDE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010018static void set_guifontwide(char_u *font_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010020static void gui_check_pos(void);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020021static void gui_reset_scroll_region(void);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010022static void gui_outstr(char_u *, int);
23static int gui_screenchar(int off, int flags, guicolor_T fg, guicolor_T bg, int back);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020024static 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 +010025static void gui_delete_lines(int row, int count);
26static void gui_insert_lines(int row, int count);
Bram Moolenaar5843f5f2019-08-20 20:13:45 +020027static int gui_xy2colrow(int x, int y, int *colp);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000028#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaard25c16e2016-01-29 22:13:30 +010029static int gui_has_tabline(void);
Bram Moolenaar32466aa2006-02-24 23:53:04 +000030#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010031static void gui_do_scrollbar(win_T *wp, int which, int enable);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010032static void gui_update_horiz_scrollbar(int);
33static void gui_set_fg_color(char_u *name);
34static void gui_set_bg_color(char_u *name);
Yegappan Lakshmananee47eac2022-06-29 12:55:36 +010035static void init_gui_options(void);
Bram Moolenaar0630bb62019-11-04 22:52:12 +010036static win_T *xy2win(int x, int y, mouse_find_T popup);
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020038#ifdef GUI_MAY_FORK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010039static void gui_do_fork(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020040
Bram Moolenaard25c16e2016-01-29 22:13:30 +010041static int gui_read_child_pipe(int fd);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020042
Bram Moolenaar30613902019-12-01 22:11:18 +010043// Return values for gui_read_child_pipe
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020044enum {
45 GUI_CHILD_IO_ERROR,
46 GUI_CHILD_OK,
47 GUI_CHILD_FAILED
48};
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020049#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020050
Bram Moolenaard25c16e2016-01-29 22:13:30 +010051static void gui_attempt_start(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020052
Bram Moolenaar30613902019-12-01 22:11:18 +010053static int can_update_cursor = TRUE; // can display the cursor
54static int disable_flush = 0; // If > 0, gui_mch_flush() is disabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
56/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 * gui_start -- Called when user wants to start the GUI.
58 *
59 * Careful: This function can be called recursively when there is a ":gui"
60 * command in the .gvimrc file. Only the first call should fork, not the
61 * recursive call.
62 */
63 void
Bram Moolenaarafde13b2019-04-28 19:46:49 +020064gui_start(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000065{
66 char_u *old_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +000067 static int recursive = 0;
Bram Moolenaar68cbb142019-05-09 14:14:42 +020068#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaarafde13b2019-04-28 19:46:49 +020069 char *msg = NULL;
70#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72 old_term = vim_strsave(T_NAME);
73
Bram Moolenaar30613902019-12-01 22:11:18 +010074 settmode(TMODE_COOK); // stop RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000075 if (full_screen)
Bram Moolenaar30613902019-12-01 22:11:18 +010076 cursor_on(); // needed for ":gui" in .vimrc
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 full_screen = FALSE;
78
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 ++recursive;
80
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020081#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020082 /*
83 * Quit the current process and continue in the child.
84 * Makes "gvim file" disconnect from the shell it was started in.
85 * Don't do this when Vim was started with "-f" or the 'f' flag is present
86 * in 'guioptions'.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020087 * Don't do this when there is a running job, we can only get the status
88 * of a child from the parent.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020089 */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020090 if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1
91# ifdef FEAT_JOB_CHANNEL
92 && !job_any_running()
93# endif
94 )
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020095 {
96 gui_do_fork();
97 }
98 else
99#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200100#ifdef GUI_MAY_SPAWN
101 if (gui.dospawn
102# ifdef EXPERIMENTAL_GUI_CMD
103 && gui.dofork
104# endif
105 && !vim_strchr(p_go, GO_FORG)
106 && !anyBufIsChanged()
107# ifdef FEAT_JOB_CHANNEL
108 && !job_any_running()
109# endif
110 )
111 {
Bram Moolenaar68cbb142019-05-09 14:14:42 +0200112# ifdef EXPERIMENTAL_GUI_CMD
113 msg =
114# endif
115 gui_mch_do_spawn(arg);
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200116 }
117 else
118#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200119 {
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200120#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100121 // If there is 'f' in 'guioptions' and specify -g argument,
122 // gui_mch_init_check() was not called yet.
Bram Moolenaar6a3c1b42012-05-25 14:06:36 +0200123 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100124 getout_preserve_modified(1);
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200125#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200126 gui_attempt_start();
127 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
Bram Moolenaar30613902019-12-01 22:11:18 +0100129 if (!gui.in_use) // failed to start GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100131 // Back to old term settings
132 //
133 // FIXME: If we got here because a child process failed and flagged to
Bram Moolenaar651fca82021-11-29 20:39:38 +0000134 // the parent to resume, and X11 is enabled, this will
Bram Moolenaar30613902019-12-01 22:11:18 +0100135 // hit an X11 I/O error and do a longjmp(), leaving recursive
136 // permanently set to 1. This is probably not as big a problem as it
137 // sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c
138 // return "OK" unconditionally, so it would be very difficult to
139 // actually hit this case.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200140 termcapinit(old_term);
Bram Moolenaar30613902019-12-01 22:11:18 +0100141 settmode(TMODE_RAW); // restart RAW mode
Bram Moolenaar30613902019-12-01 22:11:18 +0100142 set_title_defaults(); // set 'title' and 'icon' again
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200143#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
144 if (msg)
145 emsg(msg);
146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 }
148
149 vim_free(old_term);
150
Bram Moolenaar30613902019-12-01 22:11:18 +0100151 // If the GUI started successfully, trigger the GUIEnter event, otherwise
152 // the GUIFailed event.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200153 gui_mch_update();
154 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
155 NULL, NULL, FALSE, curbuf);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200156 --recursive;
157}
158
159/*
160 * Set_termname() will call gui_init() to start the GUI.
161 * Set the "starting" flag, to indicate that the GUI will start.
162 *
163 * We don't want to open the GUI shell until after we've read .gvimrc,
164 * otherwise we don't know what font we will use, and hence we don't know
165 * what size the shell should be. So if there are errors in the .gvimrc
166 * file, they will have to go to the terminal: Set full_screen to FALSE.
167 * full_screen will be set to TRUE again by a successful termcapinit().
168 */
169 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100170gui_attempt_start(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200171{
172 static int recursive = 0;
173
174 ++recursive;
175 gui.starting = TRUE;
176
177#ifdef FEAT_GUI_GTK
178 gui.event_time = GDK_CURRENT_TIME;
179#endif
180
181 termcapinit((char_u *)"builtin_gui");
182 gui.starting = recursive - 1;
183
Bram Moolenaar9372a112005-12-06 19:59:18 +0000184#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 if (gui.in_use)
Bram Moolenaar727c8762010-10-20 19:17:48 +0200186 {
187# ifdef FEAT_EVAL
188 Window x11_window;
189 Display *x11_display;
190
191 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
192 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
193# endif
194
Bram Moolenaar30613902019-12-01 22:11:18 +0100195 // Display error messages in a dialog now.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 display_errors();
Bram Moolenaar727c8762010-10-20 19:17:48 +0200197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 --recursive;
200}
201
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200202#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200203
Bram Moolenaar30613902019-12-01 22:11:18 +0100204// for waitpid()
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200205# if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
206# include <sys/wait.h>
207# endif
208
209/*
210 * Create a new process, by forking. In the child, start the GUI, and in
211 * the parent, exit.
212 *
213 * If something goes wrong, this will return with gui.in_use still set
214 * to FALSE, in which case the caller should continue execution without
215 * the GUI.
216 *
217 * If the child fails to start the GUI, then the child will exit and the
218 * parent will return. If the child succeeds, then the parent will exit
219 * and the child will return.
220 */
221 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100222gui_do_fork(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200223{
Bram Moolenaar30613902019-12-01 22:11:18 +0100224 int pipefd[2]; // pipe between parent and child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200225 int pipe_error;
226 int status;
227 int exit_status;
228 pid_t pid = -1;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200229
Bram Moolenaarc72e31d2022-06-16 18:47:20 +0100230#if defined(FEAT_RELTIME) && defined(HAVE_TIMER_CREATE)
231 // a timer is not carried forward
232 delete_timer();
233#endif
234
Bram Moolenaar30613902019-12-01 22:11:18 +0100235 // Setup a pipe between the child and the parent, so that the parent
236 // knows when the child has done the setsid() call and is allowed to
237 // exit.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200238 pipe_error = (pipe(pipefd) < 0);
239 pid = fork();
Bram Moolenaar30613902019-12-01 22:11:18 +0100240 if (pid < 0) // Fork error
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200241 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000242 emsg(_(e_failed_to_create_new_process_for_GUI));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200243 return;
244 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100245 else if (pid > 0) // Parent
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200246 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100247 // Give the child some time to do the setsid(), otherwise the
248 // exit() may kill the child too (when starting gvim from inside a
249 // gvim).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200250 if (!pipe_error)
251 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100252 // The read returns when the child closes the pipe (or when
253 // the child dies for some reason).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200254 close(pipefd[1]);
255 status = gui_read_child_pipe(pipefd[0]);
256 if (status == GUI_CHILD_FAILED)
257 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100258 // The child failed to start the GUI, so the caller must
259 // continue. There may be more error information written
260 // to stderr by the child.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200261# ifdef __NeXT__
262 wait4(pid, &exit_status, 0, (struct rusage *)0);
263# else
264 waitpid(pid, &exit_status, 0);
265# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000266 emsg(_(e_the_child_process_failed_to_start_GUI));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200267 return;
268 }
269 else if (status == GUI_CHILD_IO_ERROR)
270 {
271 pipe_error = TRUE;
272 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100273 // else GUI_CHILD_OK: parent exit
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200274 }
275
276 if (pipe_error)
Bram Moolenaareda1da02019-11-17 17:06:33 +0100277 ui_delay(301L, TRUE);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200278
Bram Moolenaar30613902019-12-01 22:11:18 +0100279 // When swapping screens we may need to go to the next line, e.g.,
280 // after a hit-enter prompt and using ":gui".
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200281 if (newline_on_exit)
282 mch_errmsg("\r\n");
283
284 /*
285 * The parent must skip the normal exit() processing, the child
286 * will do it. For example, GTK messes up signals when exiting.
287 */
288 _exit(0);
289 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100290 // Child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200291
K.Takata6e1d31e2022-02-03 13:05:32 +0000292# ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100293 // Call gtk_init_check() here after fork(). See gui_init_check().
Bram Moolenaar29695702012-05-18 17:03:18 +0200294 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100295 getout_preserve_modified(1);
K.Takata6e1d31e2022-02-03 13:05:32 +0000296# endif
Bram Moolenaar29695702012-05-18 17:03:18 +0200297
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200298# if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
299 /*
300 * Change our process group. On some systems/shells a CTRL-C in the
301 * shell where Vim was started would otherwise kill gvim!
302 */
303# if defined(HAVE_SETSID)
304 (void)setsid();
305# else
306 (void)setpgid(0, 0);
307# endif
308# endif
309 if (!pipe_error)
310 close(pipefd[0]);
311
312# if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +0100313 // Tell the session manager our new PID
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200314 gui_mch_forked();
315# endif
316
Bram Moolenaar30613902019-12-01 22:11:18 +0100317 // Try to start the GUI
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200318 gui_attempt_start();
319
Bram Moolenaar30613902019-12-01 22:11:18 +0100320 // Notify the parent
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200321 if (!pipe_error)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200322 {
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200323 if (gui.in_use)
324 write_eintr(pipefd[1], "ok", 3);
325 else
326 write_eintr(pipefd[1], "fail", 5);
327 close(pipefd[1]);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200328 }
329
Bram Moolenaar30613902019-12-01 22:11:18 +0100330 // If we failed to start the GUI, exit now.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200331 if (!gui.in_use)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100332 getout_preserve_modified(1);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200333}
334
335/*
336 * Read from a pipe assumed to be connected to the child process (this
337 * function is called from the parent).
338 * Return GUI_CHILD_OK if the child successfully started the GUI,
339 * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was
340 * some other error.
341 *
342 * The file descriptor will be closed before the function returns.
343 */
344 static int
345gui_read_child_pipe(int fd)
346{
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200347 long bytes_read;
K.Takata6e1d31e2022-02-03 13:05:32 +0000348# define READ_BUFFER_SIZE 10
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200349 char buffer[READ_BUFFER_SIZE];
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200350
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200351 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
K.Takata6e1d31e2022-02-03 13:05:32 +0000352# undef READ_BUFFER_SIZE
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200353 close(fd);
354 if (bytes_read < 0)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200355 return GUI_CHILD_IO_ERROR;
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200356 buffer[bytes_read] = NUL;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200357 if (strcmp(buffer, "ok") == 0)
358 return GUI_CHILD_OK;
359 return GUI_CHILD_FAILED;
360}
361
Bram Moolenaar30613902019-12-01 22:11:18 +0100362#endif // GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200363
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364/*
365 * Call this when vim starts up, whether or not the GUI is started
366 */
367 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100368gui_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369{
Bram Moolenaar30613902019-12-01 22:11:18 +0100370 gui.in_use = FALSE; // No GUI yet (maybe later)
371 gui.starting = FALSE; // No GUI yet (maybe later)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 gui_mch_prepare(argc, argv);
373}
374
375/*
376 * Try initializing the GUI and check if it can be started.
377 * Used from main() to check early if "vim -g" can start the GUI.
378 * Used from gui_init() to prepare for starting the GUI.
379 * Returns FAIL or OK.
380 */
381 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100382gui_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383{
384 static int result = MAYBE;
385
386 if (result != MAYBE)
387 {
388 if (result == FAIL)
Bram Moolenaar6d057012021-12-31 18:49:43 +0000389 emsg(_(e_cannot_start_the_GUI));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 return result;
391 }
392
393 gui.shell_created = FALSE;
394 gui.dying = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +0100395 gui.in_focus = TRUE; // so the guicursor setting works
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 gui.dragged_sb = SBAR_NONE;
397 gui.dragged_wp = NULL;
398 gui.pointer_hidden = FALSE;
399 gui.col = 0;
400 gui.row = 0;
401 gui.num_cols = Columns;
402 gui.num_rows = Rows;
403
404 gui.cursor_is_valid = FALSE;
405 gui.scroll_region_top = 0;
406 gui.scroll_region_bot = Rows - 1;
407 gui.scroll_region_left = 0;
408 gui.scroll_region_right = Columns - 1;
409 gui.highlight_mask = HL_NORMAL;
410 gui.char_width = 1;
411 gui.char_height = 1;
412 gui.char_ascent = 0;
413 gui.border_width = 0;
414
415 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200416#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 gui.bold_font = NOFONT;
418 gui.ital_font = NOFONT;
419 gui.boldital_font = NOFONT;
420# ifdef FEAT_XFONTSET
421 gui.fontset = NOFONTSET;
422# endif
423#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200424 gui.wide_font = NOFONT;
Bram Moolenaar13505972019-01-24 15:04:48 +0100425#ifndef FEAT_GUI_GTK
Bram Moolenaardb250522013-06-17 22:43:25 +0200426 gui.wide_bold_font = NOFONT;
427 gui.wide_ital_font = NOFONT;
428 gui.wide_boldital_font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +0200429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430
431#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200432# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433# ifdef FONTSET_ALWAYS
434 gui.menu_fontset = NOFONTSET;
435# else
436 gui.menu_font = NOFONT;
437# endif
438# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100439 gui.menu_is_active = TRUE; // default: include menu
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440# ifndef FEAT_GUI_GTK
441 gui.menu_height = MENU_DEFAULT_HEIGHT;
442 gui.menu_width = 0;
443# endif
444#endif
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100445#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 gui.toolbar_height = 0;
447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448#ifdef FEAT_BEVAL_TIP
449 gui.tooltip_fontset = NOFONTSET;
450#endif
451
452 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
453 gui.prev_wrap = -1;
454
K.Takata6e1d31e2022-02-03 13:05:32 +0000455#ifdef FEAT_GUI_GTK
Dusan Popovic4eeedc02021-10-16 20:52:05 +0100456 CLEAR_FIELD(gui.ligatures_map);
457#endif
458
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200459#if defined(ALWAYS_USE_GUI) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 result = OK;
461#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200462# ifdef FEAT_GUI_GTK
463 /*
464 * Note: Don't call gtk_init_check() before fork, it will be called after
465 * the fork. When calling it before fork, it make vim hang for a while.
466 * See gui_do_fork().
467 * Use a simpler check if the GUI window can probably be opened.
468 */
Bram Moolenaar717e1962016-08-10 21:28:44 +0200469 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200470# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473#endif
474 return result;
475}
476
477/*
478 * This is the call which starts the GUI.
479 */
480 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100481gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482{
483 win_T *wp;
484 static int recursive = 0;
485
486 /*
Dominique Pelleaf4a61a2021-12-27 17:21:41 +0000487 * It's possible to use ":gui" in a .gvimrc file. The first half of this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 * function will then be executed at the first call, the rest by the
489 * recursive call. This allow the shell to be opened halfway reading a
490 * gvimrc file.
491 */
492 if (!recursive)
493 {
494 ++recursive;
495
496 clip_init(TRUE);
497
Bram Moolenaar30613902019-12-01 22:11:18 +0100498 // If can't initialize, don't try doing the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 if (gui_init_check() == FAIL)
500 {
501 --recursive;
502 clip_init(FALSE);
503 return;
504 }
505
506 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000507 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
508 * breaks the Paste toolbar button.
509 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100510 set_option_value_give_err((char_u *)"paste", 0L, NULL, 0);
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000511
Bram Moolenaaracc770a2020-04-12 15:11:06 +0200512 // Set t_Co to the number of colors: RGB.
513 set_color_count(256 * 256 * 256);
514
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000515 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 * Set up system-wide default menus.
517 */
518#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
519 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
520 {
521 sys_menu = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100522 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 sys_menu = FALSE;
524 }
525#endif
526
527 /*
528 * Switch on the mouse by default, unless the user changed it already.
529 * This can then be changed in the .gvimrc.
530 */
531 if (!option_was_set((char_u *)"mouse"))
532 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000533 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535 /*
536 * If -U option given, use only the initializations from that file and
537 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
538 */
539 if (use_gvimrc != NULL)
540 {
541 if (STRCMP(use_gvimrc, "NONE") != 0
542 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100543 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000544 semsg(_(e_cannot_read_from_str), use_gvimrc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 }
546 else
547 {
548 /*
549 * Get system wide defaults for gvim, only when file name defined.
550 */
551#ifdef SYS_GVIMRC_FILE
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100552 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553#endif
554
555 /*
556 * Try to read GUI initialization commands from the following
557 * places:
558 * - environment variable GVIMINIT
559 * - the user gvimrc file (~/.gvimrc)
560 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
561 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
562 * The first that exists is used, the rest is ignored.
563 */
564 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000565 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100566 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000568 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100569 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200571#ifdef USR_GVIMRC_FILE3
572 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100573 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 )
576 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200577#ifdef USR_GVIMRC_FILE4
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100578 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE,
579 DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580#endif
581 }
582
583 /*
584 * Read initialization commands from ".gvimrc" in current
585 * directory. This is only done if the 'exrc' option is set.
586 * Because of security reasons we disallow shell and write
587 * commands now, except for unix if the file is owned by the user
588 * or 'secure' option has been reset in environment of global
589 * ".gvimrc".
590 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
591 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
592 */
593 if (p_exrc)
594 {
595#ifdef UNIX
596 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200597 stat_T s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
Bram Moolenaar30613902019-12-01 22:11:18 +0100599 // if ".gvimrc" file is not owned by user, set 'secure'
600 // mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
602 secure = p_secure;
603 }
604#else
605 secure = p_secure;
606#endif
607
608 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200609 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610#ifdef SYS_GVIMRC_FILE
611 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200612 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#endif
614#ifdef USR_GVIMRC_FILE2
615 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
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_FILE3
619 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
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
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200622#ifdef USR_GVIMRC_FILE4
623 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200624 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100627 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628
629 if (secure == 2)
630 need_wait_return = TRUE;
631 secure = 0;
632 }
633 }
634
635 if (need_wait_return || msg_didany)
636 wait_return(TRUE);
637
638 --recursive;
639 }
640
Bram Moolenaar30613902019-12-01 22:11:18 +0100641 // If recursive call opened the shell, return here from the first call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 if (gui.in_use)
643 return;
644
645 /*
646 * Create the GUI shell.
647 */
Bram Moolenaar30613902019-12-01 22:11:18 +0100648 gui.in_use = TRUE; // Must be set after menus have been set up
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 if (gui_mch_init() == FAIL)
650 goto error;
651
Bram Moolenaar30613902019-12-01 22:11:18 +0100652 // Avoid a delay for an error message that was printed in the terminal
653 // where Vim was started.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 emsg_on_display = FALSE;
655 msg_scrolled = 0;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100656 clear_sb_text(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 need_wait_return = FALSE;
658 msg_didany = FALSE;
659
660 /*
661 * Check validity of any generic resources that may have been loaded.
662 */
663 if (gui.border_width < 0)
664 gui.border_width = 0;
665
666 /*
667 * Set up the fonts. First use a font specified with "-fn" or "-font".
668 */
669 if (font_argument != NULL)
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100670 set_option_value_give_err((char_u *)"gfn",
671 0L, (char_u *)font_argument, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 if (
673#ifdef FEAT_XFONTSET
674 (*p_guifontset == NUL
675 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
676#endif
677 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
678 : p_guifont, FALSE) == FAIL)
679 {
Bram Moolenaara6f79292022-01-04 21:30:47 +0000680 emsg(_(e_cannot_start_gui_no_valid_font_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 goto error2;
682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 if (gui_get_wide_font() == FAIL)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000684 emsg(_(e_guifontwide_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685
686 gui.num_cols = Columns;
687 gui.num_rows = Rows;
688 gui_reset_scroll_region();
689
Bram Moolenaar30613902019-12-01 22:11:18 +0100690 // Create initial scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 FOR_ALL_WINDOWS(wp)
692 {
693 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
694 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
695 }
696 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
697
698#ifdef FEAT_MENU
699 gui_create_initial_menus(root_menu);
700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701#ifdef FEAT_SIGN_ICONS
702 sign_gui_started();
703#endif
704
Bram Moolenaar30613902019-12-01 22:11:18 +0100705 // Configure the desired menu and scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 gui_init_which_components(NULL);
707
Bram Moolenaar30613902019-12-01 22:11:18 +0100708 // All components of the GUI have been created now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 gui.shell_created = TRUE;
710
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100711#ifdef FEAT_GUI_MSWIN
Bram Moolenaar4814ccb2018-12-22 18:44:53 +0100712 // Set the shell size, adjusted for the screen size. For GTK this only
713 // works after the shell has been opened, thus it is further down.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100714 // If the window is already maximized (e.g. when --windowid is passed in),
715 // we want to use the system-provided dimensions by passing FALSE to
716 // mustset. Otherwise, we want to initialize with the default rows/columns.
717 if (gui_mch_maximized())
718 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
719 else
720 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100721#else
722# ifndef FEAT_GUI_GTK
723 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
724# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725#endif
726#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +0100727 // Need to set the size of the menubar after all the menus have been
728 // created.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 gui_mch_compute_menu_height((Widget)0);
730#endif
731
732 /*
733 * Actually open the GUI shell.
734 */
735 if (gui_mch_open() != FAIL)
736 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 maketitle();
738 resettitle();
Bram Moolenaar651fca82021-11-29 20:39:38 +0000739
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 init_gui_options();
741#ifdef FEAT_ARABIC
Bram Moolenaar30613902019-12-01 22:11:18 +0100742 // Our GUI can't do bidi.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 p_tbidi = FALSE;
744#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000745#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100746 // Give GTK+ a chance to put all widget's into place.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000748
749# ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +0100750 // If there is no 'm' in 'guioptions' we need to remove the menu now.
751 // It was still there to make F10 work.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000752 if (vim_strchr(p_go, GO_MENUS) == NULL)
753 {
754 --gui.starting;
755 gui_mch_enable_menu(FALSE);
756 ++gui.starting;
757 gui_mch_update();
758 }
759# endif
760
Bram Moolenaar30613902019-12-01 22:11:18 +0100761 // Now make sure the shell fits on the screen.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100762 if (gui_mch_maximized())
763 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
764 else
765 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100767 // When 'lines' was set while starting up the topframe may have to be
768 // resized.
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000769 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000770
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100771#ifdef FEAT_BEVAL_GUI
Bram Moolenaar30613902019-12-01 22:11:18 +0100772 // Always create the Balloon Evaluation area, but disable it when
773 // 'ballooneval' is off.
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100774 if (balloonEval != NULL)
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200775 {
776# ifdef FEAT_VARTABS
777 vim_free(balloonEval->vts);
778# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100779 vim_free(balloonEval);
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200780 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100781 balloonEvalForTerm = FALSE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000782# ifdef FEAT_GUI_GTK
783 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
784 &general_beval_cb, NULL);
785# else
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100786# if defined(FEAT_GUI_MOTIF)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000787 {
788 extern Widget textArea;
789 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000790 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000791 }
792# else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100793# ifdef FEAT_GUI_MSWIN
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000794 balloonEval = gui_mch_create_beval_area(NULL, NULL,
795 &general_beval_cb, NULL);
796# endif
797# endif
798# endif
799 if (!p_beval)
800 gui_mch_disable_beval_area(balloonEval);
801#endif
Bram Moolenaarad772a62020-06-01 14:07:49 +0200802
803#ifndef FEAT_GUI_MSWIN
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200804 // In the GUI modifiers are prepended to keys.
Bram Moolenaarad772a62020-06-01 14:07:49 +0200805 // Don't do this for MS-Windows yet, it sends CTRL-K without the
806 // modifier.
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200807 seenModifyOtherKeys = TRUE;
Bram Moolenaarad772a62020-06-01 14:07:49 +0200808#endif
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
811 if (!im_xim_isvalid_imactivate())
Bram Moolenaar1d423ef2022-01-02 21:26:16 +0000812 emsg(_(e_value_of_imactivatekey_is_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100814 // When 'cmdheight' was set during startup it may not have taken
815 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000816 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000817 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818
819 return;
820 }
821
822error2:
823#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100824 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 gui_mch_uninit();
826#endif
827
828error:
829 gui.in_use = FALSE;
830 clip_init(FALSE);
831}
832
833
834 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100835gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
Bram Moolenaar30613902019-12-01 22:11:18 +0100837 // don't free the fonts, it leads to a BUS error
838 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 gui.in_use = FALSE;
841 gui_mch_exit(rc);
842}
843
Bram Moolenaar9372a112005-12-06 19:59:18 +0000844#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200845 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000846# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847/*
848 * Called when the GUI shell is closed by the user. If there are no changed
849 * files Vim exits, otherwise there will be a dialog to ask the user what to
850 * do.
851 * When this function returns, Vim should NOT exit!
852 */
853 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100854gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855{
Bram Moolenaar3552e742021-05-29 12:21:58 +0200856 cmdmod_T save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857
Bram Moolenaar3552e742021-05-29 12:21:58 +0200858 if (before_quit_autocmds(curwin, TRUE, FALSE))
859 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860
Bram Moolenaar30613902019-12-01 22:11:18 +0100861 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 exiting = TRUE;
863# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +0200864 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865# endif
866# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +0200867 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100869 // If there are changed buffers, present the user with a dialog if
870 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100871 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 getout(0);
873
874 exiting = FALSE;
875 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100876 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877}
878#endif
879
880/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200881 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 * first font name that works is used. If none is found, use the default
883 * font.
884 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
885 * Return OK when able to set the font. When it failed FAIL is returned and
886 * the fonts are unchanged.
887 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100889gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890{
891#define FONTLEN 320
892 char_u font_name[FONTLEN];
893 int font_list_empty = FALSE;
894 int ret = FAIL;
895
896 if (!gui.in_use)
897 return FAIL;
898
899 font_name[0] = NUL;
900 if (*font_list == NUL)
901 font_list_empty = TRUE;
902 else
903 {
904#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100905 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 if (fontset)
907 ret = gui_mch_init_font(font_list, TRUE);
908 else
909#endif
910 while (*font_list != NUL)
911 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100912 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
914
Bram Moolenaar30613902019-12-01 22:11:18 +0100915 // Careful!!! The Win32 version of gui_mch_init_font(), when
916 // called with "*" will change p_guifont to the selected font
917 // name, which frees the old value. This makes font_list
918 // invalid. Thus when OK is returned here, font_list must no
919 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 if (gui_mch_init_font(font_name, FALSE) == OK)
921 {
K.Takata94373c42022-01-27 15:04:22 +0000922#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar30613902019-12-01 22:11:18 +0100923 // If it's a Unicode font, try setting 'guifontwide' to a
924 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
926 && strstr((char *)font_name, "10646") != NULL)
927 set_guifontwide(font_name);
928#endif
929 ret = OK;
930 break;
931 }
932 }
933 }
934
935 if (ret != OK
936 && STRCMP(font_list, "*") != 0
937 && (font_list_empty || gui.norm_font == NOFONT))
938 {
939 /*
940 * Couldn't load any font in 'font_list', keep the current font if
941 * there is one. If 'font_list' is empty, or if there is no current
942 * font, tell gui_mch_init_font() to try to find a font we can load.
943 */
944 ret = gui_mch_init_font(NULL, FALSE);
945 }
946
947 if (ret == OK)
948 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200949#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100950 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951# ifdef FEAT_XFONTSET
952 if (gui.fontset != NOFONTSET)
953 gui_mch_set_fontset(gui.fontset);
954 else
955# endif
956 gui_mch_set_font(gui.norm_font);
957#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100958 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 }
960
961 return ret;
962}
963
K.Takata94373c42022-01-27 15:04:22 +0000964#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965/*
966 * Try setting 'guifontwide' to a font twice as wide as "name".
967 */
968 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100969set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
971 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100972 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 char_u *wp = NULL;
974 char_u *p;
975 GuiFont font;
976
977 wp = wide_name;
978 for (p = name; *p != NUL; ++p)
979 {
980 *wp++ = *p;
981 if (*p == '-')
982 {
983 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100984 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 {
986 if (p[1] == '-')
987 *wp++ = '*';
988 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100989 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 {
991 ++p;
992 i = getdigits(&p);
993 if (i != 0)
994 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100995 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 sprintf((char *)wp, "%d%s", i * 2, p);
997 font = gui_mch_get_font(wide_name, FALSE);
998 if (font != NOFONT)
999 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001000 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 gui.wide_font = font;
1002 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001003 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 }
1005 }
1006 break;
1007 }
1008 }
1009 }
1010}
K.Takata94373c42022-01-27 15:04:22 +00001011#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012
1013/*
1014 * Get the font for 'guifontwide'.
1015 * Return FAIL for an invalid font name.
1016 */
1017 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001018gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020 GuiFont font = NOFONT;
1021 char_u font_name[FONTLEN];
1022 char_u *p;
1023
Bram Moolenaar30613902019-12-01 22:11:18 +01001024 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1025 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026
1027 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1028 {
1029 for (p = p_guifontwide; *p != NUL; )
1030 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001031 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1033 font = gui_mch_get_font(font_name, FALSE);
1034 if (font != NOFONT)
1035 break;
1036 }
1037 if (font == NOFONT)
1038 return FAIL;
1039 }
1040
1041 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001042#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001043 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (font != NOFONT && gui.norm_font != NOFONT
1045 && pango_font_description_equal(font, gui.norm_font))
1046 {
1047 gui.wide_font = NOFONT;
1048 gui_mch_free_font(font);
1049 }
1050 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001051#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001053#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001054 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001055#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001056 /*
1057 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1058 * support those fonts for 'guifontwide'.
1059 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001060#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 return OK;
1062}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001064#if defined(FEAT_GUI_GTK) || defined(PROTO)
1065/*
1066 * Set list of ascii characters that combined can create ligature.
1067 * Store them in char map for quick access from gui_gtk2_draw_string.
1068 */
1069 void
1070gui_set_ligatures(void)
1071{
1072 char_u *p;
1073
1074 if (*p_guiligatures != NUL)
1075 {
1076 // check for invalid characters
1077 for (p = p_guiligatures; *p != NUL; ++p)
1078 if (*p < 32 || *p > 127)
1079 {
1080 emsg(_(e_ascii_code_not_in_range));
1081 return;
1082 }
1083
1084 // store valid setting into ligatures_map
1085 CLEAR_FIELD(gui.ligatures_map);
1086 for (p = p_guiligatures; *p != NUL; ++p)
1087 gui.ligatures_map[*p] = 1;
1088 }
1089 else
1090 CLEAR_FIELD(gui.ligatures_map);
1091}
Dusan Popovicce59b9f2021-11-22 17:18:44 +00001092
1093/*
1094 * Adjust the columns to undraw for when the cursor is on ligatures.
1095 */
1096 static void
1097gui_adjust_undraw_cursor_for_ligatures(int *startcol, int *endcol)
1098{
1099 int off;
1100
1101 if (ScreenLines == NULL || *p_guiligatures == NUL)
1102 return;
1103
1104 // expand before the cursor for all the chars in gui.ligatures_map
1105 off = LineOffset[gui.cursor_row] + *startcol;
1106 if (gui.ligatures_map[ScreenLines[off]])
1107 while (*startcol > 0 && gui.ligatures_map[ScreenLines[--off]])
1108 (*startcol)--;
1109
1110 // expand after the cursor for all the chars in gui.ligatures_map
1111 off = LineOffset[gui.cursor_row] + *endcol;
1112 if (gui.ligatures_map[ScreenLines[off]])
1113 while (*endcol < ((int)screen_Columns - 1)
1114 && gui.ligatures_map[ScreenLines[++off]])
1115 (*endcol)++;
1116}
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001117#endif
1118
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001119 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001120gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121{
1122 gui.row = row;
1123 gui.col = col;
1124}
1125
1126/*
1127 * gui_check_pos - check if the cursor is on the screen.
1128 */
1129 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001130gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131{
1132 if (gui.row >= screen_Rows)
1133 gui.row = screen_Rows - 1;
1134 if (gui.col >= screen_Columns)
1135 gui.col = screen_Columns - 1;
1136 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1137 gui.cursor_is_valid = FALSE;
1138}
1139
1140/*
1141 * Redraw the cursor if necessary or when forced.
1142 * Careful: The contents of ScreenLines[] must match what is on the screen,
1143 * otherwise this goes wrong. May need to call out_flush() first.
1144 */
1145 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001146gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001147 int force, // when TRUE, update even when not moved
1148 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149{
1150 int cur_width = 0;
1151 int cur_height = 0;
1152 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001153 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001155#ifdef FEAT_TERMINAL
1156 guicolor_T shape_fg = INVALCOLOR;
1157 guicolor_T shape_bg = INVALCOLOR;
1158#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001159 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1160 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 int attr;
1162 attrentry_T *aep = NULL;
1163
Bram Moolenaar30613902019-12-01 22:11:18 +01001164 // Don't update the cursor when halfway busy scrolling or the screen size
1165 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001166 if (!can_update_cursor || screen_Columns != gui.num_cols
1167 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 return;
1169
1170 gui_check_pos();
1171 if (!gui.cursor_is_valid || force
1172 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1173 {
1174 gui_undraw_cursor();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02001175
1176 // If a cursor-less sleep is ongoing, leave the cursor invisible
1177 if (cursor_is_sleeping())
1178 return;
1179
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 if (gui.row < 0)
1181 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001182#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1184 im_set_position(gui.row, gui.col);
1185#endif
1186 gui.cursor_row = gui.row;
1187 gui.cursor_col = gui.col;
1188
Bram Moolenaar30613902019-12-01 22:11:18 +01001189 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 if (!screen_cleared || ScreenLines == NULL)
1191 return;
1192
Bram Moolenaar30613902019-12-01 22:11:18 +01001193 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 if (clear_selection)
1195 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001196 // Check that the cursor is inside the shell (resizing may have made
1197 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1199 return;
1200
1201 gui.cursor_is_valid = TRUE;
1202
1203 /*
1204 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001205 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001207#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001208 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001209 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001211#endif
1212 shape = &shape_table[get_shape_idx(FALSE)];
Bram Moolenaar24959102022-05-07 20:01:16 +01001213 if (State & MODE_LANGMAP)
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001214 id = shape->id_lm;
1215 else
1216 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217
Bram Moolenaar30613902019-12-01 22:11:18 +01001218 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 cfg = INVALCOLOR;
1220 cbg = INVALCOLOR;
1221 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001222 gui_mch_set_blinking(shape->blinkwait,
1223 shape->blinkon,
1224 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001225 if (shape->blinkwait == 0 || shape->blinkon == 0
1226 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001227 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001228#ifdef FEAT_TERMINAL
1229 if (shape_bg != INVALCOLOR)
1230 {
1231 cattr = 0;
1232 cfg = shape_fg;
1233 cbg = shape_bg;
1234 }
1235 else
1236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 if (id > 0)
1238 {
1239 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001240#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 {
1242 static int iid;
1243 guicolor_T fg, bg;
1244
Bram Moolenaarc236c162008-07-13 17:41:49 +00001245 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001246# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001247 preedit_get_status()
1248# else
1249 im_get_status()
1250# endif
1251 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
1253 iid = syn_name2id((char_u *)"CursorIM");
1254 if (iid > 0)
1255 {
1256 syn_id2colors(iid, &fg, &bg);
1257 if (bg != INVALCOLOR)
1258 cbg = bg;
1259 if (fg != INVALCOLOR)
1260 cfg = fg;
1261 }
1262 }
1263 }
1264#endif
1265 }
1266
1267 /*
1268 * Get the attributes for the character under the cursor.
1269 * When no cursor color was given, use the character color.
1270 */
1271 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1272 if (attr > HL_ALL)
1273 aep = syn_gui_attr2entry(attr);
1274 if (aep != NULL)
1275 {
1276 attr = aep->ae_attr;
1277 if (cfg == INVALCOLOR)
1278 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1279 : aep->ae_u.gui.fg_color);
1280 if (cbg == INVALCOLOR)
1281 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1282 : aep->ae_u.gui.bg_color);
1283 }
1284 if (cfg == INVALCOLOR)
1285 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1286 if (cbg == INVALCOLOR)
1287 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1288
1289#ifdef FEAT_XIM
1290 if (aep != NULL)
1291 {
1292 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1293 : aep->ae_u.gui.bg_color);
1294 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1295 : aep->ae_u.gui.fg_color);
1296 if (xim_bg_color == INVALCOLOR)
1297 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1298 : gui.back_pixel;
1299 if (xim_fg_color == INVALCOLOR)
1300 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1301 : gui.norm_pixel;
1302 }
1303 else
1304 {
1305 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1306 : gui.back_pixel;
1307 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1308 : gui.norm_pixel;
1309 }
1310#endif
1311
1312 attr &= ~HL_INVERSE;
1313 if (cattr & HL_INVERSE)
1314 {
1315 cc = cbg;
1316 cbg = cfg;
1317 cfg = cc;
1318 }
1319 cattr &= ~HL_INVERSE;
1320
1321 /*
1322 * When we don't have window focus, draw a hollow cursor.
1323 */
1324 if (!gui.in_focus)
1325 {
1326 gui_mch_draw_hollow_cursor(cbg);
1327 return;
1328 }
1329
1330 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001331 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 {
1333 /*
1334 * Draw the text character with the cursor colors. Use the
1335 * character attributes plus the cursor attributes.
1336 */
1337 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001338 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1340 }
1341 else
1342 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001343#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 int col_off = FALSE;
1345#endif
1346 /*
1347 * First draw the partial cursor, then overwrite with the text
1348 * character, using a transparent background.
1349 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001350 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 {
1352 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001353 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 }
1355 else
1356 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001357 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 cur_width = gui.char_width;
1359 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001360 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1361 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001363 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001364 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001366#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 if (CURSOR_BAR_RIGHT)
1368 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001369 // gui.col points to the left half of the character but
1370 // the vertical line needs to be on the right half.
Bram Moolenaar30613902019-12-01 22:11:18 +01001371 // A double-wide horizontal line is also drawn from the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001372 // right half in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 col_off = TRUE;
1374 ++gui.col;
1375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001379#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 if (col_off)
1381 --gui.col;
1382#endif
1383
Bram Moolenaar30613902019-12-01 22:11:18 +01001384#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1386 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1387 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1388 (guicolor_T)0, (guicolor_T)0, 0);
1389#endif
1390 }
1391 gui.highlight_mask = old_hl_mask;
1392 }
1393}
1394
1395#if defined(FEAT_MENU) || defined(PROTO)
Yegappan Lakshmananee47eac2022-06-29 12:55:36 +01001396 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001397gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001399# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (gui.menu_is_active && gui.in_use)
1401 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1402# endif
1403}
1404#endif
1405
1406/*
1407 * Position the various GUI components (text area, menu). The vertical
1408 * scrollbars are NOT handled here. See gui_update_scrollbars().
1409 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001411gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412{
1413 int text_area_x;
1414 int text_area_y;
1415 int text_area_width;
1416 int text_area_height;
1417
Bram Moolenaar30613902019-12-01 22:11:18 +01001418 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 ++hold_gui_events;
1420
1421 text_area_x = 0;
1422 if (gui.which_scrollbars[SBAR_LEFT])
1423 text_area_x += gui.scrollbar_width;
1424
1425 text_area_y = 0;
1426#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1427 gui.menu_width = total_width;
1428 if (gui.menu_is_active)
1429 text_area_y += gui.menu_height;
1430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431
K.Takata6e1d31e2022-02-03 13:05:32 +00001432#if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +02001433 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001434 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001435 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001436#endif
1437
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001438#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) \
K.Takatac81e9bf2022-01-16 14:15:49 +00001439 || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1441 {
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001442# if defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 gui_mch_set_toolbar_pos(0, text_area_y,
1444 gui.menu_width, gui.toolbar_height);
1445# endif
1446 text_area_y += gui.toolbar_height;
1447 }
1448#endif
1449
K.Takata6e1d31e2022-02-03 13:05:32 +00001450#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001451 gui_mch_set_tabline_pos(0, text_area_y,
1452 gui.menu_width, gui.tabline_height);
1453 if (gui_has_tabline())
1454 text_area_y += gui.tabline_height;
1455#endif
1456
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1458 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1459
1460 gui_mch_set_text_area_pos(text_area_x,
1461 text_area_y,
1462 text_area_width,
1463 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001464#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 + xim_get_status_area_height()
1466#endif
1467 );
1468#ifdef FEAT_MENU
1469 gui_position_menu();
1470#endif
1471 if (gui.which_scrollbars[SBAR_BOTTOM])
1472 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1473 text_area_x,
Bram Moolenaar203ec772020-07-17 20:43:43 +02001474 text_area_y + text_area_height
1475 + gui_mch_get_scrollbar_ypadding(),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 text_area_width,
1477 gui.scrollbar_height);
1478 gui.left_sbar_x = 0;
Bram Moolenaar203ec772020-07-17 20:43:43 +02001479 gui.right_sbar_x = text_area_x + text_area_width
1480 + gui_mch_get_scrollbar_xpadding();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481
1482 --hold_gui_events;
1483}
1484
Bram Moolenaar02743632005-07-25 20:42:36 +00001485/*
1486 * Get the width of the widgets and decorations to the side of the text area.
1487 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001489gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490{
1491 int base_width;
1492
1493 base_width = 2 * gui.border_offset;
1494 if (gui.which_scrollbars[SBAR_LEFT])
1495 base_width += gui.scrollbar_width;
1496 if (gui.which_scrollbars[SBAR_RIGHT])
1497 base_width += gui.scrollbar_width;
1498 return base_width;
1499}
1500
Bram Moolenaar02743632005-07-25 20:42:36 +00001501/*
1502 * Get the height of the widgets and decorations above and below the text area.
1503 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001505gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506{
1507 int base_height;
1508
1509 base_height = 2 * gui.border_offset;
1510 if (gui.which_scrollbars[SBAR_BOTTOM])
1511 base_height += gui.scrollbar_height;
1512#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001513 // We can't take the sizes properly into account until anything is
1514 // realized. Therefore we recalculate all the values here just before
1515 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516#else
1517# ifdef FEAT_MENU
1518 if (gui.menu_is_active)
1519 base_height += gui.menu_height;
1520# endif
1521# ifdef FEAT_TOOLBAR
1522 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 base_height += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001525# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001526 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001527 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001528 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001529# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1531 base_height += gui_mch_text_area_extra_height();
1532# endif
1533#endif
1534 return base_height;
1535}
1536
1537/*
1538 * Should be called after the GUI shell has been resized. Its arguments are
1539 * the new width and height of the shell in pixels.
1540 */
1541 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001542gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543{
1544 static int busy = FALSE;
1545
Bram Moolenaar30613902019-12-01 22:11:18 +01001546 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 return;
1548
1549 /*
1550 * Can't resize the screen while it is being redrawn. Remember the new
1551 * size and handle it later.
1552 */
1553 if (updating_screen || busy)
1554 {
1555 new_pixel_width = pixel_width;
1556 new_pixel_height = pixel_height;
1557 return;
1558 }
1559
1560again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001561 new_pixel_width = 0;
1562 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 busy = TRUE;
1564
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001565#ifdef FEAT_GUI_HAIKU
1566 vim_lock_screen();
1567#endif
1568
Bram Moolenaar30613902019-12-01 22:11:18 +01001569 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 out_flush();
1571
1572 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001573 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
1575 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 /*
1579 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1580 * at the last line here (why does it have to be one row too low?).
1581 */
Bram Moolenaar24959102022-05-07 20:01:16 +01001582 if (State == MODE_ASKMORE || State == MODE_CONFIRM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 gui.row = gui.num_rows;
1584
Bram Moolenaar30613902019-12-01 22:11:18 +01001585 // Only comparing Rows and Columns may be sufficient, but let's stay on
1586 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1588 || gui.num_rows != Rows || gui.num_cols != Columns)
1589 shell_resized();
1590
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001591#ifdef FEAT_GUI_HAIKU
1592 vim_unlock_screen();
1593#endif
1594
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 gui_update_scrollbars(TRUE);
1596 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001597#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 xim_set_status_area();
1599#endif
1600
1601 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001602
Bram Moolenaar30613902019-12-01 22:11:18 +01001603 // We may have been called again while redrawing the screen.
1604 // Need to do it all again with the latest size then. But only if the size
1605 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (new_pixel_height)
1607 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001608 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1609 {
1610 new_pixel_width = 0;
1611 new_pixel_height = 0;
1612 }
1613 else
1614 {
1615 pixel_width = new_pixel_width;
1616 pixel_height = new_pixel_height;
1617 goto again;
1618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 }
1620}
1621
1622/*
1623 * Check if gui_resize_shell() must be called.
1624 */
1625 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001626gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001629 // careful: gui_resize_shell() may postpone the resize again if we
1630 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001631 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632}
1633
1634 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001635gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636{
1637 Rows = gui.num_rows;
1638 Columns = gui.num_cols;
1639 return OK;
1640}
1641
1642/*
1643 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001644 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1645 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001646 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1647 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001650gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001651 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001652 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001653 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
1655 int base_width;
1656 int base_height;
1657 int width;
1658 int height;
1659 int min_width;
1660 int min_height;
1661 int screen_w;
1662 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001663#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001664 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001665 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001666#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001667 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668
1669 if (!gui.shell_created)
1670 return;
1671
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001672#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001673 // If not setting to a user specified size and maximized, calculate the
1674 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001675 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1676 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 {
1678 gui_mch_newfont();
1679 return;
1680 }
1681#endif
1682
1683 base_width = gui_get_base_width();
1684 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001685 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001686 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001687 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001688
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001689 width = Columns * gui.char_width + base_width;
1690 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
1692 if (fit_to_display)
1693 {
1694 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001695 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 {
1697 Columns = (screen_w - base_width) / gui.char_width;
1698 if (Columns < MIN_COLUMNS)
1699 Columns = MIN_COLUMNS;
1700 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001701#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001702 ++did_adjust;
1703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001705 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 {
1707 Rows = (screen_h - base_height) / gui.char_height;
1708 check_shellsize();
1709 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001710#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001711 ++did_adjust;
1712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001714#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001715 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1716 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001717 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001718 un_maximize = FALSE;
1719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001721 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 gui.num_cols = Columns;
1723 gui.num_rows = Rows;
1724
1725 min_width = base_width + MIN_COLUMNS * gui.char_width;
1726 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001727 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001728
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001729#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001730 if (un_maximize)
1731 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001732 // If the window size is smaller than the screen unmaximize the
1733 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001734 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1735 if ((width + gui.char_width < screen_w
1736 || height + gui.char_height * 2 < screen_h)
1737 && gui_mch_maximized())
1738 gui_mch_unmaximize();
1739 }
1740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
1742 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001743 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001745 if (fit_to_display && x >= 0 && y >= 0)
1746 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001747 // Some window managers put the Vim window left of/above the screen.
1748 // Only change the position if it wasn't already negative before
1749 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 gui_mch_update();
1751 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1752 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1753 }
1754
1755 gui_position_components(width);
1756 gui_update_scrollbars(TRUE);
1757 gui_reset_scroll_region();
1758}
1759
1760/*
1761 * Called when Rows and/or Columns has changed.
1762 */
1763 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001764gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 gui_reset_scroll_region();
1767}
1768
1769/*
1770 * Make scroll region cover whole screen.
1771 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001772 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001773gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
1775 gui.scroll_region_top = 0;
1776 gui.scroll_region_bot = gui.num_rows - 1;
1777 gui.scroll_region_left = 0;
1778 gui.scroll_region_right = gui.num_cols - 1;
1779}
1780
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001781 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001782gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783{
Bram Moolenaar30613902019-12-01 22:11:18 +01001784 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001786 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 gui.highlight_mask |= mask;
1788}
1789
1790 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001791gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792{
Bram Moolenaar30613902019-12-01 22:11:18 +01001793 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001795 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 gui.highlight_mask &= ~mask;
1797}
1798
1799/*
1800 * Clear a rectangular region of the screen from text pos (row1, col1) to
1801 * (row2, col2) inclusive.
1802 */
1803 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001804gui_clear_block(
1805 int row1,
1806 int col1,
1807 int row2,
1808 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
Bram Moolenaar30613902019-12-01 22:11:18 +01001810 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 clip_may_clear_selection(row1, row2);
1812
1813 gui_mch_clear_block(row1, col1, row2, col2);
1814
Bram Moolenaar30613902019-12-01 22:11:18 +01001815 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1817 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1818 gui.cursor_is_valid = FALSE;
1819}
1820
1821/*
1822 * Write code to update the cursor later. This avoids the need to flush the
1823 * output buffer before calling gui_update_cursor().
1824 */
1825 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001826gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827{
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001828 OUT_STR("\033|s");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829}
1830
1831 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001832gui_write(
1833 char_u *s,
1834 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835{
1836 char_u *p;
1837 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001838 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 int force_scrollbar = FALSE;
1840 static win_T *old_curwin = NULL;
1841
Bram Moolenaar30613902019-12-01 22:11:18 +01001842// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843#ifdef DEBUG_GUI_WRITE
1844 {
1845 int i;
1846 char_u *str;
1847
1848 printf("gui_write(%d):\n ", len);
1849 for (i = 0; i < len; i++)
1850 if (s[i] == ESC)
1851 {
1852 if (i != 0)
1853 printf("\n ");
1854 printf("<ESC>");
1855 }
1856 else
1857 {
1858 str = transchar_byte(s[i]);
1859 if (str[0] && str[1])
1860 printf("<%s>", (char *)str);
1861 else
1862 printf("%s", (char *)str);
1863 }
1864 printf("\n");
1865 }
1866#endif
1867 while (len)
1868 {
1869 if (s[0] == ESC && s[1] == '|')
1870 {
1871 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001872 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 {
1874 arg1 = getdigits(&p);
1875 if (p > s + len)
1876 break;
1877 if (*p == ';')
1878 {
1879 ++p;
1880 arg2 = getdigits(&p);
1881 if (p > s + len)
1882 break;
1883 }
1884 }
1885 switch (*p)
1886 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001887 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 clip_scroll_selection(9999);
1889 gui_mch_clear_all();
1890 gui.cursor_is_valid = FALSE;
1891 force_scrollbar = TRUE;
1892 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001893 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 gui_set_cursor(arg1, arg2);
1895 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001896 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 force_cursor = TRUE;
1898 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001899 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 if (arg1 < arg2)
1901 {
1902 gui.scroll_region_top = arg1;
1903 gui.scroll_region_bot = arg2;
1904 }
1905 else
1906 {
1907 gui.scroll_region_top = arg2;
1908 gui.scroll_region_bot = arg1;
1909 }
1910 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001911 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 if (arg1 < arg2)
1913 {
1914 gui.scroll_region_left = arg1;
1915 gui.scroll_region_right = arg2;
1916 }
1917 else
1918 {
1919 gui.scroll_region_left = arg2;
1920 gui.scroll_region_right = arg1;
1921 }
1922 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001923 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 gui_delete_lines(gui.row, 1);
1925 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001926 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 gui_delete_lines(gui.row, arg1);
1928 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 gui_insert_lines(gui.row, 1);
1931 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001932 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 gui_insert_lines(gui.row, arg1);
1934 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001935 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 gui_clear_block(gui.row, gui.col, gui.row,
1937 (int)Columns - 1);
1938 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001939 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 gui_start_highlight(arg1);
1941 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001942 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 gui_stop_highlight(arg1);
1944 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001945 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1947 break;
1948 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001949 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 break;
1951 }
1952 len -= (int)(++p - s);
1953 s = p;
1954 }
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001955 else if (s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956#ifdef FEAT_SIGN_ICONS
1957 && s[0] != SIGN_BYTE
1958# ifdef FEAT_NETBEANS_INTG
1959 && s[0] != MULTISIGN_BYTE
1960# endif
1961#endif
1962 )
1963 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001964 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 {
1966 gui.col = 0;
1967 if (gui.row < gui.scroll_region_bot)
1968 gui.row++;
1969 else
1970 gui_delete_lines(gui.scroll_region_top, 1);
1971 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001972 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 {
1974 gui.col = 0;
1975 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001976 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 {
1978 if (gui.col)
1979 --gui.col;
1980 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001981 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 {
1983 ++gui.col;
1984 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001985 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 {
1987 gui_mch_beep();
1988 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001989 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990
Bram Moolenaar30613902019-12-01 22:11:18 +01001991 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 ++s;
1993 }
1994 else
1995 {
1996 p = s;
1997 while (len > 0 && (
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 *p >= 0x20
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999#ifdef FEAT_SIGN_ICONS
2000 || *p == SIGN_BYTE
2001# ifdef FEAT_NETBEANS_INTG
2002 || *p == MULTISIGN_BYTE
2003# endif
2004#endif
2005 ))
2006 {
2007 len--;
2008 p++;
2009 }
2010 gui_outstr(s, (int)(p - s));
2011 s = p;
2012 }
2013 }
2014
Bram Moolenaar30613902019-12-01 22:11:18 +01002015 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
2016 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 if (force_cursor)
2018 gui_update_cursor(TRUE, TRUE);
2019
Bram Moolenaar30613902019-12-01 22:11:18 +01002020 // When switching to another window the dragging must have stopped.
2021 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 if (old_curwin != curwin)
2023 gui.dragged_sb = SBAR_NONE;
2024
Bram Moolenaar30613902019-12-01 22:11:18 +01002025 // Update the scrollbars after clearing the screen or when switched
2026 // to another window.
2027 // Update the horizontal scrollbar always, it's difficult to check all
2028 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 if (force_scrollbar || old_curwin != curwin)
2030 gui_update_scrollbars(force_scrollbar);
2031 else
2032 gui_update_horiz_scrollbar(FALSE);
2033 old_curwin = curwin;
2034
2035 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002036 * We need to make sure this is cleared since GTK doesn't tell us when
2037 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002039#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 gui.dragged_sb = SBAR_NONE;
2041#endif
2042
Bram Moolenaar30613902019-12-01 22:11:18 +01002043 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044}
2045
2046/*
2047 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2048 * produces wrong results. Call gui_dont_update_cursor() before that code and
2049 * gui_can_update_cursor() afterwards.
2050 */
2051 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002052gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053{
2054 if (gui.in_use)
2055 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002056 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002057 if (undraw)
2058 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 can_update_cursor = FALSE;
2060 }
2061}
2062
2063 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002064gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065{
2066 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002067 // No need to update the cursor right now, there is always more output
2068 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069}
2070
Bram Moolenaara338adc2018-01-31 20:51:47 +01002071/*
2072 * Disable issuing gui_mch_flush().
2073 */
2074 void
2075gui_disable_flush(void)
2076{
2077 ++disable_flush;
2078}
2079
2080/*
2081 * Enable issuing gui_mch_flush().
2082 */
2083 void
2084gui_enable_flush(void)
2085{
2086 --disable_flush;
2087}
2088
2089/*
2090 * Issue gui_mch_flush() if it is not disabled.
2091 */
2092 void
2093gui_may_flush(void)
2094{
2095 if (disable_flush == 0)
2096 gui_mch_flush();
2097}
2098
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002100gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101{
2102 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104
2105 if (len == 0)
2106 return;
2107
2108 if (len < 0)
2109 len = (int)STRLEN(s);
2110
2111 while (len > 0)
2112 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 if (has_mbyte)
2114 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002115 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 cells = 0;
2117 for (this_len = 0; this_len < len; )
2118 {
2119 cells += (*mb_ptr2cells)(s + this_len);
2120 if (gui.col + cells > Columns)
2121 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002122 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 }
2124 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002125 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 }
Bram Moolenaarb26592a2022-07-12 17:34:31 +01002127 else if (gui.col + len > Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 this_len = Columns - gui.col;
2129 else
2130 this_len = len;
2131
2132 (void)gui_outstr_nowrap(s, this_len,
2133 0, (guicolor_T)0, (guicolor_T)0, 0);
2134 s += this_len;
2135 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002136 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 if (len > 0 && gui.col < Columns)
2138 (void)gui_outstr_nowrap((char_u *)" ", 1,
2139 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002140 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 if (gui.col >= Columns)
2142 {
2143 gui.col = 0;
2144 gui.row++;
2145 }
2146 }
2147}
2148
2149/*
2150 * Output one character (may be one or two display cells).
2151 * Caller must check for valid "off".
2152 * Returns FAIL or OK, just like gui_outstr_nowrap().
2153 */
2154 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002155gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002156 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002157 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002158 guicolor_T fg, // colors for cursor
2159 guicolor_T bg, // colors for cursor
2160 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 char_u buf[MB_MAXBYTES + 1];
2163
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00002164 // Don't draw right half of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 if (enc_utf8 && ScreenLines[off] == 0)
2166 return OK;
2167
2168 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002169 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2171 flags, fg, bg, back);
2172
2173 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2174 {
2175 buf[0] = ScreenLines[off];
2176 buf[1] = ScreenLines2[off];
2177 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2178 }
2179
Bram Moolenaar30613902019-12-01 22:11:18 +01002180 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002182 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184}
2185
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002186#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187/*
2188 * Output the string at the given screen position. This is used in place
2189 * of gui_screenchar() where possible because Pango needs as much context
2190 * as possible to work nicely. It's a lot faster as well.
2191 */
2192 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002193gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002194 int off, // Offset from start of screen
2195 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002196 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 guicolor_T fg, // colors for cursor
2198 guicolor_T bg, // colors for cursor
2199 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200{
2201 char_u *buf;
2202 int outlen = 0;
2203 int i;
2204 int retval;
2205
Bram Moolenaar30613902019-12-01 22:11:18 +01002206 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 return OK;
2208
2209 if (enc_utf8)
2210 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002211 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002213 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214
2215 for (i = off; i < off + len; ++i)
2216 {
2217 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002218 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219
2220 if (ScreenLinesUC[i] == 0)
2221 buf[outlen++] = ScreenLines[i];
2222 else
2223 outlen += utfc_char2bytes(i, buf + outlen);
2224 }
2225
Bram Moolenaar30613902019-12-01 22:11:18 +01002226 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2228 vim_free(buf);
2229
2230 return retval;
2231 }
2232 else if (enc_dbcs == DBCS_JPNU)
2233 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002234 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002236 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
2238 for (i = off; i < off + len; ++i)
2239 {
2240 buf[outlen++] = ScreenLines[i];
2241
Bram Moolenaar30613902019-12-01 22:11:18 +01002242 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 if (ScreenLines[i] == 0x8e)
2244 buf[outlen++] = ScreenLines2[i];
2245 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2246 buf[outlen++] = ScreenLines[++i];
2247 }
2248
Bram Moolenaar30613902019-12-01 22:11:18 +01002249 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2251 vim_free(buf);
2252
2253 return retval;
2254 }
2255 else
2256 {
2257 return gui_outstr_nowrap(&ScreenLines[off], len,
2258 flags, fg, bg, back);
2259 }
2260}
Bram Moolenaar30613902019-12-01 22:11:18 +01002261#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262
2263/*
2264 * Output the given string at the current cursor position. If the string is
2265 * too long to fit on the line, then it is truncated.
2266 * "flags":
2267 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2268 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002269 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 * background.
2271 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2272 * it.
2273 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2274 * FAIL (the caller should start drawing "back" chars back).
2275 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002276 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002277gui_outstr_nowrap(
2278 char_u *s,
2279 int len,
2280 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002281 guicolor_T fg, // colors for cursor
2282 guicolor_T bg, // colors for cursor
2283 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284{
2285 long_u highlight_mask;
2286 long_u hl_mask_todo;
2287 guicolor_T fg_color;
2288 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002289 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002290#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002292 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293# ifdef FEAT_XFONTSET
2294 GuiFontset fontset = NOFONTSET;
2295# endif
2296#endif
2297 attrentry_T *aep = NULL;
2298 int draw_flags;
2299 int col = gui.col;
2300#ifdef FEAT_SIGN_ICONS
2301 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002302 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002303 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304# ifdef FEAT_NETBEANS_INTG
2305 int multi_sign = FALSE;
2306# endif
2307#endif
2308
2309 if (len < 0)
2310 len = (int)STRLEN(s);
2311 if (len == 0)
2312 return OK;
2313
2314#ifdef FEAT_SIGN_ICONS
2315 if (*s == SIGN_BYTE
2316# ifdef FEAT_NETBEANS_INTG
2317 || *s == MULTISIGN_BYTE
2318# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002319 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 {
2321# ifdef FEAT_NETBEANS_INTG
2322 if (*s == MULTISIGN_BYTE)
2323 multi_sign = TRUE;
2324# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002325 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002326 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2327 (curwin->w_p_nu || curwin->w_p_rnu))
2328 {
2329 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2330 s = extra;
2331 }
2332 else
2333 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 if (len == 1 && col > 0)
2335 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002336 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002337 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002338 // right align sign icon in the number column
2339 signcol = col + len - 3;
2340 else
2341 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 draw_sign = TRUE;
2343 highlight_mask = 0;
2344 }
2345 else
2346#endif
2347 if (gui.highlight_mask > HL_ALL)
2348 {
2349 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002350 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 highlight_mask = 0;
2352 else
2353 highlight_mask = aep->ae_attr;
2354 }
2355 else
2356 highlight_mask = gui.highlight_mask;
2357 hl_mask_todo = highlight_mask;
2358
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002359#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002360 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2362 font = aep->ae_u.gui.font;
2363# ifdef FEAT_XFONTSET
2364 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2365 fontset = aep->ae_u.gui.fontset;
2366# endif
2367 else
2368 {
2369# ifdef FEAT_XFONTSET
2370 if (gui.fontset != NOFONTSET)
2371 fontset = gui.fontset;
2372 else
2373# endif
2374 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2375 {
2376 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2377 {
2378 font = gui.boldital_font;
2379 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2380 }
2381 else if (gui.bold_font != NOFONT)
2382 {
2383 font = gui.bold_font;
2384 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2385 }
2386 else
2387 font = gui.norm_font;
2388 }
2389 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2390 {
2391 font = gui.ital_font;
2392 hl_mask_todo &= ~HL_ITALIC;
2393 }
2394 else
2395 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002396
Bram Moolenaardb250522013-06-17 22:43:25 +02002397 /*
2398 * Choose correct wide_font by font. wide_font should be set with font
2399 * at same time in above block. But it will make many "ifdef" nasty
2400 * blocks. So we do it here.
2401 */
2402 if (font == gui.boldital_font && gui.wide_boldital_font)
2403 wide_font = gui.wide_boldital_font;
2404 else if (font == gui.bold_font && gui.wide_bold_font)
2405 wide_font = gui.wide_bold_font;
2406 else if (font == gui.ital_font && gui.wide_ital_font)
2407 wide_font = gui.wide_ital_font;
2408 else if (font == gui.norm_font && gui.wide_font)
2409 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411# ifdef FEAT_XFONTSET
2412 if (fontset != NOFONTSET)
2413 gui_mch_set_fontset(fontset);
2414 else
2415# endif
2416 gui_mch_set_font(font);
2417#endif
2418
2419 draw_flags = 0;
2420
Bram Moolenaar30613902019-12-01 22:11:18 +01002421 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 bg_color = gui.back_pixel;
2423 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2424 {
2425 draw_flags |= DRAW_CURSOR;
2426 fg_color = fg;
2427 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002428 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 }
2430 else if (aep != NULL)
2431 {
2432 fg_color = aep->ae_u.gui.fg_color;
2433 if (fg_color == INVALCOLOR)
2434 fg_color = gui.norm_pixel;
2435 bg_color = aep->ae_u.gui.bg_color;
2436 if (bg_color == INVALCOLOR)
2437 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002438 sp_color = aep->ae_u.gui.sp_color;
2439 if (sp_color == INVALCOLOR)
2440 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 }
2442 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002443 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002445 sp_color = fg_color;
2446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447
2448 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2449 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 gui_mch_set_fg_color(bg_color);
2451 gui_mch_set_bg_color(fg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 }
2453 else
2454 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 gui_mch_set_fg_color(fg_color);
2456 gui_mch_set_bg_color(bg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002458 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459
Bram Moolenaar30613902019-12-01 22:11:18 +01002460 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (!(flags & GUI_MON_NOCLEAR))
2462 clip_may_clear_selection(gui.row, gui.row);
2463
2464
Bram Moolenaar30613902019-12-01 22:11:18 +01002465 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2467 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468
2469 /*
2470 * When drawing bold or italic characters the spill-over from the left
2471 * neighbor may be destroyed. Let the caller backup to start redrawing
2472 * just after a blank.
2473 */
2474 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2475 return FAIL;
2476
Bram Moolenaare60acc12011-05-10 16:41:25 +02002477#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002478 // If there's no italic font, then fake it.
2479 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 if (hl_mask_todo & HL_ITALIC)
2481 draw_flags |= DRAW_ITALIC;
2482
Bram Moolenaar30613902019-12-01 22:11:18 +01002483 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 if (hl_mask_todo & HL_UNDERLINE)
2485 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002486
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002488 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002489 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 draw_flags |= DRAW_UNDERL;
2491#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002492 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002493 if (hl_mask_todo & HL_UNDERCURL)
2494 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495
Bram Moolenaar84f54632022-06-29 18:39:11 +01002496 // TODO: HL_UNDERDOUBLE, HL_UNDERDOTTED, HL_UNDERDASHED
2497
Bram Moolenaar30613902019-12-01 22:11:18 +01002498 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002499 if (hl_mask_todo & HL_STRIKETHROUGH)
2500 draw_flags |= DRAW_STRIKE;
2501
Bram Moolenaar30613902019-12-01 22:11:18 +01002502 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 if (flags & GUI_MON_TRS_CURSOR)
2504 draw_flags |= DRAW_TRANSP;
2505
2506 /*
2507 * Draw the text.
2508 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002509#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002510 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2512#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 if (enc_utf8)
2514 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002515 int start; // index of bytes to be drawn
2516 int cells; // cellwidth of bytes to be drawn
2517 int thislen; // length of bytes to be drawn
2518 int cn; // cellwidth of current char
2519 int i; // index of current char
2520 int c; // current char value
2521 int cl; // byte length of current char
2522 int comping; // current char is composing
2523 int scol = col; // screen column
2524 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002525 int prev_wide = FALSE;
2526 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002527# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002528 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002529# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002530 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532
Bram Moolenaar30613902019-12-01 22:11:18 +01002533 // Break the string at a composing character, it has to be drawn on
2534 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 start = 0;
2536 cells = 0;
2537 for (i = 0; i < len; i += cl)
2538 {
2539 c = utf_ptr2char(s + i);
2540 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002542 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002544 if (!comping || sep_comp)
2545 {
2546 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002547# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002548 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002549# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002550 && wide_font != NOFONT)
2551 curr_wide = TRUE;
2552 else
2553 curr_wide = FALSE;
2554 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002555 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002556 if (cl == 0) // hit end of string
2557 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558
Bram Moolenaar45933962013-01-23 17:43:57 +01002559 wide_changed = curr_wide != prev_wide;
2560
Bram Moolenaar30613902019-12-01 22:11:18 +01002561 // Print the string so far if it's the last character or there is
2562 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002563 if (i + cl >= len || (comping && sep_comp && i > start)
2564 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002565# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002567# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002568 // No fontset: At least draw char after wide char at
2569 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002572 )
2573# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 )
2575 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002576 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 thislen = i - start;
2578 else
2579 thislen = i - start + cl;
2580 if (thislen > 0)
2581 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002582 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002583 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2585 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002586 if (prev_wide)
2587 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 start += thislen;
2589 }
2590 scol += cells;
2591 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002592 // Adjust to not draw a character which width is changed
2593 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002594 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002596 scol -= cn;
2597 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 }
2599
Bram Moolenaar13505972019-01-24 15:04:48 +01002600# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002601 // No fontset: draw a space to fill the gap after a wide char
2602 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002604# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002606# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002607 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2609 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002610# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002612 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002613 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002615# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002616 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002617 gui_mch_draw_string(gui.row, scol, s + i, cl,
2618 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002619# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002620 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2621 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002622# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 start = i + cl;
2624 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002625 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002627 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 len = scol - col;
2629 }
2630 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 {
2632 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 if (enc_dbcs == DBCS_JPNU)
2634 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002635 // Get the length in display cells, this can be different from the
2636 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002637 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002640#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641
2642 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2643 gui.col = col + len;
2644
Bram Moolenaar30613902019-12-01 22:11:18 +01002645 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 if (flags & GUI_MON_NOCLEAR)
2647 clip_may_redraw_selection(gui.row, col, len);
2648
2649 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2650 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002651 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 if (gui.cursor_row == gui.row
2653 && gui.cursor_col >= col
2654 && gui.cursor_col < col + len)
2655 gui.cursor_is_valid = FALSE;
2656 }
2657
2658#ifdef FEAT_SIGN_ICONS
2659 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002660 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002661 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002662# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002663 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 if (multi_sign)
2665 netbeans_draw_multisign_indicator(gui.row);
2666# endif
2667#endif
2668
2669 return OK;
2670}
2671
2672/*
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002673 * Undraw the cursor. This actually redraws the character at the cursor
2674 * position, plus some more characters when needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 */
2676 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002677gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678{
2679 if (gui.cursor_is_valid)
2680 {
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002681 // Always redraw the character just before if there is one, because
2682 // with some fonts and characters there can be a one pixel overlap.
2683 int startcol = gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col;
2684 int endcol = gui.cursor_col;
2685
2686#ifdef FEAT_GUI_GTK
2687 gui_adjust_undraw_cursor_for_ligatures(&startcol, &endcol);
2688#endif
2689 gui_redraw_block(gui.cursor_row, startcol,
2690 gui.cursor_row, endcol, GUI_MON_NOCLEAR);
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002691
Bram Moolenaar54612582019-11-21 17:13:31 +01002692 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2693 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 gui.cursor_is_valid = FALSE;
2695 }
2696}
2697
2698 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002699gui_redraw(
2700 int x,
2701 int y,
2702 int w,
2703 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704{
2705 int row1, col1, row2, col2;
2706
2707 row1 = Y_2_ROW(y);
2708 col1 = X_2_COL(x);
2709 row2 = Y_2_ROW(y + h - 1);
2710 col2 = X_2_COL(x + w - 1);
2711
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002712 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713
2714 /*
2715 * We may need to redraw the cursor, but don't take it upon us to change
2716 * its location after a scroll.
2717 * (maybe be more strict even and test col too?)
2718 * These things may be outside the update/clipping region and reality may
2719 * not reflect Vims internal ideas if these operations are clipped away.
2720 */
2721 if (gui.row == gui.cursor_row)
2722 gui_update_cursor(TRUE, TRUE);
2723}
2724
2725/*
2726 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2727 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002729 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002730gui_redraw_block(
2731 int row1,
2732 int col1,
2733 int row2,
2734 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002735 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
2737 int old_row, old_col;
2738 long_u old_hl_mask;
2739 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002740 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 int idx, len;
2742 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744
Bram Moolenaar30613902019-12-01 22:11:18 +01002745 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002747 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
Bram Moolenaar30613902019-12-01 22:11:18 +01002749 // Don't try to draw outside the shell!
2750 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 col1 = check_col(col1);
2752 col2 = check_col(col2);
2753 row1 = check_row(row1);
2754 row2 = check_row(row2);
2755
Bram Moolenaar30613902019-12-01 22:11:18 +01002756 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 old_row = gui.row;
2758 old_col = gui.col;
2759 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 orig_col1 = col1;
2761 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
2763 for (gui.row = row1; gui.row <= row2; gui.row++)
2764 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002765 // When only half of a double-wide character is in the block, include
2766 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 col1 = orig_col1;
2768 col2 = orig_col2;
2769 off = LineOffset[gui.row];
2770 if (enc_dbcs != 0)
2771 {
2772 if (col1 > 0)
2773 col1 -= dbcs_screen_head_off(ScreenLines + off,
2774 ScreenLines + off + col1);
2775 col2 += dbcs_screen_tail_off(ScreenLines + off,
2776 ScreenLines + off + col2);
2777 }
2778 else if (enc_utf8)
2779 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002780 if (ScreenLines[off + col1] == 0)
2781 {
2782 if (col1 > 0)
2783 --col1;
2784 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002785 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002786 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002787 // Make this IEMSGN when it no longer breaks Travis CI.
2788 vim_snprintf((char *)IObuff, IOSIZE,
2789 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2790 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002791 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002792 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002793 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002794#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2796 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 gui.col = col1;
2800 off = LineOffset[gui.row] + gui.col;
2801 len = col2 - col1 + 1;
2802
Bram Moolenaar30613902019-12-01 22:11:18 +01002803 // Find how many chars back this highlighting starts, or where a space
2804 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 for (back = 0; back < col1; ++back)
2806 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2807 || ScreenLines[off - 1 - back] == ' ')
2808 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809
Bram Moolenaar30613902019-12-01 22:11:18 +01002810 // Break it up in strings of characters with the same attributes.
2811 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 while (len > 0)
2813 {
2814 first_attr = ScreenAttrs[off];
2815 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002816#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 if (enc_utf8 && ScreenLinesUC[off] != 0)
2818 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002819 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 nback = gui_screenchar(off, flags,
2821 (guicolor_T)0, (guicolor_T)0, back);
2822 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2823 idx = 2;
2824 else
2825 idx = 1;
2826 }
2827 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2828 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002829 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 nback = gui_screenchar(off, flags,
2831 (guicolor_T)0, (guicolor_T)0, back);
2832 idx = 1;
2833 }
2834 else
2835#endif
2836 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002837#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 for (idx = 0; idx < len; ++idx)
2839 {
2840 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002841 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 if (ScreenAttrs[off + idx] != first_attr)
2843 break;
2844 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002845 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 nback = gui_screenstr(off, idx, flags,
2847 (guicolor_T)0, (guicolor_T)0, back);
2848#else
2849 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2850 idx++)
2851 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002852 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2854 break;
2855 if (enc_dbcs == DBCS_JPNU)
2856 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002857 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 if (ScreenLines[off + idx] == 0x8e)
2859 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002860 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002862 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 }
2865 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2866 (guicolor_T)0, (guicolor_T)0, back);
2867#endif
2868 }
2869 if (nback == FAIL)
2870 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002871 // Must back up to start drawing where a bold or italic word
2872 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 off -= back;
2874 len += back;
2875 gui.col -= back;
2876 }
2877 else
2878 {
2879 off += idx;
2880 len -= idx;
2881 }
2882 back = 0;
2883 }
2884 }
2885
Bram Moolenaar30613902019-12-01 22:11:18 +01002886 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 gui.row = old_row;
2888 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002889 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890}
2891
2892 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002893gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
2895 if (count <= 0)
2896 return;
2897
2898 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002899 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 gui_clear_block(row, gui.scroll_region_left,
2901 gui.scroll_region_bot, gui.scroll_region_right);
2902 else
2903 {
2904 gui_mch_delete_lines(row, count);
2905
Bram Moolenaar30613902019-12-01 22:11:18 +01002906 // If the cursor was in the deleted lines it's now gone. If the
2907 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 if (gui.cursor_row >= row
2909 && gui.cursor_col >= gui.scroll_region_left
2910 && gui.cursor_col <= gui.scroll_region_right)
2911 {
2912 if (gui.cursor_row < row + count)
2913 gui.cursor_is_valid = FALSE;
2914 else if (gui.cursor_row <= gui.scroll_region_bot)
2915 gui.cursor_row -= count;
2916 }
2917 }
2918}
2919
2920 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002921gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 if (count <= 0)
2924 return;
2925
2926 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002927 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 gui_clear_block(row, gui.scroll_region_left,
2929 gui.scroll_region_bot, gui.scroll_region_right);
2930 else
2931 {
2932 gui_mch_insert_lines(row, count);
2933
2934 if (gui.cursor_row >= gui.row
2935 && gui.cursor_col >= gui.scroll_region_left
2936 && gui.cursor_col <= gui.scroll_region_right)
2937 {
2938 if (gui.cursor_row <= gui.scroll_region_bot - count)
2939 gui.cursor_row += count;
2940 else if (gui.cursor_row <= gui.scroll_region_bot)
2941 gui.cursor_is_valid = FALSE;
2942 }
2943 }
2944}
2945
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002946#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002947/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002948 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2949 */
2950 static int
2951gui_wait_for_chars_3(
2952 long wtime,
2953 int *interrupted UNUSED,
2954 int ignore_input UNUSED)
2955{
2956 return gui_mch_wait_for_chars(wtime);
2957}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002958#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002959
2960/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002961 * Returns OK if a character was found to be available within the given time,
2962 * or FAIL otherwise.
2963 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002964 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002965gui_wait_for_chars_or_timer(
2966 long wtime,
2967 int *interrupted UNUSED,
2968 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002969{
2970#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002971 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2972 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002973#else
2974 return gui_mch_wait_for_chars(wtime);
2975#endif
2976}
2977
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978/*
2979 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002980 * "wtime" == -1 Wait forever.
2981 * "wtime" == 0 Don't wait.
2982 * "wtime" > 0 Wait wtime milliseconds for a character.
2983 *
2984 * Returns the number of characters read or zero when timed out or interrupted.
2985 * "buf" may be NULL, in which case a non-zero number is returned if characters
2986 * are available.
2987 */
2988 static int
2989gui_wait_for_chars_buf(
2990 char_u *buf,
2991 int maxlen,
2992 long wtime, // don't use "time", MIPS cannot handle it
2993 int tb_change_cnt)
2994{
2995 int retval;
2996
2997#ifdef FEAT_MENU
2998 // If we're going to wait a bit, update the menus and mouse shape for the
2999 // current State.
3000 if (wtime != 0)
3001 gui_update_menus(0);
3002#endif
3003
3004 gui_mch_update();
3005 if (input_available()) // Got char, return immediately
3006 {
3007 if (buf != NULL && !typebuf_changed(tb_change_cnt))
3008 return read_from_input_buf(buf, (long)maxlen);
3009 return 0;
3010 }
3011 if (wtime == 0) // Don't wait for char
3012 return FAIL;
3013
3014 // Before waiting, flush any output to the screen.
3015 gui_mch_flush();
3016
3017 // Blink while waiting for a character.
3018 gui_mch_start_blink();
3019
3020 // Common function to loop until "wtime" is met, while handling timers and
3021 // other callbacks.
3022 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
3023 gui_wait_for_chars_or_timer, NULL);
3024
3025 gui_mch_stop_blink(TRUE);
3026
3027 return retval;
3028}
3029
3030/*
3031 * Wait for a character from the keyboard without actually reading it.
3032 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 * wtime == -1 Wait forever.
3034 * wtime == 0 Don't wait.
3035 * wtime > 0 Wait wtime milliseconds for a character.
3036 * Returns OK if a character was found to be available within the given time,
3037 * or FAIL otherwise.
3038 */
3039 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003040gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003042 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043}
3044
3045/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003046 * Equivalent of mch_inchar() for the GUI.
3047 */
3048 int
3049gui_inchar(
3050 char_u *buf,
3051 int maxlen,
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003052 long wtime, // milliseconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003053 int tb_change_cnt)
3054{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003055 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003056}
3057
3058/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003059 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 */
3061 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003062fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063{
3064 p[0] = (char_u)(col / 128 + ' ' + 1);
3065 p[1] = (char_u)(col % 128 + ' ' + 1);
3066 p[2] = (char_u)(row / 128 + ' ' + 1);
3067 p[3] = (char_u)(row % 128 + ' ' + 1);
3068}
3069
3070/*
3071 * Generic mouse support function. Add a mouse event to the input buffer with
3072 * the given properties.
3073 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3074 * MOUSE_X1, MOUSE_X2
3075 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003076 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3077 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 * x, y --- Coordinates of mouse in pixels.
3079 * repeated_click --- TRUE if this click comes only a short time after a
3080 * previous click.
3081 * modifiers --- Bit field which may be any of the following modifiers
3082 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3083 * This function will ignore drag events where the mouse has not moved to a new
3084 * character.
3085 */
3086 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003087gui_send_mouse_event(
3088 int button,
3089 int x,
3090 int y,
3091 int repeated_click,
3092 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093{
3094 static int prev_row = 0, prev_col = 0;
3095 static int prev_button = -1;
3096 static int num_clicks = 1;
3097 char_u string[10];
3098 enum key_extra button_char;
3099 int row, col;
3100#ifdef FEAT_CLIPBOARD
3101 int checkfor;
3102 int did_clip = FALSE;
3103#endif
3104
3105 /*
3106 * Scrolling may happen at any time, also while a selection is present.
3107 */
3108 switch (button)
3109 {
Bram Moolenaar445f11d2021-06-08 20:13:31 +02003110 case MOUSE_MOVE:
3111 button_char = KE_MOUSEMOVE_XY;
3112 goto button_set;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 case MOUSE_X1:
3114 button_char = KE_X1MOUSE;
3115 goto button_set;
3116 case MOUSE_X2:
3117 button_char = KE_X2MOUSE;
3118 goto button_set;
3119 case MOUSE_4:
3120 button_char = KE_MOUSEDOWN;
3121 goto button_set;
3122 case MOUSE_5:
3123 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003124 goto button_set;
3125 case MOUSE_6:
3126 button_char = KE_MOUSELEFT;
3127 goto button_set;
3128 case MOUSE_7:
3129 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130button_set:
3131 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003132 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 if (hold_gui_events)
3134 return;
3135
Ernie Raelc4cb5442022-04-03 15:47:28 +01003136 row = gui_xy2colrow(x, y, &col);
3137 // Don't report a mouse move unless moved to a
3138 // different character position.
3139 if (button == MOUSE_MOVE)
3140 {
3141 if (row == prev_row && col == prev_col)
3142 return;
3143 else
3144 {
3145 prev_row = row >= 0 ? row : 0;
3146 prev_col = col;
3147 }
3148 }
3149
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 string[3] = CSI;
3151 string[4] = KS_EXTRA;
3152 string[5] = (int)button_char;
3153
Bram Moolenaar30613902019-12-01 22:11:18 +01003154 // Pass the pointer coordinates of the scroll event so that we
3155 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 string[6] = (char_u)(col / 128 + ' ' + 1);
3157 string[7] = (char_u)(col % 128 + ' ' + 1);
3158 string[8] = (char_u)(row / 128 + ' ' + 1);
3159 string[9] = (char_u)(row % 128 + ' ' + 1);
3160
3161 if (modifiers == 0)
3162 add_to_input_buf(string + 3, 7);
3163 else
3164 {
3165 string[0] = CSI;
3166 string[1] = KS_MODIFIER;
3167 string[2] = 0;
3168 if (modifiers & MOUSE_SHIFT)
3169 string[2] |= MOD_MASK_SHIFT;
3170 if (modifiers & MOUSE_CTRL)
3171 string[2] |= MOD_MASK_CTRL;
3172 if (modifiers & MOUSE_ALT)
3173 string[2] |= MOD_MASK_ALT;
3174 add_to_input_buf(string, 10);
3175 }
3176 return;
3177 }
3178 }
3179
3180#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003181 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 if (clip_star.state == SELECT_IN_PROGRESS)
3183 {
3184 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003185
3186 // A release event may still need to be sent if the position is equal.
3187 row = gui_xy2colrow(x, y, &col);
3188 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3189 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 }
3191
Bram Moolenaar30613902019-12-01 22:11:18 +01003192 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 switch (get_real_state())
3194 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003195 case MODE_NORMAL_BUSY:
3196 case MODE_OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003197# ifdef FEAT_TERMINAL
Bram Moolenaar24959102022-05-07 20:01:16 +01003198 case MODE_TERMINAL:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003199# endif
Bram Moolenaar24959102022-05-07 20:01:16 +01003200 case MODE_NORMAL: checkfor = MOUSE_NORMAL; break;
3201 case MODE_VISUAL: checkfor = MOUSE_VISUAL; break;
3202 case MODE_SELECT: checkfor = MOUSE_VISUAL; break;
3203 case MODE_REPLACE:
3204 case MODE_REPLACE | MODE_LANGMAP:
3205 case MODE_VREPLACE:
3206 case MODE_VREPLACE | MODE_LANGMAP:
3207 case MODE_INSERT:
3208 case MODE_INSERT | MODE_LANGMAP:
3209 checkfor = MOUSE_INSERT; break;
3210 case MODE_ASKMORE:
3211 case MODE_HITRETURN: // At the more- and hit-enter prompt pass the
Bram Moolenaar30613902019-12-01 22:11:18 +01003212 // mouse event for a click on or below the
3213 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 if (Y_2_ROW(y) >= msg_row)
3215 checkfor = MOUSE_NORMAL;
3216 else
3217 checkfor = MOUSE_RETURN;
3218 break;
3219
3220 /*
3221 * On the command line, use the clipboard selection on all lines
3222 * but the command line. But not when pasting.
3223 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003224 case MODE_CMDLINE:
3225 case MODE_CMDLINE | MODE_LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3227 checkfor = MOUSE_NONE;
3228 else
3229 checkfor = MOUSE_COMMAND;
3230 break;
3231
3232 default:
3233 checkfor = MOUSE_NONE;
3234 break;
3235 };
3236
3237 /*
3238 * Allow clipboard selection of text on the command line in "normal"
3239 * modes. Don't do this when dragging the status line, or extending a
3240 * Visual selection.
3241 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003242 if ((State == MODE_NORMAL || State == MODE_NORMAL_BUSY
3243 || (State & MODE_INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003244 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 && button != MOUSE_DRAG
3246# ifdef FEAT_MOUSESHAPE
3247 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249# endif
3250 )
3251 checkfor = MOUSE_NONE;
3252
3253 /*
3254 * Use modeless selection when holding CTRL and SHIFT pressed.
3255 */
3256 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3257 checkfor = MOUSE_NONEF;
3258
3259 /*
3260 * In Ex mode, always use modeless selection.
3261 */
3262 if (exmode_active)
3263 checkfor = MOUSE_NONE;
3264
3265 /*
3266 * If the mouse settings say to not use the mouse, use the modeless
3267 * selection. But if Visual is active, assume that only the Visual area
3268 * will be selected.
3269 * Exception: On the command line, both the selection is used and a mouse
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003270 * key is sent.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 */
3272 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3273 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003274 // Don't do modeless selection in Visual mode.
Bram Moolenaar24959102022-05-07 20:01:16 +01003275 if (checkfor != MOUSE_NONEF && VIsual_active && (State & MODE_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277
3278 /*
3279 * When 'mousemodel' is "popup", shift-left is translated to right.
3280 * But not when also using Ctrl.
3281 */
3282 if (mouse_model_popup() && button == MOUSE_LEFT
3283 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3284 {
3285 button = MOUSE_RIGHT;
3286 modifiers &= ~ MOUSE_SHIFT;
3287 }
3288
Bram Moolenaar30613902019-12-01 22:11:18 +01003289 // If the selection is done, allow the right button to extend it.
3290 // If the selection is cleared, allow the right button to start it
3291 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 if (button == MOUSE_RIGHT)
3293 {
3294 if (clip_star.state == SELECT_CLEARED)
3295 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003296 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 {
3298 col = msg_col;
3299 row = msg_row;
3300 }
3301 else
3302 {
3303 col = curwin->w_wcol;
3304 row = curwin->w_wrow + W_WINROW(curwin);
3305 }
3306 clip_start_selection(col, row, FALSE);
3307 }
3308 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3309 repeated_click);
3310 did_clip = TRUE;
3311 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003312 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003313 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 {
3315 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3316 did_clip = TRUE;
3317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318
Bram Moolenaar30613902019-12-01 22:11:18 +01003319 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 if (button != MOUSE_MIDDLE)
3321 {
3322 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3323 return;
3324 if (checkfor != MOUSE_COMMAND)
3325 button = MOUSE_LEFT;
3326 }
3327 repeated_click = FALSE;
3328 }
3329
3330 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003331 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332#endif
3333
Bram Moolenaar30613902019-12-01 22:11:18 +01003334 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 if (hold_gui_events)
3336 return;
3337
3338 row = gui_xy2colrow(x, y, &col);
3339
3340 /*
3341 * If we are dragging and the mouse hasn't moved far enough to be on a
3342 * different character, then don't send an event to vim.
3343 */
3344 if (button == MOUSE_DRAG)
3345 {
3346 if (row == prev_row && col == prev_col)
3347 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003348 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 if (y < 0)
3350 row = -1;
3351 }
3352
3353 /*
3354 * If topline has changed (window scrolled) since the last click, reset
3355 * repeated_click, because we don't want starting Visual mode when
3356 * clicking on a different character in the text.
3357 */
3358 if (curwin->w_topline != gui_prev_topline
3359#ifdef FEAT_DIFF
3360 || curwin->w_topfill != gui_prev_topfill
3361#endif
3362 )
3363 repeated_click = FALSE;
3364
Bram Moolenaar30613902019-12-01 22:11:18 +01003365 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 string[1] = KS_MOUSE;
3367 string[2] = KE_FILLER;
3368 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3369 {
3370 if (repeated_click)
3371 {
3372 /*
3373 * Handle multiple clicks. They only count if the mouse is still
3374 * pointing at the same character.
3375 */
3376 if (button != prev_button || row != prev_row || col != prev_col)
3377 num_clicks = 1;
3378 else if (++num_clicks > 4)
3379 num_clicks = 1;
3380 }
3381 else
3382 num_clicks = 1;
3383 prev_button = button;
3384 gui_prev_topline = curwin->w_topline;
3385#ifdef FEAT_DIFF
3386 gui_prev_topfill = curwin->w_topfill;
3387#endif
3388
3389 string[3] = (char_u)(button | 0x20);
3390 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3391 }
3392 else
3393 string[3] = (char_u)button;
3394
3395 string[3] |= modifiers;
3396 fill_mouse_coord(string + 4, col, row);
3397 add_to_input_buf(string, 8);
3398
3399 if (row < 0)
3400 prev_row = 0;
3401 else
3402 prev_row = row;
3403 prev_col = col;
3404
3405 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003406 * We need to make sure this is cleared since GTK doesn't tell us when
3407 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003409#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 gui.dragged_sb = SBAR_NONE;
3411#endif
3412}
3413
3414/*
3415 * Convert x and y coordinate to column and row in text window.
3416 * Corrects for multi-byte character.
3417 * returns column in "*colp" and row as return value;
3418 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003419 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003420gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421{
3422 int col = check_col(X_2_COL(x));
3423 int row = check_row(Y_2_ROW(y));
3424
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 return row;
3427}
3428
3429#if defined(FEAT_MENU) || defined(PROTO)
3430/*
3431 * Callback function for when a menu entry has been selected.
3432 */
3433 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003434gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003436 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437
Bram Moolenaar30613902019-12-01 22:11:18 +01003438 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 if (hold_gui_events)
3440 return;
3441
3442 bytes[0] = CSI;
3443 bytes[1] = KS_MENU;
3444 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003445 add_to_input_buf(bytes, 3);
3446 add_long_to_buf((long_u)menu, bytes);
3447 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448}
3449#endif
3450
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003451static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003452
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453/*
3454 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 * in p_go.
3457 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003459gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003461#ifdef FEAT_GUI_DARKTHEME
3462 static int prev_dark_theme = -1;
3463 int using_dark_theme = FALSE;
3464#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465#ifdef FEAT_MENU
3466 static int prev_menu_is_active = -1;
3467#endif
3468#ifdef FEAT_TOOLBAR
3469 static int prev_toolbar = -1;
3470 int using_toolbar = FALSE;
3471#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003472#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003473 int using_tabline;
3474#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003475#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 static int prev_tearoff = -1;
3477 int using_tearoff = FALSE;
3478#endif
3479
3480 char_u *p;
3481 int i;
3482#ifdef FEAT_MENU
3483 int grey_old, grey_new;
3484 char_u *temp;
3485#endif
3486 win_T *wp;
3487 int need_set_size;
3488 int fix_size;
3489
3490#ifdef FEAT_MENU
3491 if (oldval != NULL && gui.in_use)
3492 {
3493 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003494 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 */
3496 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3497 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3498 if (grey_old != grey_new)
3499 {
3500 temp = p_go;
3501 p_go = oldval;
3502 gui_update_menus(MENU_ALL_MODES);
3503 p_go = temp;
3504 }
3505 }
3506 gui.menu_is_active = FALSE;
3507#endif
3508
3509 for (i = 0; i < 3; i++)
3510 gui.which_scrollbars[i] = FALSE;
3511 for (p = p_go; *p; p++)
3512 switch (*p)
3513 {
3514 case GO_LEFT:
3515 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3516 break;
3517 case GO_RIGHT:
3518 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3519 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520 case GO_VLEFT:
3521 if (win_hasvertsplit())
3522 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3523 break;
3524 case GO_VRIGHT:
3525 if (win_hasvertsplit())
3526 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3527 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528 case GO_BOT:
3529 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3530 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003531#ifdef FEAT_GUI_DARKTHEME
3532 case GO_DARKTHEME:
3533 using_dark_theme = TRUE;
3534 break;
3535#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536#ifdef FEAT_MENU
3537 case GO_MENUS:
3538 gui.menu_is_active = TRUE;
3539 break;
3540#endif
3541 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003542 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003543 break;
3544#ifdef FEAT_TOOLBAR
3545 case GO_TOOLBAR:
3546 using_toolbar = TRUE;
3547 break;
3548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003550#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 using_tearoff = TRUE;
3552#endif
3553 break;
3554 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003555 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 break;
3557 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 if (gui.in_use)
3560 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003561 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003563
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003564#ifdef FEAT_GUI_DARKTHEME
3565 if (using_dark_theme != prev_dark_theme)
3566 {
3567 gui_mch_set_dark_theme(using_dark_theme);
3568 prev_dark_theme = using_dark_theme;
3569 }
3570#endif
3571
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003572#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003573 // Update the GUI tab line, it may appear or disappear. This may
3574 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003575 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003576 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003577 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003578 // We don't want a resize event change "Rows" here, save and
3579 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003580 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003581 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003582 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003583 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003584 if (using_tabline)
3585 fix_size = TRUE;
3586 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003587 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003588 }
3589#endif
3590
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 for (i = 0; i < 3; i++)
3592 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003593 // The scrollbar needs to be updated when it is shown/unshown and
3594 // when switching tab pages. But the size only changes when it's
3595 // shown/unshown. Thus we need two places to remember whether a
3596 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003597 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003598 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003599 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 {
3601 if (i == SBAR_BOTTOM)
3602 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3603 gui.which_scrollbars[i]);
3604 else
3605 {
3606 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003609 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3610 {
3611 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003612 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003613 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003614 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003615 if (gui.which_scrollbars[i])
3616 fix_size = TRUE;
3617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003619 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003620 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 }
3622
3623#ifdef FEAT_MENU
3624 if (gui.menu_is_active != prev_menu_is_active)
3625 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003626 // We don't want a resize event change "Rows" here, save and
3627 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 i = Rows;
3629 gui_mch_enable_menu(gui.menu_is_active);
3630 Rows = i;
3631 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003632 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 if (gui.menu_is_active)
3634 fix_size = TRUE;
3635 }
3636#endif
3637
3638#ifdef FEAT_TOOLBAR
3639 if (using_toolbar != prev_toolbar)
3640 {
3641 gui_mch_show_toolbar(using_toolbar);
3642 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003643 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 if (using_toolbar)
3645 fix_size = TRUE;
3646 }
3647#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003648#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (using_tearoff != prev_tearoff)
3650 {
3651 gui_mch_toggle_tearoffs(using_tearoff);
3652 prev_tearoff = using_tearoff;
3653 }
3654#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003655 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003656 {
3657#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003658 long prev_Columns = Columns;
3659 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003660#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003661 // Adjust the size of the window to make the text area keep the
3662 // same size and to avoid that part of our window is off-screen
3663 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003664 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003665
3666#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003667 // GTK has the annoying habit of sending us resize events when
3668 // changing the window size ourselves. This mostly happens when
3669 // waiting for a character to arrive, quite unpredictably, and may
3670 // change Columns and Rows when we don't want it. Wait for a
3671 // character here to avoid this effect.
3672 // If you remove this, please test this command for resizing
3673 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3674 // Don't do this while starting up though.
3675 // Don't change Rows when adding menu/toolbar/tabline.
3676 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003677 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003678 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003679 if ((need_set_size & RESIZE_VERT) == 0)
3680 Rows = prev_Rows;
3681 if ((need_set_size & RESIZE_HOR) == 0)
3682 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003683#endif
3684 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003685 // When the console tabline appears or disappears the window positions
3686 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003687 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003688 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 }
3690}
3691
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003692#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3693/*
3694 * Return TRUE if the GUI is taking care of the tabline.
3695 * It may still be hidden if 'showtabline' is zero.
3696 */
3697 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003698gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003699{
3700 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3701}
3702
3703/*
3704 * Return TRUE if the GUI is showing the tabline.
3705 * This uses 'showtabline'.
3706 */
3707 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003708gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003709{
3710 if (!gui_use_tabline()
3711 || p_stal == 0
3712 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3713 return FALSE;
3714 return TRUE;
3715}
3716
3717/*
3718 * Update the tabline.
3719 * This may display/undisplay the tabline and update the labels.
3720 */
3721 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003722gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003723{
3724 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003725 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003726
3727 if (!gui.starting && starting == 0)
3728 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003729 // Updating the tabline uses direct GUI commands, flush
3730 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003731 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003732
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003733 if (!showit != !shown)
3734 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003735 if (showit != 0)
3736 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003737
Bram Moolenaar30613902019-12-01 22:11:18 +01003738 // When the tabs change from hidden to shown or from shown to
3739 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003740 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003741 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003742 }
3743}
3744
3745/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003746 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003747 */
3748 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003749get_tabline_label(
3750 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003751 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003752{
3753 int modified = FALSE;
3754 char_u buf[40];
3755 int wincount;
3756 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003757 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003758
Bram Moolenaar30613902019-12-01 22:11:18 +01003759 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003760 opt = (tooltip ? &p_gtt : &p_gtl);
3761 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003762 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003763 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003764 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003765 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003766 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003767 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3768 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003769
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003770 printer_page_num = tabpage_index(tp);
3771# ifdef FEAT_EVAL
3772 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003773 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003774# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003775 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003776 curtab->tp_firstwin = firstwin;
3777 curtab->tp_lastwin = lastwin;
3778 curtab->tp_curwin = curwin;
3779 save_curtab = curtab;
3780 curtab = tp;
3781 topframe = curtab->tp_topframe;
3782 firstwin = curtab->tp_firstwin;
3783 lastwin = curtab->tp_lastwin;
3784 curwin = curtab->tp_curwin;
3785 curbuf = curwin->w_buffer;
3786
Bram Moolenaar30613902019-12-01 22:11:18 +01003787 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003788 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003789 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003790 STRCPY(NameBuff, res);
3791
Bram Moolenaar30613902019-12-01 22:11:18 +01003792 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003793 curtab = save_curtab;
3794 topframe = curtab->tp_topframe;
3795 firstwin = curtab->tp_firstwin;
3796 lastwin = curtab->tp_lastwin;
3797 curwin = curtab->tp_curwin;
3798 curbuf = curwin->w_buffer;
3799
Bram Moolenaar53989552019-12-23 22:59:18 +01003800 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003801 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003802 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003803 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003804
Bram Moolenaar30613902019-12-01 22:11:18 +01003805 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3806 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003807 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003808 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003809 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003810 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003811 if (!tooltip)
3812 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003813
3814 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3815 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3816 if (bufIsChanged(wp->w_buffer))
3817 modified = TRUE;
3818 if (modified || wincount > 1)
3819 {
3820 if (wincount > 1)
3821 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3822 else
3823 buf[0] = NUL;
3824 if (modified)
3825 STRCAT(buf, "+");
3826 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003827 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003828 mch_memmove(NameBuff, buf, STRLEN(buf));
3829 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003830 }
3831}
3832
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003833/*
3834 * Send the event for clicking to select tab page "nr".
3835 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003836 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003837 */
3838 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003839send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003840{
3841 char_u string[3];
3842
3843 if (nr == tabpage_index(curtab))
3844 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003845
Bram Moolenaar30613902019-12-01 22:11:18 +01003846 // Don't put events in the input queue now.
Martin Tournoij7904fa42022-10-04 16:28:45 +01003847 if (hold_gui_events || cmdwin_type != 0)
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003848 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003849 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003850 gui_mch_set_curtab(tabpage_index(curtab));
3851 return FALSE;
3852 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003853
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003854 string[0] = CSI;
3855 string[1] = KS_TABLINE;
3856 string[2] = KE_FILLER;
3857 add_to_input_buf(string, 3);
3858 string[0] = nr;
3859 add_to_input_buf_csi(string, 1);
3860 return TRUE;
3861}
3862
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003863/*
3864 * Send a tabline menu event
3865 */
3866 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003867send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003868{
3869 char_u string[3];
3870
Bram Moolenaar29547192018-12-11 20:39:19 +01003871 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003872 if (hold_gui_events)
3873 return;
3874
Bram Moolenaar29547192018-12-11 20:39:19 +01003875 // Cannot close the last tabpage.
3876 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3877 return;
3878
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003879 string[0] = CSI;
3880 string[1] = KS_TABMENU;
3881 string[2] = KE_FILLER;
3882 add_to_input_buf(string, 3);
3883 string[0] = tabidx;
3884 string[1] = (char_u)(long)event;
3885 add_to_input_buf_csi(string, 2);
3886}
3887
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889
3890/*
3891 * Scrollbar stuff:
3892 */
3893
Bram Moolenaare45828b2006-02-15 22:12:56 +00003894/*
3895 * Remove all scrollbars. Used before switching to another tab page.
3896 */
3897 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003898gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003899{
3900 int i;
3901 win_T *wp;
3902
3903 for (i = 0; i < 3; i++)
3904 {
3905 if (i == SBAR_BOTTOM)
3906 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3907 else
3908 {
3909 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003910 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003911 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003912 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003913 }
3914}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003915
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003917gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918{
3919 static int sbar_ident = 0;
3920
Bram Moolenaar30613902019-12-01 22:11:18 +01003921 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 sb->wp = wp;
3923 sb->type = type;
3924 sb->value = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 sb->size = 1;
3926 sb->max = 1;
3927 sb->top = 0;
3928 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 sb->status_height = 0;
3931 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3932}
3933
3934/*
3935 * Find the scrollbar with the given index.
3936 */
3937 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003938gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939{
3940 win_T *wp;
3941
3942 if (gui.bottom_sbar.ident == ident)
3943 return &gui.bottom_sbar;
3944 FOR_ALL_WINDOWS(wp)
3945 {
3946 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3947 return &wp->w_scrollbars[SBAR_LEFT];
3948 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3949 return &wp->w_scrollbars[SBAR_RIGHT];
3950 }
3951 return NULL;
3952}
3953
3954/*
3955 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3956 *
3957 * For Win32, Macintosh and GTK+ 2:
3958 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3959 * you stop dragging the scrollbar. We get here each time the scrollbar is
3960 * dragged another pixel, but as far as the rest of vim goes, it thinks
3961 * we're just hanging in the call to DispatchMessage() in
3962 * process_message(). The DispatchMessage() call that hangs was passed a
3963 * mouse button click event in the scrollbar window. -- webb.
3964 *
3965 * Solution: Do the scrolling right here. But only when allowed.
3966 * Ignore the scrollbars while executing an external command or when there
3967 * are still characters to be processed.
3968 */
3969 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003970gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 int sb_num;
3974#ifdef USE_ON_FLY_SCROLL
3975 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977# ifdef FEAT_DIFF
3978 int old_topfill = curwin->w_topfill;
3979# endif
3980#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003981 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 int byte_count;
3983#endif
3984
3985 if (sb == NULL)
3986 return;
3987
Bram Moolenaar30613902019-12-01 22:11:18 +01003988 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 if (hold_gui_events)
3990 return;
3991
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 if (cmdwin_type != 0 && sb->wp != curwin)
3993 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995 if (still_dragging)
3996 {
3997 if (sb->wp == NULL)
3998 gui.dragged_sb = SBAR_BOTTOM;
3999 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
4000 gui.dragged_sb = SBAR_LEFT;
4001 else
4002 gui.dragged_sb = SBAR_RIGHT;
4003 gui.dragged_wp = sb->wp;
4004 }
4005 else
4006 {
4007 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004008#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004009 // Keep the "dragged_wp" value until after the scrolling, for when the
4010 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 gui.dragged_wp = NULL;
4012#endif
4013 }
4014
Bram Moolenaar30613902019-12-01 22:11:18 +01004015 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016 if (sb->wp != NULL)
4017 sb = &sb->wp->w_scrollbars[0];
4018
4019 /*
4020 * Check validity of value
4021 */
4022 if (value < 0)
4023 value = 0;
4024#ifdef SCROLL_PAST_END
4025 else if (value > sb->max)
4026 value = sb->max;
4027#else
4028 if (value > sb->max - sb->size + 1)
4029 value = sb->max - sb->size + 1;
4030#endif
4031
4032 sb->value = value;
4033
4034#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004035 // When not allowed to do the scrolling right now, return.
4036 // This also checked input_available(), but that causes the first click in
4037 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004038 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 return;
4040#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004041 // Disallow scrolling the current window when the completion popup menu is
4042 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004043 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4044 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045
4046#ifdef FEAT_RIGHTLEFT
4047 if (sb->wp == NULL && curwin->w_p_rl)
4048 {
4049 value = sb->max + 1 - sb->size - value;
4050 if (value < 0)
4051 value = 0;
4052 }
4053#endif
4054
Bram Moolenaar30613902019-12-01 22:11:18 +01004055 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 {
4057 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4059 sb_num++;
4060 if (wp == NULL)
4061 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062
4063#ifdef USE_ON_FLY_SCROLL
4064 current_scrollbar = sb_num;
4065 scrollbar_value = value;
Bram Moolenaar24959102022-05-07 20:01:16 +01004066 if (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 {
4068 gui_do_scroll();
4069 setcursor();
4070 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004071 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 {
4073 ins_scroll();
4074 setcursor();
4075 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004076 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 {
4078 if (msg_scrolled == 0)
4079 {
4080 gui_do_scroll();
4081 redrawcmdline();
4082 }
4083 }
4084# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004085 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 sb->value = sb->wp->w_topline - 1;
4087# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004088
Bram Moolenaar30613902019-12-01 22:11:18 +01004089 // When dragging one scrollbar and there is another one at the other
4090 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004091 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4092 gui_mch_set_scrollbar_thumb(
4093 &sb->wp->w_scrollbars[
4094 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4095 ? SBAR_LEFT : SBAR_RIGHT],
4096 sb->value, sb->size, sb->max);
4097
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098#else
4099 bytes[0] = CSI;
4100 bytes[1] = KS_VER_SCROLLBAR;
4101 bytes[2] = KE_FILLER;
4102 bytes[3] = (char_u)sb_num;
4103 byte_count = 4;
4104#endif
4105 }
4106 else
4107 {
4108#ifdef USE_ON_FLY_SCROLL
4109 scrollbar_value = value;
4110
Bram Moolenaar24959102022-05-07 20:01:16 +01004111 if (State & MODE_NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004112 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar24959102022-05-07 20:01:16 +01004113 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 ins_horscroll();
Bram Moolenaar24959102022-05-07 20:01:16 +01004115 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004117 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004119 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 redrawcmdline();
4121 }
4122 }
4123 if (old_leftcol != curwin->w_leftcol)
4124 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004125 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 setcursor();
4127 }
4128#else
4129 bytes[0] = CSI;
4130 bytes[1] = KS_HOR_SCROLLBAR;
4131 bytes[2] = KE_FILLER;
4132 byte_count = 3;
4133#endif
4134 }
4135
4136#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 /*
4138 * synchronize other windows, as necessary according to 'scrollbind'
4139 */
4140 if (curwin->w_p_scb
4141 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4142 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004143# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004145# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 ))))
4147 {
4148 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004149 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004150 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 if (wp->w_redr_type > 0)
4152 updateWindow(wp);
4153 setcursor();
4154 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004155 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004157 add_to_input_buf(bytes, byte_count);
4158 add_long_to_buf((long_u)value, bytes);
4159 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160#endif
4161}
4162
4163/*
4164 * Scrollbar stuff:
4165 */
4166
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004167/*
4168 * Called when something in the window layout has changed.
4169 */
4170 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004171gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004172{
4173 if (gui.in_use && starting == 0)
4174 {
4175 out_flush();
4176 gui_init_which_components(NULL);
4177 gui_update_scrollbars(TRUE);
4178 }
4179 need_mouse_correct = TRUE;
4180}
4181
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004183gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004184 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185{
4186 win_T *wp;
4187 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004188 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 int which_sb;
4190 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192
Bram Moolenaar30613902019-12-01 22:11:18 +01004193 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 gui_update_horiz_scrollbar(force);
4195
Bram Moolenaar4f974752019-02-17 17:44:42 +01004196#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004197 // Return straight away if there is neither a left nor right scrollbar.
4198 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4200 return;
4201#endif
4202
4203 /*
4204 * Don't want to update a scrollbar while we're dragging it. But if we
4205 * have both a left and right scrollbar, and we drag one of them, we still
4206 * need to update the other one.
4207 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004208 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4209 && gui.which_scrollbars[SBAR_LEFT]
4210 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 {
4212 /*
4213 * If we have two scrollbars and one of them is being dragged, just
4214 * copy the scrollbar position from the dragged one to the other one.
4215 */
4216 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4217 if (gui.dragged_wp != NULL)
4218 gui_mch_set_scrollbar_thumb(
4219 &gui.dragged_wp->w_scrollbars[which_sb],
4220 gui.dragged_wp->w_scrollbars[0].value,
4221 gui.dragged_wp->w_scrollbars[0].size,
4222 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 }
4224
Bram Moolenaar30613902019-12-01 22:11:18 +01004225 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 ++hold_gui_events;
4227
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004228 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004230 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004232 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004233 if (!force && (gui.dragged_sb == SBAR_LEFT
4234 || gui.dragged_sb == SBAR_RIGHT)
4235 && gui.dragged_wp == wp)
4236 continue;
4237
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238#ifdef SCROLL_PAST_END
4239 max = wp->w_buffer->b_ml.ml_line_count - 1;
4240#else
4241 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4242#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004243 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244 max = 0;
4245 val = wp->w_topline - 1;
4246 size = wp->w_height;
4247#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004248 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 val = max;
4250#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004251 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 size = max + 1;
4253 if (val > max - size + 1)
4254 val = max - size + 1;
4255#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004256 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 val = 0;
4258
4259 /*
4260 * Scrollbar at index 0 (the left one) contains all the information.
4261 * It would be the same info for left and right so we just store it for
4262 * one of them.
4263 */
4264 sb = &wp->w_scrollbars[0];
4265
4266 /*
4267 * Note: no check for valid w_botline. If it's not valid the
4268 * scrollbars will be updated later anyway.
4269 */
4270 if (size < 1 || wp->w_botline - 2 > max)
4271 {
4272 /*
4273 * This can happen during changing files. Just don't update the
4274 * scrollbar for now.
4275 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004276 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 if (gui.which_scrollbars[SBAR_LEFT])
4278 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4279 if (gui.which_scrollbars[SBAR_RIGHT])
4280 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4281 continue;
4282 }
4283 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 || sb->top != wp->w_winrow
4285 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004287 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004289 // Height, width or position of scrollbar has changed. For
4290 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 sb->top = wp->w_winrow;
4293 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295
Bram Moolenaar30613902019-12-01 22:11:18 +01004296 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 h = (sb->height + sb->status_height) * gui.char_height;
4298 y = sb->top * gui.char_height + gui.border_offset;
4299#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4300 if (gui.menu_is_active)
4301 y += gui.menu_height;
4302#endif
4303
Bram Moolenaar0b962e52022-04-03 18:02:37 +01004304#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004305 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 y += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308#endif
4309
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004310#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004311 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004312 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004313#endif
4314
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004317 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 h += gui.border_offset;
4319 y -= gui.border_offset;
4320 }
4321 if (gui.which_scrollbars[SBAR_LEFT])
4322 {
4323 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4324 gui.left_sbar_x, y,
4325 gui.scrollbar_width, h);
4326 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4327 }
4328 if (gui.which_scrollbars[SBAR_RIGHT])
4329 {
4330 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4331 gui.right_sbar_x, y,
4332 gui.scrollbar_width, h);
4333 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4334 }
4335 }
4336
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 if (force || sb->value != val || sb->size != size || sb->max != max)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004339 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 sb->value = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 sb->size = size;
4342 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004343 if (gui.which_scrollbars[SBAR_LEFT]
4344 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4346 val, size, max);
4347 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004348 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4350 val, size, max);
4351 }
4352 }
Christian Brabandt2e0f3ec2021-11-28 18:41:05 +00004353
4354 // update the title, it may show the scroll position
4355 maketitle();
4356
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 --hold_gui_events;
4359}
4360
4361/*
4362 * Enable or disable a scrollbar.
4363 * Check for scrollbars for vertically split windows which are not enabled
4364 * sometimes.
4365 */
4366 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004367gui_do_scrollbar(
4368 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004369 int which, // SBAR_LEFT or SBAR_RIGHT
4370 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 int midcol = curwin->w_wincol + curwin->w_width / 2;
4373 int has_midcol = (wp->w_wincol <= midcol
4374 && wp->w_wincol + wp->w_width >= midcol);
4375
Bram Moolenaar30613902019-12-01 22:11:18 +01004376 // Only enable scrollbars that contain the middle column of the current
4377 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4379 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004380 // Scrollbars only on one side. Don't enable scrollbars that don't
4381 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 if (!has_midcol)
4383 enable = FALSE;
4384 }
4385 else
4386 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004387 // Scrollbars on both sides. Don't enable scrollbars that neither
4388 // contain the middle column of the current window nor are on the far
4389 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 if (midcol > Columns / 2)
4391 {
4392 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4393 enable = FALSE;
4394 }
4395 else
4396 {
4397 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4398 : !has_midcol)
4399 enable = FALSE;
4400 }
4401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4403}
4404
4405/*
4406 * Scroll a window according to the values set in the globals current_scrollbar
4407 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4408 * or FALSE otherwise.
4409 */
4410 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004411gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412{
4413 win_T *wp, *save_wp;
4414 int i;
4415 long nlines;
4416 pos_T old_cursor;
4417 linenr_T old_topline;
4418#ifdef FEAT_DIFF
4419 int old_topfill;
4420#endif
4421
4422 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4423 if (wp == NULL)
4424 break;
4425 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004426 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 return FALSE;
4428
4429 /*
4430 * Compute number of lines to scroll. If zero, nothing to do.
4431 */
4432 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4433 if (nlines == 0)
4434 return FALSE;
4435
4436 save_wp = curwin;
4437 old_topline = wp->w_topline;
4438#ifdef FEAT_DIFF
4439 old_topfill = wp->w_topfill;
4440#endif
4441 old_cursor = wp->w_cursor;
4442 curwin = wp;
4443 curbuf = wp->w_buffer;
4444 if (nlines < 0)
4445 scrolldown(-nlines, gui.dragged_wp == NULL);
4446 else
4447 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004448 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4449 // the mouse-up event already, but we still want it to behave like when
4450 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 if (gui.dragged_sb == SBAR_NONE)
4452 gui.dragged_wp = NULL;
4453
4454 if (old_topline != wp->w_topline
4455#ifdef FEAT_DIFF
4456 || old_topfill != wp->w_topfill
4457#endif
4458 )
4459 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004460 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004462 cursor_correct(); // fix window for 'so'
4463 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 }
4465 if (old_cursor.lnum != wp->w_cursor.lnum)
4466 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 }
4469
Bram Moolenaar30613902019-12-01 22:11:18 +01004470 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004471 validate_cursor();
4472
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 curwin = save_wp;
4474 curbuf = save_wp->w_buffer;
4475
4476 /*
4477 * Don't call updateWindow() when nothing has changed (it will overwrite
4478 * the status line!).
4479 */
4480 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004481 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482#ifdef FEAT_DIFF
4483 || old_topfill != wp->w_topfill
4484#endif
4485 )
4486 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +01004487 int type = UPD_VALID;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004488
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004489 if (pum_visible())
4490 {
Bram Moolenaara4d158b2022-08-14 14:17:45 +01004491 type = UPD_NOT_VALID;
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004492 wp->w_lines_valid = 0;
4493 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004494
Bram Moolenaar30613902019-12-01 22:11:18 +01004495 // Don't set must_redraw here, it may cause the popup menu to
4496 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004497 if (wp->w_redr_type < type)
4498 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004499 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004500 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004501 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 }
4503
Bram Moolenaar30613902019-12-01 22:11:18 +01004504 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004505 if (pum_visible())
4506 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004507
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004508 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509}
4510
4511
4512/*
4513 * Horizontal scrollbar stuff:
4514 */
4515
4516/*
4517 * Return length of line "lnum" for horizontal scrolling.
4518 */
4519 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004520scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521{
4522 char_u *p;
4523 colnr_T col;
4524 int w;
4525
4526 p = ml_get(lnum);
4527 col = 0;
4528 if (*p != NUL)
4529 for (;;)
4530 {
4531 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004532 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004533 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 break;
4535 col += w;
4536 }
4537 return col;
4538}
4539
Bram Moolenaar30613902019-12-01 22:11:18 +01004540// Remember which line is currently the longest, so that we don't have to
4541// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542static linenr_T longest_lnum = 0;
4543
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004544/*
4545 * Find longest visible line number. If this is not possible (or not desired,
4546 * by setting 'h' in "guioptions") then the current line number is returned.
4547 */
4548 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004549gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004550{
4551 linenr_T ret = 0;
4552
Bram Moolenaar30613902019-12-01 22:11:18 +01004553 // Calculate maximum for horizontal scrollbar. Check for reasonable
4554 // line numbers, topline and botline can be invalid when displaying is
4555 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004556 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4557 && curwin->w_topline <= curwin->w_cursor.lnum
4558 && curwin->w_botline > curwin->w_cursor.lnum
4559 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4560 {
4561 linenr_T lnum;
4562 colnr_T n;
4563 long max = 0;
4564
Bram Moolenaar30613902019-12-01 22:11:18 +01004565 // Use maximum of all visible lines. Remember the lnum of the
4566 // longest line, closest to the cursor line. Used when scrolling
4567 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004568 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4569 {
4570 n = scroll_line_len(lnum);
4571 if (n > (colnr_T)max)
4572 {
4573 max = n;
4574 ret = lnum;
4575 }
4576 else if (n == (colnr_T)max
4577 && abs((int)(lnum - curwin->w_cursor.lnum))
4578 < abs((int)(ret - curwin->w_cursor.lnum)))
4579 ret = lnum;
4580 }
4581 }
4582 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004583 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004584 ret = curwin->w_cursor.lnum;
4585
4586 return ret;
4587}
4588
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004590gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591{
Bram Moolenaar30613902019-12-01 22:11:18 +01004592 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593
4594 if (!gui.which_scrollbars[SBAR_BOTTOM])
4595 return;
4596
4597 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4598 return;
4599
4600 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4601 return;
4602
4603 /*
4604 * It is possible for the cursor to be invalid if we're in the middle of
4605 * something (like changing files). If so, don't do anything for now.
4606 */
4607 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4608 {
4609 gui.bottom_sbar.value = -1;
4610 return;
4611 }
4612
Bram Moolenaar02631462017-09-22 15:20:32 +02004613 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 if (curwin->w_p_wrap)
4615 {
4616 value = 0;
4617#ifdef SCROLL_PAST_END
4618 max = 0;
4619#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004620 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621#endif
4622 }
4623 else
4624 {
4625 value = curwin->w_leftcol;
4626
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004627 longest_lnum = gui_find_longest_lnum();
4628 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 if (virtual_active())
4631 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004632 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 if (curwin->w_virtcol >= (colnr_T)max)
4634 max = curwin->w_virtcol;
4635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
4637#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004638 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004640 // The line number isn't scrolled, thus there is less space when
4641 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 size -= curwin_col_off();
4643#ifndef SCROLL_PAST_END
4644 max -= curwin_col_off();
4645#endif
4646 }
4647
4648#ifndef SCROLL_PAST_END
4649 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004650 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651#endif
4652
4653#ifdef FEAT_RIGHTLEFT
4654 if (curwin->w_p_rl)
4655 {
4656 value = max + 1 - size - value;
4657 if (value < 0)
4658 {
4659 size += value;
4660 value = 0;
4661 }
4662 }
4663#endif
4664 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4665 && max == gui.bottom_sbar.max)
4666 return;
4667
4668 gui.bottom_sbar.value = value;
4669 gui.bottom_sbar.size = size;
4670 gui.bottom_sbar.max = max;
4671 gui.prev_wrap = curwin->w_p_wrap;
4672
4673 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4674}
4675
4676/*
4677 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4678 */
4679 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004680gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681{
Bram Moolenaar30613902019-12-01 22:11:18 +01004682 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 if (curwin->w_p_wrap)
4684 return FALSE;
4685
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004686 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 return FALSE;
4688
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004689 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690
Bram Moolenaar30613902019-12-01 22:11:18 +01004691 // When the line of the cursor is too short, move the cursor to the
4692 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004694 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004695 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004697 if (compute_longest_lnum)
4698 {
4699 curwin->w_cursor.lnum = gui_find_longest_lnum();
4700 curwin->w_cursor.col = 0;
4701 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004702 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004703 else if (longest_lnum >= curwin->w_topline
4704 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 {
4706 curwin->w_cursor.lnum = longest_lnum;
4707 curwin->w_cursor.col = 0;
4708 }
4709 }
4710
4711 return leftcol_changed();
4712}
4713
4714/*
4715 * Check that none of the colors are the same as the background color
4716 */
4717 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004718gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719{
4720 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4721 {
4722 gui_set_bg_color((char_u *)"White");
4723 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4724 gui_set_fg_color((char_u *)"Black");
4725 }
4726}
4727
Bram Moolenaar3918c952005-03-15 22:34:55 +00004728 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004729gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730{
4731 gui.norm_pixel = gui_get_color(name);
4732 hl_set_fg_color_name(vim_strsave(name));
4733}
4734
Bram Moolenaar3918c952005-03-15 22:34:55 +00004735 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004736gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737{
4738 gui.back_pixel = gui_get_color(name);
4739 hl_set_bg_color_name(vim_strsave(name));
4740}
4741
4742/*
4743 * Allocate a color by name.
4744 * Returns INVALCOLOR and gives an error message when failed.
4745 */
4746 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004747gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748{
4749 guicolor_T t;
4750
4751 if (*name == NUL)
4752 return INVALCOLOR;
4753 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004754
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004756#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 && gui.in_use
4758#endif
4759 )
Drew Vogele30d1022021-10-24 20:35:07 +01004760 semsg(_(e_cannot_allocate_color_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 return t;
4762}
4763
4764/*
4765 * Return the grey value of a color (range 0-255).
4766 */
4767 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004768gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004770 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004772 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004773 + (((rgb >> 8) & 0xff) * 587)
4774 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775}
4776
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004777 char_u *
4778gui_bg_default(void)
4779{
4780 if (gui_get_lightness(gui.back_pixel) < 127)
4781 return (char_u *)"dark";
4782 return (char_u *)"light";
4783}
4784
4785/*
4786 * Option initializations that can only be done after opening the GUI window.
4787 */
Yegappan Lakshmananee47eac2022-06-29 12:55:36 +01004788 static void
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004789init_gui_options(void)
4790{
Bram Moolenaar30613902019-12-01 22:11:18 +01004791 // Set the 'background' option according to the lightness of the
4792 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004793 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4794 {
Bram Moolenaar31e5c602022-04-15 13:53:33 +01004795 set_option_value_give_err((char_u *)"bg", 0L, gui_bg_default(), 0);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004796 highlight_changed();
4797 }
4798}
4799
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800#if defined(FEAT_GUI_X11) || defined(PROTO)
4801 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004802gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803{
4804 win_T *wp;
4805
Bram Moolenaar30613902019-12-01 22:11:18 +01004806 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 if (!gui.in_use)
4808 return;
4809
4810 FOR_ALL_WINDOWS(wp)
4811 {
4812 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4813 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4814 }
4815 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4816}
4817#endif
4818
4819/*
4820 * Call this when focus has changed.
4821 */
4822 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004823gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824{
4825/*
4826 * Skip this code to avoid drawing the cursor when debugging and switching
4827 * between the debugger window and gvim.
4828 */
4829#if 1
4830 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004831 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832
4833# ifdef FEAT_XIM
4834 xim_set_focus(in_focus);
4835# endif
4836
Bram Moolenaar30613902019-12-01 22:11:18 +01004837 // Put events in the input queue only when allowed.
4838 // ui_focus_change() isn't called directly, because it invokes
4839 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004840 if (!hold_gui_events)
4841 {
4842 char_u bytes[3];
4843
4844 bytes[0] = CSI;
4845 bytes[1] = KS_EXTRA;
4846 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4847 add_to_input_buf(bytes, 3);
4848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849#endif
4850}
4851
4852/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004853 * When mouse moved: apply 'mousefocus'.
4854 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004856 static void
4857gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858{
4859 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004860 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861
4862#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004863 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004864 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865#endif
4866
Bram Moolenaar30613902019-12-01 22:11:18 +01004867 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004869 && !hold_gui_events // not holding events
Bram Moolenaar24959102022-05-07 20:01:16 +01004870 && (State & (MODE_NORMAL | MODE_INSERT))// Normal/Visual/Insert mode
4871 && State != MODE_HITRETURN // but not hit-return prompt
Bram Moolenaar30613902019-12-01 22:11:18 +01004872 && msg_scrolled == 0 // no scrolled message
4873 && !need_mouse_correct // not moving the pointer
4874 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004876 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 if (x < 0 || x > Columns * gui.char_width)
4878 return;
4879#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004880 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881#endif
4882 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004883 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
Bram Moolenaar30613902019-12-01 22:11:18 +01004885 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004886 if (Y_2_ROW(y) < tabline_height())
4887 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004888
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 /*
4890 * format a mouse click on status line input
4891 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004892 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4893 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 */
4895 if (finish_op)
4896 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004897 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 st[0] = ESC;
4899 add_to_input_buf(st, 1);
4900 }
4901 st[0] = CSI;
4902 st[1] = KS_MOUSE;
4903 st[2] = KE_FILLER;
4904 st[3] = (char_u)MOUSE_LEFT;
4905 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004906 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 wp->w_height + W_WINROW(wp));
4908
4909 add_to_input_buf(st, 8);
4910 st[3] = (char_u)MOUSE_RELEASE;
4911 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004913 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 if (gtk_main_level() > 0)
4915 gtk_main_quit();
4916#endif
4917 }
4918}
4919
4920/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004921 * Called when the mouse moved (but not when dragging).
4922 */
4923 void
4924gui_mouse_moved(int x, int y)
4925{
4926 // Ignore this while still starting up.
4927 if (!gui.in_use || gui.starting)
4928 return;
4929
4930 // apply 'mousefocus' and pointer shape
4931 gui_mouse_focus(x, y);
4932
Ernie Raelc4cb5442022-04-03 15:47:28 +01004933 if (p_mousemev
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004934#ifdef FEAT_PROP_POPUP
Ernie Raelc4cb5442022-04-03 15:47:28 +01004935 || popup_uses_mouse_move
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004936#endif
Ernie Raelc4cb5442022-04-03 15:47:28 +01004937 )
4938 // Generate a mouse-moved event. For a <MouseMove> mapping. Or so the
4939 // popup can perhaps be closed, just like in the terminal.
4940 gui_send_mouse_event(MOUSE_MOVE, x, y, FALSE, 0);
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004941}
4942
4943/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004944 * Get the window where the mouse pointer is on.
4945 * Returns NULL if not found.
4946 */
4947 win_T *
4948gui_mouse_window(mouse_find_T popup)
4949{
4950 int x, y;
4951
4952 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4953 return NULL;
4954 gui_mch_getmouse(&x, &y);
4955
4956 // Only use the mouse when it's on the Vim window
4957 if (x >= 0 && x <= Columns * gui.char_width
4958 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4959 return xy2win(x, y, popup);
4960 return NULL;
4961}
4962
4963/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 * Called when mouse should be moved to window with focus.
4965 */
4966 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004967gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 win_T *wp = NULL;
4970
4971 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004972
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004973 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01004974 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00004976 validate_cline_row();
4977 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
4978 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 }
4981}
4982
4983/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004984 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004985 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004988xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 int row;
4991 int col;
4992 win_T *wp;
4993
4994 row = Y_2_ROW(y);
4995 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01004996 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004998 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02004999 if (wp == NULL)
5000 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005001#ifdef FEAT_MOUSESHAPE
Bram Moolenaar24959102022-05-07 20:01:16 +01005002 if (State == MODE_HITRETURN || State == MODE_ASKMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 {
5004 if (Y_2_ROW(y) >= msg_row)
5005 update_mouseshape(SHAPE_IDX_MOREL);
5006 else
5007 update_mouseshape(SHAPE_IDX_MORE);
5008 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005009 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaar24959102022-05-07 20:01:16 +01005011 else if (!(State & MODE_CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005012 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaar24959102022-05-07 20:01:16 +01005014 else if (!(State & MODE_CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005015 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 update_mouseshape(SHAPE_IDX_STATUS);
5017 else
5018 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005020 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021}
5022
5023/*
5024 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5025 * File names may be given to redefine the args list.
5026 */
5027 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005028ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029{
5030 char_u *arg = eap->arg;
5031
5032 /*
5033 * Check for "-f" argument: foreground, don't fork.
5034 * Also don't fork when started with "gvim -f".
5035 * Do fork when using "gui -b".
5036 */
5037 if (arg[0] == '-'
5038 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005039 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 {
5041 gui.dofork = (arg[1] == 'b');
5042 eap->arg = skipwhite(eap->arg + 2);
5043 }
5044 if (!gui.in_use)
5045 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005046#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005047 if (!gui.starting)
5048 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02005049 emsg(_(e_gui_cannot_be_used_not_enabled_at_compile_time));
Bram Moolenaar257a3962019-12-29 15:19:03 +01005050 return;
5051 }
5052#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005053 // Clear the command. Needed for when forking+exiting, to avoid part
5054 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005056#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005057 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005058 gui_start(eap->arg);
5059 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005060#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005061 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005062#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005063 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005064#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005066 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 ex_next(eap);
5068}
5069
Bram Moolenaar4f974752019-02-17 17:44:42 +01005070#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005071 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5072 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005073 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074/*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01005075 * This is shared between Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077
5078/*
5079 * Callback function for do_in_runtimepath().
5080 */
5081 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005082gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005084 char_u *gfp_buffer = cookie;
5085
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 if (STRLEN(fname) >= MAXPATHL)
5087 *gfp_buffer = NUL;
5088 else
5089 STRCPY(gfp_buffer, fname);
5090}
5091
5092/*
5093 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5094 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5095 */
5096 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005097gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098{
5099 if (STRLEN(name) > MAXPATHL - 14)
5100 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005101 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005102 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005103 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 return FAIL;
5105 return OK;
5106}
5107
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005108# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109/*
5110 * Given the name of the "icon=" argument, try finding the bitmap file for the
5111 * icon. If it is an absolute path name, use it as it is. Otherwise append
5112 * "ext" and search for it in 'runtimepath'.
5113 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5114 * contains "name".
5115 */
5116 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005117gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118{
5119 char_u buf[MAXPATHL + 1];
5120
5121 expand_env(name, buffer, MAXPATHL);
5122 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5123 STRCPY(buffer, buf);
5124}
5125# endif
5126#endif
5127
Bram Moolenaar9e175142020-04-30 22:51:01 +02005128#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5129 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005131display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132{
5133 char_u *p;
5134
5135 if (isatty(2))
5136 fflush(stderr);
5137 else if (error_ga.ga_data != NULL)
5138 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005139 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5141 if (!isspace(*p))
5142 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005143 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 if (STRLEN(p) > 2000)
5145 STRCPY(p + 2000 - 14, "...(truncated)");
5146 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005147 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 break;
5149 }
5150 ga_clear(&error_ga);
5151 }
5152}
5153#endif
5154
5155#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5156/*
5157 * Return TRUE if still starting up and there is no place to enter text.
5158 * For GTK and X11 we check if stderr is not a tty, which means we were
5159 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5160 * allow typing on stdin.
5161 */
5162 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005163no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164{
5165 return ((!gui.in_use || gui.starting)
5166# ifndef NO_CONSOLE
5167 && !isatty(0) && !isatty(2)
5168# endif
5169 );
5170}
5171#endif
5172
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005173#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005174 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005175 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176/*
5177 * Update the current window and the screen.
5178 */
5179 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005180gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005182# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005183 linenr_T conceal_old_cursor_line = 0;
5184 linenr_T conceal_new_cursor_line = 0;
5185 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005186# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005187
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 update_topline();
5189 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005190
Bram Moolenaar30613902019-12-01 22:11:18 +01005191 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005192 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005193# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005194 || popup_visible
5195# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005196# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005197 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005198# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005199 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005200 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005201 if (has_cursormoved())
5202 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
K.Takata6e1d31e2022-02-03 13:05:32 +00005203# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005204 if (popup_visible)
5205 popup_check_cursor_pos();
K.Takata6e1d31e2022-02-03 13:05:32 +00005206# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005207# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005208 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005209 {
5210 conceal_old_cursor_line = last_cursormoved.lnum;
5211 conceal_new_cursor_line = curwin->w_cursor.lnum;
5212 conceal_update_lines = TRUE;
5213 }
5214# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005215 last_cursormoved = curwin->w_cursor;
5216 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005217
LemonBoy09371822022-04-08 15:18:45 +01005218 if (!finish_op)
zeertzjqd58862d2022-04-12 11:32:48 +01005219 may_trigger_winscrolled();
LemonBoy09371822022-04-08 15:18:45 +01005220
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005221# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005222 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005223 && (conceal_old_cursor_line != conceal_new_cursor_line
5224 || conceal_cursor_line(curwin)
5225 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005226 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005227 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005228 redrawWinline(curwin, conceal_old_cursor_line);
5229 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005230 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005231 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005232 }
5233# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005234 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005235 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005236 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237}
5238#endif
5239
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005240#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241/*
5242 * Get the text to use in a find/replace dialog. Uses the last search pattern
5243 * if the argument is empty.
5244 * Returns an allocated string.
5245 */
5246 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005247get_find_dialog_text(
5248 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005249 int *wwordp, // return: TRUE if \< \> found
5250 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251{
5252 char_u *text;
5253
5254 if (*arg == NUL)
5255 text = last_search_pat();
5256 else
5257 text = arg;
5258 if (text != NULL)
5259 {
5260 text = vim_strsave(text);
5261 if (text != NULL)
5262 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005263 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 int i;
5265
Bram Moolenaar30613902019-12-01 22:11:18 +01005266 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5268 {
5269 mch_memmove(text, text + 2, (size_t)(len - 1));
5270 len -= 2;
5271 }
5272
Bram Moolenaar30613902019-12-01 22:11:18 +01005273 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5275 {
5276 *mcasep = (text[1] == 'C');
5277 mch_memmove(text, text + 2, (size_t)(len - 1));
5278 len -= 2;
5279 }
5280
Bram Moolenaar30613902019-12-01 22:11:18 +01005281 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 if (len >= 4
5283 && STRNCMP(text, "\\<", 2) == 0
5284 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5285 {
5286 *wwordp = TRUE;
5287 mch_memmove(text, text + 2, (size_t)(len - 4));
5288 text[len - 4] = NUL;
5289 }
5290
Bram Moolenaar30613902019-12-01 22:11:18 +01005291 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 for (i = 0; i + 1 < len; ++i)
5293 if (text[i] == '\\' && (text[i + 1] == '/'
5294 || text[i + 1] == '?'))
5295 {
5296 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5297 --len;
5298 }
5299 }
5300 }
5301 return text;
5302}
5303
5304/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 * Handle the press of a button in the find-replace dialog.
5306 * Return TRUE when something was added to the input buffer.
5307 */
5308 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005309gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005310 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005311 char_u *find_text,
5312 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005313 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314{
5315 garray_T ga;
5316 int i;
5317 int type = (flags & FRD_TYPE_MASK);
5318 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005319 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005320 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005321 static int busy = FALSE;
5322
Bram Moolenaar30613902019-12-01 22:11:18 +01005323 // When the screen is being updated we should not change buffers and
5324 // windows structures, it may cause freed memory to be used. Also don't
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005325 // do this recursively (pressing "Find" quickly several times).
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005326 if (updating_screen || busy)
5327 return FALSE;
5328
Bram Moolenaar30613902019-12-01 22:11:18 +01005329 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005330 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5331 return FALSE;
5332
5333 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334
5335 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005336 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 ga_concat(&ga, (char_u *)"%s/");
5338
5339 ga_concat(&ga, (char_u *)"\\V");
5340 if (flags & FRD_MATCH_CASE)
5341 ga_concat(&ga, (char_u *)"\\C");
5342 else
5343 ga_concat(&ga, (char_u *)"\\c");
5344 if (flags & FRD_WHOLE_WORD)
5345 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005346 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005347 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5348 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005349 ga_concat(&ga, p);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005350 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 if (flags & FRD_WHOLE_WORD)
5352 ga_concat(&ga, (char_u *)"\\>");
5353
5354 if (type == FRD_REPLACEALL)
5355 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 ga_concat(&ga, (char_u *)"/");
matveyt2834ebd2022-09-06 17:00:15 +01005357 // Escape slash and backslash.
5358 // Also escape tilde and ampersand if 'magic' is set.
5359 p = vim_strsave_escaped(repl_text,
5360 p_magic ? (char_u *)"/\\~&" : (char_u *)"/\\");
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005361 if (p != NULL)
5362 ga_concat(&ga, p);
5363 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005365 }
5366 ga_append(&ga, NUL);
5367
5368 if (type == FRD_REPLACE)
5369 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005370 // Do the replacement when the text at the cursor matches. Thus no
5371 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005372 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5373 regmatch.rm_ic = 0;
5374 if (regmatch.regprog != NULL)
5375 {
5376 p = ml_get_cursor();
5377 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5378 && regmatch.startp[0] == p)
5379 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005380 // Clear the command line to remove any old "No match"
5381 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005382 msg_end_prompt();
5383
5384 if (u_save_cursor() == OK)
5385 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005386 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005387 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005388
5389 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005390 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005391 ins_str(repl_text);
5392 }
5393 }
5394 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005395 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005396 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005397 }
5398 }
5399
5400 if (type == FRD_REPLACEALL)
5401 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005402 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005403 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 do_cmdline_cmd(ga.ga_data);
5405 }
5406 else
5407 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005408 int searchflags = SEARCH_MSG + SEARCH_MARK;
5409
Bram Moolenaar30613902019-12-01 22:11:18 +01005410 // Search for the next match.
5411 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005412 if (type == FRD_REPLACE)
5413 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005415 if (down)
5416 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005417 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005418 }
5419 else
5420 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005421 // We need to escape '?' if and only if we are searching in the up
5422 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005423 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5424 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005425 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005426 vim_free(p);
5427 }
5428
Bram Moolenaar30613902019-12-01 22:11:18 +01005429 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 }
5431
Bram Moolenaar30613902019-12-01 22:11:18 +01005432 // Don't want to pass did_emsg to other code, it may cause disabling
5433 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005434 did_emsg = save_did_emsg;
5435
Bram Moolenaar24959102022-05-07 20:01:16 +01005436 if (State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005438 gui_update_screen(); // update the screen
5439 msg_didout = 0; // overwrite any message
5440 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 }
5442
5443 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005444 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 return (ga.ga_len > 0);
5446}
5447
5448#endif
5449
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005450#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451/*
5452 * Jump to the window at specified point (x, y).
5453 */
5454 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005455gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456{
5457 int row = Y_2_ROW(y);
5458 int col = X_2_COL(x);
5459 win_T *wp;
5460
5461 if (row >= 0 && col >= 0)
5462 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005463 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 if (wp != NULL && wp != curwin)
5465 win_goto(wp);
5466 }
5467}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468
5469/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005470 * Function passed to handle_drop() for the actions to be done after the
5471 * argument list has been updated.
5472 */
5473 static void
5474drop_callback(void *cookie)
5475{
5476 char_u *p = cookie;
Bram Moolenaar4671e882021-11-22 17:21:48 +00005477 int do_shorten = FALSE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005478
Bram Moolenaar30613902019-12-01 22:11:18 +01005479 // If Shift held down, change to first file's directory. If the first
5480 // item is a directory, change to that directory (and let the explorer
5481 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005482 if (p != NULL)
5483 {
5484 if (mch_isdir(p))
5485 {
5486 if (mch_chdir((char *)p) == 0)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005487 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005488 }
5489 else if (vim_chdirfile(p, "drop") == OK)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005490 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005491 vim_free(p);
Bram Moolenaar4671e882021-11-22 17:21:48 +00005492 if (do_shorten)
5493 {
5494 shorten_fnames(TRUE);
5495 last_chdir_reason = "drop";
5496 }
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005497 }
5498
Bram Moolenaar30613902019-12-01 22:11:18 +01005499 // Update the screen display
Bram Moolenaara4d158b2022-08-14 14:17:45 +01005500 update_screen(UPD_NOT_VALID);
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005501# ifdef FEAT_MENU
5502 gui_update_menus(0);
5503# endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005504 maketitle();
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005505 setcursor();
5506 out_flush_cursor(FALSE, FALSE);
5507}
5508
5509/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 * Process file drop. Mouse cursor position, key modifiers, name of files
5511 * and count of files are given. Argument "fnames[count]" has full pathnames
5512 * of dropped files, they will be freed in this function, and caller can't use
5513 * fnames after call this function.
5514 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005516gui_handle_drop(
5517 int x UNUSED,
5518 int y UNUSED,
5519 int_u modifiers,
5520 char_u **fnames,
5521 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522{
5523 int i;
5524 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005525 static int entered = FALSE;
5526
5527 /*
5528 * This function is called by event handlers. Just in case we get a
5529 * second event before the first one is handled, ignore the second one.
5530 * Not sure if this can ever happen, just in case.
5531 */
5532 if (entered)
5533 return;
5534 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535
5536 /*
5537 * When the cursor is at the command line, add the file names to the
5538 * command line, don't edit the files.
5539 */
Bram Moolenaar24959102022-05-07 20:01:16 +01005540 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
5542 shorten_filenames(fnames, count);
5543 for (i = 0; i < count; ++i)
5544 {
5545 if (fnames[i] != NULL)
5546 {
5547 if (i > 0)
5548 add_to_input_buf((char_u*)" ", 1);
5549
Bram Moolenaar30613902019-12-01 22:11:18 +01005550 // We don't know what command is used thus we can't be sure
5551 // about which characters need to be escaped. Only escape the
5552 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553# ifdef BACKSLASH_IN_FILENAME
5554 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5555# else
5556 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5557# endif
5558 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005559 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 vim_free(p);
5561 vim_free(fnames[i]);
5562 }
5563 }
5564 vim_free(fnames);
5565 }
5566 else
5567 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005568 // Go to the window under mouse cursor, then shorten given "fnames" by
5569 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 shorten_filenames(fnames, count);
5572
Bram Moolenaar30613902019-12-01 22:11:18 +01005573 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 if ((modifiers & MOUSE_SHIFT) != 0)
5575 p = vim_strsave(fnames[0]);
5576 else
5577 p = NULL;
5578
Bram Moolenaar30613902019-12-01 22:11:18 +01005579 // Handle the drop, :edit or :split to get to the file. This also
5580 // frees fnames[]. Skip this if there is only one item, it's a
5581 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5583 && mch_isdir(fnames[0]))
5584 {
5585 vim_free(fnames[0]);
5586 vim_free(fnames);
Yegappan Lakshmanan18d46582021-06-23 20:46:52 +02005587 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 }
5589 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005590 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
Bram Moolenaar4671e882021-11-22 17:21:48 +00005591 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005593
5594 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595}
5596#endif
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005597
5598/*
5599 * Check if "key" is to interrupt us. Handles a key that has not had modifiers
5600 * applied yet.
5601 * Return the key with modifiers applied if so, NUL if not.
5602 */
5603 int
5604check_for_interrupt(int key, int modifiers_arg)
5605{
5606 int modifiers = modifiers_arg;
5607 int c = merge_modifyOtherKeys(key, &modifiers);
5608
5609 if ((c == Ctrl_C && ctrl_c_interrupts)
Bram Moolenaaraf50e892020-08-01 13:22:10 +02005610#ifdef UNIX
5611 || (intr_char != Ctrl_C && c == intr_char)
5612#endif
5613 )
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005614 {
5615 got_int = TRUE;
5616 return c;
5617 }
5618 return NUL;
5619}
5620
Bram Moolenaar2d12c252022-06-13 21:42:45 +01005621/*
5622 * If the "--gui-log-file fname" argument is given write the dialog title and
5623 * message to a file and return TRUE. Otherwise return FALSE.
5624 * When there is any problem opening the file or writing to the file this is
5625 * ignored, showing the dialog might get the test to get stuck.
5626 */
5627 int
5628gui_dialog_log(char_u *title, char_u *message)
5629{
5630 char_u *fname = get_gui_dialog_file();
5631 FILE *fd;
5632
5633 if (fname == NULL)
5634 return FALSE;
5635
5636 fd = mch_fopen((char *)fname, "a");
5637 if (fd != NULL)
5638 {
5639 fprintf(fd, "%s: %s\n", title, message);
5640 fclose(fd);
5641 }
5642 return TRUE;
5643}