blob: 2275189ba6ee3a8ae7b3190cc9dbe0dd4f772313 [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
448#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
449 gui.footer_height = 0;
450#endif
451#ifdef FEAT_BEVAL_TIP
452 gui.tooltip_fontset = NOFONTSET;
453#endif
454
455 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
456 gui.prev_wrap = -1;
457
K.Takata6e1d31e2022-02-03 13:05:32 +0000458#ifdef FEAT_GUI_GTK
Dusan Popovic4eeedc02021-10-16 20:52:05 +0100459 CLEAR_FIELD(gui.ligatures_map);
460#endif
461
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200462#if defined(ALWAYS_USE_GUI) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463 result = OK;
464#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200465# ifdef FEAT_GUI_GTK
466 /*
467 * Note: Don't call gtk_init_check() before fork, it will be called after
468 * the fork. When calling it before fork, it make vim hang for a while.
469 * See gui_do_fork().
470 * Use a simpler check if the GUI window can probably be opened.
471 */
Bram Moolenaar717e1962016-08-10 21:28:44 +0200472 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200473# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200475# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476#endif
477 return result;
478}
479
480/*
481 * This is the call which starts the GUI.
482 */
483 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100484gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485{
486 win_T *wp;
487 static int recursive = 0;
488
489 /*
Dominique Pelleaf4a61a2021-12-27 17:21:41 +0000490 * It's possible to use ":gui" in a .gvimrc file. The first half of this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 * function will then be executed at the first call, the rest by the
492 * recursive call. This allow the shell to be opened halfway reading a
493 * gvimrc file.
494 */
495 if (!recursive)
496 {
497 ++recursive;
498
499 clip_init(TRUE);
500
Bram Moolenaar30613902019-12-01 22:11:18 +0100501 // If can't initialize, don't try doing the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 if (gui_init_check() == FAIL)
503 {
504 --recursive;
505 clip_init(FALSE);
506 return;
507 }
508
509 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000510 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
511 * breaks the Paste toolbar button.
512 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100513 set_option_value_give_err((char_u *)"paste", 0L, NULL, 0);
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000514
Bram Moolenaaracc770a2020-04-12 15:11:06 +0200515 // Set t_Co to the number of colors: RGB.
516 set_color_count(256 * 256 * 256);
517
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000518 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 * Set up system-wide default menus.
520 */
521#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
522 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
523 {
524 sys_menu = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100525 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 sys_menu = FALSE;
527 }
528#endif
529
530 /*
531 * Switch on the mouse by default, unless the user changed it already.
532 * This can then be changed in the .gvimrc.
533 */
534 if (!option_was_set((char_u *)"mouse"))
535 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000536 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
538 /*
539 * If -U option given, use only the initializations from that file and
540 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
541 */
542 if (use_gvimrc != NULL)
543 {
544 if (STRCMP(use_gvimrc, "NONE") != 0
545 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100546 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000547 semsg(_(e_cannot_read_from_str), use_gvimrc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 }
549 else
550 {
551 /*
552 * Get system wide defaults for gvim, only when file name defined.
553 */
554#ifdef SYS_GVIMRC_FILE
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100555 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556#endif
557
558 /*
559 * Try to read GUI initialization commands from the following
560 * places:
561 * - environment variable GVIMINIT
562 * - the user gvimrc file (~/.gvimrc)
563 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
564 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
565 * The first that exists is used, the rest is ignored.
566 */
567 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000568 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100569 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000571 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100572 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200574#ifdef USR_GVIMRC_FILE3
575 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100576 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 )
579 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200580#ifdef USR_GVIMRC_FILE4
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100581 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE,
582 DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583#endif
584 }
585
586 /*
587 * Read initialization commands from ".gvimrc" in current
588 * directory. This is only done if the 'exrc' option is set.
589 * Because of security reasons we disallow shell and write
590 * commands now, except for unix if the file is owned by the user
591 * or 'secure' option has been reset in environment of global
592 * ".gvimrc".
593 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
594 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
595 */
596 if (p_exrc)
597 {
598#ifdef UNIX
599 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200600 stat_T s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601
Bram Moolenaar30613902019-12-01 22:11:18 +0100602 // if ".gvimrc" file is not owned by user, set 'secure'
603 // mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
605 secure = p_secure;
606 }
607#else
608 secure = p_secure;
609#endif
610
611 if ( fullpathcmp((char_u *)USR_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#ifdef SYS_GVIMRC_FILE
614 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200615 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616#endif
617#ifdef USR_GVIMRC_FILE2
618 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200619 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620#endif
621#ifdef USR_GVIMRC_FILE3
622 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200623 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200625#ifdef USR_GVIMRC_FILE4
626 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200627 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200628#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100630 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631
632 if (secure == 2)
633 need_wait_return = TRUE;
634 secure = 0;
635 }
636 }
637
638 if (need_wait_return || msg_didany)
639 wait_return(TRUE);
640
641 --recursive;
642 }
643
Bram Moolenaar30613902019-12-01 22:11:18 +0100644 // If recursive call opened the shell, return here from the first call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 if (gui.in_use)
646 return;
647
648 /*
649 * Create the GUI shell.
650 */
Bram Moolenaar30613902019-12-01 22:11:18 +0100651 gui.in_use = TRUE; // Must be set after menus have been set up
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 if (gui_mch_init() == FAIL)
653 goto error;
654
Bram Moolenaar30613902019-12-01 22:11:18 +0100655 // Avoid a delay for an error message that was printed in the terminal
656 // where Vim was started.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 emsg_on_display = FALSE;
658 msg_scrolled = 0;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100659 clear_sb_text(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 need_wait_return = FALSE;
661 msg_didany = FALSE;
662
663 /*
664 * Check validity of any generic resources that may have been loaded.
665 */
666 if (gui.border_width < 0)
667 gui.border_width = 0;
668
669 /*
670 * Set up the fonts. First use a font specified with "-fn" or "-font".
671 */
672 if (font_argument != NULL)
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100673 set_option_value_give_err((char_u *)"gfn",
674 0L, (char_u *)font_argument, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 if (
676#ifdef FEAT_XFONTSET
677 (*p_guifontset == NUL
678 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
679#endif
680 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
681 : p_guifont, FALSE) == FAIL)
682 {
Bram Moolenaara6f79292022-01-04 21:30:47 +0000683 emsg(_(e_cannot_start_gui_no_valid_font_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 goto error2;
685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 if (gui_get_wide_font() == FAIL)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000687 emsg(_(e_guifontwide_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688
689 gui.num_cols = Columns;
690 gui.num_rows = Rows;
691 gui_reset_scroll_region();
692
Bram Moolenaar30613902019-12-01 22:11:18 +0100693 // Create initial scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 FOR_ALL_WINDOWS(wp)
695 {
696 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
697 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
698 }
699 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
700
701#ifdef FEAT_MENU
702 gui_create_initial_menus(root_menu);
703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704#ifdef FEAT_SIGN_ICONS
705 sign_gui_started();
706#endif
707
Bram Moolenaar30613902019-12-01 22:11:18 +0100708 // Configure the desired menu and scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 gui_init_which_components(NULL);
710
Bram Moolenaar30613902019-12-01 22:11:18 +0100711 // All components of the GUI have been created now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 gui.shell_created = TRUE;
713
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100714#ifdef FEAT_GUI_MSWIN
Bram Moolenaar4814ccb2018-12-22 18:44:53 +0100715 // Set the shell size, adjusted for the screen size. For GTK this only
716 // works after the shell has been opened, thus it is further down.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100717 // If the window is already maximized (e.g. when --windowid is passed in),
718 // we want to use the system-provided dimensions by passing FALSE to
719 // mustset. Otherwise, we want to initialize with the default rows/columns.
720 if (gui_mch_maximized())
721 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
722 else
723 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100724#else
725# ifndef FEAT_GUI_GTK
726 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
727# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728#endif
729#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +0100730 // Need to set the size of the menubar after all the menus have been
731 // created.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 gui_mch_compute_menu_height((Widget)0);
733#endif
734
735 /*
736 * Actually open the GUI shell.
737 */
738 if (gui_mch_open() != FAIL)
739 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 maketitle();
741 resettitle();
Bram Moolenaar651fca82021-11-29 20:39:38 +0000742
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 init_gui_options();
744#ifdef FEAT_ARABIC
Bram Moolenaar30613902019-12-01 22:11:18 +0100745 // Our GUI can't do bidi.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 p_tbidi = FALSE;
747#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000748#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100749 // Give GTK+ a chance to put all widget's into place.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000751
752# ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +0100753 // If there is no 'm' in 'guioptions' we need to remove the menu now.
754 // It was still there to make F10 work.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000755 if (vim_strchr(p_go, GO_MENUS) == NULL)
756 {
757 --gui.starting;
758 gui_mch_enable_menu(FALSE);
759 ++gui.starting;
760 gui_mch_update();
761 }
762# endif
763
Bram Moolenaar30613902019-12-01 22:11:18 +0100764 // Now make sure the shell fits on the screen.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100765 if (gui_mch_maximized())
766 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
767 else
768 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100770 // When 'lines' was set while starting up the topframe may have to be
771 // resized.
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000772 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000773
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100774#ifdef FEAT_BEVAL_GUI
Bram Moolenaar30613902019-12-01 22:11:18 +0100775 // Always create the Balloon Evaluation area, but disable it when
776 // 'ballooneval' is off.
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100777 if (balloonEval != NULL)
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200778 {
779# ifdef FEAT_VARTABS
780 vim_free(balloonEval->vts);
781# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100782 vim_free(balloonEval);
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200783 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100784 balloonEvalForTerm = FALSE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000785# ifdef FEAT_GUI_GTK
786 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
787 &general_beval_cb, NULL);
788# else
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100789# if defined(FEAT_GUI_MOTIF)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000790 {
791 extern Widget textArea;
792 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000793 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000794 }
795# else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100796# ifdef FEAT_GUI_MSWIN
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000797 balloonEval = gui_mch_create_beval_area(NULL, NULL,
798 &general_beval_cb, NULL);
799# endif
800# endif
801# endif
802 if (!p_beval)
803 gui_mch_disable_beval_area(balloonEval);
804#endif
Bram Moolenaarad772a62020-06-01 14:07:49 +0200805
806#ifndef FEAT_GUI_MSWIN
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200807 // In the GUI modifiers are prepended to keys.
Bram Moolenaarad772a62020-06-01 14:07:49 +0200808 // Don't do this for MS-Windows yet, it sends CTRL-K without the
809 // modifier.
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200810 seenModifyOtherKeys = TRUE;
Bram Moolenaarad772a62020-06-01 14:07:49 +0200811#endif
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000812
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
814 if (!im_xim_isvalid_imactivate())
Bram Moolenaar1d423ef2022-01-02 21:26:16 +0000815 emsg(_(e_value_of_imactivatekey_is_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100817 // When 'cmdheight' was set during startup it may not have taken
818 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000819 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000820 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822 return;
823 }
824
825error2:
826#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100827 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 gui_mch_uninit();
829#endif
830
831error:
832 gui.in_use = FALSE;
833 clip_init(FALSE);
834}
835
836
837 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100838gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839{
Bram Moolenaar30613902019-12-01 22:11:18 +0100840 // don't free the fonts, it leads to a BUS error
841 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 gui.in_use = FALSE;
844 gui_mch_exit(rc);
845}
846
Bram Moolenaar9372a112005-12-06 19:59:18 +0000847#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200848 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000849# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850/*
851 * Called when the GUI shell is closed by the user. If there are no changed
852 * files Vim exits, otherwise there will be a dialog to ask the user what to
853 * do.
854 * When this function returns, Vim should NOT exit!
855 */
856 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100857gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858{
Bram Moolenaar3552e742021-05-29 12:21:58 +0200859 cmdmod_T save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860
Bram Moolenaar3552e742021-05-29 12:21:58 +0200861 if (before_quit_autocmds(curwin, TRUE, FALSE))
862 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863
Bram Moolenaar30613902019-12-01 22:11:18 +0100864 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 exiting = TRUE;
866# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +0200867 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868# endif
869# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +0200870 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100872 // If there are changed buffers, present the user with a dialog if
873 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100874 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 getout(0);
876
877 exiting = FALSE;
878 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100879 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880}
881#endif
882
883/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200884 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * first font name that works is used. If none is found, use the default
886 * font.
887 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
888 * Return OK when able to set the font. When it failed FAIL is returned and
889 * the fonts are unchanged.
890 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100892gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894#define FONTLEN 320
895 char_u font_name[FONTLEN];
896 int font_list_empty = FALSE;
897 int ret = FAIL;
898
899 if (!gui.in_use)
900 return FAIL;
901
902 font_name[0] = NUL;
903 if (*font_list == NUL)
904 font_list_empty = TRUE;
905 else
906 {
907#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100908 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if (fontset)
910 ret = gui_mch_init_font(font_list, TRUE);
911 else
912#endif
913 while (*font_list != NUL)
914 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100915 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
917
Bram Moolenaar30613902019-12-01 22:11:18 +0100918 // Careful!!! The Win32 version of gui_mch_init_font(), when
919 // called with "*" will change p_guifont to the selected font
920 // name, which frees the old value. This makes font_list
921 // invalid. Thus when OK is returned here, font_list must no
922 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (gui_mch_init_font(font_name, FALSE) == OK)
924 {
K.Takata94373c42022-01-27 15:04:22 +0000925#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar30613902019-12-01 22:11:18 +0100926 // If it's a Unicode font, try setting 'guifontwide' to a
927 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
929 && strstr((char *)font_name, "10646") != NULL)
930 set_guifontwide(font_name);
931#endif
932 ret = OK;
933 break;
934 }
935 }
936 }
937
938 if (ret != OK
939 && STRCMP(font_list, "*") != 0
940 && (font_list_empty || gui.norm_font == NOFONT))
941 {
942 /*
943 * Couldn't load any font in 'font_list', keep the current font if
944 * there is one. If 'font_list' is empty, or if there is no current
945 * font, tell gui_mch_init_font() to try to find a font we can load.
946 */
947 ret = gui_mch_init_font(NULL, FALSE);
948 }
949
950 if (ret == OK)
951 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200952#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100953 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954# ifdef FEAT_XFONTSET
955 if (gui.fontset != NOFONTSET)
956 gui_mch_set_fontset(gui.fontset);
957 else
958# endif
959 gui_mch_set_font(gui.norm_font);
960#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100961 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963
964 return ret;
965}
966
K.Takata94373c42022-01-27 15:04:22 +0000967#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968/*
969 * Try setting 'guifontwide' to a font twice as wide as "name".
970 */
971 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100972set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973{
974 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100975 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 char_u *wp = NULL;
977 char_u *p;
978 GuiFont font;
979
980 wp = wide_name;
981 for (p = name; *p != NUL; ++p)
982 {
983 *wp++ = *p;
984 if (*p == '-')
985 {
986 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100987 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 {
989 if (p[1] == '-')
990 *wp++ = '*';
991 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100992 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 {
994 ++p;
995 i = getdigits(&p);
996 if (i != 0)
997 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100998 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 sprintf((char *)wp, "%d%s", i * 2, p);
1000 font = gui_mch_get_font(wide_name, FALSE);
1001 if (font != NOFONT)
1002 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001003 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 gui.wide_font = font;
1005 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001006 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 }
1008 }
1009 break;
1010 }
1011 }
1012 }
1013}
K.Takata94373c42022-01-27 15:04:22 +00001014#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016/*
1017 * Get the font for 'guifontwide'.
1018 * Return FAIL for an invalid font name.
1019 */
1020 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001021gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022{
1023 GuiFont font = NOFONT;
1024 char_u font_name[FONTLEN];
1025 char_u *p;
1026
Bram Moolenaar30613902019-12-01 22:11:18 +01001027 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1028 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1031 {
1032 for (p = p_guifontwide; *p != NUL; )
1033 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001034 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1036 font = gui_mch_get_font(font_name, FALSE);
1037 if (font != NOFONT)
1038 break;
1039 }
1040 if (font == NOFONT)
1041 return FAIL;
1042 }
1043
1044 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001045#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001046 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (font != NOFONT && gui.norm_font != NOFONT
1048 && pango_font_description_equal(font, gui.norm_font))
1049 {
1050 gui.wide_font = NOFONT;
1051 gui_mch_free_font(font);
1052 }
1053 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001054#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001056#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001057 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001058#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001059 /*
1060 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1061 * support those fonts for 'guifontwide'.
1062 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 return OK;
1065}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001067#if defined(FEAT_GUI_GTK) || defined(PROTO)
1068/*
1069 * Set list of ascii characters that combined can create ligature.
1070 * Store them in char map for quick access from gui_gtk2_draw_string.
1071 */
1072 void
1073gui_set_ligatures(void)
1074{
1075 char_u *p;
1076
1077 if (*p_guiligatures != NUL)
1078 {
1079 // check for invalid characters
1080 for (p = p_guiligatures; *p != NUL; ++p)
1081 if (*p < 32 || *p > 127)
1082 {
1083 emsg(_(e_ascii_code_not_in_range));
1084 return;
1085 }
1086
1087 // store valid setting into ligatures_map
1088 CLEAR_FIELD(gui.ligatures_map);
1089 for (p = p_guiligatures; *p != NUL; ++p)
1090 gui.ligatures_map[*p] = 1;
1091 }
1092 else
1093 CLEAR_FIELD(gui.ligatures_map);
1094}
Dusan Popovicce59b9f2021-11-22 17:18:44 +00001095
1096/*
1097 * Adjust the columns to undraw for when the cursor is on ligatures.
1098 */
1099 static void
1100gui_adjust_undraw_cursor_for_ligatures(int *startcol, int *endcol)
1101{
1102 int off;
1103
1104 if (ScreenLines == NULL || *p_guiligatures == NUL)
1105 return;
1106
1107 // expand before the cursor for all the chars in gui.ligatures_map
1108 off = LineOffset[gui.cursor_row] + *startcol;
1109 if (gui.ligatures_map[ScreenLines[off]])
1110 while (*startcol > 0 && gui.ligatures_map[ScreenLines[--off]])
1111 (*startcol)--;
1112
1113 // expand after the cursor for all the chars in gui.ligatures_map
1114 off = LineOffset[gui.cursor_row] + *endcol;
1115 if (gui.ligatures_map[ScreenLines[off]])
1116 while (*endcol < ((int)screen_Columns - 1)
1117 && gui.ligatures_map[ScreenLines[++off]])
1118 (*endcol)++;
1119}
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001120#endif
1121
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001122 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001123gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124{
1125 gui.row = row;
1126 gui.col = col;
1127}
1128
1129/*
1130 * gui_check_pos - check if the cursor is on the screen.
1131 */
1132 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001133gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134{
1135 if (gui.row >= screen_Rows)
1136 gui.row = screen_Rows - 1;
1137 if (gui.col >= screen_Columns)
1138 gui.col = screen_Columns - 1;
1139 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1140 gui.cursor_is_valid = FALSE;
1141}
1142
1143/*
1144 * Redraw the cursor if necessary or when forced.
1145 * Careful: The contents of ScreenLines[] must match what is on the screen,
1146 * otherwise this goes wrong. May need to call out_flush() first.
1147 */
1148 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001149gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001150 int force, // when TRUE, update even when not moved
1151 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152{
1153 int cur_width = 0;
1154 int cur_height = 0;
1155 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001156 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001158#ifdef FEAT_TERMINAL
1159 guicolor_T shape_fg = INVALCOLOR;
1160 guicolor_T shape_bg = INVALCOLOR;
1161#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001162 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1163 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 int attr;
1165 attrentry_T *aep = NULL;
1166
Bram Moolenaar30613902019-12-01 22:11:18 +01001167 // Don't update the cursor when halfway busy scrolling or the screen size
1168 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001169 if (!can_update_cursor || screen_Columns != gui.num_cols
1170 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 return;
1172
1173 gui_check_pos();
1174 if (!gui.cursor_is_valid || force
1175 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1176 {
1177 gui_undraw_cursor();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02001178
1179 // If a cursor-less sleep is ongoing, leave the cursor invisible
1180 if (cursor_is_sleeping())
1181 return;
1182
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 if (gui.row < 0)
1184 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001185#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1187 im_set_position(gui.row, gui.col);
1188#endif
1189 gui.cursor_row = gui.row;
1190 gui.cursor_col = gui.col;
1191
Bram Moolenaar30613902019-12-01 22:11:18 +01001192 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 if (!screen_cleared || ScreenLines == NULL)
1194 return;
1195
Bram Moolenaar30613902019-12-01 22:11:18 +01001196 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 if (clear_selection)
1198 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001199 // Check that the cursor is inside the shell (resizing may have made
1200 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1202 return;
1203
1204 gui.cursor_is_valid = TRUE;
1205
1206 /*
1207 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001208 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001210#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001211 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001212 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001214#endif
1215 shape = &shape_table[get_shape_idx(FALSE)];
Bram Moolenaar24959102022-05-07 20:01:16 +01001216 if (State & MODE_LANGMAP)
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001217 id = shape->id_lm;
1218 else
1219 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220
Bram Moolenaar30613902019-12-01 22:11:18 +01001221 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 cfg = INVALCOLOR;
1223 cbg = INVALCOLOR;
1224 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001225 gui_mch_set_blinking(shape->blinkwait,
1226 shape->blinkon,
1227 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001228 if (shape->blinkwait == 0 || shape->blinkon == 0
1229 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001230 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001231#ifdef FEAT_TERMINAL
1232 if (shape_bg != INVALCOLOR)
1233 {
1234 cattr = 0;
1235 cfg = shape_fg;
1236 cbg = shape_bg;
1237 }
1238 else
1239#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (id > 0)
1241 {
1242 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001243#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 {
1245 static int iid;
1246 guicolor_T fg, bg;
1247
Bram Moolenaarc236c162008-07-13 17:41:49 +00001248 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001249# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001250 preedit_get_status()
1251# else
1252 im_get_status()
1253# endif
1254 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 {
1256 iid = syn_name2id((char_u *)"CursorIM");
1257 if (iid > 0)
1258 {
1259 syn_id2colors(iid, &fg, &bg);
1260 if (bg != INVALCOLOR)
1261 cbg = bg;
1262 if (fg != INVALCOLOR)
1263 cfg = fg;
1264 }
1265 }
1266 }
1267#endif
1268 }
1269
1270 /*
1271 * Get the attributes for the character under the cursor.
1272 * When no cursor color was given, use the character color.
1273 */
1274 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1275 if (attr > HL_ALL)
1276 aep = syn_gui_attr2entry(attr);
1277 if (aep != NULL)
1278 {
1279 attr = aep->ae_attr;
1280 if (cfg == INVALCOLOR)
1281 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1282 : aep->ae_u.gui.fg_color);
1283 if (cbg == INVALCOLOR)
1284 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1285 : aep->ae_u.gui.bg_color);
1286 }
1287 if (cfg == INVALCOLOR)
1288 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1289 if (cbg == INVALCOLOR)
1290 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1291
1292#ifdef FEAT_XIM
1293 if (aep != NULL)
1294 {
1295 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1296 : aep->ae_u.gui.bg_color);
1297 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1298 : aep->ae_u.gui.fg_color);
1299 if (xim_bg_color == INVALCOLOR)
1300 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1301 : gui.back_pixel;
1302 if (xim_fg_color == INVALCOLOR)
1303 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1304 : gui.norm_pixel;
1305 }
1306 else
1307 {
1308 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1309 : gui.back_pixel;
1310 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1311 : gui.norm_pixel;
1312 }
1313#endif
1314
1315 attr &= ~HL_INVERSE;
1316 if (cattr & HL_INVERSE)
1317 {
1318 cc = cbg;
1319 cbg = cfg;
1320 cfg = cc;
1321 }
1322 cattr &= ~HL_INVERSE;
1323
1324 /*
1325 * When we don't have window focus, draw a hollow cursor.
1326 */
1327 if (!gui.in_focus)
1328 {
1329 gui_mch_draw_hollow_cursor(cbg);
1330 return;
1331 }
1332
1333 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001334 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 {
1336 /*
1337 * Draw the text character with the cursor colors. Use the
1338 * character attributes plus the cursor attributes.
1339 */
1340 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001341 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1343 }
1344 else
1345 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001346#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 int col_off = FALSE;
1348#endif
1349 /*
1350 * First draw the partial cursor, then overwrite with the text
1351 * character, using a transparent background.
1352 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001353 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 {
1355 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001356 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 }
1358 else
1359 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001360 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 cur_width = gui.char_width;
1362 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001363 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1364 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001366 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001367 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001369#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 if (CURSOR_BAR_RIGHT)
1371 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001372 // gui.col points to the left half of the character but
1373 // the vertical line needs to be on the right half.
Bram Moolenaar30613902019-12-01 22:11:18 +01001374 // A double-wide horizontal line is also drawn from the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001375 // right half in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 col_off = TRUE;
1377 ++gui.col;
1378 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001382#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 if (col_off)
1384 --gui.col;
1385#endif
1386
Bram Moolenaar30613902019-12-01 22:11:18 +01001387#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1389 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1390 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1391 (guicolor_T)0, (guicolor_T)0, 0);
1392#endif
1393 }
1394 gui.highlight_mask = old_hl_mask;
1395 }
1396}
1397
1398#if defined(FEAT_MENU) || defined(PROTO)
Yegappan Lakshmananee47eac2022-06-29 12:55:36 +01001399 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001400gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001402# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (gui.menu_is_active && gui.in_use)
1404 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1405# endif
1406}
1407#endif
1408
1409/*
1410 * Position the various GUI components (text area, menu). The vertical
1411 * scrollbars are NOT handled here. See gui_update_scrollbars().
1412 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001414gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415{
1416 int text_area_x;
1417 int text_area_y;
1418 int text_area_width;
1419 int text_area_height;
1420
Bram Moolenaar30613902019-12-01 22:11:18 +01001421 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 ++hold_gui_events;
1423
1424 text_area_x = 0;
1425 if (gui.which_scrollbars[SBAR_LEFT])
1426 text_area_x += gui.scrollbar_width;
1427
1428 text_area_y = 0;
1429#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1430 gui.menu_width = total_width;
1431 if (gui.menu_is_active)
1432 text_area_y += gui.menu_height;
1433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434
K.Takata6e1d31e2022-02-03 13:05:32 +00001435#if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +02001436 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001437 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001438 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001439#endif
1440
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001441#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) \
K.Takatac81e9bf2022-01-16 14:15:49 +00001442 || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1444 {
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001445# if defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 gui_mch_set_toolbar_pos(0, text_area_y,
1447 gui.menu_width, gui.toolbar_height);
1448# endif
1449 text_area_y += gui.toolbar_height;
1450 }
1451#endif
1452
K.Takata6e1d31e2022-02-03 13:05:32 +00001453#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001454 gui_mch_set_tabline_pos(0, text_area_y,
1455 gui.menu_width, gui.tabline_height);
1456 if (gui_has_tabline())
1457 text_area_y += gui.tabline_height;
1458#endif
1459
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1461 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1462
1463 gui_mch_set_text_area_pos(text_area_x,
1464 text_area_y,
1465 text_area_width,
1466 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001467#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 + xim_get_status_area_height()
1469#endif
1470 );
1471#ifdef FEAT_MENU
1472 gui_position_menu();
1473#endif
1474 if (gui.which_scrollbars[SBAR_BOTTOM])
1475 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1476 text_area_x,
Bram Moolenaar203ec772020-07-17 20:43:43 +02001477 text_area_y + text_area_height
1478 + gui_mch_get_scrollbar_ypadding(),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 text_area_width,
1480 gui.scrollbar_height);
1481 gui.left_sbar_x = 0;
Bram Moolenaar203ec772020-07-17 20:43:43 +02001482 gui.right_sbar_x = text_area_x + text_area_width
1483 + gui_mch_get_scrollbar_xpadding();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484
1485 --hold_gui_events;
1486}
1487
Bram Moolenaar02743632005-07-25 20:42:36 +00001488/*
1489 * Get the width of the widgets and decorations to the side of the text area.
1490 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001492gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493{
1494 int base_width;
1495
1496 base_width = 2 * gui.border_offset;
1497 if (gui.which_scrollbars[SBAR_LEFT])
1498 base_width += gui.scrollbar_width;
1499 if (gui.which_scrollbars[SBAR_RIGHT])
1500 base_width += gui.scrollbar_width;
1501 return base_width;
1502}
1503
Bram Moolenaar02743632005-07-25 20:42:36 +00001504/*
1505 * Get the height of the widgets and decorations above and below the text area.
1506 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001508gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509{
1510 int base_height;
1511
1512 base_height = 2 * gui.border_offset;
1513 if (gui.which_scrollbars[SBAR_BOTTOM])
1514 base_height += gui.scrollbar_height;
1515#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001516 // We can't take the sizes properly into account until anything is
1517 // realized. Therefore we recalculate all the values here just before
1518 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519#else
1520# ifdef FEAT_MENU
1521 if (gui.menu_is_active)
1522 base_height += gui.menu_height;
1523# endif
1524# ifdef FEAT_TOOLBAR
1525 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 base_height += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001528# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001529 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001530 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001531 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001532# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533# ifdef FEAT_FOOTER
1534 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1535 base_height += gui.footer_height;
1536# endif
1537# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1538 base_height += gui_mch_text_area_extra_height();
1539# endif
1540#endif
1541 return base_height;
1542}
1543
1544/*
1545 * Should be called after the GUI shell has been resized. Its arguments are
1546 * the new width and height of the shell in pixels.
1547 */
1548 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001549gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550{
1551 static int busy = FALSE;
1552
Bram Moolenaar30613902019-12-01 22:11:18 +01001553 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 return;
1555
1556 /*
1557 * Can't resize the screen while it is being redrawn. Remember the new
1558 * size and handle it later.
1559 */
1560 if (updating_screen || busy)
1561 {
1562 new_pixel_width = pixel_width;
1563 new_pixel_height = pixel_height;
1564 return;
1565 }
1566
1567again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001568 new_pixel_width = 0;
1569 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 busy = TRUE;
1571
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001572#ifdef FEAT_GUI_HAIKU
1573 vim_lock_screen();
1574#endif
1575
Bram Moolenaar30613902019-12-01 22:11:18 +01001576 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 out_flush();
1578
1579 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001580 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
1582 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001584
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 /*
1586 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1587 * at the last line here (why does it have to be one row too low?).
1588 */
Bram Moolenaar24959102022-05-07 20:01:16 +01001589 if (State == MODE_ASKMORE || State == MODE_CONFIRM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 gui.row = gui.num_rows;
1591
Bram Moolenaar30613902019-12-01 22:11:18 +01001592 // Only comparing Rows and Columns may be sufficient, but let's stay on
1593 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1595 || gui.num_rows != Rows || gui.num_cols != Columns)
1596 shell_resized();
1597
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001598#ifdef FEAT_GUI_HAIKU
1599 vim_unlock_screen();
1600#endif
1601
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 gui_update_scrollbars(TRUE);
1603 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001604#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 xim_set_status_area();
1606#endif
1607
1608 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001609
Bram Moolenaar30613902019-12-01 22:11:18 +01001610 // We may have been called again while redrawing the screen.
1611 // Need to do it all again with the latest size then. But only if the size
1612 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 if (new_pixel_height)
1614 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001615 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1616 {
1617 new_pixel_width = 0;
1618 new_pixel_height = 0;
1619 }
1620 else
1621 {
1622 pixel_width = new_pixel_width;
1623 pixel_height = new_pixel_height;
1624 goto again;
1625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 }
1627}
1628
1629/*
1630 * Check if gui_resize_shell() must be called.
1631 */
1632 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001633gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001636 // careful: gui_resize_shell() may postpone the resize again if we
1637 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001638 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639}
1640
1641 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001642gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643{
1644 Rows = gui.num_rows;
1645 Columns = gui.num_cols;
1646 return OK;
1647}
1648
1649/*
1650 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001651 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1652 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001653 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1654 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001657gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001658 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001659 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001660 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
1662 int base_width;
1663 int base_height;
1664 int width;
1665 int height;
1666 int min_width;
1667 int min_height;
1668 int screen_w;
1669 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001670#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001671 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001672 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001673#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001674 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
1676 if (!gui.shell_created)
1677 return;
1678
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001679#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001680 // If not setting to a user specified size and maximized, calculate the
1681 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001682 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1683 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 {
1685 gui_mch_newfont();
1686 return;
1687 }
1688#endif
1689
1690 base_width = gui_get_base_width();
1691 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001692 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001693 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001694 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001695
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001696 width = Columns * gui.char_width + base_width;
1697 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698
1699 if (fit_to_display)
1700 {
1701 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001702 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 {
1704 Columns = (screen_w - base_width) / gui.char_width;
1705 if (Columns < MIN_COLUMNS)
1706 Columns = MIN_COLUMNS;
1707 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001708#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001709 ++did_adjust;
1710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001712 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 {
1714 Rows = (screen_h - base_height) / gui.char_height;
1715 check_shellsize();
1716 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001717#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001718 ++did_adjust;
1719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001721#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001722 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1723 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001724 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001725 un_maximize = FALSE;
1726#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001728 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 gui.num_cols = Columns;
1730 gui.num_rows = Rows;
1731
1732 min_width = base_width + MIN_COLUMNS * gui.char_width;
1733 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001734 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001735
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001736#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001737 if (un_maximize)
1738 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001739 // If the window size is smaller than the screen unmaximize the
1740 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001741 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1742 if ((width + gui.char_width < screen_w
1743 || height + gui.char_height * 2 < screen_h)
1744 && gui_mch_maximized())
1745 gui_mch_unmaximize();
1746 }
1747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
1749 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001750 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001752 if (fit_to_display && x >= 0 && y >= 0)
1753 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001754 // Some window managers put the Vim window left of/above the screen.
1755 // Only change the position if it wasn't already negative before
1756 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 gui_mch_update();
1758 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1759 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1760 }
1761
1762 gui_position_components(width);
1763 gui_update_scrollbars(TRUE);
1764 gui_reset_scroll_region();
1765}
1766
1767/*
1768 * Called when Rows and/or Columns has changed.
1769 */
1770 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001771gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772{
1773 gui_reset_scroll_region();
1774}
1775
1776/*
1777 * Make scroll region cover whole screen.
1778 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001779 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001780gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781{
1782 gui.scroll_region_top = 0;
1783 gui.scroll_region_bot = gui.num_rows - 1;
1784 gui.scroll_region_left = 0;
1785 gui.scroll_region_right = gui.num_cols - 1;
1786}
1787
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001788 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001789gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790{
Bram Moolenaar30613902019-12-01 22:11:18 +01001791 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001793 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 gui.highlight_mask |= mask;
1795}
1796
1797 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001798gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799{
Bram Moolenaar30613902019-12-01 22:11:18 +01001800 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001802 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 gui.highlight_mask &= ~mask;
1804}
1805
1806/*
1807 * Clear a rectangular region of the screen from text pos (row1, col1) to
1808 * (row2, col2) inclusive.
1809 */
1810 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001811gui_clear_block(
1812 int row1,
1813 int col1,
1814 int row2,
1815 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816{
Bram Moolenaar30613902019-12-01 22:11:18 +01001817 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 clip_may_clear_selection(row1, row2);
1819
1820 gui_mch_clear_block(row1, col1, row2, col2);
1821
Bram Moolenaar30613902019-12-01 22:11:18 +01001822 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1824 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1825 gui.cursor_is_valid = FALSE;
1826}
1827
1828/*
1829 * Write code to update the cursor later. This avoids the need to flush the
1830 * output buffer before calling gui_update_cursor().
1831 */
1832 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001833gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834{
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001835 OUT_STR("\033|s");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836}
1837
1838 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001839gui_write(
1840 char_u *s,
1841 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842{
1843 char_u *p;
1844 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001845 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 int force_scrollbar = FALSE;
1847 static win_T *old_curwin = NULL;
1848
Bram Moolenaar30613902019-12-01 22:11:18 +01001849// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850#ifdef DEBUG_GUI_WRITE
1851 {
1852 int i;
1853 char_u *str;
1854
1855 printf("gui_write(%d):\n ", len);
1856 for (i = 0; i < len; i++)
1857 if (s[i] == ESC)
1858 {
1859 if (i != 0)
1860 printf("\n ");
1861 printf("<ESC>");
1862 }
1863 else
1864 {
1865 str = transchar_byte(s[i]);
1866 if (str[0] && str[1])
1867 printf("<%s>", (char *)str);
1868 else
1869 printf("%s", (char *)str);
1870 }
1871 printf("\n");
1872 }
1873#endif
1874 while (len)
1875 {
1876 if (s[0] == ESC && s[1] == '|')
1877 {
1878 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001879 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 {
1881 arg1 = getdigits(&p);
1882 if (p > s + len)
1883 break;
1884 if (*p == ';')
1885 {
1886 ++p;
1887 arg2 = getdigits(&p);
1888 if (p > s + len)
1889 break;
1890 }
1891 }
1892 switch (*p)
1893 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001894 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 clip_scroll_selection(9999);
1896 gui_mch_clear_all();
1897 gui.cursor_is_valid = FALSE;
1898 force_scrollbar = TRUE;
1899 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001900 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 gui_set_cursor(arg1, arg2);
1902 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001903 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 force_cursor = TRUE;
1905 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001906 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 if (arg1 < arg2)
1908 {
1909 gui.scroll_region_top = arg1;
1910 gui.scroll_region_bot = arg2;
1911 }
1912 else
1913 {
1914 gui.scroll_region_top = arg2;
1915 gui.scroll_region_bot = arg1;
1916 }
1917 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001918 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 if (arg1 < arg2)
1920 {
1921 gui.scroll_region_left = arg1;
1922 gui.scroll_region_right = arg2;
1923 }
1924 else
1925 {
1926 gui.scroll_region_left = arg2;
1927 gui.scroll_region_right = arg1;
1928 }
1929 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001930 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 gui_delete_lines(gui.row, 1);
1932 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001933 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 gui_delete_lines(gui.row, arg1);
1935 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001936 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 gui_insert_lines(gui.row, 1);
1938 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001939 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 gui_insert_lines(gui.row, arg1);
1941 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001942 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 gui_clear_block(gui.row, gui.col, gui.row,
1944 (int)Columns - 1);
1945 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001946 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 gui_start_highlight(arg1);
1948 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001949 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 gui_stop_highlight(arg1);
1951 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001952 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1954 break;
1955 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001956 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 break;
1958 }
1959 len -= (int)(++p - s);
1960 s = p;
1961 }
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001962 else if (s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963#ifdef FEAT_SIGN_ICONS
1964 && s[0] != SIGN_BYTE
1965# ifdef FEAT_NETBEANS_INTG
1966 && s[0] != MULTISIGN_BYTE
1967# endif
1968#endif
1969 )
1970 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001971 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 {
1973 gui.col = 0;
1974 if (gui.row < gui.scroll_region_bot)
1975 gui.row++;
1976 else
1977 gui_delete_lines(gui.scroll_region_top, 1);
1978 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001979 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 {
1981 gui.col = 0;
1982 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001983 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 {
1985 if (gui.col)
1986 --gui.col;
1987 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001988 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
1990 ++gui.col;
1991 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001992 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 {
1994 gui_mch_beep();
1995 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001996 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997
Bram Moolenaar30613902019-12-01 22:11:18 +01001998 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 ++s;
2000 }
2001 else
2002 {
2003 p = s;
2004 while (len > 0 && (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 *p >= 0x20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006#ifdef FEAT_SIGN_ICONS
2007 || *p == SIGN_BYTE
2008# ifdef FEAT_NETBEANS_INTG
2009 || *p == MULTISIGN_BYTE
2010# endif
2011#endif
2012 ))
2013 {
2014 len--;
2015 p++;
2016 }
2017 gui_outstr(s, (int)(p - s));
2018 s = p;
2019 }
2020 }
2021
Bram Moolenaar30613902019-12-01 22:11:18 +01002022 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
2023 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 if (force_cursor)
2025 gui_update_cursor(TRUE, TRUE);
2026
Bram Moolenaar30613902019-12-01 22:11:18 +01002027 // When switching to another window the dragging must have stopped.
2028 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 if (old_curwin != curwin)
2030 gui.dragged_sb = SBAR_NONE;
2031
Bram Moolenaar30613902019-12-01 22:11:18 +01002032 // Update the scrollbars after clearing the screen or when switched
2033 // to another window.
2034 // Update the horizontal scrollbar always, it's difficult to check all
2035 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 if (force_scrollbar || old_curwin != curwin)
2037 gui_update_scrollbars(force_scrollbar);
2038 else
2039 gui_update_horiz_scrollbar(FALSE);
2040 old_curwin = curwin;
2041
2042 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002043 * We need to make sure this is cleared since GTK doesn't tell us when
2044 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002046#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 gui.dragged_sb = SBAR_NONE;
2048#endif
2049
Bram Moolenaar30613902019-12-01 22:11:18 +01002050 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051}
2052
2053/*
2054 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2055 * produces wrong results. Call gui_dont_update_cursor() before that code and
2056 * gui_can_update_cursor() afterwards.
2057 */
2058 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002059gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
2061 if (gui.in_use)
2062 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002063 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002064 if (undraw)
2065 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 can_update_cursor = FALSE;
2067 }
2068}
2069
2070 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002071gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072{
2073 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002074 // No need to update the cursor right now, there is always more output
2075 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076}
2077
Bram Moolenaara338adc2018-01-31 20:51:47 +01002078/*
2079 * Disable issuing gui_mch_flush().
2080 */
2081 void
2082gui_disable_flush(void)
2083{
2084 ++disable_flush;
2085}
2086
2087/*
2088 * Enable issuing gui_mch_flush().
2089 */
2090 void
2091gui_enable_flush(void)
2092{
2093 --disable_flush;
2094}
2095
2096/*
2097 * Issue gui_mch_flush() if it is not disabled.
2098 */
2099 void
2100gui_may_flush(void)
2101{
2102 if (disable_flush == 0)
2103 gui_mch_flush();
2104}
2105
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002107gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108{
2109 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111
2112 if (len == 0)
2113 return;
2114
2115 if (len < 0)
2116 len = (int)STRLEN(s);
2117
2118 while (len > 0)
2119 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 if (has_mbyte)
2121 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002122 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 cells = 0;
2124 for (this_len = 0; this_len < len; )
2125 {
2126 cells += (*mb_ptr2cells)(s + this_len);
2127 if (gui.col + cells > Columns)
2128 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002129 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
2131 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002132 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 }
Bram Moolenaarb26592a2022-07-12 17:34:31 +01002134 else if (gui.col + len > Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 this_len = Columns - gui.col;
2136 else
2137 this_len = len;
2138
2139 (void)gui_outstr_nowrap(s, this_len,
2140 0, (guicolor_T)0, (guicolor_T)0, 0);
2141 s += this_len;
2142 len -= this_len;
Bram Moolenaar30613902019-12-01 22:11:18 +01002143 // fill up for a double-width char that doesn't fit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 if (len > 0 && gui.col < Columns)
2145 (void)gui_outstr_nowrap((char_u *)" ", 1,
2146 0, (guicolor_T)0, (guicolor_T)0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01002147 // The cursor may wrap to the next line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 if (gui.col >= Columns)
2149 {
2150 gui.col = 0;
2151 gui.row++;
2152 }
2153 }
2154}
2155
2156/*
2157 * Output one character (may be one or two display cells).
2158 * Caller must check for valid "off".
2159 * Returns FAIL or OK, just like gui_outstr_nowrap().
2160 */
2161 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002162gui_screenchar(
Bram Moolenaar30613902019-12-01 22:11:18 +01002163 int off, // Offset from start of screen
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002164 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002165 guicolor_T fg, // colors for cursor
2166 guicolor_T bg, // colors for cursor
2167 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 char_u buf[MB_MAXBYTES + 1];
2170
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00002171 // Don't draw right half of a double-width UTF-8 char. "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 if (enc_utf8 && ScreenLines[off] == 0)
2173 return OK;
2174
2175 if (enc_utf8 && ScreenLinesUC[off] != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002176 // Draw UTF-8 multi-byte character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 return gui_outstr_nowrap(buf, utfc_char2bytes(off, buf),
2178 flags, fg, bg, back);
2179
2180 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2181 {
2182 buf[0] = ScreenLines[off];
2183 buf[1] = ScreenLines2[off];
2184 return gui_outstr_nowrap(buf, 2, flags, fg, bg, back);
2185 }
2186
Bram Moolenaar30613902019-12-01 22:11:18 +01002187 // Draw non-multi-byte character or DBCS character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 return gui_outstr_nowrap(ScreenLines + off,
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002189 enc_dbcs ? (*mb_ptr2len)(ScreenLines + off) : 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 flags, fg, bg, back);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191}
2192
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002193#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194/*
2195 * Output the string at the given screen position. This is used in place
2196 * of gui_screenchar() where possible because Pango needs as much context
2197 * as possible to work nicely. It's a lot faster as well.
2198 */
2199 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002200gui_screenstr(
Bram Moolenaar30613902019-12-01 22:11:18 +01002201 int off, // Offset from start of screen
2202 int len, // string length in screen cells
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002203 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002204 guicolor_T fg, // colors for cursor
2205 guicolor_T bg, // colors for cursor
2206 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207{
2208 char_u *buf;
2209 int outlen = 0;
2210 int i;
2211 int retval;
2212
Bram Moolenaar30613902019-12-01 22:11:18 +01002213 if (len <= 0) // "cannot happen"?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 return OK;
2215
2216 if (enc_utf8)
2217 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002218 buf = alloc(len * MB_MAXBYTES + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002220 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221
2222 for (i = off; i < off + len; ++i)
2223 {
2224 if (ScreenLines[i] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002225 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
2227 if (ScreenLinesUC[i] == 0)
2228 buf[outlen++] = ScreenLines[i];
2229 else
2230 outlen += utfc_char2bytes(i, buf + outlen);
2231 }
2232
Bram Moolenaar30613902019-12-01 22:11:18 +01002233 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2235 vim_free(buf);
2236
2237 return retval;
2238 }
2239 else if (enc_dbcs == DBCS_JPNU)
2240 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002241 buf = alloc(len * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 if (buf == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01002243 return OK; // not much we could do here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244
2245 for (i = off; i < off + len; ++i)
2246 {
2247 buf[outlen++] = ScreenLines[i];
2248
Bram Moolenaar30613902019-12-01 22:11:18 +01002249 // handle double-byte single-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 if (ScreenLines[i] == 0x8e)
2251 buf[outlen++] = ScreenLines2[i];
2252 else if (MB_BYTE2LEN(ScreenLines[i]) == 2)
2253 buf[outlen++] = ScreenLines[++i];
2254 }
2255
Bram Moolenaar30613902019-12-01 22:11:18 +01002256 buf[outlen] = NUL; // only to aid debugging
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back);
2258 vim_free(buf);
2259
2260 return retval;
2261 }
2262 else
2263 {
2264 return gui_outstr_nowrap(&ScreenLines[off], len,
2265 flags, fg, bg, back);
2266 }
2267}
Bram Moolenaar30613902019-12-01 22:11:18 +01002268#endif // FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269
2270/*
2271 * Output the given string at the current cursor position. If the string is
2272 * too long to fit on the line, then it is truncated.
2273 * "flags":
2274 * GUI_MON_IS_CURSOR should only be used when this function is being called to
2275 * actually draw (an inverted) cursor.
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002276 * GUI_MON_TRS_CURSOR is used to draw the cursor text with a transparent
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 * background.
2278 * GUI_MON_NOCLEAR is used to avoid clearing the selection when drawing over
2279 * it.
2280 * Returns OK, unless "back" is non-zero and using the bold trick, then return
2281 * FAIL (the caller should start drawing "back" chars back).
2282 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002283 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002284gui_outstr_nowrap(
2285 char_u *s,
2286 int len,
2287 int flags,
Bram Moolenaar30613902019-12-01 22:11:18 +01002288 guicolor_T fg, // colors for cursor
2289 guicolor_T bg, // colors for cursor
2290 int back) // backup this many chars when using bold trick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291{
2292 long_u highlight_mask;
2293 long_u hl_mask_todo;
2294 guicolor_T fg_color;
2295 guicolor_T bg_color;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002296 guicolor_T sp_color;
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002297#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 GuiFont font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +02002299 GuiFont wide_font = NOFONT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300# ifdef FEAT_XFONTSET
2301 GuiFontset fontset = NOFONTSET;
2302# endif
2303#endif
2304 attrentry_T *aep = NULL;
2305 int draw_flags;
2306 int col = gui.col;
2307#ifdef FEAT_SIGN_ICONS
2308 int draw_sign = FALSE;
Bram Moolenaarc7283072019-07-16 20:12:44 +02002309 int signcol = 0;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002310 char_u extra[18];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311# ifdef FEAT_NETBEANS_INTG
2312 int multi_sign = FALSE;
2313# endif
2314#endif
2315
2316 if (len < 0)
2317 len = (int)STRLEN(s);
2318 if (len == 0)
2319 return OK;
2320
2321#ifdef FEAT_SIGN_ICONS
2322 if (*s == SIGN_BYTE
2323# ifdef FEAT_NETBEANS_INTG
2324 || *s == MULTISIGN_BYTE
2325# endif
Bram Moolenaar0231f832019-07-12 19:22:22 +02002326 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 {
2328# ifdef FEAT_NETBEANS_INTG
2329 if (*s == MULTISIGN_BYTE)
2330 multi_sign = TRUE;
2331# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002332 // draw spaces instead
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002333 if (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u' &&
2334 (curwin->w_p_nu || curwin->w_p_rnu))
2335 {
2336 sprintf((char *)extra, "%*c ", number_width(curwin), ' ');
2337 s = extra;
2338 }
2339 else
2340 s = (char_u *)" ";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 if (len == 1 && col > 0)
2342 --col;
Bram Moolenaar4dff4ae2019-06-19 16:31:28 +02002343 len = (int)STRLEN(s);
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002344 if (len > 2)
Bram Moolenaar0231f832019-07-12 19:22:22 +02002345 // right align sign icon in the number column
2346 signcol = col + len - 3;
2347 else
2348 signcol = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 draw_sign = TRUE;
2350 highlight_mask = 0;
2351 }
2352 else
2353#endif
2354 if (gui.highlight_mask > HL_ALL)
2355 {
2356 aep = syn_gui_attr2entry(gui.highlight_mask);
Bram Moolenaar30613902019-12-01 22:11:18 +01002357 if (aep == NULL) // highlighting not set
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 highlight_mask = 0;
2359 else
2360 highlight_mask = aep->ae_attr;
2361 }
2362 else
2363 highlight_mask = gui.highlight_mask;
2364 hl_mask_todo = highlight_mask;
2365
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002366#if !defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002367 // Set the font
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 if (aep != NULL && aep->ae_u.gui.font != NOFONT)
2369 font = aep->ae_u.gui.font;
2370# ifdef FEAT_XFONTSET
2371 else if (aep != NULL && aep->ae_u.gui.fontset != NOFONTSET)
2372 fontset = aep->ae_u.gui.fontset;
2373# endif
2374 else
2375 {
2376# ifdef FEAT_XFONTSET
2377 if (gui.fontset != NOFONTSET)
2378 fontset = gui.fontset;
2379 else
2380# endif
2381 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2382 {
2383 if ((hl_mask_todo & HL_ITALIC) && gui.boldital_font != NOFONT)
2384 {
2385 font = gui.boldital_font;
2386 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT | HL_ITALIC);
2387 }
2388 else if (gui.bold_font != NOFONT)
2389 {
2390 font = gui.bold_font;
2391 hl_mask_todo &= ~(HL_BOLD | HL_STANDOUT);
2392 }
2393 else
2394 font = gui.norm_font;
2395 }
2396 else if ((hl_mask_todo & HL_ITALIC) && gui.ital_font != NOFONT)
2397 {
2398 font = gui.ital_font;
2399 hl_mask_todo &= ~HL_ITALIC;
2400 }
2401 else
2402 font = gui.norm_font;
Bram Moolenaardb250522013-06-17 22:43:25 +02002403
Bram Moolenaardb250522013-06-17 22:43:25 +02002404 /*
2405 * Choose correct wide_font by font. wide_font should be set with font
2406 * at same time in above block. But it will make many "ifdef" nasty
2407 * blocks. So we do it here.
2408 */
2409 if (font == gui.boldital_font && gui.wide_boldital_font)
2410 wide_font = gui.wide_boldital_font;
2411 else if (font == gui.bold_font && gui.wide_bold_font)
2412 wide_font = gui.wide_bold_font;
2413 else if (font == gui.ital_font && gui.wide_ital_font)
2414 wide_font = gui.wide_ital_font;
2415 else if (font == gui.norm_font && gui.wide_font)
2416 wide_font = gui.wide_font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 }
2418# ifdef FEAT_XFONTSET
2419 if (fontset != NOFONTSET)
2420 gui_mch_set_fontset(fontset);
2421 else
2422# endif
2423 gui_mch_set_font(font);
2424#endif
2425
2426 draw_flags = 0;
2427
Bram Moolenaar30613902019-12-01 22:11:18 +01002428 // Set the color
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 bg_color = gui.back_pixel;
2430 if ((flags & GUI_MON_IS_CURSOR) && gui.in_focus)
2431 {
2432 draw_flags |= DRAW_CURSOR;
2433 fg_color = fg;
2434 bg_color = bg;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002435 sp_color = fg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 }
2437 else if (aep != NULL)
2438 {
2439 fg_color = aep->ae_u.gui.fg_color;
2440 if (fg_color == INVALCOLOR)
2441 fg_color = gui.norm_pixel;
2442 bg_color = aep->ae_u.gui.bg_color;
2443 if (bg_color == INVALCOLOR)
2444 bg_color = gui.back_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002445 sp_color = aep->ae_u.gui.sp_color;
2446 if (sp_color == INVALCOLOR)
2447 sp_color = fg_color;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 }
2449 else
Bram Moolenaar3918c952005-03-15 22:34:55 +00002450 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 fg_color = gui.norm_pixel;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002452 sp_color = fg_color;
2453 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454
2455 if (highlight_mask & (HL_INVERSE | HL_STANDOUT))
2456 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 gui_mch_set_fg_color(bg_color);
2458 gui_mch_set_bg_color(fg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 }
2460 else
2461 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 gui_mch_set_fg_color(fg_color);
2463 gui_mch_set_bg_color(bg_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 }
Bram Moolenaar3918c952005-03-15 22:34:55 +00002465 gui_mch_set_sp_color(sp_color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
Bram Moolenaar30613902019-12-01 22:11:18 +01002467 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 if (!(flags & GUI_MON_NOCLEAR))
2469 clip_may_clear_selection(gui.row, gui.row);
2470
2471
Bram Moolenaar30613902019-12-01 22:11:18 +01002472 // If there's no bold font, then fake it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 if (hl_mask_todo & (HL_BOLD | HL_STANDOUT))
2474 draw_flags |= DRAW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475
2476 /*
2477 * When drawing bold or italic characters the spill-over from the left
2478 * neighbor may be destroyed. Let the caller backup to start redrawing
2479 * just after a blank.
2480 */
2481 if (back != 0 && ((draw_flags & DRAW_BOLD) || (highlight_mask & HL_ITALIC)))
2482 return FAIL;
2483
Bram Moolenaare60acc12011-05-10 16:41:25 +02002484#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01002485 // If there's no italic font, then fake it.
2486 // For GTK2, we don't need a different font for italic style.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 if (hl_mask_todo & HL_ITALIC)
2488 draw_flags |= DRAW_ITALIC;
2489
Bram Moolenaar30613902019-12-01 22:11:18 +01002490 // Do we underline the text?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 if (hl_mask_todo & HL_UNDERLINE)
2492 draw_flags |= DRAW_UNDERL;
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002493
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494#else
Bram Moolenaar30613902019-12-01 22:11:18 +01002495 // Do we underline the text?
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002496 if ((hl_mask_todo & HL_UNDERLINE) || (hl_mask_todo & HL_ITALIC))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 draw_flags |= DRAW_UNDERL;
2498#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002499 // Do we undercurl the text?
Bram Moolenaar3918c952005-03-15 22:34:55 +00002500 if (hl_mask_todo & HL_UNDERCURL)
2501 draw_flags |= DRAW_UNDERC;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
Bram Moolenaar84f54632022-06-29 18:39:11 +01002503 // TODO: HL_UNDERDOUBLE, HL_UNDERDOTTED, HL_UNDERDASHED
2504
Bram Moolenaar30613902019-12-01 22:11:18 +01002505 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002506 if (hl_mask_todo & HL_STRIKETHROUGH)
2507 draw_flags |= DRAW_STRIKE;
2508
Bram Moolenaar30613902019-12-01 22:11:18 +01002509 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 if (flags & GUI_MON_TRS_CURSOR)
2511 draw_flags |= DRAW_TRANSP;
2512
2513 /*
2514 * Draw the text.
2515 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002516#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002517 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2519#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 if (enc_utf8)
2521 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002522 int start; // index of bytes to be drawn
2523 int cells; // cellwidth of bytes to be drawn
2524 int thislen; // length of bytes to be drawn
2525 int cn; // cellwidth of current char
2526 int i; // index of current char
2527 int c; // current char value
2528 int cl; // byte length of current char
2529 int comping; // current char is composing
2530 int scol = col; // screen column
2531 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002532 int prev_wide = FALSE;
2533 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002534# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002535 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002536# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002537 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539
Bram Moolenaar30613902019-12-01 22:11:18 +01002540 // Break the string at a composing character, it has to be drawn on
2541 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 start = 0;
2543 cells = 0;
2544 for (i = 0; i < len; i += cl)
2545 {
2546 c = utf_ptr2char(s + i);
2547 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002549 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002551 if (!comping || sep_comp)
2552 {
2553 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002554# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002555 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002556# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002557 && wide_font != NOFONT)
2558 curr_wide = TRUE;
2559 else
2560 curr_wide = FALSE;
2561 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002562 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002563 if (cl == 0) // hit end of string
2564 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
Bram Moolenaar45933962013-01-23 17:43:57 +01002566 wide_changed = curr_wide != prev_wide;
2567
Bram Moolenaar30613902019-12-01 22:11:18 +01002568 // Print the string so far if it's the last character or there is
2569 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002570 if (i + cl >= len || (comping && sep_comp && i > start)
2571 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002572# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002574# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002575 // No fontset: At least draw char after wide char at
2576 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002579 )
2580# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 )
2582 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002583 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 thislen = i - start;
2585 else
2586 thislen = i - start + cl;
2587 if (thislen > 0)
2588 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002589 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002590 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2592 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002593 if (prev_wide)
2594 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 start += thislen;
2596 }
2597 scol += cells;
2598 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002599 // Adjust to not draw a character which width is changed
2600 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002601 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002603 scol -= cn;
2604 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 }
2606
Bram Moolenaar13505972019-01-24 15:04:48 +01002607# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002608 // No fontset: draw a space to fill the gap after a wide char
2609 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002611# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002613# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002614 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2616 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002617# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002619 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002620 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002622# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002623 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002624 gui_mch_draw_string(gui.row, scol, s + i, cl,
2625 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002626# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002627 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2628 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002629# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 start = i + cl;
2631 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002632 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002634 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 len = scol - col;
2636 }
2637 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 {
2639 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 if (enc_dbcs == DBCS_JPNU)
2641 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002642 // Get the length in display cells, this can be different from the
2643 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002644 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002647#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648
2649 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2650 gui.col = col + len;
2651
Bram Moolenaar30613902019-12-01 22:11:18 +01002652 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 if (flags & GUI_MON_NOCLEAR)
2654 clip_may_redraw_selection(gui.row, col, len);
2655
2656 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2657 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002658 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (gui.cursor_row == gui.row
2660 && gui.cursor_col >= col
2661 && gui.cursor_col < col + len)
2662 gui.cursor_is_valid = FALSE;
2663 }
2664
2665#ifdef FEAT_SIGN_ICONS
2666 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002667 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002668 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002669# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002670 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 if (multi_sign)
2672 netbeans_draw_multisign_indicator(gui.row);
2673# endif
2674#endif
2675
2676 return OK;
2677}
2678
2679/*
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002680 * Undraw the cursor. This actually redraws the character at the cursor
2681 * position, plus some more characters when needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 */
2683 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002684gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685{
2686 if (gui.cursor_is_valid)
2687 {
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002688 // Always redraw the character just before if there is one, because
2689 // with some fonts and characters there can be a one pixel overlap.
2690 int startcol = gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col;
2691 int endcol = gui.cursor_col;
2692
2693#ifdef FEAT_GUI_GTK
2694 gui_adjust_undraw_cursor_for_ligatures(&startcol, &endcol);
2695#endif
2696 gui_redraw_block(gui.cursor_row, startcol,
2697 gui.cursor_row, endcol, GUI_MON_NOCLEAR);
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002698
Bram Moolenaar54612582019-11-21 17:13:31 +01002699 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2700 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 gui.cursor_is_valid = FALSE;
2702 }
2703}
2704
2705 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002706gui_redraw(
2707 int x,
2708 int y,
2709 int w,
2710 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711{
2712 int row1, col1, row2, col2;
2713
2714 row1 = Y_2_ROW(y);
2715 col1 = X_2_COL(x);
2716 row2 = Y_2_ROW(y + h - 1);
2717 col2 = X_2_COL(x + w - 1);
2718
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002719 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720
2721 /*
2722 * We may need to redraw the cursor, but don't take it upon us to change
2723 * its location after a scroll.
2724 * (maybe be more strict even and test col too?)
2725 * These things may be outside the update/clipping region and reality may
2726 * not reflect Vims internal ideas if these operations are clipped away.
2727 */
2728 if (gui.row == gui.cursor_row)
2729 gui_update_cursor(TRUE, TRUE);
2730}
2731
2732/*
2733 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2734 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002736 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002737gui_redraw_block(
2738 int row1,
2739 int col1,
2740 int row2,
2741 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002742 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743{
2744 int old_row, old_col;
2745 long_u old_hl_mask;
2746 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002747 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 int idx, len;
2749 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751
Bram Moolenaar30613902019-12-01 22:11:18 +01002752 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002754 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
Bram Moolenaar30613902019-12-01 22:11:18 +01002756 // Don't try to draw outside the shell!
2757 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 col1 = check_col(col1);
2759 col2 = check_col(col2);
2760 row1 = check_row(row1);
2761 row2 = check_row(row2);
2762
Bram Moolenaar30613902019-12-01 22:11:18 +01002763 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 old_row = gui.row;
2765 old_col = gui.col;
2766 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 orig_col1 = col1;
2768 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769
2770 for (gui.row = row1; gui.row <= row2; gui.row++)
2771 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002772 // When only half of a double-wide character is in the block, include
2773 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 col1 = orig_col1;
2775 col2 = orig_col2;
2776 off = LineOffset[gui.row];
2777 if (enc_dbcs != 0)
2778 {
2779 if (col1 > 0)
2780 col1 -= dbcs_screen_head_off(ScreenLines + off,
2781 ScreenLines + off + col1);
2782 col2 += dbcs_screen_tail_off(ScreenLines + off,
2783 ScreenLines + off + col2);
2784 }
2785 else if (enc_utf8)
2786 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002787 if (ScreenLines[off + col1] == 0)
2788 {
2789 if (col1 > 0)
2790 --col1;
2791 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002792 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002793 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002794 // Make this IEMSGN when it no longer breaks Travis CI.
2795 vim_snprintf((char *)IObuff, IOSIZE,
2796 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2797 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002798 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002799 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002800 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002801#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2803 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 gui.col = col1;
2807 off = LineOffset[gui.row] + gui.col;
2808 len = col2 - col1 + 1;
2809
Bram Moolenaar30613902019-12-01 22:11:18 +01002810 // Find how many chars back this highlighting starts, or where a space
2811 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 for (back = 0; back < col1; ++back)
2813 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2814 || ScreenLines[off - 1 - back] == ' ')
2815 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816
Bram Moolenaar30613902019-12-01 22:11:18 +01002817 // Break it up in strings of characters with the same attributes.
2818 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 while (len > 0)
2820 {
2821 first_attr = ScreenAttrs[off];
2822 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002823#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 if (enc_utf8 && ScreenLinesUC[off] != 0)
2825 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002826 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 nback = gui_screenchar(off, flags,
2828 (guicolor_T)0, (guicolor_T)0, back);
2829 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2830 idx = 2;
2831 else
2832 idx = 1;
2833 }
2834 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2835 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002836 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 nback = gui_screenchar(off, flags,
2838 (guicolor_T)0, (guicolor_T)0, back);
2839 idx = 1;
2840 }
2841 else
2842#endif
2843 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002844#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 for (idx = 0; idx < len; ++idx)
2846 {
2847 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002848 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 if (ScreenAttrs[off + idx] != first_attr)
2850 break;
2851 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002852 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 nback = gui_screenstr(off, idx, flags,
2854 (guicolor_T)0, (guicolor_T)0, back);
2855#else
2856 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2857 idx++)
2858 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002859 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2861 break;
2862 if (enc_dbcs == DBCS_JPNU)
2863 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002864 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 if (ScreenLines[off + idx] == 0x8e)
2866 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002867 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002869 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 }
2872 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2873 (guicolor_T)0, (guicolor_T)0, back);
2874#endif
2875 }
2876 if (nback == FAIL)
2877 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002878 // Must back up to start drawing where a bold or italic word
2879 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 off -= back;
2881 len += back;
2882 gui.col -= back;
2883 }
2884 else
2885 {
2886 off += idx;
2887 len -= idx;
2888 }
2889 back = 0;
2890 }
2891 }
2892
Bram Moolenaar30613902019-12-01 22:11:18 +01002893 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 gui.row = old_row;
2895 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002896 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897}
2898
2899 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002900gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901{
2902 if (count <= 0)
2903 return;
2904
2905 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002906 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 gui_clear_block(row, gui.scroll_region_left,
2908 gui.scroll_region_bot, gui.scroll_region_right);
2909 else
2910 {
2911 gui_mch_delete_lines(row, count);
2912
Bram Moolenaar30613902019-12-01 22:11:18 +01002913 // If the cursor was in the deleted lines it's now gone. If the
2914 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 if (gui.cursor_row >= row
2916 && gui.cursor_col >= gui.scroll_region_left
2917 && gui.cursor_col <= gui.scroll_region_right)
2918 {
2919 if (gui.cursor_row < row + count)
2920 gui.cursor_is_valid = FALSE;
2921 else if (gui.cursor_row <= gui.scroll_region_bot)
2922 gui.cursor_row -= count;
2923 }
2924 }
2925}
2926
2927 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002928gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
2930 if (count <= 0)
2931 return;
2932
2933 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002934 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 gui_clear_block(row, gui.scroll_region_left,
2936 gui.scroll_region_bot, gui.scroll_region_right);
2937 else
2938 {
2939 gui_mch_insert_lines(row, count);
2940
2941 if (gui.cursor_row >= gui.row
2942 && gui.cursor_col >= gui.scroll_region_left
2943 && gui.cursor_col <= gui.scroll_region_right)
2944 {
2945 if (gui.cursor_row <= gui.scroll_region_bot - count)
2946 gui.cursor_row += count;
2947 else if (gui.cursor_row <= gui.scroll_region_bot)
2948 gui.cursor_is_valid = FALSE;
2949 }
2950 }
2951}
2952
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002953#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002954/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002955 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2956 */
2957 static int
2958gui_wait_for_chars_3(
2959 long wtime,
2960 int *interrupted UNUSED,
2961 int ignore_input UNUSED)
2962{
2963 return gui_mch_wait_for_chars(wtime);
2964}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002965#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002966
2967/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002968 * Returns OK if a character was found to be available within the given time,
2969 * or FAIL otherwise.
2970 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002971 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002972gui_wait_for_chars_or_timer(
2973 long wtime,
2974 int *interrupted UNUSED,
2975 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002976{
2977#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002978 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2979 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002980#else
2981 return gui_mch_wait_for_chars(wtime);
2982#endif
2983}
2984
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985/*
2986 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002987 * "wtime" == -1 Wait forever.
2988 * "wtime" == 0 Don't wait.
2989 * "wtime" > 0 Wait wtime milliseconds for a character.
2990 *
2991 * Returns the number of characters read or zero when timed out or interrupted.
2992 * "buf" may be NULL, in which case a non-zero number is returned if characters
2993 * are available.
2994 */
2995 static int
2996gui_wait_for_chars_buf(
2997 char_u *buf,
2998 int maxlen,
2999 long wtime, // don't use "time", MIPS cannot handle it
3000 int tb_change_cnt)
3001{
3002 int retval;
3003
3004#ifdef FEAT_MENU
3005 // If we're going to wait a bit, update the menus and mouse shape for the
3006 // current State.
3007 if (wtime != 0)
3008 gui_update_menus(0);
3009#endif
3010
3011 gui_mch_update();
3012 if (input_available()) // Got char, return immediately
3013 {
3014 if (buf != NULL && !typebuf_changed(tb_change_cnt))
3015 return read_from_input_buf(buf, (long)maxlen);
3016 return 0;
3017 }
3018 if (wtime == 0) // Don't wait for char
3019 return FAIL;
3020
3021 // Before waiting, flush any output to the screen.
3022 gui_mch_flush();
3023
3024 // Blink while waiting for a character.
3025 gui_mch_start_blink();
3026
3027 // Common function to loop until "wtime" is met, while handling timers and
3028 // other callbacks.
3029 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
3030 gui_wait_for_chars_or_timer, NULL);
3031
3032 gui_mch_stop_blink(TRUE);
3033
3034 return retval;
3035}
3036
3037/*
3038 * Wait for a character from the keyboard without actually reading it.
3039 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 * wtime == -1 Wait forever.
3041 * wtime == 0 Don't wait.
3042 * wtime > 0 Wait wtime milliseconds for a character.
3043 * Returns OK if a character was found to be available within the given time,
3044 * or FAIL otherwise.
3045 */
3046 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003047gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003049 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050}
3051
3052/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003053 * Equivalent of mch_inchar() for the GUI.
3054 */
3055 int
3056gui_inchar(
3057 char_u *buf,
3058 int maxlen,
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003059 long wtime, // milliseconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003060 int tb_change_cnt)
3061{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003062 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003063}
3064
3065/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003066 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 */
3068 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003069fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070{
3071 p[0] = (char_u)(col / 128 + ' ' + 1);
3072 p[1] = (char_u)(col % 128 + ' ' + 1);
3073 p[2] = (char_u)(row / 128 + ' ' + 1);
3074 p[3] = (char_u)(row % 128 + ' ' + 1);
3075}
3076
3077/*
3078 * Generic mouse support function. Add a mouse event to the input buffer with
3079 * the given properties.
3080 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3081 * MOUSE_X1, MOUSE_X2
3082 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003083 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3084 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 * x, y --- Coordinates of mouse in pixels.
3086 * repeated_click --- TRUE if this click comes only a short time after a
3087 * previous click.
3088 * modifiers --- Bit field which may be any of the following modifiers
3089 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3090 * This function will ignore drag events where the mouse has not moved to a new
3091 * character.
3092 */
3093 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003094gui_send_mouse_event(
3095 int button,
3096 int x,
3097 int y,
3098 int repeated_click,
3099 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100{
3101 static int prev_row = 0, prev_col = 0;
3102 static int prev_button = -1;
3103 static int num_clicks = 1;
3104 char_u string[10];
3105 enum key_extra button_char;
3106 int row, col;
3107#ifdef FEAT_CLIPBOARD
3108 int checkfor;
3109 int did_clip = FALSE;
3110#endif
3111
3112 /*
3113 * Scrolling may happen at any time, also while a selection is present.
3114 */
3115 switch (button)
3116 {
Bram Moolenaar445f11d2021-06-08 20:13:31 +02003117 case MOUSE_MOVE:
3118 button_char = KE_MOUSEMOVE_XY;
3119 goto button_set;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 case MOUSE_X1:
3121 button_char = KE_X1MOUSE;
3122 goto button_set;
3123 case MOUSE_X2:
3124 button_char = KE_X2MOUSE;
3125 goto button_set;
3126 case MOUSE_4:
3127 button_char = KE_MOUSEDOWN;
3128 goto button_set;
3129 case MOUSE_5:
3130 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003131 goto button_set;
3132 case MOUSE_6:
3133 button_char = KE_MOUSELEFT;
3134 goto button_set;
3135 case MOUSE_7:
3136 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137button_set:
3138 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003139 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 if (hold_gui_events)
3141 return;
3142
Ernie Raelc4cb5442022-04-03 15:47:28 +01003143 row = gui_xy2colrow(x, y, &col);
3144 // Don't report a mouse move unless moved to a
3145 // different character position.
3146 if (button == MOUSE_MOVE)
3147 {
3148 if (row == prev_row && col == prev_col)
3149 return;
3150 else
3151 {
3152 prev_row = row >= 0 ? row : 0;
3153 prev_col = col;
3154 }
3155 }
3156
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 string[3] = CSI;
3158 string[4] = KS_EXTRA;
3159 string[5] = (int)button_char;
3160
Bram Moolenaar30613902019-12-01 22:11:18 +01003161 // Pass the pointer coordinates of the scroll event so that we
3162 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 string[6] = (char_u)(col / 128 + ' ' + 1);
3164 string[7] = (char_u)(col % 128 + ' ' + 1);
3165 string[8] = (char_u)(row / 128 + ' ' + 1);
3166 string[9] = (char_u)(row % 128 + ' ' + 1);
3167
3168 if (modifiers == 0)
3169 add_to_input_buf(string + 3, 7);
3170 else
3171 {
3172 string[0] = CSI;
3173 string[1] = KS_MODIFIER;
3174 string[2] = 0;
3175 if (modifiers & MOUSE_SHIFT)
3176 string[2] |= MOD_MASK_SHIFT;
3177 if (modifiers & MOUSE_CTRL)
3178 string[2] |= MOD_MASK_CTRL;
3179 if (modifiers & MOUSE_ALT)
3180 string[2] |= MOD_MASK_ALT;
3181 add_to_input_buf(string, 10);
3182 }
3183 return;
3184 }
3185 }
3186
3187#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003188 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 if (clip_star.state == SELECT_IN_PROGRESS)
3190 {
3191 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003192
3193 // A release event may still need to be sent if the position is equal.
3194 row = gui_xy2colrow(x, y, &col);
3195 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3196 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 }
3198
Bram Moolenaar30613902019-12-01 22:11:18 +01003199 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 switch (get_real_state())
3201 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003202 case MODE_NORMAL_BUSY:
3203 case MODE_OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003204# ifdef FEAT_TERMINAL
Bram Moolenaar24959102022-05-07 20:01:16 +01003205 case MODE_TERMINAL:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003206# endif
Bram Moolenaar24959102022-05-07 20:01:16 +01003207 case MODE_NORMAL: checkfor = MOUSE_NORMAL; break;
3208 case MODE_VISUAL: checkfor = MOUSE_VISUAL; break;
3209 case MODE_SELECT: checkfor = MOUSE_VISUAL; break;
3210 case MODE_REPLACE:
3211 case MODE_REPLACE | MODE_LANGMAP:
3212 case MODE_VREPLACE:
3213 case MODE_VREPLACE | MODE_LANGMAP:
3214 case MODE_INSERT:
3215 case MODE_INSERT | MODE_LANGMAP:
3216 checkfor = MOUSE_INSERT; break;
3217 case MODE_ASKMORE:
3218 case MODE_HITRETURN: // At the more- and hit-enter prompt pass the
Bram Moolenaar30613902019-12-01 22:11:18 +01003219 // mouse event for a click on or below the
3220 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 if (Y_2_ROW(y) >= msg_row)
3222 checkfor = MOUSE_NORMAL;
3223 else
3224 checkfor = MOUSE_RETURN;
3225 break;
3226
3227 /*
3228 * On the command line, use the clipboard selection on all lines
3229 * but the command line. But not when pasting.
3230 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003231 case MODE_CMDLINE:
3232 case MODE_CMDLINE | MODE_LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3234 checkfor = MOUSE_NONE;
3235 else
3236 checkfor = MOUSE_COMMAND;
3237 break;
3238
3239 default:
3240 checkfor = MOUSE_NONE;
3241 break;
3242 };
3243
3244 /*
3245 * Allow clipboard selection of text on the command line in "normal"
3246 * modes. Don't do this when dragging the status line, or extending a
3247 * Visual selection.
3248 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003249 if ((State == MODE_NORMAL || State == MODE_NORMAL_BUSY
3250 || (State & MODE_INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003251 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 && button != MOUSE_DRAG
3253# ifdef FEAT_MOUSESHAPE
3254 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256# endif
3257 )
3258 checkfor = MOUSE_NONE;
3259
3260 /*
3261 * Use modeless selection when holding CTRL and SHIFT pressed.
3262 */
3263 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3264 checkfor = MOUSE_NONEF;
3265
3266 /*
3267 * In Ex mode, always use modeless selection.
3268 */
3269 if (exmode_active)
3270 checkfor = MOUSE_NONE;
3271
3272 /*
3273 * If the mouse settings say to not use the mouse, use the modeless
3274 * selection. But if Visual is active, assume that only the Visual area
3275 * will be selected.
3276 * Exception: On the command line, both the selection is used and a mouse
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003277 * key is sent.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 */
3279 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3280 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003281 // Don't do modeless selection in Visual mode.
Bram Moolenaar24959102022-05-07 20:01:16 +01003282 if (checkfor != MOUSE_NONEF && VIsual_active && (State & MODE_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284
3285 /*
3286 * When 'mousemodel' is "popup", shift-left is translated to right.
3287 * But not when also using Ctrl.
3288 */
3289 if (mouse_model_popup() && button == MOUSE_LEFT
3290 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3291 {
3292 button = MOUSE_RIGHT;
3293 modifiers &= ~ MOUSE_SHIFT;
3294 }
3295
Bram Moolenaar30613902019-12-01 22:11:18 +01003296 // If the selection is done, allow the right button to extend it.
3297 // If the selection is cleared, allow the right button to start it
3298 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 if (button == MOUSE_RIGHT)
3300 {
3301 if (clip_star.state == SELECT_CLEARED)
3302 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003303 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 {
3305 col = msg_col;
3306 row = msg_row;
3307 }
3308 else
3309 {
3310 col = curwin->w_wcol;
3311 row = curwin->w_wrow + W_WINROW(curwin);
3312 }
3313 clip_start_selection(col, row, FALSE);
3314 }
3315 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3316 repeated_click);
3317 did_clip = TRUE;
3318 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003319 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003320 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 {
3322 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3323 did_clip = TRUE;
3324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325
Bram Moolenaar30613902019-12-01 22:11:18 +01003326 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if (button != MOUSE_MIDDLE)
3328 {
3329 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3330 return;
3331 if (checkfor != MOUSE_COMMAND)
3332 button = MOUSE_LEFT;
3333 }
3334 repeated_click = FALSE;
3335 }
3336
3337 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003338 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339#endif
3340
Bram Moolenaar30613902019-12-01 22:11:18 +01003341 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 if (hold_gui_events)
3343 return;
3344
3345 row = gui_xy2colrow(x, y, &col);
3346
3347 /*
3348 * If we are dragging and the mouse hasn't moved far enough to be on a
3349 * different character, then don't send an event to vim.
3350 */
3351 if (button == MOUSE_DRAG)
3352 {
3353 if (row == prev_row && col == prev_col)
3354 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003355 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 if (y < 0)
3357 row = -1;
3358 }
3359
3360 /*
3361 * If topline has changed (window scrolled) since the last click, reset
3362 * repeated_click, because we don't want starting Visual mode when
3363 * clicking on a different character in the text.
3364 */
3365 if (curwin->w_topline != gui_prev_topline
3366#ifdef FEAT_DIFF
3367 || curwin->w_topfill != gui_prev_topfill
3368#endif
3369 )
3370 repeated_click = FALSE;
3371
Bram Moolenaar30613902019-12-01 22:11:18 +01003372 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 string[1] = KS_MOUSE;
3374 string[2] = KE_FILLER;
3375 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3376 {
3377 if (repeated_click)
3378 {
3379 /*
3380 * Handle multiple clicks. They only count if the mouse is still
3381 * pointing at the same character.
3382 */
3383 if (button != prev_button || row != prev_row || col != prev_col)
3384 num_clicks = 1;
3385 else if (++num_clicks > 4)
3386 num_clicks = 1;
3387 }
3388 else
3389 num_clicks = 1;
3390 prev_button = button;
3391 gui_prev_topline = curwin->w_topline;
3392#ifdef FEAT_DIFF
3393 gui_prev_topfill = curwin->w_topfill;
3394#endif
3395
3396 string[3] = (char_u)(button | 0x20);
3397 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3398 }
3399 else
3400 string[3] = (char_u)button;
3401
3402 string[3] |= modifiers;
3403 fill_mouse_coord(string + 4, col, row);
3404 add_to_input_buf(string, 8);
3405
3406 if (row < 0)
3407 prev_row = 0;
3408 else
3409 prev_row = row;
3410 prev_col = col;
3411
3412 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003413 * We need to make sure this is cleared since GTK doesn't tell us when
3414 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003416#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 gui.dragged_sb = SBAR_NONE;
3418#endif
3419}
3420
3421/*
3422 * Convert x and y coordinate to column and row in text window.
3423 * Corrects for multi-byte character.
3424 * returns column in "*colp" and row as return value;
3425 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003426 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003427gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428{
3429 int col = check_col(X_2_COL(x));
3430 int row = check_row(Y_2_ROW(y));
3431
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 return row;
3434}
3435
3436#if defined(FEAT_MENU) || defined(PROTO)
3437/*
3438 * Callback function for when a menu entry has been selected.
3439 */
3440 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003441gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003443 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444
Bram Moolenaar30613902019-12-01 22:11:18 +01003445 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 if (hold_gui_events)
3447 return;
3448
3449 bytes[0] = CSI;
3450 bytes[1] = KS_MENU;
3451 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003452 add_to_input_buf(bytes, 3);
3453 add_long_to_buf((long_u)menu, bytes);
3454 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455}
3456#endif
3457
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003458static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003459
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460/*
3461 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003462 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 * in p_go.
3464 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003466gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003468#ifdef FEAT_GUI_DARKTHEME
3469 static int prev_dark_theme = -1;
3470 int using_dark_theme = FALSE;
3471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472#ifdef FEAT_MENU
3473 static int prev_menu_is_active = -1;
3474#endif
3475#ifdef FEAT_TOOLBAR
3476 static int prev_toolbar = -1;
3477 int using_toolbar = FALSE;
3478#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003479#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003480 int using_tabline;
3481#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482#ifdef FEAT_FOOTER
3483 static int prev_footer = -1;
3484 int using_footer = FALSE;
3485#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003486#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 static int prev_tearoff = -1;
3488 int using_tearoff = FALSE;
3489#endif
3490
3491 char_u *p;
3492 int i;
3493#ifdef FEAT_MENU
3494 int grey_old, grey_new;
3495 char_u *temp;
3496#endif
3497 win_T *wp;
3498 int need_set_size;
3499 int fix_size;
3500
3501#ifdef FEAT_MENU
3502 if (oldval != NULL && gui.in_use)
3503 {
3504 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003505 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 */
3507 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3508 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3509 if (grey_old != grey_new)
3510 {
3511 temp = p_go;
3512 p_go = oldval;
3513 gui_update_menus(MENU_ALL_MODES);
3514 p_go = temp;
3515 }
3516 }
3517 gui.menu_is_active = FALSE;
3518#endif
3519
3520 for (i = 0; i < 3; i++)
3521 gui.which_scrollbars[i] = FALSE;
3522 for (p = p_go; *p; p++)
3523 switch (*p)
3524 {
3525 case GO_LEFT:
3526 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3527 break;
3528 case GO_RIGHT:
3529 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3530 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 case GO_VLEFT:
3532 if (win_hasvertsplit())
3533 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3534 break;
3535 case GO_VRIGHT:
3536 if (win_hasvertsplit())
3537 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3538 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 case GO_BOT:
3540 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3541 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003542#ifdef FEAT_GUI_DARKTHEME
3543 case GO_DARKTHEME:
3544 using_dark_theme = TRUE;
3545 break;
3546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547#ifdef FEAT_MENU
3548 case GO_MENUS:
3549 gui.menu_is_active = TRUE;
3550 break;
3551#endif
3552 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003553 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 break;
3555#ifdef FEAT_TOOLBAR
3556 case GO_TOOLBAR:
3557 using_toolbar = TRUE;
3558 break;
3559#endif
3560#ifdef FEAT_FOOTER
3561 case GO_FOOTER:
3562 using_footer = TRUE;
3563 break;
3564#endif
3565 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003566#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 using_tearoff = TRUE;
3568#endif
3569 break;
3570 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003571 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 break;
3573 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003574
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 if (gui.in_use)
3576 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003577 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003579
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003580#ifdef FEAT_GUI_DARKTHEME
3581 if (using_dark_theme != prev_dark_theme)
3582 {
3583 gui_mch_set_dark_theme(using_dark_theme);
3584 prev_dark_theme = using_dark_theme;
3585 }
3586#endif
3587
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003588#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003589 // Update the GUI tab line, it may appear or disappear. This may
3590 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003591 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003592 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003593 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003594 // We don't want a resize event change "Rows" here, save and
3595 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003596 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003597 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003598 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003599 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003600 if (using_tabline)
3601 fix_size = TRUE;
3602 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003603 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003604 }
3605#endif
3606
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 for (i = 0; i < 3; i++)
3608 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003609 // The scrollbar needs to be updated when it is shown/unshown and
3610 // when switching tab pages. But the size only changes when it's
3611 // shown/unshown. Thus we need two places to remember whether a
3612 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003613 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003614 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003615 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 {
3617 if (i == SBAR_BOTTOM)
3618 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3619 gui.which_scrollbars[i]);
3620 else
3621 {
3622 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003625 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3626 {
3627 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003628 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003629 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003630 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003631 if (gui.which_scrollbars[i])
3632 fix_size = TRUE;
3633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003635 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003636 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 }
3638
3639#ifdef FEAT_MENU
3640 if (gui.menu_is_active != prev_menu_is_active)
3641 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003642 // We don't want a resize event change "Rows" here, save and
3643 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 i = Rows;
3645 gui_mch_enable_menu(gui.menu_is_active);
3646 Rows = i;
3647 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003648 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (gui.menu_is_active)
3650 fix_size = TRUE;
3651 }
3652#endif
3653
3654#ifdef FEAT_TOOLBAR
3655 if (using_toolbar != prev_toolbar)
3656 {
3657 gui_mch_show_toolbar(using_toolbar);
3658 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003659 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 if (using_toolbar)
3661 fix_size = TRUE;
3662 }
3663#endif
3664#ifdef FEAT_FOOTER
3665 if (using_footer != prev_footer)
3666 {
3667 gui_mch_enable_footer(using_footer);
3668 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003669 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 if (using_footer)
3671 fix_size = TRUE;
3672 }
3673#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003674#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (using_tearoff != prev_tearoff)
3676 {
3677 gui_mch_toggle_tearoffs(using_tearoff);
3678 prev_tearoff = using_tearoff;
3679 }
3680#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003681 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003682 {
3683#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003684 long prev_Columns = Columns;
3685 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003686#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003687 // Adjust the size of the window to make the text area keep the
3688 // same size and to avoid that part of our window is off-screen
3689 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003690 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003691
3692#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003693 // GTK has the annoying habit of sending us resize events when
3694 // changing the window size ourselves. This mostly happens when
3695 // waiting for a character to arrive, quite unpredictably, and may
3696 // change Columns and Rows when we don't want it. Wait for a
3697 // character here to avoid this effect.
3698 // If you remove this, please test this command for resizing
3699 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3700 // Don't do this while starting up though.
3701 // Don't change Rows when adding menu/toolbar/tabline.
3702 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003703 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003704 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003705 if ((need_set_size & RESIZE_VERT) == 0)
3706 Rows = prev_Rows;
3707 if ((need_set_size & RESIZE_HOR) == 0)
3708 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003709#endif
3710 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003711 // When the console tabline appears or disappears the window positions
3712 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003713 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003714 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 }
3716}
3717
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003718#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3719/*
3720 * Return TRUE if the GUI is taking care of the tabline.
3721 * It may still be hidden if 'showtabline' is zero.
3722 */
3723 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003724gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003725{
3726 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3727}
3728
3729/*
3730 * Return TRUE if the GUI is showing the tabline.
3731 * This uses 'showtabline'.
3732 */
3733 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003734gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003735{
3736 if (!gui_use_tabline()
3737 || p_stal == 0
3738 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3739 return FALSE;
3740 return TRUE;
3741}
3742
3743/*
3744 * Update the tabline.
3745 * This may display/undisplay the tabline and update the labels.
3746 */
3747 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003748gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003749{
3750 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003751 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003752
3753 if (!gui.starting && starting == 0)
3754 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003755 // Updating the tabline uses direct GUI commands, flush
3756 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003757 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003758
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003759 if (!showit != !shown)
3760 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003761 if (showit != 0)
3762 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003763
Bram Moolenaar30613902019-12-01 22:11:18 +01003764 // When the tabs change from hidden to shown or from shown to
3765 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003766 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003767 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003768 }
3769}
3770
3771/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003772 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003773 */
3774 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003775get_tabline_label(
3776 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003777 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003778{
3779 int modified = FALSE;
3780 char_u buf[40];
3781 int wincount;
3782 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003783 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003784
Bram Moolenaar30613902019-12-01 22:11:18 +01003785 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003786 opt = (tooltip ? &p_gtt : &p_gtl);
3787 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003788 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003789 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003790 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003791 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003792 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003793 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3794 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003795
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003796 printer_page_num = tabpage_index(tp);
3797# ifdef FEAT_EVAL
3798 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003799 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003800# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003801 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003802 curtab->tp_firstwin = firstwin;
3803 curtab->tp_lastwin = lastwin;
3804 curtab->tp_curwin = curwin;
3805 save_curtab = curtab;
3806 curtab = tp;
3807 topframe = curtab->tp_topframe;
3808 firstwin = curtab->tp_firstwin;
3809 lastwin = curtab->tp_lastwin;
3810 curwin = curtab->tp_curwin;
3811 curbuf = curwin->w_buffer;
3812
Bram Moolenaar30613902019-12-01 22:11:18 +01003813 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003814 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003815 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003816 STRCPY(NameBuff, res);
3817
Bram Moolenaar30613902019-12-01 22:11:18 +01003818 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003819 curtab = save_curtab;
3820 topframe = curtab->tp_topframe;
3821 firstwin = curtab->tp_firstwin;
3822 lastwin = curtab->tp_lastwin;
3823 curwin = curtab->tp_curwin;
3824 curbuf = curwin->w_buffer;
3825
Bram Moolenaar53989552019-12-23 22:59:18 +01003826 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003827 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003828 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003829 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003830
Bram Moolenaar30613902019-12-01 22:11:18 +01003831 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3832 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003833 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003834 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003835 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003836 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003837 if (!tooltip)
3838 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003839
3840 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3841 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3842 if (bufIsChanged(wp->w_buffer))
3843 modified = TRUE;
3844 if (modified || wincount > 1)
3845 {
3846 if (wincount > 1)
3847 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3848 else
3849 buf[0] = NUL;
3850 if (modified)
3851 STRCAT(buf, "+");
3852 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003853 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003854 mch_memmove(NameBuff, buf, STRLEN(buf));
3855 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003856 }
3857}
3858
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003859/*
3860 * Send the event for clicking to select tab page "nr".
3861 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003862 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003863 */
3864 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003865send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003866{
3867 char_u string[3];
3868
3869 if (nr == tabpage_index(curtab))
3870 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003871
Bram Moolenaar30613902019-12-01 22:11:18 +01003872 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003873 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003874# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003875 || cmdwin_type != 0
3876# endif
3877 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003878 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003879 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003880 gui_mch_set_curtab(tabpage_index(curtab));
3881 return FALSE;
3882 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003883
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003884 string[0] = CSI;
3885 string[1] = KS_TABLINE;
3886 string[2] = KE_FILLER;
3887 add_to_input_buf(string, 3);
3888 string[0] = nr;
3889 add_to_input_buf_csi(string, 1);
3890 return TRUE;
3891}
3892
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003893/*
3894 * Send a tabline menu event
3895 */
3896 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003897send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003898{
3899 char_u string[3];
3900
Bram Moolenaar29547192018-12-11 20:39:19 +01003901 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003902 if (hold_gui_events)
3903 return;
3904
Bram Moolenaar29547192018-12-11 20:39:19 +01003905 // Cannot close the last tabpage.
3906 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3907 return;
3908
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003909 string[0] = CSI;
3910 string[1] = KS_TABMENU;
3911 string[2] = KE_FILLER;
3912 add_to_input_buf(string, 3);
3913 string[0] = tabidx;
3914 string[1] = (char_u)(long)event;
3915 add_to_input_buf_csi(string, 2);
3916}
3917
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919
3920/*
3921 * Scrollbar stuff:
3922 */
3923
Bram Moolenaare45828b2006-02-15 22:12:56 +00003924/*
3925 * Remove all scrollbars. Used before switching to another tab page.
3926 */
3927 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003928gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003929{
3930 int i;
3931 win_T *wp;
3932
3933 for (i = 0; i < 3; i++)
3934 {
3935 if (i == SBAR_BOTTOM)
3936 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3937 else
3938 {
3939 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003940 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003941 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003942 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003943 }
3944}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003945
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003947gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948{
3949 static int sbar_ident = 0;
3950
Bram Moolenaar30613902019-12-01 22:11:18 +01003951 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 sb->wp = wp;
3953 sb->type = type;
3954 sb->value = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 sb->size = 1;
3956 sb->max = 1;
3957 sb->top = 0;
3958 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 sb->status_height = 0;
3961 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3962}
3963
3964/*
3965 * Find the scrollbar with the given index.
3966 */
3967 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003968gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
3970 win_T *wp;
3971
3972 if (gui.bottom_sbar.ident == ident)
3973 return &gui.bottom_sbar;
3974 FOR_ALL_WINDOWS(wp)
3975 {
3976 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3977 return &wp->w_scrollbars[SBAR_LEFT];
3978 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3979 return &wp->w_scrollbars[SBAR_RIGHT];
3980 }
3981 return NULL;
3982}
3983
3984/*
3985 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3986 *
3987 * For Win32, Macintosh and GTK+ 2:
3988 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3989 * you stop dragging the scrollbar. We get here each time the scrollbar is
3990 * dragged another pixel, but as far as the rest of vim goes, it thinks
3991 * we're just hanging in the call to DispatchMessage() in
3992 * process_message(). The DispatchMessage() call that hangs was passed a
3993 * mouse button click event in the scrollbar window. -- webb.
3994 *
3995 * Solution: Do the scrolling right here. But only when allowed.
3996 * Ignore the scrollbars while executing an external command or when there
3997 * are still characters to be processed.
3998 */
3999 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004000gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 int sb_num;
4004#ifdef USE_ON_FLY_SCROLL
4005 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007# ifdef FEAT_DIFF
4008 int old_topfill = curwin->w_topfill;
4009# endif
4010#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004011 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 int byte_count;
4013#endif
4014
4015 if (sb == NULL)
4016 return;
4017
Bram Moolenaar30613902019-12-01 22:11:18 +01004018 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 if (hold_gui_events)
4020 return;
4021
4022#ifdef FEAT_CMDWIN
4023 if (cmdwin_type != 0 && sb->wp != curwin)
4024 return;
4025#endif
4026
4027 if (still_dragging)
4028 {
4029 if (sb->wp == NULL)
4030 gui.dragged_sb = SBAR_BOTTOM;
4031 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
4032 gui.dragged_sb = SBAR_LEFT;
4033 else
4034 gui.dragged_sb = SBAR_RIGHT;
4035 gui.dragged_wp = sb->wp;
4036 }
4037 else
4038 {
4039 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004040#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004041 // Keep the "dragged_wp" value until after the scrolling, for when the
4042 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 gui.dragged_wp = NULL;
4044#endif
4045 }
4046
Bram Moolenaar30613902019-12-01 22:11:18 +01004047 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 if (sb->wp != NULL)
4049 sb = &sb->wp->w_scrollbars[0];
4050
4051 /*
4052 * Check validity of value
4053 */
4054 if (value < 0)
4055 value = 0;
4056#ifdef SCROLL_PAST_END
4057 else if (value > sb->max)
4058 value = sb->max;
4059#else
4060 if (value > sb->max - sb->size + 1)
4061 value = sb->max - sb->size + 1;
4062#endif
4063
4064 sb->value = value;
4065
4066#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004067 // When not allowed to do the scrolling right now, return.
4068 // This also checked input_available(), but that causes the first click in
4069 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004070 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 return;
4072#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004073 // Disallow scrolling the current window when the completion popup menu is
4074 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004075 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4076 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077
4078#ifdef FEAT_RIGHTLEFT
4079 if (sb->wp == NULL && curwin->w_p_rl)
4080 {
4081 value = sb->max + 1 - sb->size - value;
4082 if (value < 0)
4083 value = 0;
4084 }
4085#endif
4086
Bram Moolenaar30613902019-12-01 22:11:18 +01004087 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 {
4089 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4091 sb_num++;
4092 if (wp == NULL)
4093 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094
4095#ifdef USE_ON_FLY_SCROLL
4096 current_scrollbar = sb_num;
4097 scrollbar_value = value;
Bram Moolenaar24959102022-05-07 20:01:16 +01004098 if (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 {
4100 gui_do_scroll();
4101 setcursor();
4102 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004103 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 {
4105 ins_scroll();
4106 setcursor();
4107 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004108 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 {
4110 if (msg_scrolled == 0)
4111 {
4112 gui_do_scroll();
4113 redrawcmdline();
4114 }
4115 }
4116# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004117 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 sb->value = sb->wp->w_topline - 1;
4119# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004120
Bram Moolenaar30613902019-12-01 22:11:18 +01004121 // When dragging one scrollbar and there is another one at the other
4122 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004123 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4124 gui_mch_set_scrollbar_thumb(
4125 &sb->wp->w_scrollbars[
4126 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4127 ? SBAR_LEFT : SBAR_RIGHT],
4128 sb->value, sb->size, sb->max);
4129
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130#else
4131 bytes[0] = CSI;
4132 bytes[1] = KS_VER_SCROLLBAR;
4133 bytes[2] = KE_FILLER;
4134 bytes[3] = (char_u)sb_num;
4135 byte_count = 4;
4136#endif
4137 }
4138 else
4139 {
4140#ifdef USE_ON_FLY_SCROLL
4141 scrollbar_value = value;
4142
Bram Moolenaar24959102022-05-07 20:01:16 +01004143 if (State & MODE_NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004144 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar24959102022-05-07 20:01:16 +01004145 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 ins_horscroll();
Bram Moolenaar24959102022-05-07 20:01:16 +01004147 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004149 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004151 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 redrawcmdline();
4153 }
4154 }
4155 if (old_leftcol != curwin->w_leftcol)
4156 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004157 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 setcursor();
4159 }
4160#else
4161 bytes[0] = CSI;
4162 bytes[1] = KS_HOR_SCROLLBAR;
4163 bytes[2] = KE_FILLER;
4164 byte_count = 3;
4165#endif
4166 }
4167
4168#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 /*
4170 * synchronize other windows, as necessary according to 'scrollbind'
4171 */
4172 if (curwin->w_p_scb
4173 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4174 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004175# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004177# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 ))))
4179 {
4180 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004181 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004182 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 if (wp->w_redr_type > 0)
4184 updateWindow(wp);
4185 setcursor();
4186 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004187 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004189 add_to_input_buf(bytes, byte_count);
4190 add_long_to_buf((long_u)value, bytes);
4191 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192#endif
4193}
4194
4195/*
4196 * Scrollbar stuff:
4197 */
4198
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004199/*
4200 * Called when something in the window layout has changed.
4201 */
4202 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004203gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004204{
4205 if (gui.in_use && starting == 0)
4206 {
4207 out_flush();
4208 gui_init_which_components(NULL);
4209 gui_update_scrollbars(TRUE);
4210 }
4211 need_mouse_correct = TRUE;
4212}
4213
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004215gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004216 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217{
4218 win_T *wp;
4219 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004220 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 int which_sb;
4222 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224
Bram Moolenaar30613902019-12-01 22:11:18 +01004225 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 gui_update_horiz_scrollbar(force);
4227
Bram Moolenaar4f974752019-02-17 17:44:42 +01004228#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004229 // Return straight away if there is neither a left nor right scrollbar.
4230 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4232 return;
4233#endif
4234
4235 /*
4236 * Don't want to update a scrollbar while we're dragging it. But if we
4237 * have both a left and right scrollbar, and we drag one of them, we still
4238 * need to update the other one.
4239 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004240 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4241 && gui.which_scrollbars[SBAR_LEFT]
4242 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 {
4244 /*
4245 * If we have two scrollbars and one of them is being dragged, just
4246 * copy the scrollbar position from the dragged one to the other one.
4247 */
4248 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4249 if (gui.dragged_wp != NULL)
4250 gui_mch_set_scrollbar_thumb(
4251 &gui.dragged_wp->w_scrollbars[which_sb],
4252 gui.dragged_wp->w_scrollbars[0].value,
4253 gui.dragged_wp->w_scrollbars[0].size,
4254 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 }
4256
Bram Moolenaar30613902019-12-01 22:11:18 +01004257 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258 ++hold_gui_events;
4259
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004260 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004262 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004264 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004265 if (!force && (gui.dragged_sb == SBAR_LEFT
4266 || gui.dragged_sb == SBAR_RIGHT)
4267 && gui.dragged_wp == wp)
4268 continue;
4269
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270#ifdef SCROLL_PAST_END
4271 max = wp->w_buffer->b_ml.ml_line_count - 1;
4272#else
4273 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4274#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004275 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 max = 0;
4277 val = wp->w_topline - 1;
4278 size = wp->w_height;
4279#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004280 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 val = max;
4282#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004283 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 size = max + 1;
4285 if (val > max - size + 1)
4286 val = max - size + 1;
4287#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004288 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 val = 0;
4290
4291 /*
4292 * Scrollbar at index 0 (the left one) contains all the information.
4293 * It would be the same info for left and right so we just store it for
4294 * one of them.
4295 */
4296 sb = &wp->w_scrollbars[0];
4297
4298 /*
4299 * Note: no check for valid w_botline. If it's not valid the
4300 * scrollbars will be updated later anyway.
4301 */
4302 if (size < 1 || wp->w_botline - 2 > max)
4303 {
4304 /*
4305 * This can happen during changing files. Just don't update the
4306 * scrollbar for now.
4307 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004308 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 if (gui.which_scrollbars[SBAR_LEFT])
4310 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4311 if (gui.which_scrollbars[SBAR_RIGHT])
4312 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4313 continue;
4314 }
4315 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 || sb->top != wp->w_winrow
4317 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004319 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004321 // Height, width or position of scrollbar has changed. For
4322 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 sb->top = wp->w_winrow;
4325 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327
Bram Moolenaar30613902019-12-01 22:11:18 +01004328 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 h = (sb->height + sb->status_height) * gui.char_height;
4330 y = sb->top * gui.char_height + gui.border_offset;
4331#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4332 if (gui.menu_is_active)
4333 y += gui.menu_height;
4334#endif
4335
Bram Moolenaar0b962e52022-04-03 18:02:37 +01004336#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004337 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 y += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340#endif
4341
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004342#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004343 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004344 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004345#endif
4346
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004349 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 h += gui.border_offset;
4351 y -= gui.border_offset;
4352 }
4353 if (gui.which_scrollbars[SBAR_LEFT])
4354 {
4355 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4356 gui.left_sbar_x, y,
4357 gui.scrollbar_width, h);
4358 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4359 }
4360 if (gui.which_scrollbars[SBAR_RIGHT])
4361 {
4362 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4363 gui.right_sbar_x, y,
4364 gui.scrollbar_width, h);
4365 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4366 }
4367 }
4368
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 if (force || sb->value != val || sb->size != size || sb->max != max)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004371 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 sb->value = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 sb->size = size;
4374 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004375 if (gui.which_scrollbars[SBAR_LEFT]
4376 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4378 val, size, max);
4379 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004380 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4382 val, size, max);
4383 }
4384 }
Christian Brabandt2e0f3ec2021-11-28 18:41:05 +00004385
4386 // update the title, it may show the scroll position
4387 maketitle();
4388
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 --hold_gui_events;
4391}
4392
4393/*
4394 * Enable or disable a scrollbar.
4395 * Check for scrollbars for vertically split windows which are not enabled
4396 * sometimes.
4397 */
4398 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004399gui_do_scrollbar(
4400 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004401 int which, // SBAR_LEFT or SBAR_RIGHT
4402 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 int midcol = curwin->w_wincol + curwin->w_width / 2;
4405 int has_midcol = (wp->w_wincol <= midcol
4406 && wp->w_wincol + wp->w_width >= midcol);
4407
Bram Moolenaar30613902019-12-01 22:11:18 +01004408 // Only enable scrollbars that contain the middle column of the current
4409 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4411 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004412 // Scrollbars only on one side. Don't enable scrollbars that don't
4413 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 if (!has_midcol)
4415 enable = FALSE;
4416 }
4417 else
4418 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004419 // Scrollbars on both sides. Don't enable scrollbars that neither
4420 // contain the middle column of the current window nor are on the far
4421 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 if (midcol > Columns / 2)
4423 {
4424 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4425 enable = FALSE;
4426 }
4427 else
4428 {
4429 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4430 : !has_midcol)
4431 enable = FALSE;
4432 }
4433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4435}
4436
4437/*
4438 * Scroll a window according to the values set in the globals current_scrollbar
4439 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4440 * or FALSE otherwise.
4441 */
4442 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004443gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444{
4445 win_T *wp, *save_wp;
4446 int i;
4447 long nlines;
4448 pos_T old_cursor;
4449 linenr_T old_topline;
4450#ifdef FEAT_DIFF
4451 int old_topfill;
4452#endif
4453
4454 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4455 if (wp == NULL)
4456 break;
4457 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004458 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 return FALSE;
4460
4461 /*
4462 * Compute number of lines to scroll. If zero, nothing to do.
4463 */
4464 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4465 if (nlines == 0)
4466 return FALSE;
4467
4468 save_wp = curwin;
4469 old_topline = wp->w_topline;
4470#ifdef FEAT_DIFF
4471 old_topfill = wp->w_topfill;
4472#endif
4473 old_cursor = wp->w_cursor;
4474 curwin = wp;
4475 curbuf = wp->w_buffer;
4476 if (nlines < 0)
4477 scrolldown(-nlines, gui.dragged_wp == NULL);
4478 else
4479 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004480 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4481 // the mouse-up event already, but we still want it to behave like when
4482 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 if (gui.dragged_sb == SBAR_NONE)
4484 gui.dragged_wp = NULL;
4485
4486 if (old_topline != wp->w_topline
4487#ifdef FEAT_DIFF
4488 || old_topfill != wp->w_topfill
4489#endif
4490 )
4491 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004492 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004494 cursor_correct(); // fix window for 'so'
4495 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 }
4497 if (old_cursor.lnum != wp->w_cursor.lnum)
4498 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 }
4501
Bram Moolenaar30613902019-12-01 22:11:18 +01004502 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004503 validate_cursor();
4504
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 curwin = save_wp;
4506 curbuf = save_wp->w_buffer;
4507
4508 /*
4509 * Don't call updateWindow() when nothing has changed (it will overwrite
4510 * the status line!).
4511 */
4512 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004513 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514#ifdef FEAT_DIFF
4515 || old_topfill != wp->w_topfill
4516#endif
4517 )
4518 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004519 int type = VALID;
4520
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004521 if (pum_visible())
4522 {
4523 type = NOT_VALID;
4524 wp->w_lines_valid = 0;
4525 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004526
Bram Moolenaar30613902019-12-01 22:11:18 +01004527 // Don't set must_redraw here, it may cause the popup menu to
4528 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004529 if (wp->w_redr_type < type)
4530 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004531 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004532 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004533 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 }
4535
Bram Moolenaar30613902019-12-01 22:11:18 +01004536 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004537 if (pum_visible())
4538 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004539
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004540 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541}
4542
4543
4544/*
4545 * Horizontal scrollbar stuff:
4546 */
4547
4548/*
4549 * Return length of line "lnum" for horizontal scrolling.
4550 */
4551 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004552scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553{
4554 char_u *p;
4555 colnr_T col;
4556 int w;
4557
4558 p = ml_get(lnum);
4559 col = 0;
4560 if (*p != NUL)
4561 for (;;)
4562 {
4563 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004564 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004565 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 break;
4567 col += w;
4568 }
4569 return col;
4570}
4571
Bram Moolenaar30613902019-12-01 22:11:18 +01004572// Remember which line is currently the longest, so that we don't have to
4573// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574static linenr_T longest_lnum = 0;
4575
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004576/*
4577 * Find longest visible line number. If this is not possible (or not desired,
4578 * by setting 'h' in "guioptions") then the current line number is returned.
4579 */
4580 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004581gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004582{
4583 linenr_T ret = 0;
4584
Bram Moolenaar30613902019-12-01 22:11:18 +01004585 // Calculate maximum for horizontal scrollbar. Check for reasonable
4586 // line numbers, topline and botline can be invalid when displaying is
4587 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004588 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4589 && curwin->w_topline <= curwin->w_cursor.lnum
4590 && curwin->w_botline > curwin->w_cursor.lnum
4591 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4592 {
4593 linenr_T lnum;
4594 colnr_T n;
4595 long max = 0;
4596
Bram Moolenaar30613902019-12-01 22:11:18 +01004597 // Use maximum of all visible lines. Remember the lnum of the
4598 // longest line, closest to the cursor line. Used when scrolling
4599 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004600 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4601 {
4602 n = scroll_line_len(lnum);
4603 if (n > (colnr_T)max)
4604 {
4605 max = n;
4606 ret = lnum;
4607 }
4608 else if (n == (colnr_T)max
4609 && abs((int)(lnum - curwin->w_cursor.lnum))
4610 < abs((int)(ret - curwin->w_cursor.lnum)))
4611 ret = lnum;
4612 }
4613 }
4614 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004615 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004616 ret = curwin->w_cursor.lnum;
4617
4618 return ret;
4619}
4620
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004622gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623{
Bram Moolenaar30613902019-12-01 22:11:18 +01004624 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
4626 if (!gui.which_scrollbars[SBAR_BOTTOM])
4627 return;
4628
4629 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4630 return;
4631
4632 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4633 return;
4634
4635 /*
4636 * It is possible for the cursor to be invalid if we're in the middle of
4637 * something (like changing files). If so, don't do anything for now.
4638 */
4639 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4640 {
4641 gui.bottom_sbar.value = -1;
4642 return;
4643 }
4644
Bram Moolenaar02631462017-09-22 15:20:32 +02004645 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 if (curwin->w_p_wrap)
4647 {
4648 value = 0;
4649#ifdef SCROLL_PAST_END
4650 max = 0;
4651#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004652 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653#endif
4654 }
4655 else
4656 {
4657 value = curwin->w_leftcol;
4658
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004659 longest_lnum = gui_find_longest_lnum();
4660 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 if (virtual_active())
4663 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004664 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 if (curwin->w_virtcol >= (colnr_T)max)
4666 max = curwin->w_virtcol;
4667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668
4669#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004670 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004672 // The line number isn't scrolled, thus there is less space when
4673 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674 size -= curwin_col_off();
4675#ifndef SCROLL_PAST_END
4676 max -= curwin_col_off();
4677#endif
4678 }
4679
4680#ifndef SCROLL_PAST_END
4681 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004682 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683#endif
4684
4685#ifdef FEAT_RIGHTLEFT
4686 if (curwin->w_p_rl)
4687 {
4688 value = max + 1 - size - value;
4689 if (value < 0)
4690 {
4691 size += value;
4692 value = 0;
4693 }
4694 }
4695#endif
4696 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4697 && max == gui.bottom_sbar.max)
4698 return;
4699
4700 gui.bottom_sbar.value = value;
4701 gui.bottom_sbar.size = size;
4702 gui.bottom_sbar.max = max;
4703 gui.prev_wrap = curwin->w_p_wrap;
4704
4705 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4706}
4707
4708/*
4709 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4710 */
4711 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004712gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713{
Bram Moolenaar30613902019-12-01 22:11:18 +01004714 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 if (curwin->w_p_wrap)
4716 return FALSE;
4717
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004718 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 return FALSE;
4720
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004721 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
Bram Moolenaar30613902019-12-01 22:11:18 +01004723 // When the line of the cursor is too short, move the cursor to the
4724 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004726 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004727 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004729 if (compute_longest_lnum)
4730 {
4731 curwin->w_cursor.lnum = gui_find_longest_lnum();
4732 curwin->w_cursor.col = 0;
4733 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004734 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004735 else if (longest_lnum >= curwin->w_topline
4736 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 {
4738 curwin->w_cursor.lnum = longest_lnum;
4739 curwin->w_cursor.col = 0;
4740 }
4741 }
4742
4743 return leftcol_changed();
4744}
4745
4746/*
4747 * Check that none of the colors are the same as the background color
4748 */
4749 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004750gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751{
4752 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4753 {
4754 gui_set_bg_color((char_u *)"White");
4755 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4756 gui_set_fg_color((char_u *)"Black");
4757 }
4758}
4759
Bram Moolenaar3918c952005-03-15 22:34:55 +00004760 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004761gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762{
4763 gui.norm_pixel = gui_get_color(name);
4764 hl_set_fg_color_name(vim_strsave(name));
4765}
4766
Bram Moolenaar3918c952005-03-15 22:34:55 +00004767 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004768gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769{
4770 gui.back_pixel = gui_get_color(name);
4771 hl_set_bg_color_name(vim_strsave(name));
4772}
4773
4774/*
4775 * Allocate a color by name.
4776 * Returns INVALCOLOR and gives an error message when failed.
4777 */
4778 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004779gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780{
4781 guicolor_T t;
4782
4783 if (*name == NUL)
4784 return INVALCOLOR;
4785 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004786
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004788#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 && gui.in_use
4790#endif
4791 )
Drew Vogele30d1022021-10-24 20:35:07 +01004792 semsg(_(e_cannot_allocate_color_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 return t;
4794}
4795
4796/*
4797 * Return the grey value of a color (range 0-255).
4798 */
4799 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004800gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004802 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004804 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004805 + (((rgb >> 8) & 0xff) * 587)
4806 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807}
4808
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004809 char_u *
4810gui_bg_default(void)
4811{
4812 if (gui_get_lightness(gui.back_pixel) < 127)
4813 return (char_u *)"dark";
4814 return (char_u *)"light";
4815}
4816
4817/*
4818 * Option initializations that can only be done after opening the GUI window.
4819 */
Yegappan Lakshmananee47eac2022-06-29 12:55:36 +01004820 static void
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004821init_gui_options(void)
4822{
Bram Moolenaar30613902019-12-01 22:11:18 +01004823 // Set the 'background' option according to the lightness of the
4824 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004825 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4826 {
Bram Moolenaar31e5c602022-04-15 13:53:33 +01004827 set_option_value_give_err((char_u *)"bg", 0L, gui_bg_default(), 0);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004828 highlight_changed();
4829 }
4830}
4831
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832#if defined(FEAT_GUI_X11) || defined(PROTO)
4833 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004834gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835{
4836 win_T *wp;
4837
Bram Moolenaar30613902019-12-01 22:11:18 +01004838 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 if (!gui.in_use)
4840 return;
4841
4842 FOR_ALL_WINDOWS(wp)
4843 {
4844 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4845 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4846 }
4847 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4848}
4849#endif
4850
4851/*
4852 * Call this when focus has changed.
4853 */
4854 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004855gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856{
4857/*
4858 * Skip this code to avoid drawing the cursor when debugging and switching
4859 * between the debugger window and gvim.
4860 */
4861#if 1
4862 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004863 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864
4865# ifdef FEAT_XIM
4866 xim_set_focus(in_focus);
4867# endif
4868
Bram Moolenaar30613902019-12-01 22:11:18 +01004869 // Put events in the input queue only when allowed.
4870 // ui_focus_change() isn't called directly, because it invokes
4871 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004872 if (!hold_gui_events)
4873 {
4874 char_u bytes[3];
4875
4876 bytes[0] = CSI;
4877 bytes[1] = KS_EXTRA;
4878 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4879 add_to_input_buf(bytes, 3);
4880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881#endif
4882}
4883
4884/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004885 * When mouse moved: apply 'mousefocus'.
4886 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004888 static void
4889gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890{
4891 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004892 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893
4894#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004895 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004896 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897#endif
4898
Bram Moolenaar30613902019-12-01 22:11:18 +01004899 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004901 && !hold_gui_events // not holding events
Bram Moolenaar24959102022-05-07 20:01:16 +01004902 && (State & (MODE_NORMAL | MODE_INSERT))// Normal/Visual/Insert mode
4903 && State != MODE_HITRETURN // but not hit-return prompt
Bram Moolenaar30613902019-12-01 22:11:18 +01004904 && msg_scrolled == 0 // no scrolled message
4905 && !need_mouse_correct // not moving the pointer
4906 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004908 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 if (x < 0 || x > Columns * gui.char_width)
4910 return;
4911#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004912 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913#endif
4914 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004915 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916
Bram Moolenaar30613902019-12-01 22:11:18 +01004917 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004918 if (Y_2_ROW(y) < tabline_height())
4919 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004920
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 /*
4922 * format a mouse click on status line input
4923 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004924 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4925 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 */
4927 if (finish_op)
4928 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004929 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 st[0] = ESC;
4931 add_to_input_buf(st, 1);
4932 }
4933 st[0] = CSI;
4934 st[1] = KS_MOUSE;
4935 st[2] = KE_FILLER;
4936 st[3] = (char_u)MOUSE_LEFT;
4937 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004938 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 wp->w_height + W_WINROW(wp));
4940
4941 add_to_input_buf(st, 8);
4942 st[3] = (char_u)MOUSE_RELEASE;
4943 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004945 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 if (gtk_main_level() > 0)
4947 gtk_main_quit();
4948#endif
4949 }
4950}
4951
4952/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004953 * Called when the mouse moved (but not when dragging).
4954 */
4955 void
4956gui_mouse_moved(int x, int y)
4957{
4958 // Ignore this while still starting up.
4959 if (!gui.in_use || gui.starting)
4960 return;
4961
4962 // apply 'mousefocus' and pointer shape
4963 gui_mouse_focus(x, y);
4964
Ernie Raelc4cb5442022-04-03 15:47:28 +01004965 if (p_mousemev
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004966#ifdef FEAT_PROP_POPUP
Ernie Raelc4cb5442022-04-03 15:47:28 +01004967 || popup_uses_mouse_move
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004968#endif
Ernie Raelc4cb5442022-04-03 15:47:28 +01004969 )
4970 // Generate a mouse-moved event. For a <MouseMove> mapping. Or so the
4971 // popup can perhaps be closed, just like in the terminal.
4972 gui_send_mouse_event(MOUSE_MOVE, x, y, FALSE, 0);
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004973}
4974
4975/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004976 * Get the window where the mouse pointer is on.
4977 * Returns NULL if not found.
4978 */
4979 win_T *
4980gui_mouse_window(mouse_find_T popup)
4981{
4982 int x, y;
4983
4984 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4985 return NULL;
4986 gui_mch_getmouse(&x, &y);
4987
4988 // Only use the mouse when it's on the Vim window
4989 if (x >= 0 && x <= Columns * gui.char_width
4990 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4991 return xy2win(x, y, popup);
4992 return NULL;
4993}
4994
4995/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 * Called when mouse should be moved to window with focus.
4997 */
4998 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004999gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 win_T *wp = NULL;
5002
5003 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00005004
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005005 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01005006 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00005008 validate_cline_row();
5009 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
5010 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013}
5014
5015/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02005016 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01005017 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005020xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 int row;
5023 int col;
5024 win_T *wp;
5025
5026 row = Y_2_ROW(y);
5027 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01005028 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005030 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02005031 if (wp == NULL)
5032 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005033#ifdef FEAT_MOUSESHAPE
Bram Moolenaar24959102022-05-07 20:01:16 +01005034 if (State == MODE_HITRETURN || State == MODE_ASKMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 {
5036 if (Y_2_ROW(y) >= msg_row)
5037 update_mouseshape(SHAPE_IDX_MOREL);
5038 else
5039 update_mouseshape(SHAPE_IDX_MORE);
5040 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005041 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaar24959102022-05-07 20:01:16 +01005043 else if (!(State & MODE_CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005044 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaar24959102022-05-07 20:01:16 +01005046 else if (!(State & MODE_CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005047 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 update_mouseshape(SHAPE_IDX_STATUS);
5049 else
5050 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005052 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053}
5054
5055/*
5056 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5057 * File names may be given to redefine the args list.
5058 */
5059 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005060ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061{
5062 char_u *arg = eap->arg;
5063
5064 /*
5065 * Check for "-f" argument: foreground, don't fork.
5066 * Also don't fork when started with "gvim -f".
5067 * Do fork when using "gui -b".
5068 */
5069 if (arg[0] == '-'
5070 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005071 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 {
5073 gui.dofork = (arg[1] == 'b');
5074 eap->arg = skipwhite(eap->arg + 2);
5075 }
5076 if (!gui.in_use)
5077 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005078#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005079 if (!gui.starting)
5080 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02005081 emsg(_(e_gui_cannot_be_used_not_enabled_at_compile_time));
Bram Moolenaar257a3962019-12-29 15:19:03 +01005082 return;
5083 }
5084#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005085 // Clear the command. Needed for when forking+exiting, to avoid part
5086 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005088#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005089 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005090 gui_start(eap->arg);
5091 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005092#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005093 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005094#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005095 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005098 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 ex_next(eap);
5100}
5101
Bram Moolenaar4f974752019-02-17 17:44:42 +01005102#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005103 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5104 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005105 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106/*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01005107 * This is shared between Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109
5110/*
5111 * Callback function for do_in_runtimepath().
5112 */
5113 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005114gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005116 char_u *gfp_buffer = cookie;
5117
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 if (STRLEN(fname) >= MAXPATHL)
5119 *gfp_buffer = NUL;
5120 else
5121 STRCPY(gfp_buffer, fname);
5122}
5123
5124/*
5125 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5126 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5127 */
5128 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005129gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130{
5131 if (STRLEN(name) > MAXPATHL - 14)
5132 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005133 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005134 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005135 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 return FAIL;
5137 return OK;
5138}
5139
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005140# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141/*
5142 * Given the name of the "icon=" argument, try finding the bitmap file for the
5143 * icon. If it is an absolute path name, use it as it is. Otherwise append
5144 * "ext" and search for it in 'runtimepath'.
5145 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5146 * contains "name".
5147 */
5148 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005149gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150{
5151 char_u buf[MAXPATHL + 1];
5152
5153 expand_env(name, buffer, MAXPATHL);
5154 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5155 STRCPY(buffer, buf);
5156}
5157# endif
5158#endif
5159
Bram Moolenaar9e175142020-04-30 22:51:01 +02005160#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5161 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005163display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164{
5165 char_u *p;
5166
5167 if (isatty(2))
5168 fflush(stderr);
5169 else if (error_ga.ga_data != NULL)
5170 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005171 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5173 if (!isspace(*p))
5174 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005175 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 if (STRLEN(p) > 2000)
5177 STRCPY(p + 2000 - 14, "...(truncated)");
5178 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005179 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 break;
5181 }
5182 ga_clear(&error_ga);
5183 }
5184}
5185#endif
5186
5187#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5188/*
5189 * Return TRUE if still starting up and there is no place to enter text.
5190 * For GTK and X11 we check if stderr is not a tty, which means we were
5191 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5192 * allow typing on stdin.
5193 */
5194 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005195no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196{
5197 return ((!gui.in_use || gui.starting)
5198# ifndef NO_CONSOLE
5199 && !isatty(0) && !isatty(2)
5200# endif
5201 );
5202}
5203#endif
5204
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005205#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005206 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005207 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208/*
5209 * Update the current window and the screen.
5210 */
5211 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005212gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005214# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005215 linenr_T conceal_old_cursor_line = 0;
5216 linenr_T conceal_new_cursor_line = 0;
5217 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005218# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005219
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 update_topline();
5221 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005222
Bram Moolenaar30613902019-12-01 22:11:18 +01005223 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005224 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005225# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005226 || popup_visible
5227# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005228# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005229 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005230# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005231 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005232 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005233 if (has_cursormoved())
5234 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
K.Takata6e1d31e2022-02-03 13:05:32 +00005235# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005236 if (popup_visible)
5237 popup_check_cursor_pos();
K.Takata6e1d31e2022-02-03 13:05:32 +00005238# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005239# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005240 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005241 {
5242 conceal_old_cursor_line = last_cursormoved.lnum;
5243 conceal_new_cursor_line = curwin->w_cursor.lnum;
5244 conceal_update_lines = TRUE;
5245 }
5246# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005247 last_cursormoved = curwin->w_cursor;
5248 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005249
LemonBoy09371822022-04-08 15:18:45 +01005250 if (!finish_op)
zeertzjqd58862d2022-04-12 11:32:48 +01005251 may_trigger_winscrolled();
LemonBoy09371822022-04-08 15:18:45 +01005252
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005253# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005254 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005255 && (conceal_old_cursor_line != conceal_new_cursor_line
5256 || conceal_cursor_line(curwin)
5257 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005258 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005259 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005260 redrawWinline(curwin, conceal_old_cursor_line);
5261 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005262 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005263 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005264 }
5265# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005266 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005267 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005268 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269}
5270#endif
5271
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005272#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273/*
5274 * Get the text to use in a find/replace dialog. Uses the last search pattern
5275 * if the argument is empty.
5276 * Returns an allocated string.
5277 */
5278 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005279get_find_dialog_text(
5280 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005281 int *wwordp, // return: TRUE if \< \> found
5282 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283{
5284 char_u *text;
5285
5286 if (*arg == NUL)
5287 text = last_search_pat();
5288 else
5289 text = arg;
5290 if (text != NULL)
5291 {
5292 text = vim_strsave(text);
5293 if (text != NULL)
5294 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005295 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 int i;
5297
Bram Moolenaar30613902019-12-01 22:11:18 +01005298 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5300 {
5301 mch_memmove(text, text + 2, (size_t)(len - 1));
5302 len -= 2;
5303 }
5304
Bram Moolenaar30613902019-12-01 22:11:18 +01005305 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5307 {
5308 *mcasep = (text[1] == 'C');
5309 mch_memmove(text, text + 2, (size_t)(len - 1));
5310 len -= 2;
5311 }
5312
Bram Moolenaar30613902019-12-01 22:11:18 +01005313 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 if (len >= 4
5315 && STRNCMP(text, "\\<", 2) == 0
5316 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5317 {
5318 *wwordp = TRUE;
5319 mch_memmove(text, text + 2, (size_t)(len - 4));
5320 text[len - 4] = NUL;
5321 }
5322
Bram Moolenaar30613902019-12-01 22:11:18 +01005323 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 for (i = 0; i + 1 < len; ++i)
5325 if (text[i] == '\\' && (text[i + 1] == '/'
5326 || text[i + 1] == '?'))
5327 {
5328 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5329 --len;
5330 }
5331 }
5332 }
5333 return text;
5334}
5335
5336/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 * Handle the press of a button in the find-replace dialog.
5338 * Return TRUE when something was added to the input buffer.
5339 */
5340 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005341gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005342 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005343 char_u *find_text,
5344 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005345 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346{
5347 garray_T ga;
5348 int i;
5349 int type = (flags & FRD_TYPE_MASK);
5350 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005351 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005352 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005353 static int busy = FALSE;
5354
Bram Moolenaar30613902019-12-01 22:11:18 +01005355 // When the screen is being updated we should not change buffers and
5356 // windows structures, it may cause freed memory to be used. Also don't
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005357 // do this recursively (pressing "Find" quickly several times).
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005358 if (updating_screen || busy)
5359 return FALSE;
5360
Bram Moolenaar30613902019-12-01 22:11:18 +01005361 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005362 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5363 return FALSE;
5364
5365 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366
5367 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005368 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 ga_concat(&ga, (char_u *)"%s/");
5370
5371 ga_concat(&ga, (char_u *)"\\V");
5372 if (flags & FRD_MATCH_CASE)
5373 ga_concat(&ga, (char_u *)"\\C");
5374 else
5375 ga_concat(&ga, (char_u *)"\\c");
5376 if (flags & FRD_WHOLE_WORD)
5377 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005378 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005379 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5380 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005381 ga_concat(&ga, p);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005382 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 if (flags & FRD_WHOLE_WORD)
5384 ga_concat(&ga, (char_u *)"\\>");
5385
5386 if (type == FRD_REPLACEALL)
5387 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005389 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005390 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5391 if (p != NULL)
5392 ga_concat(&ga, p);
5393 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005395 }
5396 ga_append(&ga, NUL);
5397
5398 if (type == FRD_REPLACE)
5399 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005400 // Do the replacement when the text at the cursor matches. Thus no
5401 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005402 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5403 regmatch.rm_ic = 0;
5404 if (regmatch.regprog != NULL)
5405 {
5406 p = ml_get_cursor();
5407 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5408 && regmatch.startp[0] == p)
5409 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005410 // Clear the command line to remove any old "No match"
5411 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005412 msg_end_prompt();
5413
5414 if (u_save_cursor() == OK)
5415 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005416 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005417 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005418
5419 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005420 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005421 ins_str(repl_text);
5422 }
5423 }
5424 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005425 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005426 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005427 }
5428 }
5429
5430 if (type == FRD_REPLACEALL)
5431 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005432 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005433 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 do_cmdline_cmd(ga.ga_data);
5435 }
5436 else
5437 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005438 int searchflags = SEARCH_MSG + SEARCH_MARK;
5439
Bram Moolenaar30613902019-12-01 22:11:18 +01005440 // Search for the next match.
5441 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005442 if (type == FRD_REPLACE)
5443 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005445 if (down)
5446 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005447 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005448 }
5449 else
5450 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005451 // We need to escape '?' if and only if we are searching in the up
5452 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005453 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5454 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005455 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005456 vim_free(p);
5457 }
5458
Bram Moolenaar30613902019-12-01 22:11:18 +01005459 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 }
5461
Bram Moolenaar30613902019-12-01 22:11:18 +01005462 // Don't want to pass did_emsg to other code, it may cause disabling
5463 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005464 did_emsg = save_did_emsg;
5465
Bram Moolenaar24959102022-05-07 20:01:16 +01005466 if (State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005468 gui_update_screen(); // update the screen
5469 msg_didout = 0; // overwrite any message
5470 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 }
5472
5473 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005474 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 return (ga.ga_len > 0);
5476}
5477
5478#endif
5479
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005480#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481/*
5482 * Jump to the window at specified point (x, y).
5483 */
5484 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005485gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486{
5487 int row = Y_2_ROW(y);
5488 int col = X_2_COL(x);
5489 win_T *wp;
5490
5491 if (row >= 0 && col >= 0)
5492 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005493 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 if (wp != NULL && wp != curwin)
5495 win_goto(wp);
5496 }
5497}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498
5499/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005500 * Function passed to handle_drop() for the actions to be done after the
5501 * argument list has been updated.
5502 */
5503 static void
5504drop_callback(void *cookie)
5505{
5506 char_u *p = cookie;
Bram Moolenaar4671e882021-11-22 17:21:48 +00005507 int do_shorten = FALSE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005508
Bram Moolenaar30613902019-12-01 22:11:18 +01005509 // If Shift held down, change to first file's directory. If the first
5510 // item is a directory, change to that directory (and let the explorer
5511 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005512 if (p != NULL)
5513 {
5514 if (mch_isdir(p))
5515 {
5516 if (mch_chdir((char *)p) == 0)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005517 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005518 }
5519 else if (vim_chdirfile(p, "drop") == OK)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005520 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005521 vim_free(p);
Bram Moolenaar4671e882021-11-22 17:21:48 +00005522 if (do_shorten)
5523 {
5524 shorten_fnames(TRUE);
5525 last_chdir_reason = "drop";
5526 }
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005527 }
5528
Bram Moolenaar30613902019-12-01 22:11:18 +01005529 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005530 update_screen(NOT_VALID);
5531# ifdef FEAT_MENU
5532 gui_update_menus(0);
5533# endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005534 maketitle();
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005535 setcursor();
5536 out_flush_cursor(FALSE, FALSE);
5537}
5538
5539/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 * Process file drop. Mouse cursor position, key modifiers, name of files
5541 * and count of files are given. Argument "fnames[count]" has full pathnames
5542 * of dropped files, they will be freed in this function, and caller can't use
5543 * fnames after call this function.
5544 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005546gui_handle_drop(
5547 int x UNUSED,
5548 int y UNUSED,
5549 int_u modifiers,
5550 char_u **fnames,
5551 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552{
5553 int i;
5554 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005555 static int entered = FALSE;
5556
5557 /*
5558 * This function is called by event handlers. Just in case we get a
5559 * second event before the first one is handled, ignore the second one.
5560 * Not sure if this can ever happen, just in case.
5561 */
5562 if (entered)
5563 return;
5564 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565
5566 /*
5567 * When the cursor is at the command line, add the file names to the
5568 * command line, don't edit the files.
5569 */
Bram Moolenaar24959102022-05-07 20:01:16 +01005570 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 {
5572 shorten_filenames(fnames, count);
5573 for (i = 0; i < count; ++i)
5574 {
5575 if (fnames[i] != NULL)
5576 {
5577 if (i > 0)
5578 add_to_input_buf((char_u*)" ", 1);
5579
Bram Moolenaar30613902019-12-01 22:11:18 +01005580 // We don't know what command is used thus we can't be sure
5581 // about which characters need to be escaped. Only escape the
5582 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583# ifdef BACKSLASH_IN_FILENAME
5584 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5585# else
5586 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5587# endif
5588 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005589 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 vim_free(p);
5591 vim_free(fnames[i]);
5592 }
5593 }
5594 vim_free(fnames);
5595 }
5596 else
5597 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005598 // Go to the window under mouse cursor, then shorten given "fnames" by
5599 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 shorten_filenames(fnames, count);
5602
Bram Moolenaar30613902019-12-01 22:11:18 +01005603 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 if ((modifiers & MOUSE_SHIFT) != 0)
5605 p = vim_strsave(fnames[0]);
5606 else
5607 p = NULL;
5608
Bram Moolenaar30613902019-12-01 22:11:18 +01005609 // Handle the drop, :edit or :split to get to the file. This also
5610 // frees fnames[]. Skip this if there is only one item, it's a
5611 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5613 && mch_isdir(fnames[0]))
5614 {
5615 vim_free(fnames[0]);
5616 vim_free(fnames);
Yegappan Lakshmanan18d46582021-06-23 20:46:52 +02005617 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 }
5619 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005620 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
Bram Moolenaar4671e882021-11-22 17:21:48 +00005621 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005623
5624 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625}
5626#endif
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005627
5628/*
5629 * Check if "key" is to interrupt us. Handles a key that has not had modifiers
5630 * applied yet.
5631 * Return the key with modifiers applied if so, NUL if not.
5632 */
5633 int
5634check_for_interrupt(int key, int modifiers_arg)
5635{
5636 int modifiers = modifiers_arg;
5637 int c = merge_modifyOtherKeys(key, &modifiers);
5638
5639 if ((c == Ctrl_C && ctrl_c_interrupts)
Bram Moolenaaraf50e892020-08-01 13:22:10 +02005640#ifdef UNIX
5641 || (intr_char != Ctrl_C && c == intr_char)
5642#endif
5643 )
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005644 {
5645 got_int = TRUE;
5646 return c;
5647 }
5648 return NUL;
5649}
5650
Bram Moolenaar2d12c252022-06-13 21:42:45 +01005651/*
5652 * If the "--gui-log-file fname" argument is given write the dialog title and
5653 * message to a file and return TRUE. Otherwise return FALSE.
5654 * When there is any problem opening the file or writing to the file this is
5655 * ignored, showing the dialog might get the test to get stuck.
5656 */
5657 int
5658gui_dialog_log(char_u *title, char_u *message)
5659{
5660 char_u *fname = get_gui_dialog_file();
5661 FILE *fd;
5662
5663 if (fname == NULL)
5664 return FALSE;
5665
5666 fd = mch_fopen((char *)fname, "a");
5667 if (fd != NULL)
5668 {
5669 fprintf(fd, "%s: %s\n", title, message);
5670 fclose(fd);
5671 }
5672 return TRUE;
5673}