blob: 4408545db3b232a35f23d1245ed6a7f8d79f0b89 [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);
Bram Moolenaar0630bb62019-11-04 22:52:12 +010035static win_T *xy2win(int x, int y, mouse_find_T popup);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020037#ifdef GUI_MAY_FORK
Bram Moolenaard25c16e2016-01-29 22:13:30 +010038static void gui_do_fork(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020039
Bram Moolenaard25c16e2016-01-29 22:13:30 +010040static int gui_read_child_pipe(int fd);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020041
Bram Moolenaar30613902019-12-01 22:11:18 +010042// Return values for gui_read_child_pipe
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020043enum {
44 GUI_CHILD_IO_ERROR,
45 GUI_CHILD_OK,
46 GUI_CHILD_FAILED
47};
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020048#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020049
Bram Moolenaard25c16e2016-01-29 22:13:30 +010050static void gui_attempt_start(void);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020051
Bram Moolenaar30613902019-12-01 22:11:18 +010052static int can_update_cursor = TRUE; // can display the cursor
53static int disable_flush = 0; // If > 0, gui_mch_flush() is disabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
55/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 * gui_start -- Called when user wants to start the GUI.
57 *
58 * Careful: This function can be called recursively when there is a ":gui"
59 * command in the .gvimrc file. Only the first call should fork, not the
60 * recursive call.
61 */
62 void
Bram Moolenaarafde13b2019-04-28 19:46:49 +020063gui_start(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000064{
65 char_u *old_term;
Bram Moolenaar071d4272004-06-13 20:20:40 +000066 static int recursive = 0;
Bram Moolenaar68cbb142019-05-09 14:14:42 +020067#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaarafde13b2019-04-28 19:46:49 +020068 char *msg = NULL;
69#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
71 old_term = vim_strsave(T_NAME);
72
Bram Moolenaar30613902019-12-01 22:11:18 +010073 settmode(TMODE_COOK); // stop RAW mode
Bram Moolenaar071d4272004-06-13 20:20:40 +000074 if (full_screen)
Bram Moolenaar30613902019-12-01 22:11:18 +010075 cursor_on(); // needed for ":gui" in .vimrc
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 full_screen = FALSE;
77
Bram Moolenaar071d4272004-06-13 20:20:40 +000078 ++recursive;
79
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020080#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020081 /*
82 * Quit the current process and continue in the child.
83 * Makes "gvim file" disconnect from the shell it was started in.
84 * Don't do this when Vim was started with "-f" or the 'f' flag is present
85 * in 'guioptions'.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020086 * Don't do this when there is a running job, we can only get the status
87 * of a child from the parent.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020088 */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +020089 if (gui.dofork && !vim_strchr(p_go, GO_FORG) && recursive <= 1
90# ifdef FEAT_JOB_CHANNEL
91 && !job_any_running()
92# endif
93 )
Bram Moolenaar7f78bd72011-09-14 19:04:39 +020094 {
95 gui_do_fork();
96 }
97 else
98#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +020099#ifdef GUI_MAY_SPAWN
100 if (gui.dospawn
101# ifdef EXPERIMENTAL_GUI_CMD
102 && gui.dofork
103# endif
104 && !vim_strchr(p_go, GO_FORG)
105 && !anyBufIsChanged()
106# ifdef FEAT_JOB_CHANNEL
107 && !job_any_running()
108# endif
109 )
110 {
Bram Moolenaar68cbb142019-05-09 14:14:42 +0200111# ifdef EXPERIMENTAL_GUI_CMD
112 msg =
113# endif
114 gui_mch_do_spawn(arg);
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200115 }
116 else
117#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200118 {
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200119#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100120 // If there is 'f' in 'guioptions' and specify -g argument,
121 // gui_mch_init_check() was not called yet.
Bram Moolenaar6a3c1b42012-05-25 14:06:36 +0200122 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100123 getout_preserve_modified(1);
Bram Moolenaarae084bb2012-05-27 00:37:51 +0200124#endif
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200125 gui_attempt_start();
126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127
Bram Moolenaar30613902019-12-01 22:11:18 +0100128 if (!gui.in_use) // failed to start GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100130 // Back to old term settings
131 //
132 // FIXME: If we got here because a child process failed and flagged to
Bram Moolenaar651fca82021-11-29 20:39:38 +0000133 // the parent to resume, and X11 is enabled, this will
Bram Moolenaar30613902019-12-01 22:11:18 +0100134 // hit an X11 I/O error and do a longjmp(), leaving recursive
135 // permanently set to 1. This is probably not as big a problem as it
136 // sounds, because gui_mch_init() in both gui_x11.c and gui_gtk_x11.c
137 // return "OK" unconditionally, so it would be very difficult to
138 // actually hit this case.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200139 termcapinit(old_term);
Bram Moolenaar30613902019-12-01 22:11:18 +0100140 settmode(TMODE_RAW); // restart RAW mode
Bram Moolenaar30613902019-12-01 22:11:18 +0100141 set_title_defaults(); // set 'title' and 'icon' again
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200142#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
143 if (msg)
144 emsg(msg);
145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 }
147
148 vim_free(old_term);
149
Bram Moolenaar30613902019-12-01 22:11:18 +0100150 // If the GUI started successfully, trigger the GUIEnter event, otherwise
151 // the GUIFailed event.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200152 gui_mch_update();
153 apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
154 NULL, NULL, FALSE, curbuf);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200155 --recursive;
156}
157
158/*
159 * Set_termname() will call gui_init() to start the GUI.
160 * Set the "starting" flag, to indicate that the GUI will start.
161 *
162 * We don't want to open the GUI shell until after we've read .gvimrc,
163 * otherwise we don't know what font we will use, and hence we don't know
164 * what size the shell should be. So if there are errors in the .gvimrc
165 * file, they will have to go to the terminal: Set full_screen to FALSE.
166 * full_screen will be set to TRUE again by a successful termcapinit().
167 */
168 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100169gui_attempt_start(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200170{
171 static int recursive = 0;
172
173 ++recursive;
174 gui.starting = TRUE;
175
176#ifdef FEAT_GUI_GTK
177 gui.event_time = GDK_CURRENT_TIME;
178#endif
179
180 termcapinit((char_u *)"builtin_gui");
181 gui.starting = recursive - 1;
182
Bram Moolenaar9372a112005-12-06 19:59:18 +0000183#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 if (gui.in_use)
Bram Moolenaar727c8762010-10-20 19:17:48 +0200185 {
186# ifdef FEAT_EVAL
187 Window x11_window;
188 Display *x11_display;
189
190 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
191 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
192# endif
193
Bram Moolenaar30613902019-12-01 22:11:18 +0100194 // Display error messages in a dialog now.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 display_errors();
Bram Moolenaar727c8762010-10-20 19:17:48 +0200196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 --recursive;
199}
200
Bram Moolenaarb0b98d52018-05-05 21:01:00 +0200201#ifdef GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200202
Bram Moolenaar30613902019-12-01 22:11:18 +0100203// for waitpid()
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200204# if defined(HAVE_SYS_WAIT_H) || defined(HAVE_UNION_WAIT)
205# include <sys/wait.h>
206# endif
207
208/*
209 * Create a new process, by forking. In the child, start the GUI, and in
210 * the parent, exit.
211 *
212 * If something goes wrong, this will return with gui.in_use still set
213 * to FALSE, in which case the caller should continue execution without
214 * the GUI.
215 *
216 * If the child fails to start the GUI, then the child will exit and the
217 * parent will return. If the child succeeds, then the parent will exit
218 * and the child will return.
219 */
220 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100221gui_do_fork(void)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200222{
Bram Moolenaar30613902019-12-01 22:11:18 +0100223 int pipefd[2]; // pipe between parent and child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200224 int pipe_error;
225 int status;
226 int exit_status;
227 pid_t pid = -1;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200228
Bram Moolenaarc72e31d2022-06-16 18:47:20 +0100229#if defined(FEAT_RELTIME) && defined(HAVE_TIMER_CREATE)
230 // a timer is not carried forward
231 delete_timer();
232#endif
233
Bram Moolenaar30613902019-12-01 22:11:18 +0100234 // Setup a pipe between the child and the parent, so that the parent
235 // knows when the child has done the setsid() call and is allowed to
236 // exit.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200237 pipe_error = (pipe(pipefd) < 0);
238 pid = fork();
Bram Moolenaar30613902019-12-01 22:11:18 +0100239 if (pid < 0) // Fork error
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200240 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000241 emsg(_(e_failed_to_create_new_process_for_GUI));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200242 return;
243 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100244 else if (pid > 0) // Parent
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200245 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100246 // Give the child some time to do the setsid(), otherwise the
247 // exit() may kill the child too (when starting gvim from inside a
248 // gvim).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200249 if (!pipe_error)
250 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100251 // The read returns when the child closes the pipe (or when
252 // the child dies for some reason).
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200253 close(pipefd[1]);
254 status = gui_read_child_pipe(pipefd[0]);
255 if (status == GUI_CHILD_FAILED)
256 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100257 // The child failed to start the GUI, so the caller must
258 // continue. There may be more error information written
259 // to stderr by the child.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200260# ifdef __NeXT__
261 wait4(pid, &exit_status, 0, (struct rusage *)0);
262# else
263 waitpid(pid, &exit_status, 0);
264# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000265 emsg(_(e_the_child_process_failed_to_start_GUI));
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200266 return;
267 }
268 else if (status == GUI_CHILD_IO_ERROR)
269 {
270 pipe_error = TRUE;
271 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100272 // else GUI_CHILD_OK: parent exit
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200273 }
274
275 if (pipe_error)
Bram Moolenaareda1da02019-11-17 17:06:33 +0100276 ui_delay(301L, TRUE);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200277
Bram Moolenaar30613902019-12-01 22:11:18 +0100278 // When swapping screens we may need to go to the next line, e.g.,
279 // after a hit-enter prompt and using ":gui".
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200280 if (newline_on_exit)
281 mch_errmsg("\r\n");
282
283 /*
284 * The parent must skip the normal exit() processing, the child
285 * will do it. For example, GTK messes up signals when exiting.
286 */
287 _exit(0);
288 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100289 // Child
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200290
K.Takata6e1d31e2022-02-03 13:05:32 +0000291# ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100292 // Call gtk_init_check() here after fork(). See gui_init_check().
Bram Moolenaar29695702012-05-18 17:03:18 +0200293 if (gui_mch_init_check() != OK)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100294 getout_preserve_modified(1);
K.Takata6e1d31e2022-02-03 13:05:32 +0000295# endif
Bram Moolenaar29695702012-05-18 17:03:18 +0200296
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200297# if defined(HAVE_SETSID) || defined(HAVE_SETPGID)
298 /*
299 * Change our process group. On some systems/shells a CTRL-C in the
300 * shell where Vim was started would otherwise kill gvim!
301 */
302# if defined(HAVE_SETSID)
303 (void)setsid();
304# else
305 (void)setpgid(0, 0);
306# endif
307# endif
308 if (!pipe_error)
309 close(pipefd[0]);
310
311# if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +0100312 // Tell the session manager our new PID
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200313 gui_mch_forked();
314# endif
315
Bram Moolenaar30613902019-12-01 22:11:18 +0100316 // Try to start the GUI
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200317 gui_attempt_start();
318
Bram Moolenaar30613902019-12-01 22:11:18 +0100319 // Notify the parent
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200320 if (!pipe_error)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200321 {
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200322 if (gui.in_use)
323 write_eintr(pipefd[1], "ok", 3);
324 else
325 write_eintr(pipefd[1], "fail", 5);
326 close(pipefd[1]);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200327 }
328
Bram Moolenaar30613902019-12-01 22:11:18 +0100329 // If we failed to start the GUI, exit now.
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200330 if (!gui.in_use)
Bram Moolenaar6d8d8492016-03-19 14:48:31 +0100331 getout_preserve_modified(1);
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200332}
333
334/*
335 * Read from a pipe assumed to be connected to the child process (this
336 * function is called from the parent).
337 * Return GUI_CHILD_OK if the child successfully started the GUI,
338 * GUY_CHILD_FAILED if the child failed, or GUI_CHILD_IO_ERROR if there was
339 * some other error.
340 *
341 * The file descriptor will be closed before the function returns.
342 */
343 static int
344gui_read_child_pipe(int fd)
345{
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200346 long bytes_read;
K.Takata6e1d31e2022-02-03 13:05:32 +0000347# define READ_BUFFER_SIZE 10
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200348 char buffer[READ_BUFFER_SIZE];
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200349
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200350 bytes_read = read_eintr(fd, buffer, READ_BUFFER_SIZE - 1);
K.Takata6e1d31e2022-02-03 13:05:32 +0000351# undef READ_BUFFER_SIZE
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200352 close(fd);
353 if (bytes_read < 0)
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200354 return GUI_CHILD_IO_ERROR;
Bram Moolenaarcd6fe972011-10-20 21:28:01 +0200355 buffer[bytes_read] = NUL;
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200356 if (strcmp(buffer, "ok") == 0)
357 return GUI_CHILD_OK;
358 return GUI_CHILD_FAILED;
359}
360
Bram Moolenaar30613902019-12-01 22:11:18 +0100361#endif // GUI_MAY_FORK
Bram Moolenaar7f78bd72011-09-14 19:04:39 +0200362
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363/*
364 * Call this when vim starts up, whether or not the GUI is started
365 */
366 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100367gui_prepare(int *argc, char **argv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368{
Bram Moolenaar30613902019-12-01 22:11:18 +0100369 gui.in_use = FALSE; // No GUI yet (maybe later)
370 gui.starting = FALSE; // No GUI yet (maybe later)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 gui_mch_prepare(argc, argv);
372}
373
374/*
375 * Try initializing the GUI and check if it can be started.
376 * Used from main() to check early if "vim -g" can start the GUI.
377 * Used from gui_init() to prepare for starting the GUI.
378 * Returns FAIL or OK.
379 */
380 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100381gui_init_check(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382{
383 static int result = MAYBE;
384
385 if (result != MAYBE)
386 {
387 if (result == FAIL)
Bram Moolenaar6d057012021-12-31 18:49:43 +0000388 emsg(_(e_cannot_start_the_GUI));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 return result;
390 }
391
392 gui.shell_created = FALSE;
393 gui.dying = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +0100394 gui.in_focus = TRUE; // so the guicursor setting works
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 gui.dragged_sb = SBAR_NONE;
396 gui.dragged_wp = NULL;
397 gui.pointer_hidden = FALSE;
398 gui.col = 0;
399 gui.row = 0;
400 gui.num_cols = Columns;
401 gui.num_rows = Rows;
402
403 gui.cursor_is_valid = FALSE;
404 gui.scroll_region_top = 0;
405 gui.scroll_region_bot = Rows - 1;
406 gui.scroll_region_left = 0;
407 gui.scroll_region_right = Columns - 1;
408 gui.highlight_mask = HL_NORMAL;
409 gui.char_width = 1;
410 gui.char_height = 1;
411 gui.char_ascent = 0;
412 gui.border_width = 0;
413
414 gui.norm_font = NOFONT;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200415#ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 gui.bold_font = NOFONT;
417 gui.ital_font = NOFONT;
418 gui.boldital_font = NOFONT;
419# ifdef FEAT_XFONTSET
420 gui.fontset = NOFONTSET;
421# endif
422#endif
Bram Moolenaardb250522013-06-17 22:43:25 +0200423 gui.wide_font = NOFONT;
Bram Moolenaar13505972019-01-24 15:04:48 +0100424#ifndef FEAT_GUI_GTK
Bram Moolenaardb250522013-06-17 22:43:25 +0200425 gui.wide_bold_font = NOFONT;
426 gui.wide_ital_font = NOFONT;
427 gui.wide_boldital_font = NOFONT;
Bram Moolenaardb250522013-06-17 22:43:25 +0200428#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
430#ifdef FEAT_MENU
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200431# ifndef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432# ifdef FONTSET_ALWAYS
433 gui.menu_fontset = NOFONTSET;
434# else
435 gui.menu_font = NOFONT;
436# endif
437# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100438 gui.menu_is_active = TRUE; // default: include menu
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439# ifndef FEAT_GUI_GTK
440 gui.menu_height = MENU_DEFAULT_HEIGHT;
441 gui.menu_width = 0;
442# endif
443#endif
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100444#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 gui.toolbar_height = 0;
446#endif
447#if defined(FEAT_FOOTER) && defined(FEAT_GUI_MOTIF)
448 gui.footer_height = 0;
449#endif
450#ifdef FEAT_BEVAL_TIP
451 gui.tooltip_fontset = NOFONTSET;
452#endif
453
454 gui.scrollbar_width = gui.scrollbar_height = SB_DEFAULT_WIDTH;
455 gui.prev_wrap = -1;
456
K.Takata6e1d31e2022-02-03 13:05:32 +0000457#ifdef FEAT_GUI_GTK
Dusan Popovic4eeedc02021-10-16 20:52:05 +0100458 CLEAR_FIELD(gui.ligatures_map);
459#endif
460
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200461#if defined(ALWAYS_USE_GUI) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 result = OK;
463#else
Bram Moolenaar29695702012-05-18 17:03:18 +0200464# ifdef FEAT_GUI_GTK
465 /*
466 * Note: Don't call gtk_init_check() before fork, it will be called after
467 * the fork. When calling it before fork, it make vim hang for a while.
468 * See gui_do_fork().
469 * Use a simpler check if the GUI window can probably be opened.
470 */
Bram Moolenaar717e1962016-08-10 21:28:44 +0200471 result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200472# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 result = gui_mch_init_check();
Bram Moolenaar29695702012-05-18 17:03:18 +0200474# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475#endif
476 return result;
477}
478
479/*
480 * This is the call which starts the GUI.
481 */
482 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100483gui_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484{
485 win_T *wp;
486 static int recursive = 0;
487
488 /*
Dominique Pelleaf4a61a2021-12-27 17:21:41 +0000489 * It's possible to use ":gui" in a .gvimrc file. The first half of this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 * function will then be executed at the first call, the rest by the
491 * recursive call. This allow the shell to be opened halfway reading a
492 * gvimrc file.
493 */
494 if (!recursive)
495 {
496 ++recursive;
497
498 clip_init(TRUE);
499
Bram Moolenaar30613902019-12-01 22:11:18 +0100500 // If can't initialize, don't try doing the rest
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 if (gui_init_check() == FAIL)
502 {
503 --recursive;
504 clip_init(FALSE);
505 return;
506 }
507
508 /*
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000509 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
510 * breaks the Paste toolbar button.
511 */
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100512 set_option_value_give_err((char_u *)"paste", 0L, NULL, 0);
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000513
Bram Moolenaaracc770a2020-04-12 15:11:06 +0200514 // Set t_Co to the number of colors: RGB.
515 set_color_count(256 * 256 * 256);
516
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000517 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 * Set up system-wide default menus.
519 */
520#if defined(SYS_MENU_FILE) && defined(FEAT_MENU)
521 if (vim_strchr(p_go, GO_NOSYSMENU) == NULL)
522 {
523 sys_menu = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100524 do_source((char_u *)SYS_MENU_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 sys_menu = FALSE;
526 }
527#endif
528
529 /*
530 * Switch on the mouse by default, unless the user changed it already.
531 * This can then be changed in the .gvimrc.
532 */
533 if (!option_was_set((char_u *)"mouse"))
534 set_string_option_direct((char_u *)"mouse", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000535 (char_u *)"a", OPT_FREE, SID_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536
537 /*
538 * If -U option given, use only the initializations from that file and
539 * nothing else. Skip all initializations for "-U NONE" or "-u NORC".
540 */
541 if (use_gvimrc != NULL)
542 {
543 if (STRCMP(use_gvimrc, "NONE") != 0
544 && STRCMP(use_gvimrc, "NORC") != 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100545 && do_source(use_gvimrc, FALSE, DOSO_NONE, NULL) != OK)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000546 semsg(_(e_cannot_read_from_str), use_gvimrc);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 }
548 else
549 {
550 /*
551 * Get system wide defaults for gvim, only when file name defined.
552 */
553#ifdef SYS_GVIMRC_FILE
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100554 do_source((char_u *)SYS_GVIMRC_FILE, FALSE, DOSO_NONE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555#endif
556
557 /*
558 * Try to read GUI initialization commands from the following
559 * places:
560 * - environment variable GVIMINIT
561 * - the user gvimrc file (~/.gvimrc)
562 * - the second user gvimrc file ($VIM/.gvimrc for Dos)
563 * - the third user gvimrc file ($VIM/.gvimrc for Amiga)
564 * The first that exists is used, the rest is ignored.
565 */
566 if (process_env((char_u *)"GVIMINIT", FALSE) == FAIL
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000567 && do_source((char_u *)USR_GVIMRC_FILE, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100568 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569#ifdef USR_GVIMRC_FILE2
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000570 && do_source((char_u *)USR_GVIMRC_FILE2, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100571 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200573#ifdef USR_GVIMRC_FILE3
574 && do_source((char_u *)USR_GVIMRC_FILE3, TRUE,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100575 DOSO_GVIMRC, NULL) == FAIL
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 )
578 {
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200579#ifdef USR_GVIMRC_FILE4
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100580 (void)do_source((char_u *)USR_GVIMRC_FILE4, TRUE,
581 DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582#endif
583 }
584
585 /*
586 * Read initialization commands from ".gvimrc" in current
587 * directory. This is only done if the 'exrc' option is set.
588 * Because of security reasons we disallow shell and write
589 * commands now, except for unix if the file is owned by the user
590 * or 'secure' option has been reset in environment of global
591 * ".gvimrc".
592 * Only do this if GVIMRC_FILE is not the same as USR_GVIMRC_FILE,
593 * USR_GVIMRC_FILE2, USR_GVIMRC_FILE3 or SYS_GVIMRC_FILE.
594 */
595 if (p_exrc)
596 {
597#ifdef UNIX
598 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200599 stat_T s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600
Bram Moolenaar30613902019-12-01 22:11:18 +0100601 // if ".gvimrc" file is not owned by user, set 'secure'
602 // mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 if (mch_stat(GVIMRC_FILE, &s) || s.st_uid != getuid())
604 secure = p_secure;
605 }
606#else
607 secure = p_secure;
608#endif
609
610 if ( fullpathcmp((char_u *)USR_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200611 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612#ifdef SYS_GVIMRC_FILE
613 && fullpathcmp((char_u *)SYS_GVIMRC_FILE,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200614 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615#endif
616#ifdef USR_GVIMRC_FILE2
617 && fullpathcmp((char_u *)USR_GVIMRC_FILE2,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200618 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619#endif
620#ifdef USR_GVIMRC_FILE3
621 && fullpathcmp((char_u *)USR_GVIMRC_FILE3,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200622 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200624#ifdef USR_GVIMRC_FILE4
625 && fullpathcmp((char_u *)USR_GVIMRC_FILE4,
Bram Moolenaar99499b12019-05-23 21:35:48 +0200626 (char_u *)GVIMRC_FILE, FALSE, TRUE) != FPC_SAME
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100629 do_source((char_u *)GVIMRC_FILE, TRUE, DOSO_GVIMRC, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630
631 if (secure == 2)
632 need_wait_return = TRUE;
633 secure = 0;
634 }
635 }
636
637 if (need_wait_return || msg_didany)
638 wait_return(TRUE);
639
640 --recursive;
641 }
642
Bram Moolenaar30613902019-12-01 22:11:18 +0100643 // If recursive call opened the shell, return here from the first call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 if (gui.in_use)
645 return;
646
647 /*
648 * Create the GUI shell.
649 */
Bram Moolenaar30613902019-12-01 22:11:18 +0100650 gui.in_use = TRUE; // Must be set after menus have been set up
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 if (gui_mch_init() == FAIL)
652 goto error;
653
Bram Moolenaar30613902019-12-01 22:11:18 +0100654 // Avoid a delay for an error message that was printed in the terminal
655 // where Vim was started.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 emsg_on_display = FALSE;
657 msg_scrolled = 0;
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100658 clear_sb_text(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 need_wait_return = FALSE;
660 msg_didany = FALSE;
661
662 /*
663 * Check validity of any generic resources that may have been loaded.
664 */
665 if (gui.border_width < 0)
666 gui.border_width = 0;
667
668 /*
669 * Set up the fonts. First use a font specified with "-fn" or "-font".
670 */
671 if (font_argument != NULL)
Bram Moolenaar31e5c602022-04-15 13:53:33 +0100672 set_option_value_give_err((char_u *)"gfn",
673 0L, (char_u *)font_argument, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 if (
675#ifdef FEAT_XFONTSET
676 (*p_guifontset == NUL
677 || gui_init_font(p_guifontset, TRUE) == FAIL) &&
678#endif
679 gui_init_font(*p_guifont == NUL ? hl_get_font_name()
680 : p_guifont, FALSE) == FAIL)
681 {
Bram Moolenaara6f79292022-01-04 21:30:47 +0000682 emsg(_(e_cannot_start_gui_no_valid_font_found));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 goto error2;
684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 if (gui_get_wide_font() == FAIL)
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000686 emsg(_(e_guifontwide_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687
688 gui.num_cols = Columns;
689 gui.num_rows = Rows;
690 gui_reset_scroll_region();
691
Bram Moolenaar30613902019-12-01 22:11:18 +0100692 // Create initial scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 FOR_ALL_WINDOWS(wp)
694 {
695 gui_create_scrollbar(&wp->w_scrollbars[SBAR_LEFT], SBAR_LEFT, wp);
696 gui_create_scrollbar(&wp->w_scrollbars[SBAR_RIGHT], SBAR_RIGHT, wp);
697 }
698 gui_create_scrollbar(&gui.bottom_sbar, SBAR_BOTTOM, NULL);
699
700#ifdef FEAT_MENU
701 gui_create_initial_menus(root_menu);
702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703#ifdef FEAT_SIGN_ICONS
704 sign_gui_started();
705#endif
706
Bram Moolenaar30613902019-12-01 22:11:18 +0100707 // Configure the desired menu and scrollbars
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 gui_init_which_components(NULL);
709
Bram Moolenaar30613902019-12-01 22:11:18 +0100710 // All components of the GUI have been created now
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 gui.shell_created = TRUE;
712
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100713#ifdef FEAT_GUI_MSWIN
Bram Moolenaar4814ccb2018-12-22 18:44:53 +0100714 // Set the shell size, adjusted for the screen size. For GTK this only
715 // works after the shell has been opened, thus it is further down.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100716 // If the window is already maximized (e.g. when --windowid is passed in),
717 // we want to use the system-provided dimensions by passing FALSE to
718 // mustset. Otherwise, we want to initialize with the default rows/columns.
719 if (gui_mch_maximized())
720 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
721 else
722 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar4fc8e2f2019-03-30 22:26:38 +0100723#else
724# ifndef FEAT_GUI_GTK
725 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
726# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727#endif
728#if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +0100729 // Need to set the size of the menubar after all the menus have been
730 // created.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 gui_mch_compute_menu_height((Widget)0);
732#endif
733
734 /*
735 * Actually open the GUI shell.
736 */
737 if (gui_mch_open() != FAIL)
738 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 maketitle();
740 resettitle();
Bram Moolenaar651fca82021-11-29 20:39:38 +0000741
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 init_gui_options();
743#ifdef FEAT_ARABIC
Bram Moolenaar30613902019-12-01 22:11:18 +0100744 // Our GUI can't do bidi.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 p_tbidi = FALSE;
746#endif
Bram Moolenaar9372a112005-12-06 19:59:18 +0000747#if defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +0100748 // Give GTK+ a chance to put all widget's into place.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 gui_mch_update();
Bram Moolenaar18144c82006-04-12 21:52:12 +0000750
751# ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +0100752 // If there is no 'm' in 'guioptions' we need to remove the menu now.
753 // It was still there to make F10 work.
Bram Moolenaar18144c82006-04-12 21:52:12 +0000754 if (vim_strchr(p_go, GO_MENUS) == NULL)
755 {
756 --gui.starting;
757 gui_mch_enable_menu(FALSE);
758 ++gui.starting;
759 gui_mch_update();
760 }
761# endif
762
Bram Moolenaar30613902019-12-01 22:11:18 +0100763 // Now make sure the shell fits on the screen.
Bram Moolenaar372674f2019-03-30 20:31:22 +0100764 if (gui_mch_maximized())
765 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
766 else
767 gui_set_shellsize(TRUE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100769 // When 'lines' was set while starting up the topframe may have to be
770 // resized.
Bram Moolenaar41bfd302005-04-24 21:59:46 +0000771 win_new_shellsize();
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000772
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100773#ifdef FEAT_BEVAL_GUI
Bram Moolenaar30613902019-12-01 22:11:18 +0100774 // Always create the Balloon Evaluation area, but disable it when
775 // 'ballooneval' is off.
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100776 if (balloonEval != NULL)
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200777 {
778# ifdef FEAT_VARTABS
779 vim_free(balloonEval->vts);
780# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100781 vim_free(balloonEval);
Bram Moolenaarca4b6132018-06-28 12:05:11 +0200782 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100783 balloonEvalForTerm = FALSE;
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000784# ifdef FEAT_GUI_GTK
785 balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL,
786 &general_beval_cb, NULL);
787# else
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100788# if defined(FEAT_GUI_MOTIF)
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000789 {
790 extern Widget textArea;
791 balloonEval = gui_mch_create_beval_area(textArea, NULL,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000792 &general_beval_cb, NULL);
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000793 }
794# else
Bram Moolenaar4f974752019-02-17 17:44:42 +0100795# ifdef FEAT_GUI_MSWIN
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000796 balloonEval = gui_mch_create_beval_area(NULL, NULL,
797 &general_beval_cb, NULL);
798# endif
799# endif
800# endif
801 if (!p_beval)
802 gui_mch_disable_beval_area(balloonEval);
803#endif
Bram Moolenaarad772a62020-06-01 14:07:49 +0200804
805#ifndef FEAT_GUI_MSWIN
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200806 // In the GUI modifiers are prepended to keys.
Bram Moolenaarad772a62020-06-01 14:07:49 +0200807 // Don't do this for MS-Windows yet, it sends CTRL-K without the
808 // modifier.
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200809 seenModifyOtherKeys = TRUE;
Bram Moolenaarad772a62020-06-01 14:07:49 +0200810#endif
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +0000811
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
813 if (!im_xim_isvalid_imactivate())
Bram Moolenaar1d423ef2022-01-02 21:26:16 +0000814 emsg(_(e_value_of_imactivatekey_is_invalid));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100816 // When 'cmdheight' was set during startup it may not have taken
817 // effect yet.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000818 if (p_ch != 1L)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000819 command_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820
821 return;
822 }
823
824error2:
825#ifdef FEAT_GUI_X11
Bram Moolenaar30613902019-12-01 22:11:18 +0100826 // undo gui_mch_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 gui_mch_uninit();
828#endif
829
830error:
831 gui.in_use = FALSE;
832 clip_init(FALSE);
833}
834
835
836 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100837gui_exit(int rc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838{
Bram Moolenaar30613902019-12-01 22:11:18 +0100839 // don't free the fonts, it leads to a BUS error
840 // richard@whitequeen.com Jul 99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 free_highlight_fonts();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 gui.in_use = FALSE;
843 gui_mch_exit(rc);
844}
845
Bram Moolenaar9372a112005-12-06 19:59:18 +0000846#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200847 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
Bram Moolenaarda68cf32006-10-10 15:35:57 +0000848# define NEED_GUI_UPDATE_SCREEN 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849/*
850 * Called when the GUI shell is closed by the user. If there are no changed
851 * files Vim exits, otherwise there will be a dialog to ask the user what to
852 * do.
853 * When this function returns, Vim should NOT exit!
854 */
855 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100856gui_shell_closed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
Bram Moolenaar3552e742021-05-29 12:21:58 +0200858 cmdmod_T save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859
Bram Moolenaar3552e742021-05-29 12:21:58 +0200860 if (before_quit_autocmds(curwin, TRUE, FALSE))
861 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862
Bram Moolenaar30613902019-12-01 22:11:18 +0100863 // Only exit when there are no changed files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 exiting = TRUE;
865# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +0200866 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867# endif
868# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +0200869 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870# endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100871 // If there are changed buffers, present the user with a dialog if
872 // possible, otherwise give an error message.
Bram Moolenaar027387f2016-01-02 22:25:52 +0100873 if (!check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 getout(0);
875
876 exiting = FALSE;
877 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +0100878 gui_update_screen(); // redraw, window may show changed buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879}
880#endif
881
882/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200883 * Set the font. "font_list" is a comma separated list of font names. The
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 * first font name that works is used. If none is found, use the default
885 * font.
886 * If "fontset" is TRUE, the "font_list" is used as one name for the fontset.
887 * Return OK when able to set the font. When it failed FAIL is returned and
888 * the fonts are unchanged.
889 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100891gui_init_font(char_u *font_list, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
893#define FONTLEN 320
894 char_u font_name[FONTLEN];
895 int font_list_empty = FALSE;
896 int ret = FAIL;
897
898 if (!gui.in_use)
899 return FAIL;
900
901 font_name[0] = NUL;
902 if (*font_list == NUL)
903 font_list_empty = TRUE;
904 else
905 {
906#ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +0100907 // When using a fontset, the whole list of fonts is one name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (fontset)
909 ret = gui_mch_init_font(font_list, TRUE);
910 else
911#endif
912 while (*font_list != NUL)
913 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100914 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 (void)copy_option_part(&font_list, font_name, FONTLEN, ",");
916
Bram Moolenaar30613902019-12-01 22:11:18 +0100917 // Careful!!! The Win32 version of gui_mch_init_font(), when
918 // called with "*" will change p_guifont to the selected font
919 // name, which frees the old value. This makes font_list
920 // invalid. Thus when OK is returned here, font_list must no
921 // longer be used!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 if (gui_mch_init_font(font_name, FALSE) == OK)
923 {
K.Takata94373c42022-01-27 15:04:22 +0000924#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar30613902019-12-01 22:11:18 +0100925 // If it's a Unicode font, try setting 'guifontwide' to a
926 // similar double-width font.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 if ((p_guifontwide == NULL || *p_guifontwide == NUL)
928 && strstr((char *)font_name, "10646") != NULL)
929 set_guifontwide(font_name);
930#endif
931 ret = OK;
932 break;
933 }
934 }
935 }
936
937 if (ret != OK
938 && STRCMP(font_list, "*") != 0
939 && (font_list_empty || gui.norm_font == NOFONT))
940 {
941 /*
942 * Couldn't load any font in 'font_list', keep the current font if
943 * there is one. If 'font_list' is empty, or if there is no current
944 * font, tell gui_mch_init_font() to try to find a font we can load.
945 */
946 ret = gui_mch_init_font(NULL, FALSE);
947 }
948
949 if (ret == OK)
950 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +0200951#ifndef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +0100952 // Set normal font as current font
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953# ifdef FEAT_XFONTSET
954 if (gui.fontset != NOFONTSET)
955 gui_mch_set_fontset(gui.fontset);
956 else
957# endif
958 gui_mch_set_font(gui.norm_font);
959#endif
Bram Moolenaar372674f2019-03-30 20:31:22 +0100960 gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 }
962
963 return ret;
964}
965
K.Takata94373c42022-01-27 15:04:22 +0000966#ifdef USE_SET_GUIFONTWIDE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967/*
968 * Try setting 'guifontwide' to a font twice as wide as "name".
969 */
970 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100971set_guifontwide(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972{
973 int i = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +0100974 char_u wide_name[FONTLEN + 10]; // room for 2 * width and '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 char_u *wp = NULL;
976 char_u *p;
977 GuiFont font;
978
979 wp = wide_name;
980 for (p = name; *p != NUL; ++p)
981 {
982 *wp++ = *p;
983 if (*p == '-')
984 {
985 ++i;
Bram Moolenaar30613902019-12-01 22:11:18 +0100986 if (i == 6) // font type: change "--" to "-*-"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 {
988 if (p[1] == '-')
989 *wp++ = '*';
990 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100991 else if (i == 12) // found the width
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 {
993 ++p;
994 i = getdigits(&p);
995 if (i != 0)
996 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100997 // Double the width specification.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 sprintf((char *)wp, "%d%s", i * 2, p);
999 font = gui_mch_get_font(wide_name, FALSE);
1000 if (font != NOFONT)
1001 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001002 gui_mch_free_font(gui.wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 gui.wide_font = font;
1004 set_string_option_direct((char_u *)"gfw", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001005 wide_name, OPT_FREE, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 }
1007 }
1008 break;
1009 }
1010 }
1011 }
1012}
K.Takata94373c42022-01-27 15:04:22 +00001013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014
1015/*
1016 * Get the font for 'guifontwide'.
1017 * Return FAIL for an invalid font name.
1018 */
1019 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001020gui_get_wide_font(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021{
1022 GuiFont font = NOFONT;
1023 char_u font_name[FONTLEN];
1024 char_u *p;
1025
Bram Moolenaar30613902019-12-01 22:11:18 +01001026 if (!gui.in_use) // Can't allocate font yet, assume it's OK.
1027 return OK; // Will give an error message later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028
1029 if (p_guifontwide != NULL && *p_guifontwide != NUL)
1030 {
1031 for (p = p_guifontwide; *p != NUL; )
1032 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001033 // Isolate one comma separated font name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 (void)copy_option_part(&p, font_name, FONTLEN, ",");
1035 font = gui_mch_get_font(font_name, FALSE);
1036 if (font != NOFONT)
1037 break;
1038 }
1039 if (font == NOFONT)
1040 return FAIL;
1041 }
1042
1043 gui_mch_free_font(gui.wide_font);
Bram Moolenaar13505972019-01-24 15:04:48 +01001044#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001045 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 if (font != NOFONT && gui.norm_font != NOFONT
1047 && pango_font_description_equal(font, gui.norm_font))
1048 {
1049 gui.wide_font = NOFONT;
1050 gui_mch_free_font(font);
1051 }
1052 else
Bram Moolenaar13505972019-01-24 15:04:48 +01001053#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 gui.wide_font = font;
Bram Moolenaar13505972019-01-24 15:04:48 +01001055#ifdef FEAT_GUI_MSWIN
Bram Moolenaar0f272122013-01-23 18:37:40 +01001056 gui_mch_wide_font_changed();
Bram Moolenaar13505972019-01-24 15:04:48 +01001057#else
Bram Moolenaardb250522013-06-17 22:43:25 +02001058 /*
1059 * TODO: setup wide_bold_font, wide_ital_font and wide_boldital_font to
1060 * support those fonts for 'guifontwide'.
1061 */
Bram Moolenaar13505972019-01-24 15:04:48 +01001062#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 return OK;
1064}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001066#if defined(FEAT_GUI_GTK) || defined(PROTO)
1067/*
1068 * Set list of ascii characters that combined can create ligature.
1069 * Store them in char map for quick access from gui_gtk2_draw_string.
1070 */
1071 void
1072gui_set_ligatures(void)
1073{
1074 char_u *p;
1075
1076 if (*p_guiligatures != NUL)
1077 {
1078 // check for invalid characters
1079 for (p = p_guiligatures; *p != NUL; ++p)
1080 if (*p < 32 || *p > 127)
1081 {
1082 emsg(_(e_ascii_code_not_in_range));
1083 return;
1084 }
1085
1086 // store valid setting into ligatures_map
1087 CLEAR_FIELD(gui.ligatures_map);
1088 for (p = p_guiligatures; *p != NUL; ++p)
1089 gui.ligatures_map[*p] = 1;
1090 }
1091 else
1092 CLEAR_FIELD(gui.ligatures_map);
1093}
Dusan Popovicce59b9f2021-11-22 17:18:44 +00001094
1095/*
1096 * Adjust the columns to undraw for when the cursor is on ligatures.
1097 */
1098 static void
1099gui_adjust_undraw_cursor_for_ligatures(int *startcol, int *endcol)
1100{
1101 int off;
1102
1103 if (ScreenLines == NULL || *p_guiligatures == NUL)
1104 return;
1105
1106 // expand before the cursor for all the chars in gui.ligatures_map
1107 off = LineOffset[gui.cursor_row] + *startcol;
1108 if (gui.ligatures_map[ScreenLines[off]])
1109 while (*startcol > 0 && gui.ligatures_map[ScreenLines[--off]])
1110 (*startcol)--;
1111
1112 // expand after the cursor for all the chars in gui.ligatures_map
1113 off = LineOffset[gui.cursor_row] + *endcol;
1114 if (gui.ligatures_map[ScreenLines[off]])
1115 while (*endcol < ((int)screen_Columns - 1)
1116 && gui.ligatures_map[ScreenLines[++off]])
1117 (*endcol)++;
1118}
Dusan Popovic4eeedc02021-10-16 20:52:05 +01001119#endif
1120
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001121 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001122gui_set_cursor(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123{
1124 gui.row = row;
1125 gui.col = col;
1126}
1127
1128/*
1129 * gui_check_pos - check if the cursor is on the screen.
1130 */
1131 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001132gui_check_pos(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133{
1134 if (gui.row >= screen_Rows)
1135 gui.row = screen_Rows - 1;
1136 if (gui.col >= screen_Columns)
1137 gui.col = screen_Columns - 1;
1138 if (gui.cursor_row >= screen_Rows || gui.cursor_col >= screen_Columns)
1139 gui.cursor_is_valid = FALSE;
1140}
1141
1142/*
1143 * Redraw the cursor if necessary or when forced.
1144 * Careful: The contents of ScreenLines[] must match what is on the screen,
1145 * otherwise this goes wrong. May need to call out_flush() first.
1146 */
1147 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001148gui_update_cursor(
Bram Moolenaar30613902019-12-01 22:11:18 +01001149 int force, // when TRUE, update even when not moved
1150 int clear_selection) // clear selection under cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151{
1152 int cur_width = 0;
1153 int cur_height = 0;
1154 int old_hl_mask;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001155 cursorentry_T *shape;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 int id;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001157#ifdef FEAT_TERMINAL
1158 guicolor_T shape_fg = INVALCOLOR;
1159 guicolor_T shape_bg = INVALCOLOR;
1160#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001161 guicolor_T cfg, cbg, cc; // cursor fore-/background color
1162 int cattr; // cursor attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 int attr;
1164 attrentry_T *aep = NULL;
1165
Bram Moolenaar30613902019-12-01 22:11:18 +01001166 // Don't update the cursor when halfway busy scrolling or the screen size
1167 // doesn't match 'columns' and 'lines. ScreenLines[] isn't valid then.
Bram Moolenaar1b8d33b2008-08-06 12:37:44 +00001168 if (!can_update_cursor || screen_Columns != gui.num_cols
1169 || screen_Rows != gui.num_rows)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 return;
1171
1172 gui_check_pos();
1173 if (!gui.cursor_is_valid || force
1174 || gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1175 {
1176 gui_undraw_cursor();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02001177
1178 // If a cursor-less sleep is ongoing, leave the cursor invisible
1179 if (cursor_is_sleeping())
1180 return;
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (gui.row < 0)
1183 return;
Bram Moolenaar6e35a112018-03-04 21:36:05 +01001184#ifdef HAVE_INPUT_METHOD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
1186 im_set_position(gui.row, gui.col);
1187#endif
1188 gui.cursor_row = gui.row;
1189 gui.cursor_col = gui.col;
1190
Bram Moolenaar30613902019-12-01 22:11:18 +01001191 // Only write to the screen after ScreenLines[] has been initialized
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (!screen_cleared || ScreenLines == NULL)
1193 return;
1194
Bram Moolenaar30613902019-12-01 22:11:18 +01001195 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 if (clear_selection)
1197 clip_may_clear_selection(gui.row, gui.row);
Bram Moolenaar30613902019-12-01 22:11:18 +01001198 // Check that the cursor is inside the shell (resizing may have made
1199 // it invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 if (gui.row >= screen_Rows || gui.col >= screen_Columns)
1201 return;
1202
1203 gui.cursor_is_valid = TRUE;
1204
1205 /*
1206 * How the cursor is drawn depends on the current mode.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001207 * When in a terminal window use the shape/color specified there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001209#ifdef FEAT_TERMINAL
Bram Moolenaar69fbc9e2017-09-14 20:37:57 +02001210 if (terminal_is_active())
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001211 shape = term_get_cursor_shape(&shape_fg, &shape_bg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 else
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001213#endif
1214 shape = &shape_table[get_shape_idx(FALSE)];
Bram Moolenaar24959102022-05-07 20:01:16 +01001215 if (State & MODE_LANGMAP)
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001216 id = shape->id_lm;
1217 else
1218 id = shape->id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219
Bram Moolenaar30613902019-12-01 22:11:18 +01001220 // get the colors and attributes for the cursor. Default is inverted
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 cfg = INVALCOLOR;
1222 cbg = INVALCOLOR;
1223 cattr = HL_INVERSE;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001224 gui_mch_set_blinking(shape->blinkwait,
1225 shape->blinkon,
1226 shape->blinkoff);
Bram Moolenaar1dcada12017-11-13 21:10:04 +01001227 if (shape->blinkwait == 0 || shape->blinkon == 0
1228 || shape->blinkoff == 0)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001229 gui_mch_stop_blink(FALSE);
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001230#ifdef FEAT_TERMINAL
1231 if (shape_bg != INVALCOLOR)
1232 {
1233 cattr = 0;
1234 cfg = shape_fg;
1235 cbg = shape_bg;
1236 }
1237 else
1238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 if (id > 0)
1240 {
1241 cattr = syn_id2colors(id, &cfg, &cbg);
Bram Moolenaar54612582019-11-21 17:13:31 +01001242#if defined(HAVE_INPUT_METHOD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 {
1244 static int iid;
1245 guicolor_T fg, bg;
1246
Bram Moolenaarc236c162008-07-13 17:41:49 +00001247 if (
Bram Moolenaar54612582019-11-21 17:13:31 +01001248# if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaarc236c162008-07-13 17:41:49 +00001249 preedit_get_status()
1250# else
1251 im_get_status()
1252# endif
1253 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 {
1255 iid = syn_name2id((char_u *)"CursorIM");
1256 if (iid > 0)
1257 {
1258 syn_id2colors(iid, &fg, &bg);
1259 if (bg != INVALCOLOR)
1260 cbg = bg;
1261 if (fg != INVALCOLOR)
1262 cfg = fg;
1263 }
1264 }
1265 }
1266#endif
1267 }
1268
1269 /*
1270 * Get the attributes for the character under the cursor.
1271 * When no cursor color was given, use the character color.
1272 */
1273 attr = ScreenAttrs[LineOffset[gui.row] + gui.col];
1274 if (attr > HL_ALL)
1275 aep = syn_gui_attr2entry(attr);
1276 if (aep != NULL)
1277 {
1278 attr = aep->ae_attr;
1279 if (cfg == INVALCOLOR)
1280 cfg = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1281 : aep->ae_u.gui.fg_color);
1282 if (cbg == INVALCOLOR)
1283 cbg = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1284 : aep->ae_u.gui.bg_color);
1285 }
1286 if (cfg == INVALCOLOR)
1287 cfg = (attr & HL_INVERSE) ? gui.back_pixel : gui.norm_pixel;
1288 if (cbg == INVALCOLOR)
1289 cbg = (attr & HL_INVERSE) ? gui.norm_pixel : gui.back_pixel;
1290
1291#ifdef FEAT_XIM
1292 if (aep != NULL)
1293 {
1294 xim_bg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.fg_color
1295 : aep->ae_u.gui.bg_color);
1296 xim_fg_color = ((attr & HL_INVERSE) ? aep->ae_u.gui.bg_color
1297 : aep->ae_u.gui.fg_color);
1298 if (xim_bg_color == INVALCOLOR)
1299 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1300 : gui.back_pixel;
1301 if (xim_fg_color == INVALCOLOR)
1302 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1303 : gui.norm_pixel;
1304 }
1305 else
1306 {
1307 xim_bg_color = (attr & HL_INVERSE) ? gui.norm_pixel
1308 : gui.back_pixel;
1309 xim_fg_color = (attr & HL_INVERSE) ? gui.back_pixel
1310 : gui.norm_pixel;
1311 }
1312#endif
1313
1314 attr &= ~HL_INVERSE;
1315 if (cattr & HL_INVERSE)
1316 {
1317 cc = cbg;
1318 cbg = cfg;
1319 cfg = cc;
1320 }
1321 cattr &= ~HL_INVERSE;
1322
1323 /*
1324 * When we don't have window focus, draw a hollow cursor.
1325 */
1326 if (!gui.in_focus)
1327 {
1328 gui_mch_draw_hollow_cursor(cbg);
1329 return;
1330 }
1331
1332 old_hl_mask = gui.highlight_mask;
Bram Moolenaar54612582019-11-21 17:13:31 +01001333 if (shape->shape == SHAPE_BLOCK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 {
1335 /*
1336 * Draw the text character with the cursor colors. Use the
1337 * character attributes plus the cursor attributes.
1338 */
1339 gui.highlight_mask = (cattr | attr);
Bram Moolenaar54612582019-11-21 17:13:31 +01001340 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 GUI_MON_IS_CURSOR | GUI_MON_NOCLEAR, cfg, cbg, 0);
1342 }
1343 else
1344 {
Bram Moolenaar13505972019-01-24 15:04:48 +01001345#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 int col_off = FALSE;
1347#endif
1348 /*
1349 * First draw the partial cursor, then overwrite with the text
1350 * character, using a transparent background.
1351 */
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001352 if (shape->shape == SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 {
1354 cur_height = gui.char_height;
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001355 cur_width = (gui.char_width * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 }
1357 else
1358 {
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001359 cur_height = (gui.char_height * shape->percentage + 99) / 100;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 cur_width = gui.char_width;
1361 }
Bram Moolenaar367329b2007-08-30 11:53:22 +00001362 if (has_mbyte && (*mb_off2cells)(LineOffset[gui.row] + gui.col,
1363 LineOffset[gui.row] + screen_Columns) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001365 // Double wide character.
Bram Moolenaar3d9bdfe2017-08-12 22:55:58 +02001366 if (shape->shape != SHAPE_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 cur_width += gui.char_width;
Bram Moolenaar13505972019-01-24 15:04:48 +01001368#ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 if (CURSOR_BAR_RIGHT)
1370 {
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001371 // gui.col points to the left half of the character but
1372 // the vertical line needs to be on the right half.
Bram Moolenaar30613902019-12-01 22:11:18 +01001373 // A double-wide horizontal line is also drawn from the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00001374 // right half in gui_mch_draw_part_cursor().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 col_off = TRUE;
1376 ++gui.col;
1377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 gui_mch_draw_part_cursor(cur_width, cur_height, cbg);
Bram Moolenaar13505972019-01-24 15:04:48 +01001381#if defined(FEAT_RIGHTLEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 if (col_off)
1383 --gui.col;
1384#endif
1385
Bram Moolenaar30613902019-12-01 22:11:18 +01001386#ifndef FEAT_GUI_MSWIN // doesn't seem to work for MSWindows
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 gui.highlight_mask = ScreenAttrs[LineOffset[gui.row] + gui.col];
1388 (void)gui_screenchar(LineOffset[gui.row] + gui.col,
1389 GUI_MON_TRS_CURSOR | GUI_MON_NOCLEAR,
1390 (guicolor_T)0, (guicolor_T)0, 0);
1391#endif
1392 }
1393 gui.highlight_mask = old_hl_mask;
1394 }
1395}
1396
1397#if defined(FEAT_MENU) || defined(PROTO)
1398 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001399gui_position_menu(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
Bram Moolenaar9372a112005-12-06 19:59:18 +00001401# if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 if (gui.menu_is_active && gui.in_use)
1403 gui_mch_set_menu_pos(0, 0, gui.menu_width, gui.menu_height);
1404# endif
1405}
1406#endif
1407
1408/*
1409 * Position the various GUI components (text area, menu). The vertical
1410 * scrollbars are NOT handled here. See gui_update_scrollbars().
1411 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001413gui_position_components(int total_width UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414{
1415 int text_area_x;
1416 int text_area_y;
1417 int text_area_width;
1418 int text_area_height;
1419
Bram Moolenaar30613902019-12-01 22:11:18 +01001420 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 ++hold_gui_events;
1422
1423 text_area_x = 0;
1424 if (gui.which_scrollbars[SBAR_LEFT])
1425 text_area_x += gui.scrollbar_width;
1426
1427 text_area_y = 0;
1428#if defined(FEAT_MENU) && !(defined(FEAT_GUI_GTK) || defined(FEAT_GUI_PHOTON))
1429 gui.menu_width = total_width;
1430 if (gui.menu_is_active)
1431 text_area_y += gui.menu_height;
1432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
K.Takata6e1d31e2022-02-03 13:05:32 +00001434#if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +02001435 || defined(FEAT_GUI_MOTIF))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001436 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001437 text_area_y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001438#endif
1439
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001440#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MOTIF) \
K.Takatac81e9bf2022-01-16 14:15:49 +00001441 || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
1443 {
Bram Moolenaar0b962e52022-04-03 18:02:37 +01001444# if defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 gui_mch_set_toolbar_pos(0, text_area_y,
1446 gui.menu_width, gui.toolbar_height);
1447# endif
1448 text_area_y += gui.toolbar_height;
1449 }
1450#endif
1451
K.Takata6e1d31e2022-02-03 13:05:32 +00001452#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_HAIKU)
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001453 gui_mch_set_tabline_pos(0, text_area_y,
1454 gui.menu_width, gui.tabline_height);
1455 if (gui_has_tabline())
1456 text_area_y += gui.tabline_height;
1457#endif
1458
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 text_area_width = gui.num_cols * gui.char_width + gui.border_offset * 2;
1460 text_area_height = gui.num_rows * gui.char_height + gui.border_offset * 2;
1461
1462 gui_mch_set_text_area_pos(text_area_x,
1463 text_area_y,
1464 text_area_width,
1465 text_area_height
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001466#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 + xim_get_status_area_height()
1468#endif
1469 );
1470#ifdef FEAT_MENU
1471 gui_position_menu();
1472#endif
1473 if (gui.which_scrollbars[SBAR_BOTTOM])
1474 gui_mch_set_scrollbar_pos(&gui.bottom_sbar,
1475 text_area_x,
Bram Moolenaar203ec772020-07-17 20:43:43 +02001476 text_area_y + text_area_height
1477 + gui_mch_get_scrollbar_ypadding(),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 text_area_width,
1479 gui.scrollbar_height);
1480 gui.left_sbar_x = 0;
Bram Moolenaar203ec772020-07-17 20:43:43 +02001481 gui.right_sbar_x = text_area_x + text_area_width
1482 + gui_mch_get_scrollbar_xpadding();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483
1484 --hold_gui_events;
1485}
1486
Bram Moolenaar02743632005-07-25 20:42:36 +00001487/*
1488 * Get the width of the widgets and decorations to the side of the text area.
1489 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001491gui_get_base_width(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492{
1493 int base_width;
1494
1495 base_width = 2 * gui.border_offset;
1496 if (gui.which_scrollbars[SBAR_LEFT])
1497 base_width += gui.scrollbar_width;
1498 if (gui.which_scrollbars[SBAR_RIGHT])
1499 base_width += gui.scrollbar_width;
1500 return base_width;
1501}
1502
Bram Moolenaar02743632005-07-25 20:42:36 +00001503/*
1504 * Get the height of the widgets and decorations above and below the text area.
1505 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001507gui_get_base_height(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508{
1509 int base_height;
1510
1511 base_height = 2 * gui.border_offset;
1512 if (gui.which_scrollbars[SBAR_BOTTOM])
1513 base_height += gui.scrollbar_height;
1514#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01001515 // We can't take the sizes properly into account until anything is
1516 // realized. Therefore we recalculate all the values here just before
1517 // setting the size. (--mdcki)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518#else
1519# ifdef FEAT_MENU
1520 if (gui.menu_is_active)
1521 base_height += gui.menu_height;
1522# endif
1523# ifdef FEAT_TOOLBAR
1524 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 base_height += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001527# if defined(FEAT_GUI_TABLINE) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001528 || defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU))
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001529 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001530 base_height += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532# ifdef FEAT_FOOTER
1533 if (vim_strchr(p_go, GO_FOOTER) != NULL)
1534 base_height += gui.footer_height;
1535# endif
1536# if defined(FEAT_GUI_MOTIF) && defined(FEAT_MENU)
1537 base_height += gui_mch_text_area_extra_height();
1538# endif
1539#endif
1540 return base_height;
1541}
1542
1543/*
1544 * Should be called after the GUI shell has been resized. Its arguments are
1545 * the new width and height of the shell in pixels.
1546 */
1547 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001548gui_resize_shell(int pixel_width, int pixel_height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549{
1550 static int busy = FALSE;
1551
Bram Moolenaar30613902019-12-01 22:11:18 +01001552 if (!gui.shell_created) // ignore when still initializing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 return;
1554
1555 /*
1556 * Can't resize the screen while it is being redrawn. Remember the new
1557 * size and handle it later.
1558 */
1559 if (updating_screen || busy)
1560 {
1561 new_pixel_width = pixel_width;
1562 new_pixel_height = pixel_height;
1563 return;
1564 }
1565
1566again:
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001567 new_pixel_width = 0;
1568 new_pixel_height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 busy = TRUE;
1570
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001571#ifdef FEAT_GUI_HAIKU
1572 vim_lock_screen();
1573#endif
1574
Bram Moolenaar30613902019-12-01 22:11:18 +01001575 // Flush pending output before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 out_flush();
1577
1578 gui.num_cols = (pixel_width - gui_get_base_width()) / gui.char_width;
Bram Moolenaar6f7743e2008-02-06 16:33:58 +00001579 gui.num_rows = (pixel_height - gui_get_base_height()) / gui.char_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
1581 gui_position_components(pixel_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 gui_reset_scroll_region();
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 /*
1585 * At the "more" and ":confirm" prompt there is no redraw, put the cursor
1586 * at the last line here (why does it have to be one row too low?).
1587 */
Bram Moolenaar24959102022-05-07 20:01:16 +01001588 if (State == MODE_ASKMORE || State == MODE_CONFIRM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 gui.row = gui.num_rows;
1590
Bram Moolenaar30613902019-12-01 22:11:18 +01001591 // Only comparing Rows and Columns may be sufficient, but let's stay on
1592 // the safe side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 if (gui.num_rows != screen_Rows || gui.num_cols != screen_Columns
1594 || gui.num_rows != Rows || gui.num_cols != Columns)
1595 shell_resized();
1596
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001597#ifdef FEAT_GUI_HAIKU
1598 vim_unlock_screen();
1599#endif
1600
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 gui_update_scrollbars(TRUE);
1602 gui_update_cursor(FALSE, TRUE);
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001603#if defined(FEAT_XIM) && !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 xim_set_status_area();
1605#endif
1606
1607 busy = FALSE;
Bram Moolenaare45828b2006-02-15 22:12:56 +00001608
Bram Moolenaar30613902019-12-01 22:11:18 +01001609 // We may have been called again while redrawing the screen.
1610 // Need to do it all again with the latest size then. But only if the size
1611 // actually changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 if (new_pixel_height)
1613 {
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001614 if (pixel_width == new_pixel_width && pixel_height == new_pixel_height)
1615 {
1616 new_pixel_width = 0;
1617 new_pixel_height = 0;
1618 }
1619 else
1620 {
1621 pixel_width = new_pixel_width;
1622 pixel_height = new_pixel_height;
1623 goto again;
1624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 }
1626}
1627
1628/*
1629 * Check if gui_resize_shell() must be called.
1630 */
1631 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001632gui_may_resize_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 if (new_pixel_height)
Bram Moolenaar30613902019-12-01 22:11:18 +01001635 // careful: gui_resize_shell() may postpone the resize again if we
1636 // were called indirectly by it
Bram Moolenaar6b40f302017-02-03 22:01:47 +01001637 gui_resize_shell(new_pixel_width, new_pixel_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638}
1639
1640 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001641gui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642{
1643 Rows = gui.num_rows;
1644 Columns = gui.num_cols;
1645 return OK;
1646}
1647
1648/*
1649 * Set the size of the Vim shell according to Rows and Columns.
Bram Moolenaar02743632005-07-25 20:42:36 +00001650 * If "fit_to_display" is TRUE then the size may be reduced to fit the window
1651 * on the screen.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001652 * When "mustset" is TRUE the size was set by the user. When FALSE a UI
1653 * component was added or removed (e.g., a scrollbar).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001656gui_set_shellsize(
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001657 int mustset UNUSED,
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001658 int fit_to_display,
Bram Moolenaar30613902019-12-01 22:11:18 +01001659 int direction) // RESIZE_HOR, RESIZE_VER
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660{
1661 int base_width;
1662 int base_height;
1663 int width;
1664 int height;
1665 int min_width;
1666 int min_height;
1667 int screen_w;
1668 int screen_h;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001669#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001670 int un_maximize = mustset;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001671 int did_adjust = 0;
Bram Moolenaar09736232009-09-23 16:14:49 +00001672#endif
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001673 int x = -1, y = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674
1675 if (!gui.shell_created)
1676 return;
1677
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02001678#if defined(MSWIN) || defined(FEAT_GUI_GTK)
Bram Moolenaar30613902019-12-01 22:11:18 +01001679 // If not setting to a user specified size and maximized, calculate the
1680 // number of characters that fit in the maximized window.
Bram Moolenaar8ac44152017-11-09 18:33:29 +01001681 if (!mustset && (vim_strchr(p_go, GO_KEEPWINSIZE) != NULL
1682 || gui_mch_maximized()))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 {
1684 gui_mch_newfont();
1685 return;
1686 }
1687#endif
1688
1689 base_width = gui_get_base_width();
1690 base_height = gui_get_base_height();
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001691 if (fit_to_display)
Bram Moolenaar30613902019-12-01 22:11:18 +01001692 // Remember the original window position.
Bram Moolenaarcde88542015-08-11 19:14:00 +02001693 (void)gui_mch_get_winpos(&x, &y);
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001694
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001695 width = Columns * gui.char_width + base_width;
1696 height = Rows * gui.char_height + base_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
1698 if (fit_to_display)
1699 {
1700 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001701 if ((direction & RESIZE_HOR) && width > screen_w)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 {
1703 Columns = (screen_w - base_width) / gui.char_width;
1704 if (Columns < MIN_COLUMNS)
1705 Columns = MIN_COLUMNS;
1706 width = Columns * gui.char_width + base_width;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001707#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001708 ++did_adjust;
1709#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001711 if ((direction & RESIZE_VERT) && height > screen_h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 {
1713 Rows = (screen_h - base_height) / gui.char_height;
1714 check_shellsize();
1715 height = Rows * gui.char_height + base_height;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001716#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001717 ++did_adjust;
1718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 }
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001720#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001721 if (did_adjust == 2 || (width + gui.char_width >= screen_w
1722 && height + gui.char_height >= screen_h))
Bram Moolenaar30613902019-12-01 22:11:18 +01001723 // don't unmaximize if at maximum size
Bram Moolenaar09736232009-09-23 16:14:49 +00001724 un_maximize = FALSE;
1725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 }
Bram Moolenaare057d402013-06-30 17:51:51 +02001727 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 gui.num_cols = Columns;
1729 gui.num_rows = Rows;
1730
1731 min_width = base_width + MIN_COLUMNS * gui.char_width;
1732 min_height = base_height + MIN_LINES * gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001733 min_height += tabline_height() * gui.char_height;
Bram Moolenaar09736232009-09-23 16:14:49 +00001734
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02001735#ifdef FEAT_GUI_GTK
Bram Moolenaar09736232009-09-23 16:14:49 +00001736 if (un_maximize)
1737 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001738 // If the window size is smaller than the screen unmaximize the
1739 // window, otherwise resizing won't work.
Bram Moolenaar09736232009-09-23 16:14:49 +00001740 gui_mch_get_screen_dimensions(&screen_w, &screen_h);
1741 if ((width + gui.char_width < screen_w
1742 || height + gui.char_height * 2 < screen_h)
1743 && gui_mch_maximized())
1744 gui_mch_unmaximize();
1745 }
1746#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748 gui_mch_set_shellsize(width, height, min_width, min_height,
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00001749 base_width, base_height, direction);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
Bram Moolenaarc5d5d012010-01-27 21:05:05 +01001751 if (fit_to_display && x >= 0 && y >= 0)
1752 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001753 // Some window managers put the Vim window left of/above the screen.
1754 // Only change the position if it wasn't already negative before
1755 // (happens on MS-Windows with a secondary monitor).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 gui_mch_update();
1757 if (gui_mch_get_winpos(&x, &y) == OK && (x < 0 || y < 0))
1758 gui_mch_set_winpos(x < 0 ? 0 : x, y < 0 ? 0 : y);
1759 }
1760
1761 gui_position_components(width);
1762 gui_update_scrollbars(TRUE);
1763 gui_reset_scroll_region();
1764}
1765
1766/*
1767 * Called when Rows and/or Columns has changed.
1768 */
1769 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001770gui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
1772 gui_reset_scroll_region();
1773}
1774
1775/*
1776 * Make scroll region cover whole screen.
1777 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001778 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001779gui_reset_scroll_region(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780{
1781 gui.scroll_region_top = 0;
1782 gui.scroll_region_bot = gui.num_rows - 1;
1783 gui.scroll_region_left = 0;
1784 gui.scroll_region_right = gui.num_cols - 1;
1785}
1786
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001787 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001788gui_start_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789{
Bram Moolenaar30613902019-12-01 22:11:18 +01001790 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 gui.highlight_mask = mask;
Bram Moolenaar30613902019-12-01 22:11:18 +01001792 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 gui.highlight_mask |= mask;
1794}
1795
1796 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001797gui_stop_highlight(int mask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
Bram Moolenaar30613902019-12-01 22:11:18 +01001799 if (mask > HL_ALL) // highlight code
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 gui.highlight_mask = HL_NORMAL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001801 else // mask
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 gui.highlight_mask &= ~mask;
1803}
1804
1805/*
1806 * Clear a rectangular region of the screen from text pos (row1, col1) to
1807 * (row2, col2) inclusive.
1808 */
1809 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001810gui_clear_block(
1811 int row1,
1812 int col1,
1813 int row2,
1814 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815{
Bram Moolenaar30613902019-12-01 22:11:18 +01001816 // Clear the selection if we are about to write over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 clip_may_clear_selection(row1, row2);
1818
1819 gui_mch_clear_block(row1, col1, row2, col2);
1820
Bram Moolenaar30613902019-12-01 22:11:18 +01001821 // Invalidate cursor if it was in this block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if ( gui.cursor_row >= row1 && gui.cursor_row <= row2
1823 && gui.cursor_col >= col1 && gui.cursor_col <= col2)
1824 gui.cursor_is_valid = FALSE;
1825}
1826
1827/*
1828 * Write code to update the cursor later. This avoids the need to flush the
1829 * output buffer before calling gui_update_cursor().
1830 */
1831 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001832gui_update_cursor_later(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833{
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001834 OUT_STR("\033|s");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835}
1836
1837 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01001838gui_write(
1839 char_u *s,
1840 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841{
1842 char_u *p;
1843 int arg1 = 0, arg2 = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01001844 int force_cursor = FALSE; // force cursor update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 int force_scrollbar = FALSE;
1846 static win_T *old_curwin = NULL;
1847
Bram Moolenaar30613902019-12-01 22:11:18 +01001848// #define DEBUG_GUI_WRITE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849#ifdef DEBUG_GUI_WRITE
1850 {
1851 int i;
1852 char_u *str;
1853
1854 printf("gui_write(%d):\n ", len);
1855 for (i = 0; i < len; i++)
1856 if (s[i] == ESC)
1857 {
1858 if (i != 0)
1859 printf("\n ");
1860 printf("<ESC>");
1861 }
1862 else
1863 {
1864 str = transchar_byte(s[i]);
1865 if (str[0] && str[1])
1866 printf("<%s>", (char *)str);
1867 else
1868 printf("%s", (char *)str);
1869 }
1870 printf("\n");
1871 }
1872#endif
1873 while (len)
1874 {
1875 if (s[0] == ESC && s[1] == '|')
1876 {
1877 p = s + 2;
Bram Moolenaar4a6c6702016-07-01 15:48:05 +02001878 if (VIM_ISDIGIT(*p) || (*p == '-' && VIM_ISDIGIT(*(p + 1))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 {
1880 arg1 = getdigits(&p);
1881 if (p > s + len)
1882 break;
1883 if (*p == ';')
1884 {
1885 ++p;
1886 arg2 = getdigits(&p);
1887 if (p > s + len)
1888 break;
1889 }
1890 }
1891 switch (*p)
1892 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001893 case 'C': // Clear screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 clip_scroll_selection(9999);
1895 gui_mch_clear_all();
1896 gui.cursor_is_valid = FALSE;
1897 force_scrollbar = TRUE;
1898 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001899 case 'M': // Move cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 gui_set_cursor(arg1, arg2);
1901 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001902 case 's': // force cursor (shape) update
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 force_cursor = TRUE;
1904 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001905 case 'R': // Set scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 if (arg1 < arg2)
1907 {
1908 gui.scroll_region_top = arg1;
1909 gui.scroll_region_bot = arg2;
1910 }
1911 else
1912 {
1913 gui.scroll_region_top = arg2;
1914 gui.scroll_region_bot = arg1;
1915 }
1916 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001917 case 'V': // Set vertical scroll region
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 if (arg1 < arg2)
1919 {
1920 gui.scroll_region_left = arg1;
1921 gui.scroll_region_right = arg2;
1922 }
1923 else
1924 {
1925 gui.scroll_region_left = arg2;
1926 gui.scroll_region_right = arg1;
1927 }
1928 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001929 case 'd': // Delete line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 gui_delete_lines(gui.row, 1);
1931 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001932 case 'D': // Delete lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 gui_delete_lines(gui.row, arg1);
1934 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001935 case 'i': // Insert line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 gui_insert_lines(gui.row, 1);
1937 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001938 case 'I': // Insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 gui_insert_lines(gui.row, arg1);
1940 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001941 case '$': // Clear to end-of-line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 gui_clear_block(gui.row, gui.col, gui.row,
1943 (int)Columns - 1);
1944 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001945 case 'h': // Turn on highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 gui_start_highlight(arg1);
1947 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001948 case 'H': // Turn off highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 gui_stop_highlight(arg1);
1950 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001951 case 'f': // flash the window (visual bell)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 gui_mch_flash(arg1 == 0 ? 20 : arg1);
1953 break;
1954 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001955 p = s + 1; // Skip the ESC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 break;
1957 }
1958 len -= (int)(++p - s);
1959 s = p;
1960 }
Bram Moolenaar424bcae2022-01-31 14:59:41 +00001961 else if (s[0] < 0x20 // Ctrl character
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962#ifdef FEAT_SIGN_ICONS
1963 && s[0] != SIGN_BYTE
1964# ifdef FEAT_NETBEANS_INTG
1965 && s[0] != MULTISIGN_BYTE
1966# endif
1967#endif
1968 )
1969 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001970 if (s[0] == '\n') // NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 {
1972 gui.col = 0;
1973 if (gui.row < gui.scroll_region_bot)
1974 gui.row++;
1975 else
1976 gui_delete_lines(gui.scroll_region_top, 1);
1977 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001978 else if (s[0] == '\r') // CR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 {
1980 gui.col = 0;
1981 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001982 else if (s[0] == '\b') // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 {
1984 if (gui.col)
1985 --gui.col;
1986 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001987 else if (s[0] == Ctrl_L) // cursor-right
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 {
1989 ++gui.col;
1990 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001991 else if (s[0] == Ctrl_G) // Beep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 {
1993 gui_mch_beep();
1994 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001995 // Other Ctrl character: shouldn't happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996
Bram Moolenaar30613902019-12-01 22:11:18 +01001997 --len; // Skip this char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 ++s;
1999 }
2000 else
2001 {
2002 p = s;
2003 while (len > 0 && (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 *p >= 0x20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005#ifdef FEAT_SIGN_ICONS
2006 || *p == SIGN_BYTE
2007# ifdef FEAT_NETBEANS_INTG
2008 || *p == MULTISIGN_BYTE
2009# endif
2010#endif
2011 ))
2012 {
2013 len--;
2014 p++;
2015 }
2016 gui_outstr(s, (int)(p - s));
2017 s = p;
2018 }
2019 }
2020
Bram Moolenaar30613902019-12-01 22:11:18 +01002021 // Postponed update of the cursor (won't work if "can_update_cursor" isn't
2022 // set).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 if (force_cursor)
2024 gui_update_cursor(TRUE, TRUE);
2025
Bram Moolenaar30613902019-12-01 22:11:18 +01002026 // When switching to another window the dragging must have stopped.
2027 // Required for GTK, dragged_sb isn't reset.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 if (old_curwin != curwin)
2029 gui.dragged_sb = SBAR_NONE;
2030
Bram Moolenaar30613902019-12-01 22:11:18 +01002031 // Update the scrollbars after clearing the screen or when switched
2032 // to another window.
2033 // Update the horizontal scrollbar always, it's difficult to check all
2034 // situations where it might change.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 if (force_scrollbar || old_curwin != curwin)
2036 gui_update_scrollbars(force_scrollbar);
2037 else
2038 gui_update_horiz_scrollbar(FALSE);
2039 old_curwin = curwin;
2040
2041 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002042 * We need to make sure this is cleared since GTK doesn't tell us when
2043 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01002045#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 gui.dragged_sb = SBAR_NONE;
2047#endif
2048
Bram Moolenaar30613902019-12-01 22:11:18 +01002049 gui_may_flush(); // In case vim decides to take a nap
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050}
2051
2052/*
2053 * When ScreenLines[] is invalid, updating the cursor should not be done, it
2054 * produces wrong results. Call gui_dont_update_cursor() before that code and
2055 * gui_can_update_cursor() afterwards.
2056 */
2057 void
Bram Moolenaar107abd22016-08-12 14:08:25 +02002058gui_dont_update_cursor(int undraw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059{
2060 if (gui.in_use)
2061 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002062 // Undraw the cursor now, we probably can't do it after the change.
Bram Moolenaar107abd22016-08-12 14:08:25 +02002063 if (undraw)
2064 gui_undraw_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 can_update_cursor = FALSE;
2066 }
2067}
2068
2069 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002070gui_can_update_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
2072 can_update_cursor = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002073 // No need to update the cursor right now, there is always more output
2074 // after scrolling.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075}
2076
Bram Moolenaara338adc2018-01-31 20:51:47 +01002077/*
2078 * Disable issuing gui_mch_flush().
2079 */
2080 void
2081gui_disable_flush(void)
2082{
2083 ++disable_flush;
2084}
2085
2086/*
2087 * Enable issuing gui_mch_flush().
2088 */
2089 void
2090gui_enable_flush(void)
2091{
2092 --disable_flush;
2093}
2094
2095/*
2096 * Issue gui_mch_flush() if it is not disabled.
2097 */
2098 void
2099gui_may_flush(void)
2100{
2101 if (disable_flush == 0)
2102 gui_mch_flush();
2103}
2104
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002106gui_outstr(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107{
2108 int this_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 int cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111 if (len == 0)
2112 return;
2113
2114 if (len < 0)
2115 len = (int)STRLEN(s);
2116
2117 while (len > 0)
2118 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 if (has_mbyte)
2120 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002121 // Find out how many chars fit in the current line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 cells = 0;
2123 for (this_len = 0; this_len < len; )
2124 {
2125 cells += (*mb_ptr2cells)(s + this_len);
2126 if (gui.col + cells > Columns)
2127 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002128 this_len += (*mb_ptr2len)(s + this_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 }
2130 if (this_len > len)
Bram Moolenaar30613902019-12-01 22:11:18 +01002131 this_len = len; // don't include following composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 }
2133 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 if (gui.col + len > Columns)
2135 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 Moolenaar30613902019-12-01 22:11:18 +01002503 // Do we strikethrough the text?
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02002504 if (hl_mask_todo & HL_STRIKETHROUGH)
2505 draw_flags |= DRAW_STRIKE;
2506
Bram Moolenaar30613902019-12-01 22:11:18 +01002507 // Do we draw transparently?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (flags & GUI_MON_TRS_CURSOR)
2509 draw_flags |= DRAW_TRANSP;
2510
2511 /*
2512 * Draw the text.
2513 */
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002514#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01002515 // The value returned is the length in display cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 len = gui_gtk2_draw_string(gui.row, col, s, len, draw_flags);
2517#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 if (enc_utf8)
2519 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002520 int start; // index of bytes to be drawn
2521 int cells; // cellwidth of bytes to be drawn
2522 int thislen; // length of bytes to be drawn
2523 int cn; // cellwidth of current char
2524 int i; // index of current char
2525 int c; // current char value
2526 int cl; // byte length of current char
2527 int comping; // current char is composing
2528 int scol = col; // screen column
2529 int curr_wide = FALSE; // use 'guifontwide'
Bram Moolenaar45933962013-01-23 17:43:57 +01002530 int prev_wide = FALSE;
2531 int wide_changed;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002532# ifdef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01002533 int sep_comp = FALSE; // Don't separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002534# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002535 int sep_comp = TRUE; // Separate composing chars.
Bram Moolenaar13505972019-01-24 15:04:48 +01002536# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537
Bram Moolenaar30613902019-12-01 22:11:18 +01002538 // Break the string at a composing character, it has to be drawn on
2539 // top of the previous character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 start = 0;
2541 cells = 0;
2542 for (i = 0; i < len; i += cl)
2543 {
2544 c = utf_ptr2char(s + i);
2545 cn = utf_char2cells(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 comping = utf_iscomposing(c);
Bram Moolenaar30613902019-12-01 22:11:18 +01002547 if (!comping) // count cells from non-composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 cells += cn;
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002549 if (!comping || sep_comp)
2550 {
2551 if (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002552# ifdef FEAT_XFONTSET
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002553 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002554# endif
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002555 && wide_font != NOFONT)
2556 curr_wide = TRUE;
2557 else
2558 curr_wide = FALSE;
2559 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002560 cl = utf_ptr2len(s + i);
Bram Moolenaar30613902019-12-01 22:11:18 +01002561 if (cl == 0) // hit end of string
2562 len = i + cl; // len must be wrong "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563
Bram Moolenaar45933962013-01-23 17:43:57 +01002564 wide_changed = curr_wide != prev_wide;
2565
Bram Moolenaar30613902019-12-01 22:11:18 +01002566 // Print the string so far if it's the last character or there is
2567 // a composing character.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002568 if (i + cl >= len || (comping && sep_comp && i > start)
2569 || wide_changed
Bram Moolenaar13505972019-01-24 15:04:48 +01002570# if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 || (cn > 1
Bram Moolenaar13505972019-01-24 15:04:48 +01002572# ifdef FEAT_XFONTSET
Bram Moolenaar30613902019-12-01 22:11:18 +01002573 // No fontset: At least draw char after wide char at
2574 // right position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 && fontset == NOFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576# endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002577 )
2578# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 )
2580 {
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002581 if ((comping && sep_comp) || wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 thislen = i - start;
2583 else
2584 thislen = i - start + cl;
2585 if (thislen > 0)
2586 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002587 if (prev_wide)
Bram Moolenaardb250522013-06-17 22:43:25 +02002588 gui_mch_set_font(wide_font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 gui_mch_draw_string(gui.row, scol, s + start, thislen,
2590 draw_flags);
Bram Moolenaar45933962013-01-23 17:43:57 +01002591 if (prev_wide)
2592 gui_mch_set_font(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 start += thislen;
2594 }
2595 scol += cells;
2596 cells = 0;
Bram Moolenaar30613902019-12-01 22:11:18 +01002597 // Adjust to not draw a character which width is changed
2598 // against with last one.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002599 if (wide_changed && !(comping && sep_comp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 {
Bram Moolenaar45933962013-01-23 17:43:57 +01002601 scol -= cn;
2602 cl = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 }
2604
Bram Moolenaar13505972019-01-24 15:04:48 +01002605# if defined(FEAT_GUI_X11)
Bram Moolenaar30613902019-12-01 22:11:18 +01002606 // No fontset: draw a space to fill the gap after a wide char
2607 //
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 if (cn > 1 && (draw_flags & DRAW_TRANSP) == 0
Bram Moolenaar13505972019-01-24 15:04:48 +01002609# ifdef FEAT_XFONTSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 && fontset == NOFONTSET
Bram Moolenaar13505972019-01-24 15:04:48 +01002611# endif
Bram Moolenaar45933962013-01-23 17:43:57 +01002612 && !wide_changed)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 gui_mch_draw_string(gui.row, scol - 1, (char_u *)" ",
2614 1, draw_flags);
Bram Moolenaar13505972019-01-24 15:04:48 +01002615# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002617 // Draw a composing char on top of the previous char.
Bram Moolenaara6ce1cc2017-10-28 19:23:11 +02002618 if (comping && sep_comp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 {
Bram Moolenaar13505972019-01-24 15:04:48 +01002620# if defined(__APPLE_CC__) && TARGET_API_MAC_CARBON
Bram Moolenaar30613902019-12-01 22:11:18 +01002621 // Carbon ATSUI autodraws composing char over previous char
Bram Moolenaarfd91ecb2005-03-07 23:06:25 +00002622 gui_mch_draw_string(gui.row, scol, s + i, cl,
2623 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002624# else
Bram Moolenaarf25fd512005-09-30 21:15:37 +00002625 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2626 draw_flags | DRAW_TRANSP);
Bram Moolenaar13505972019-01-24 15:04:48 +01002627# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 start = i + cl;
2629 }
Bram Moolenaar45933962013-01-23 17:43:57 +01002630 prev_wide = curr_wide;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002632 // The stuff below assumes "len" is the length in screen columns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 len = scol - col;
2634 }
2635 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 {
2637 gui_mch_draw_string(gui.row, col, s, len, draw_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (enc_dbcs == DBCS_JPNU)
2639 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002640 // Get the length in display cells, this can be different from the
2641 // number of bytes for "euc-jp".
Bram Moolenaar72597a52010-07-18 15:31:08 +02002642 len = mb_string2cells(s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002645#endif // !FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646
2647 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2648 gui.col = col + len;
2649
Bram Moolenaar30613902019-12-01 22:11:18 +01002650 // May need to invert it when it's part of the selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 if (flags & GUI_MON_NOCLEAR)
2652 clip_may_redraw_selection(gui.row, col, len);
2653
2654 if (!(flags & (GUI_MON_IS_CURSOR | GUI_MON_TRS_CURSOR)))
2655 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002656 // Invalidate the old physical cursor position if we wrote over it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 if (gui.cursor_row == gui.row
2658 && gui.cursor_col >= col
2659 && gui.cursor_col < col + len)
2660 gui.cursor_is_valid = FALSE;
2661 }
2662
2663#ifdef FEAT_SIGN_ICONS
2664 if (draw_sign)
Bram Moolenaar30613902019-12-01 22:11:18 +01002665 // Draw the sign on top of the spaces.
Bram Moolenaar2b044ff2019-06-24 05:45:14 +02002666 gui_mch_drawsign(gui.row, signcol, gui.highlight_mask);
Bram Moolenaar173c9852010-09-29 17:27:01 +02002667# if defined(FEAT_NETBEANS_INTG) && (defined(FEAT_GUI_X11) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01002668 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 if (multi_sign)
2670 netbeans_draw_multisign_indicator(gui.row);
2671# endif
2672#endif
2673
2674 return OK;
2675}
2676
2677/*
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002678 * Undraw the cursor. This actually redraws the character at the cursor
2679 * position, plus some more characters when needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 */
2681 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002682gui_undraw_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
2684 if (gui.cursor_is_valid)
2685 {
Dusan Popovicce59b9f2021-11-22 17:18:44 +00002686 // Always redraw the character just before if there is one, because
2687 // with some fonts and characters there can be a one pixel overlap.
2688 int startcol = gui.cursor_col > 0 ? gui.cursor_col - 1 : gui.cursor_col;
2689 int endcol = gui.cursor_col;
2690
2691#ifdef FEAT_GUI_GTK
2692 gui_adjust_undraw_cursor_for_ligatures(&startcol, &endcol);
2693#endif
2694 gui_redraw_block(gui.cursor_row, startcol,
2695 gui.cursor_row, endcol, GUI_MON_NOCLEAR);
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002696
Bram Moolenaar54612582019-11-21 17:13:31 +01002697 // Cursor_is_valid is reset when the cursor is undrawn, also reset it
2698 // here in case it wasn't needed to undraw it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 gui.cursor_is_valid = FALSE;
2700 }
2701}
2702
2703 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002704gui_redraw(
2705 int x,
2706 int y,
2707 int w,
2708 int h)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709{
2710 int row1, col1, row2, col2;
2711
2712 row1 = Y_2_ROW(y);
2713 col1 = X_2_COL(x);
2714 row2 = Y_2_ROW(y + h - 1);
2715 col2 = X_2_COL(x + w - 1);
2716
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002717 gui_redraw_block(row1, col1, row2, col2, GUI_MON_NOCLEAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718
2719 /*
2720 * We may need to redraw the cursor, but don't take it upon us to change
2721 * its location after a scroll.
2722 * (maybe be more strict even and test col too?)
2723 * These things may be outside the update/clipping region and reality may
2724 * not reflect Vims internal ideas if these operations are clipped away.
2725 */
2726 if (gui.row == gui.cursor_row)
2727 gui_update_cursor(TRUE, TRUE);
2728}
2729
2730/*
2731 * Draw a rectangular block of characters, from row1 to row2 (inclusive) and
2732 * from col1 to col2 (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 */
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002734 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002735gui_redraw_block(
2736 int row1,
2737 int col1,
2738 int row2,
2739 int col2,
Bram Moolenaar30613902019-12-01 22:11:18 +01002740 int flags) // flags for gui_outstr_nowrap()
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741{
2742 int old_row, old_col;
2743 long_u old_hl_mask;
2744 int off;
Bram Moolenaar3918c952005-03-15 22:34:55 +00002745 sattr_T first_attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 int idx, len;
2747 int back, nback;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 int orig_col1, orig_col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
Bram Moolenaar30613902019-12-01 22:11:18 +01002750 // Don't try to update when ScreenLines is not valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 if (!screen_cleared || ScreenLines == NULL)
Bram Moolenaar7c003aa2020-03-28 20:44:41 +01002752 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753
Bram Moolenaar30613902019-12-01 22:11:18 +01002754 // Don't try to draw outside the shell!
2755 // Check everything, strange values may be caused by a big border width
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 col1 = check_col(col1);
2757 col2 = check_col(col2);
2758 row1 = check_row(row1);
2759 row2 = check_row(row2);
2760
Bram Moolenaar30613902019-12-01 22:11:18 +01002761 // Remember where our cursor was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 old_row = gui.row;
2763 old_col = gui.col;
2764 old_hl_mask = gui.highlight_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 orig_col1 = col1;
2766 orig_col2 = col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767
2768 for (gui.row = row1; gui.row <= row2; gui.row++)
2769 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002770 // When only half of a double-wide character is in the block, include
2771 // the other half.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 col1 = orig_col1;
2773 col2 = orig_col2;
2774 off = LineOffset[gui.row];
2775 if (enc_dbcs != 0)
2776 {
2777 if (col1 > 0)
2778 col1 -= dbcs_screen_head_off(ScreenLines + off,
2779 ScreenLines + off + col1);
2780 col2 += dbcs_screen_tail_off(ScreenLines + off,
2781 ScreenLines + off + col2);
2782 }
2783 else if (enc_utf8)
2784 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002785 if (ScreenLines[off + col1] == 0)
2786 {
2787 if (col1 > 0)
2788 --col1;
2789 else
Bram Moolenaar9a853462018-12-07 14:10:37 +01002790 {
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002791 // FIXME: how can the first character ever be zero?
Bram Moolenaar9a853462018-12-07 14:10:37 +01002792 // Make this IEMSGN when it no longer breaks Travis CI.
2793 vim_snprintf((char *)IObuff, IOSIZE,
2794 "INTERNAL ERROR: NUL in ScreenLines in row %ld",
2795 (long)gui.row);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002796 msg((char *)IObuff);
Bram Moolenaar9a853462018-12-07 14:10:37 +01002797 }
Bram Moolenaar4087bfd2018-12-07 13:26:39 +01002798 }
Bram Moolenaar13505972019-01-24 15:04:48 +01002799#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
2801 ++col2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01002803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 gui.col = col1;
2805 off = LineOffset[gui.row] + gui.col;
2806 len = col2 - col1 + 1;
2807
Bram Moolenaar30613902019-12-01 22:11:18 +01002808 // Find how many chars back this highlighting starts, or where a space
2809 // is. Needed for when the bold trick is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 for (back = 0; back < col1; ++back)
2811 if (ScreenAttrs[off - 1 - back] != ScreenAttrs[off]
2812 || ScreenLines[off - 1 - back] == ' ')
2813 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
Bram Moolenaar30613902019-12-01 22:11:18 +01002815 // Break it up in strings of characters with the same attributes.
2816 // Print UTF-8 characters individually.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 while (len > 0)
2818 {
2819 first_attr = ScreenAttrs[off];
2820 gui.highlight_mask = first_attr;
Bram Moolenaar13505972019-01-24 15:04:48 +01002821#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 if (enc_utf8 && ScreenLinesUC[off] != 0)
2823 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002824 // output multi-byte character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 nback = gui_screenchar(off, flags,
2826 (guicolor_T)0, (guicolor_T)0, back);
2827 if (gui.col < Columns && ScreenLines[off + 1] == 0)
2828 idx = 2;
2829 else
2830 idx = 1;
2831 }
2832 else if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
2833 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002834 // output double-byte, single-width character separately
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 nback = gui_screenchar(off, flags,
2836 (guicolor_T)0, (guicolor_T)0, back);
2837 idx = 1;
2838 }
2839 else
2840#endif
2841 {
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02002842#ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 for (idx = 0; idx < len; ++idx)
2844 {
2845 if (enc_utf8 && ScreenLines[off + idx] == 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01002846 continue; // skip second half of double-width char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 if (ScreenAttrs[off + idx] != first_attr)
2848 break;
2849 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002850 // gui_screenstr() takes care of multibyte chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 nback = gui_screenstr(off, idx, flags,
2852 (guicolor_T)0, (guicolor_T)0, back);
2853#else
2854 for (idx = 0; idx < len && ScreenAttrs[off + idx] == first_attr;
2855 idx++)
2856 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002857 // Stop at a multi-byte Unicode character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 if (enc_utf8 && ScreenLinesUC[off + idx] != 0)
2859 break;
2860 if (enc_dbcs == DBCS_JPNU)
2861 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002862 // Stop at a double-byte single-width char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 if (ScreenLines[off + idx] == 0x8e)
2864 break;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002865 if (len > 1 && (*mb_ptr2len)(ScreenLines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 + off + idx) == 2)
Bram Moolenaar30613902019-12-01 22:11:18 +01002867 ++idx; // skip second byte of double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 }
2870 nback = gui_outstr_nowrap(ScreenLines + off, idx, flags,
2871 (guicolor_T)0, (guicolor_T)0, back);
2872#endif
2873 }
2874 if (nback == FAIL)
2875 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002876 // Must back up to start drawing where a bold or italic word
2877 // starts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 off -= back;
2879 len += back;
2880 gui.col -= back;
2881 }
2882 else
2883 {
2884 off += idx;
2885 len -= idx;
2886 }
2887 back = 0;
2888 }
2889 }
2890
Bram Moolenaar30613902019-12-01 22:11:18 +01002891 // Put the cursor back where it was
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 gui.row = old_row;
2893 gui.col = old_col;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002894 gui.highlight_mask = (int)old_hl_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895}
2896
2897 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002898gui_delete_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899{
2900 if (count <= 0)
2901 return;
2902
2903 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002904 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 gui_clear_block(row, gui.scroll_region_left,
2906 gui.scroll_region_bot, gui.scroll_region_right);
2907 else
2908 {
2909 gui_mch_delete_lines(row, count);
2910
Bram Moolenaar30613902019-12-01 22:11:18 +01002911 // If the cursor was in the deleted lines it's now gone. If the
2912 // cursor was in the scrolled lines adjust its position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 if (gui.cursor_row >= row
2914 && gui.cursor_col >= gui.scroll_region_left
2915 && gui.cursor_col <= gui.scroll_region_right)
2916 {
2917 if (gui.cursor_row < row + count)
2918 gui.cursor_is_valid = FALSE;
2919 else if (gui.cursor_row <= gui.scroll_region_bot)
2920 gui.cursor_row -= count;
2921 }
2922 }
2923}
2924
2925 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002926gui_insert_lines(int row, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927{
2928 if (count <= 0)
2929 return;
2930
2931 if (row + count > gui.scroll_region_bot)
Bram Moolenaar30613902019-12-01 22:11:18 +01002932 // Scrolled out of region, just blank the lines out
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 gui_clear_block(row, gui.scroll_region_left,
2934 gui.scroll_region_bot, gui.scroll_region_right);
2935 else
2936 {
2937 gui_mch_insert_lines(row, count);
2938
2939 if (gui.cursor_row >= gui.row
2940 && gui.cursor_col >= gui.scroll_region_left
2941 && gui.cursor_col <= gui.scroll_region_right)
2942 {
2943 if (gui.cursor_row <= gui.scroll_region_bot - count)
2944 gui.cursor_row += count;
2945 else if (gui.cursor_row <= gui.scroll_region_bot)
2946 gui.cursor_is_valid = FALSE;
2947 }
2948 }
2949}
2950
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002951#ifdef FEAT_TIMERS
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002952/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002953 * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
2954 */
2955 static int
2956gui_wait_for_chars_3(
2957 long wtime,
2958 int *interrupted UNUSED,
2959 int ignore_input UNUSED)
2960{
2961 return gui_mch_wait_for_chars(wtime);
2962}
Bram Moolenaar4ce46c22017-12-19 19:42:41 +01002963#endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01002964
2965/*
Bram Moolenaar9472eec2017-06-05 13:31:56 +02002966 * Returns OK if a character was found to be available within the given time,
2967 * or FAIL otherwise.
2968 */
Bram Moolenaar975b5272016-03-15 23:10:59 +01002969 static int
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002970gui_wait_for_chars_or_timer(
2971 long wtime,
2972 int *interrupted UNUSED,
2973 int ignore_input UNUSED)
Bram Moolenaar975b5272016-03-15 23:10:59 +01002974{
2975#ifdef FEAT_TIMERS
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002976 return ui_wait_for_chars_or_timer(wtime, gui_wait_for_chars_3,
2977 interrupted, ignore_input);
Bram Moolenaar975b5272016-03-15 23:10:59 +01002978#else
2979 return gui_mch_wait_for_chars(wtime);
2980#endif
2981}
2982
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983/*
2984 * The main GUI input routine. Waits for a character from the keyboard.
Bram Moolenaare40b9d42019-01-27 16:55:47 +01002985 * "wtime" == -1 Wait forever.
2986 * "wtime" == 0 Don't wait.
2987 * "wtime" > 0 Wait wtime milliseconds for a character.
2988 *
2989 * Returns the number of characters read or zero when timed out or interrupted.
2990 * "buf" may be NULL, in which case a non-zero number is returned if characters
2991 * are available.
2992 */
2993 static int
2994gui_wait_for_chars_buf(
2995 char_u *buf,
2996 int maxlen,
2997 long wtime, // don't use "time", MIPS cannot handle it
2998 int tb_change_cnt)
2999{
3000 int retval;
3001
3002#ifdef FEAT_MENU
3003 // If we're going to wait a bit, update the menus and mouse shape for the
3004 // current State.
3005 if (wtime != 0)
3006 gui_update_menus(0);
3007#endif
3008
3009 gui_mch_update();
3010 if (input_available()) // Got char, return immediately
3011 {
3012 if (buf != NULL && !typebuf_changed(tb_change_cnt))
3013 return read_from_input_buf(buf, (long)maxlen);
3014 return 0;
3015 }
3016 if (wtime == 0) // Don't wait for char
3017 return FAIL;
3018
3019 // Before waiting, flush any output to the screen.
3020 gui_mch_flush();
3021
3022 // Blink while waiting for a character.
3023 gui_mch_start_blink();
3024
3025 // Common function to loop until "wtime" is met, while handling timers and
3026 // other callbacks.
3027 retval = inchar_loop(buf, maxlen, wtime, tb_change_cnt,
3028 gui_wait_for_chars_or_timer, NULL);
3029
3030 gui_mch_stop_blink(TRUE);
3031
3032 return retval;
3033}
3034
3035/*
3036 * Wait for a character from the keyboard without actually reading it.
3037 * Also deals with timers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 * wtime == -1 Wait forever.
3039 * wtime == 0 Don't wait.
3040 * wtime > 0 Wait wtime milliseconds for a character.
3041 * Returns OK if a character was found to be available within the given time,
3042 * or FAIL otherwise.
3043 */
3044 int
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003045gui_wait_for_chars(long wtime, int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003047 return gui_wait_for_chars_buf(NULL, 0, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048}
3049
3050/*
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003051 * Equivalent of mch_inchar() for the GUI.
3052 */
3053 int
3054gui_inchar(
3055 char_u *buf,
3056 int maxlen,
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003057 long wtime, // milliseconds
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003058 int tb_change_cnt)
3059{
Bram Moolenaare40b9d42019-01-27 16:55:47 +01003060 return gui_wait_for_chars_buf(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01003061}
3062
3063/*
Bram Moolenaarb5dd4242007-05-06 12:28:24 +00003064 * Fill p[4] with mouse coordinates encoded for check_termcode().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 */
3066 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003067fill_mouse_coord(char_u *p, int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 p[0] = (char_u)(col / 128 + ' ' + 1);
3070 p[1] = (char_u)(col % 128 + ' ' + 1);
3071 p[2] = (char_u)(row / 128 + ' ' + 1);
3072 p[3] = (char_u)(row % 128 + ' ' + 1);
3073}
3074
3075/*
3076 * Generic mouse support function. Add a mouse event to the input buffer with
3077 * the given properties.
3078 * button --- may be any of MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT,
3079 * MOUSE_X1, MOUSE_X2
3080 * MOUSE_DRAG, or MOUSE_RELEASE.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003081 * MOUSE_4 and MOUSE_5 are used for vertical scroll wheel,
3082 * MOUSE_6 and MOUSE_7 for horizontal scroll wheel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 * x, y --- Coordinates of mouse in pixels.
3084 * repeated_click --- TRUE if this click comes only a short time after a
3085 * previous click.
3086 * modifiers --- Bit field which may be any of the following modifiers
3087 * or'ed together: MOUSE_SHIFT | MOUSE_CTRL | MOUSE_ALT.
3088 * This function will ignore drag events where the mouse has not moved to a new
3089 * character.
3090 */
3091 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003092gui_send_mouse_event(
3093 int button,
3094 int x,
3095 int y,
3096 int repeated_click,
3097 int_u modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098{
3099 static int prev_row = 0, prev_col = 0;
3100 static int prev_button = -1;
3101 static int num_clicks = 1;
3102 char_u string[10];
3103 enum key_extra button_char;
3104 int row, col;
3105#ifdef FEAT_CLIPBOARD
3106 int checkfor;
3107 int did_clip = FALSE;
3108#endif
3109
3110 /*
3111 * Scrolling may happen at any time, also while a selection is present.
3112 */
3113 switch (button)
3114 {
Bram Moolenaar445f11d2021-06-08 20:13:31 +02003115 case MOUSE_MOVE:
3116 button_char = KE_MOUSEMOVE_XY;
3117 goto button_set;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 case MOUSE_X1:
3119 button_char = KE_X1MOUSE;
3120 goto button_set;
3121 case MOUSE_X2:
3122 button_char = KE_X2MOUSE;
3123 goto button_set;
3124 case MOUSE_4:
3125 button_char = KE_MOUSEDOWN;
3126 goto button_set;
3127 case MOUSE_5:
3128 button_char = KE_MOUSEUP;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02003129 goto button_set;
3130 case MOUSE_6:
3131 button_char = KE_MOUSELEFT;
3132 goto button_set;
3133 case MOUSE_7:
3134 button_char = KE_MOUSERIGHT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135button_set:
3136 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003137 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 if (hold_gui_events)
3139 return;
3140
Ernie Raelc4cb5442022-04-03 15:47:28 +01003141 row = gui_xy2colrow(x, y, &col);
3142 // Don't report a mouse move unless moved to a
3143 // different character position.
3144 if (button == MOUSE_MOVE)
3145 {
3146 if (row == prev_row && col == prev_col)
3147 return;
3148 else
3149 {
3150 prev_row = row >= 0 ? row : 0;
3151 prev_col = col;
3152 }
3153 }
3154
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 string[3] = CSI;
3156 string[4] = KS_EXTRA;
3157 string[5] = (int)button_char;
3158
Bram Moolenaar30613902019-12-01 22:11:18 +01003159 // Pass the pointer coordinates of the scroll event so that we
3160 // know which window to scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 string[6] = (char_u)(col / 128 + ' ' + 1);
3162 string[7] = (char_u)(col % 128 + ' ' + 1);
3163 string[8] = (char_u)(row / 128 + ' ' + 1);
3164 string[9] = (char_u)(row % 128 + ' ' + 1);
3165
3166 if (modifiers == 0)
3167 add_to_input_buf(string + 3, 7);
3168 else
3169 {
3170 string[0] = CSI;
3171 string[1] = KS_MODIFIER;
3172 string[2] = 0;
3173 if (modifiers & MOUSE_SHIFT)
3174 string[2] |= MOD_MASK_SHIFT;
3175 if (modifiers & MOUSE_CTRL)
3176 string[2] |= MOD_MASK_CTRL;
3177 if (modifiers & MOUSE_ALT)
3178 string[2] |= MOD_MASK_ALT;
3179 add_to_input_buf(string, 10);
3180 }
3181 return;
3182 }
3183 }
3184
3185#ifdef FEAT_CLIPBOARD
Bram Moolenaar30613902019-12-01 22:11:18 +01003186 // If a clipboard selection is in progress, handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 if (clip_star.state == SELECT_IN_PROGRESS)
3188 {
3189 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y), repeated_click);
Bram Moolenaar0ce37332019-12-18 21:33:22 +01003190
3191 // A release event may still need to be sent if the position is equal.
3192 row = gui_xy2colrow(x, y, &col);
3193 if (button != MOUSE_RELEASE || row != prev_row || col != prev_col)
3194 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196
Bram Moolenaar30613902019-12-01 22:11:18 +01003197 // Determine which mouse settings to look for based on the current mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 switch (get_real_state())
3199 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003200 case MODE_NORMAL_BUSY:
3201 case MODE_OP_PENDING:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003202# ifdef FEAT_TERMINAL
Bram Moolenaar24959102022-05-07 20:01:16 +01003203 case MODE_TERMINAL:
Bram Moolenaarae147ab2017-11-11 17:09:09 +01003204# endif
Bram Moolenaar24959102022-05-07 20:01:16 +01003205 case MODE_NORMAL: checkfor = MOUSE_NORMAL; break;
3206 case MODE_VISUAL: checkfor = MOUSE_VISUAL; break;
3207 case MODE_SELECT: checkfor = MOUSE_VISUAL; break;
3208 case MODE_REPLACE:
3209 case MODE_REPLACE | MODE_LANGMAP:
3210 case MODE_VREPLACE:
3211 case MODE_VREPLACE | MODE_LANGMAP:
3212 case MODE_INSERT:
3213 case MODE_INSERT | MODE_LANGMAP:
3214 checkfor = MOUSE_INSERT; break;
3215 case MODE_ASKMORE:
3216 case MODE_HITRETURN: // At the more- and hit-enter prompt pass the
Bram Moolenaar30613902019-12-01 22:11:18 +01003217 // mouse event for a click on or below the
3218 // message line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 if (Y_2_ROW(y) >= msg_row)
3220 checkfor = MOUSE_NORMAL;
3221 else
3222 checkfor = MOUSE_RETURN;
3223 break;
3224
3225 /*
3226 * On the command line, use the clipboard selection on all lines
3227 * but the command line. But not when pasting.
3228 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003229 case MODE_CMDLINE:
3230 case MODE_CMDLINE | MODE_LANGMAP:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (Y_2_ROW(y) < cmdline_row && button != MOUSE_MIDDLE)
3232 checkfor = MOUSE_NONE;
3233 else
3234 checkfor = MOUSE_COMMAND;
3235 break;
3236
3237 default:
3238 checkfor = MOUSE_NONE;
3239 break;
3240 };
3241
3242 /*
3243 * Allow clipboard selection of text on the command line in "normal"
3244 * modes. Don't do this when dragging the status line, or extending a
3245 * Visual selection.
3246 */
Bram Moolenaar24959102022-05-07 20:01:16 +01003247 if ((State == MODE_NORMAL || State == MODE_NORMAL_BUSY
3248 || (State & MODE_INSERT))
Bram Moolenaar4033c552017-09-16 20:54:51 +02003249 && Y_2_ROW(y) >= topframe->fr_height + firstwin->w_winrow
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 && button != MOUSE_DRAG
3251# ifdef FEAT_MOUSESHAPE
3252 && !drag_status_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 && !drag_sep_line
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254# endif
3255 )
3256 checkfor = MOUSE_NONE;
3257
3258 /*
3259 * Use modeless selection when holding CTRL and SHIFT pressed.
3260 */
3261 if ((modifiers & MOUSE_CTRL) && (modifiers & MOUSE_SHIFT))
3262 checkfor = MOUSE_NONEF;
3263
3264 /*
3265 * In Ex mode, always use modeless selection.
3266 */
3267 if (exmode_active)
3268 checkfor = MOUSE_NONE;
3269
3270 /*
3271 * If the mouse settings say to not use the mouse, use the modeless
3272 * selection. But if Visual is active, assume that only the Visual area
3273 * will be selected.
3274 * Exception: On the command line, both the selection is used and a mouse
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00003275 * key is sent.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 */
3277 if (!mouse_has(checkfor) || checkfor == MOUSE_COMMAND)
3278 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003279 // Don't do modeless selection in Visual mode.
Bram Moolenaar24959102022-05-07 20:01:16 +01003280 if (checkfor != MOUSE_NONEF && VIsual_active && (State & MODE_NORMAL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282
3283 /*
3284 * When 'mousemodel' is "popup", shift-left is translated to right.
3285 * But not when also using Ctrl.
3286 */
3287 if (mouse_model_popup() && button == MOUSE_LEFT
3288 && (modifiers & MOUSE_SHIFT) && !(modifiers & MOUSE_CTRL))
3289 {
3290 button = MOUSE_RIGHT;
3291 modifiers &= ~ MOUSE_SHIFT;
3292 }
3293
Bram Moolenaar30613902019-12-01 22:11:18 +01003294 // If the selection is done, allow the right button to extend it.
3295 // If the selection is cleared, allow the right button to start it
3296 // from the cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 if (button == MOUSE_RIGHT)
3298 {
3299 if (clip_star.state == SELECT_CLEARED)
3300 {
Bram Moolenaar24959102022-05-07 20:01:16 +01003301 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 {
3303 col = msg_col;
3304 row = msg_row;
3305 }
3306 else
3307 {
3308 col = curwin->w_wcol;
3309 row = curwin->w_wrow + W_WINROW(curwin);
3310 }
3311 clip_start_selection(col, row, FALSE);
3312 }
3313 clip_process_selection(button, X_2_COL(x), Y_2_ROW(y),
3314 repeated_click);
3315 did_clip = TRUE;
3316 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003317 // Allow the left button to start the selection
Bram Moolenaare60acc12011-05-10 16:41:25 +02003318 else if (button == MOUSE_LEFT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 {
3320 clip_start_selection(X_2_COL(x), Y_2_ROW(y), repeated_click);
3321 did_clip = TRUE;
3322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
Bram Moolenaar30613902019-12-01 22:11:18 +01003324 // Always allow pasting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (button != MOUSE_MIDDLE)
3326 {
3327 if (!mouse_has(checkfor) || button == MOUSE_RELEASE)
3328 return;
3329 if (checkfor != MOUSE_COMMAND)
3330 button = MOUSE_LEFT;
3331 }
3332 repeated_click = FALSE;
3333 }
3334
3335 if (clip_star.state != SELECT_CLEARED && !did_clip)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003336 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338
Bram Moolenaar30613902019-12-01 22:11:18 +01003339 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 if (hold_gui_events)
3341 return;
3342
3343 row = gui_xy2colrow(x, y, &col);
3344
3345 /*
3346 * If we are dragging and the mouse hasn't moved far enough to be on a
3347 * different character, then don't send an event to vim.
3348 */
3349 if (button == MOUSE_DRAG)
3350 {
3351 if (row == prev_row && col == prev_col)
3352 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01003353 // Dragging above the window, set "row" to -1 to cause a scroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 if (y < 0)
3355 row = -1;
3356 }
3357
3358 /*
3359 * If topline has changed (window scrolled) since the last click, reset
3360 * repeated_click, because we don't want starting Visual mode when
3361 * clicking on a different character in the text.
3362 */
3363 if (curwin->w_topline != gui_prev_topline
3364#ifdef FEAT_DIFF
3365 || curwin->w_topfill != gui_prev_topfill
3366#endif
3367 )
3368 repeated_click = FALSE;
3369
Bram Moolenaar30613902019-12-01 22:11:18 +01003370 string[0] = CSI; // this sequence is recognized by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 string[1] = KS_MOUSE;
3372 string[2] = KE_FILLER;
3373 if (button != MOUSE_DRAG && button != MOUSE_RELEASE)
3374 {
3375 if (repeated_click)
3376 {
3377 /*
3378 * Handle multiple clicks. They only count if the mouse is still
3379 * pointing at the same character.
3380 */
3381 if (button != prev_button || row != prev_row || col != prev_col)
3382 num_clicks = 1;
3383 else if (++num_clicks > 4)
3384 num_clicks = 1;
3385 }
3386 else
3387 num_clicks = 1;
3388 prev_button = button;
3389 gui_prev_topline = curwin->w_topline;
3390#ifdef FEAT_DIFF
3391 gui_prev_topfill = curwin->w_topfill;
3392#endif
3393
3394 string[3] = (char_u)(button | 0x20);
3395 SET_NUM_MOUSE_CLICKS(string[3], num_clicks);
3396 }
3397 else
3398 string[3] = (char_u)button;
3399
3400 string[3] |= modifiers;
3401 fill_mouse_coord(string + 4, col, row);
3402 add_to_input_buf(string, 8);
3403
3404 if (row < 0)
3405 prev_row = 0;
3406 else
3407 prev_row = row;
3408 prev_col = col;
3409
3410 /*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003411 * We need to make sure this is cleared since GTK doesn't tell us when
3412 * the user is done dragging.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 */
Bram Moolenaar0b962e52022-04-03 18:02:37 +01003414#if defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 gui.dragged_sb = SBAR_NONE;
3416#endif
3417}
3418
3419/*
3420 * Convert x and y coordinate to column and row in text window.
3421 * Corrects for multi-byte character.
3422 * returns column in "*colp" and row as return value;
3423 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003424 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003425gui_xy2colrow(int x, int y, int *colp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426{
3427 int col = check_col(X_2_COL(x));
3428 int row = check_row(Y_2_ROW(y));
3429
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 *colp = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 return row;
3432}
3433
3434#if defined(FEAT_MENU) || defined(PROTO)
3435/*
3436 * Callback function for when a menu entry has been selected.
3437 */
3438 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003439gui_menu_cb(vimmenu_T *menu)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440{
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003441 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442
Bram Moolenaar30613902019-12-01 22:11:18 +01003443 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 if (hold_gui_events)
3445 return;
3446
3447 bytes[0] = CSI;
3448 bytes[1] = KS_MENU;
3449 bytes[2] = KE_FILLER;
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00003450 add_to_input_buf(bytes, 3);
3451 add_long_to_buf((long_u)menu, bytes);
3452 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453}
3454#endif
3455
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003456static int prev_which_scrollbars[3];
Bram Moolenaare45828b2006-02-15 22:12:56 +00003457
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458/*
3459 * Set which components are present.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003460 * If "oldval" is not NULL, "oldval" is the previous value, the new value is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 * in p_go.
3462 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003464gui_init_which_components(char_u *oldval UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465{
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003466#ifdef FEAT_GUI_DARKTHEME
3467 static int prev_dark_theme = -1;
3468 int using_dark_theme = FALSE;
3469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470#ifdef FEAT_MENU
3471 static int prev_menu_is_active = -1;
3472#endif
3473#ifdef FEAT_TOOLBAR
3474 static int prev_toolbar = -1;
3475 int using_toolbar = FALSE;
3476#endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003477#ifdef FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003478 int using_tabline;
3479#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480#ifdef FEAT_FOOTER
3481 static int prev_footer = -1;
3482 int using_footer = FALSE;
3483#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003484#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 static int prev_tearoff = -1;
3486 int using_tearoff = FALSE;
3487#endif
3488
3489 char_u *p;
3490 int i;
3491#ifdef FEAT_MENU
3492 int grey_old, grey_new;
3493 char_u *temp;
3494#endif
3495 win_T *wp;
3496 int need_set_size;
3497 int fix_size;
3498
3499#ifdef FEAT_MENU
3500 if (oldval != NULL && gui.in_use)
3501 {
3502 /*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01003503 * Check if the menus go from grey to non-grey or vice versa.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 */
3505 grey_old = (vim_strchr(oldval, GO_GREY) != NULL);
3506 grey_new = (vim_strchr(p_go, GO_GREY) != NULL);
3507 if (grey_old != grey_new)
3508 {
3509 temp = p_go;
3510 p_go = oldval;
3511 gui_update_menus(MENU_ALL_MODES);
3512 p_go = temp;
3513 }
3514 }
3515 gui.menu_is_active = FALSE;
3516#endif
3517
3518 for (i = 0; i < 3; i++)
3519 gui.which_scrollbars[i] = FALSE;
3520 for (p = p_go; *p; p++)
3521 switch (*p)
3522 {
3523 case GO_LEFT:
3524 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3525 break;
3526 case GO_RIGHT:
3527 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3528 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 case GO_VLEFT:
3530 if (win_hasvertsplit())
3531 gui.which_scrollbars[SBAR_LEFT] = TRUE;
3532 break;
3533 case GO_VRIGHT:
3534 if (win_hasvertsplit())
3535 gui.which_scrollbars[SBAR_RIGHT] = TRUE;
3536 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 case GO_BOT:
3538 gui.which_scrollbars[SBAR_BOTTOM] = TRUE;
3539 break;
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003540#ifdef FEAT_GUI_DARKTHEME
3541 case GO_DARKTHEME:
3542 using_dark_theme = TRUE;
3543 break;
3544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545#ifdef FEAT_MENU
3546 case GO_MENUS:
3547 gui.menu_is_active = TRUE;
3548 break;
3549#endif
3550 case GO_GREY:
Bram Moolenaar30613902019-12-01 22:11:18 +01003551 // make menu's have grey items, ignored here
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 break;
3553#ifdef FEAT_TOOLBAR
3554 case GO_TOOLBAR:
3555 using_toolbar = TRUE;
3556 break;
3557#endif
3558#ifdef FEAT_FOOTER
3559 case GO_FOOTER:
3560 using_footer = TRUE;
3561 break;
3562#endif
3563 case GO_TEAROFF:
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01003564#if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 using_tearoff = TRUE;
3566#endif
3567 break;
3568 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01003569 // Ignore options that are not supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 break;
3571 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003572
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 if (gui.in_use)
3574 {
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003575 need_set_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 fix_size = FALSE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003577
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003578#ifdef FEAT_GUI_DARKTHEME
3579 if (using_dark_theme != prev_dark_theme)
3580 {
3581 gui_mch_set_dark_theme(using_dark_theme);
3582 prev_dark_theme = using_dark_theme;
3583 }
3584#endif
3585
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003586#ifdef FEAT_GUI_TABLINE
Bram Moolenaar30613902019-12-01 22:11:18 +01003587 // Update the GUI tab line, it may appear or disappear. This may
3588 // cause the non-GUI tab line to disappear or appear.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003589 using_tabline = gui_has_tabline();
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003590 if (!gui_mch_showing_tabline() != !using_tabline)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003591 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003592 // We don't want a resize event change "Rows" here, save and
3593 // restore it. Resizing is handled below.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003594 i = Rows;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003595 gui_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003596 Rows = i;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003597 need_set_size |= RESIZE_VERT;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003598 if (using_tabline)
3599 fix_size = TRUE;
3600 if (!gui_use_tabline())
Bram Moolenaar30613902019-12-01 22:11:18 +01003601 redraw_tabline = TRUE; // may draw non-GUI tab line
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003602 }
3603#endif
3604
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 for (i = 0; i < 3; i++)
3606 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003607 // The scrollbar needs to be updated when it is shown/unshown and
3608 // when switching tab pages. But the size only changes when it's
3609 // shown/unshown. Thus we need two places to remember whether a
3610 // scrollbar is there or not.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003611 if (gui.which_scrollbars[i] != prev_which_scrollbars[i]
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003612 || gui.which_scrollbars[i]
Bram Moolenaar4033c552017-09-16 20:54:51 +02003613 != curtab->tp_prev_which_scrollbars[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 {
3615 if (i == SBAR_BOTTOM)
3616 gui_mch_enable_scrollbar(&gui.bottom_sbar,
3617 gui.which_scrollbars[i]);
3618 else
3619 {
3620 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 gui_do_scrollbar(wp, i, gui.which_scrollbars[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003623 if (gui.which_scrollbars[i] != prev_which_scrollbars[i])
3624 {
3625 if (i == SBAR_BOTTOM)
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003626 need_set_size |= RESIZE_VERT;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003627 else
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003628 need_set_size |= RESIZE_HOR;
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003629 if (gui.which_scrollbars[i])
3630 fix_size = TRUE;
3631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632 }
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003633 curtab->tp_prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003634 prev_which_scrollbars[i] = gui.which_scrollbars[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 }
3636
3637#ifdef FEAT_MENU
3638 if (gui.menu_is_active != prev_menu_is_active)
3639 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003640 // We don't want a resize event change "Rows" here, save and
3641 // restore it. Resizing is handled below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 i = Rows;
3643 gui_mch_enable_menu(gui.menu_is_active);
3644 Rows = i;
3645 prev_menu_is_active = gui.menu_is_active;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003646 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 if (gui.menu_is_active)
3648 fix_size = TRUE;
3649 }
3650#endif
3651
3652#ifdef FEAT_TOOLBAR
3653 if (using_toolbar != prev_toolbar)
3654 {
3655 gui_mch_show_toolbar(using_toolbar);
3656 prev_toolbar = using_toolbar;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003657 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 if (using_toolbar)
3659 fix_size = TRUE;
3660 }
3661#endif
3662#ifdef FEAT_FOOTER
3663 if (using_footer != prev_footer)
3664 {
3665 gui_mch_enable_footer(using_footer);
3666 prev_footer = using_footer;
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003667 need_set_size |= RESIZE_VERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 if (using_footer)
3669 fix_size = TRUE;
3670 }
3671#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01003672#if defined(FEAT_MENU) && !(defined(MSWIN) && !defined(FEAT_TEAROFF))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 if (using_tearoff != prev_tearoff)
3674 {
3675 gui_mch_toggle_tearoffs(using_tearoff);
3676 prev_tearoff = using_tearoff;
3677 }
3678#endif
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003679 if (need_set_size != 0)
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003680 {
3681#ifdef FEAT_GUI_GTK
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003682 long prev_Columns = Columns;
3683 long prev_Rows = Rows;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003684#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003685 // Adjust the size of the window to make the text area keep the
3686 // same size and to avoid that part of our window is off-screen
3687 // and a scrollbar can't be used, for example.
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003688 gui_set_shellsize(FALSE, fix_size, need_set_size);
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003689
3690#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01003691 // GTK has the annoying habit of sending us resize events when
3692 // changing the window size ourselves. This mostly happens when
3693 // waiting for a character to arrive, quite unpredictably, and may
3694 // change Columns and Rows when we don't want it. Wait for a
3695 // character here to avoid this effect.
3696 // If you remove this, please test this command for resizing
3697 // effects (with optional left scrollbar): ":vsp|q|vsp|q|vsp|q".
3698 // Don't do this while starting up though.
3699 // Don't change Rows when adding menu/toolbar/tabline.
3700 // Don't change Columns when adding vertical toolbar.
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003701 if (!gui.starting && need_set_size != (RESIZE_VERT | RESIZE_HOR))
Bram Moolenaar01a7b9d2005-05-27 20:16:24 +00003702 (void)char_avail();
Bram Moolenaar0133bba2008-12-03 17:50:45 +00003703 if ((need_set_size & RESIZE_VERT) == 0)
3704 Rows = prev_Rows;
3705 if ((need_set_size & RESIZE_HOR) == 0)
3706 Columns = prev_Columns;
Bram Moolenaarc1087e62005-05-20 21:22:17 +00003707#endif
3708 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003709 // When the console tabline appears or disappears the window positions
3710 // change.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003711 if (firstwin->w_winrow != tabline_height())
Bram Moolenaar30613902019-12-01 22:11:18 +01003712 shell_new_rows(); // recompute window positions and heights
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 }
3714}
3715
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003716#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3717/*
3718 * Return TRUE if the GUI is taking care of the tabline.
3719 * It may still be hidden if 'showtabline' is zero.
3720 */
3721 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003722gui_use_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003723{
3724 return gui.in_use && vim_strchr(p_go, GO_TABLINE) != NULL;
3725}
3726
3727/*
3728 * Return TRUE if the GUI is showing the tabline.
3729 * This uses 'showtabline'.
3730 */
3731 static int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003732gui_has_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003733{
3734 if (!gui_use_tabline()
3735 || p_stal == 0
3736 || (p_stal == 1 && first_tabpage->tp_next == NULL))
3737 return FALSE;
3738 return TRUE;
3739}
3740
3741/*
3742 * Update the tabline.
3743 * This may display/undisplay the tabline and update the labels.
3744 */
3745 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003746gui_update_tabline(void)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003747{
3748 int showit = gui_has_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003749 int shown = gui_mch_showing_tabline();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003750
3751 if (!gui.starting && starting == 0)
3752 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003753 // Updating the tabline uses direct GUI commands, flush
3754 // outstanding instructions first. (esp. clear screen)
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003755 out_flush();
Bram Moolenaarbd2ac7e2006-04-28 22:34:45 +00003756
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003757 if (!showit != !shown)
3758 gui_mch_show_tabline(showit);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003759 if (showit != 0)
3760 gui_mch_update_tabline();
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003761
Bram Moolenaar30613902019-12-01 22:11:18 +01003762 // When the tabs change from hidden to shown or from shown to
3763 // hidden the size of the text area should remain the same.
Bram Moolenaar7b5f8322006-03-23 22:47:08 +00003764 if (!showit != !shown)
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00003765 gui_set_shellsize(FALSE, showit, RESIZE_VERT);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003766 }
3767}
3768
3769/*
Bram Moolenaar57657d82006-04-21 22:12:41 +00003770 * Get the label or tooltip for tab page "tp" into NameBuff[].
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003771 */
3772 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003773get_tabline_label(
3774 tabpage_T *tp,
Bram Moolenaar30613902019-12-01 22:11:18 +01003775 int tooltip) // TRUE: get tooltip
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003776{
3777 int modified = FALSE;
3778 char_u buf[40];
3779 int wincount;
3780 win_T *wp;
Bram Moolenaard68071d2006-05-02 22:08:30 +00003781 char_u **opt;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003782
Bram Moolenaar30613902019-12-01 22:11:18 +01003783 // Use 'guitablabel' or 'guitabtooltip' if it's set.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003784 opt = (tooltip ? &p_gtt : &p_gtl);
3785 if (**opt != NUL)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003786 {
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003787 int use_sandbox = FALSE;
Bram Moolenaar53989552019-12-23 22:59:18 +01003788 int called_emsg_before = called_emsg;
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003789 char_u res[MAXPATHL];
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003790 tabpage_T *save_curtab;
Bram Moolenaar57657d82006-04-21 22:12:41 +00003791 char_u *opt_name = (char_u *)(tooltip ? "guitabtooltip"
3792 : "guitablabel");
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003793
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003794 printer_page_num = tabpage_index(tp);
3795# ifdef FEAT_EVAL
3796 set_vim_var_nr(VV_LNUM, printer_page_num);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003797 use_sandbox = was_set_insecurely(opt_name, 0);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003798# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003799 // It's almost as going to the tabpage, but without autocommands.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003800 curtab->tp_firstwin = firstwin;
3801 curtab->tp_lastwin = lastwin;
3802 curtab->tp_curwin = curwin;
3803 save_curtab = curtab;
3804 curtab = tp;
3805 topframe = curtab->tp_topframe;
3806 firstwin = curtab->tp_firstwin;
3807 lastwin = curtab->tp_lastwin;
3808 curwin = curtab->tp_curwin;
3809 curbuf = curwin->w_buffer;
3810
Bram Moolenaar30613902019-12-01 22:11:18 +01003811 // Can't use NameBuff directly, build_stl_str_hl() uses it.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003812 build_stl_str_hl(curwin, res, MAXPATHL, *opt, use_sandbox,
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003813 0, (int)Columns, NULL, NULL);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003814 STRCPY(NameBuff, res);
3815
Bram Moolenaar30613902019-12-01 22:11:18 +01003816 // Back to the original curtab.
Bram Moolenaarbfb2d402006-03-03 22:50:42 +00003817 curtab = save_curtab;
3818 topframe = curtab->tp_topframe;
3819 firstwin = curtab->tp_firstwin;
3820 lastwin = curtab->tp_lastwin;
3821 curwin = curtab->tp_curwin;
3822 curbuf = curwin->w_buffer;
3823
Bram Moolenaar53989552019-12-23 22:59:18 +01003824 if (called_emsg > called_emsg_before)
Bram Moolenaar57657d82006-04-21 22:12:41 +00003825 set_string_option_direct(opt_name, -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003826 (char_u *)"", OPT_FREE, SID_ERROR);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003827 }
Bram Moolenaard68071d2006-05-02 22:08:30 +00003828
Bram Moolenaar30613902019-12-01 22:11:18 +01003829 // If 'guitablabel'/'guitabtooltip' is not set or the result is empty then
3830 // use a default label.
Bram Moolenaard68071d2006-05-02 22:08:30 +00003831 if (**opt == NUL || *NameBuff == NUL)
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003832 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003833 // Get the buffer name into NameBuff[] and shorten it.
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003834 get_trans_bufname(tp == curtab ? curbuf : tp->tp_curwin->w_buffer);
Bram Moolenaar57657d82006-04-21 22:12:41 +00003835 if (!tooltip)
3836 shorten_dir(NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003837
3838 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
3839 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount)
3840 if (bufIsChanged(wp->w_buffer))
3841 modified = TRUE;
3842 if (modified || wincount > 1)
3843 {
3844 if (wincount > 1)
3845 vim_snprintf((char *)buf, sizeof(buf), "%d", wincount);
3846 else
3847 buf[0] = NUL;
3848 if (modified)
3849 STRCAT(buf, "+");
3850 STRCAT(buf, " ");
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003851 STRMOVE(NameBuff + STRLEN(buf), NameBuff);
Bram Moolenaarc542aef2006-02-25 21:47:41 +00003852 mch_memmove(NameBuff, buf, STRLEN(buf));
3853 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003854 }
3855}
3856
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003857/*
3858 * Send the event for clicking to select tab page "nr".
3859 * Returns TRUE if it was done, FALSE when skipped because we are already at
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003860 * that tab page or the cmdline window is open.
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003861 */
3862 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003863send_tabline_event(int nr)
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003864{
3865 char_u string[3];
3866
3867 if (nr == tabpage_index(curtab))
3868 return FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003869
Bram Moolenaar30613902019-12-01 22:11:18 +01003870 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003871 if (hold_gui_events
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003872# ifdef FEAT_CMDWIN
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003873 || cmdwin_type != 0
3874# endif
3875 )
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003876 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003877 // Set it back to the current tab page.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00003878 gui_mch_set_curtab(tabpage_index(curtab));
3879 return FALSE;
3880 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003881
Bram Moolenaar1cad2922006-02-27 00:00:52 +00003882 string[0] = CSI;
3883 string[1] = KS_TABLINE;
3884 string[2] = KE_FILLER;
3885 add_to_input_buf(string, 3);
3886 string[0] = nr;
3887 add_to_input_buf_csi(string, 1);
3888 return TRUE;
3889}
3890
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003891/*
3892 * Send a tabline menu event
3893 */
3894 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003895send_tabline_menu_event(int tabidx, int event)
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003896{
3897 char_u string[3];
3898
Bram Moolenaar29547192018-12-11 20:39:19 +01003899 // Don't put events in the input queue now.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003900 if (hold_gui_events)
3901 return;
3902
Bram Moolenaar29547192018-12-11 20:39:19 +01003903 // Cannot close the last tabpage.
3904 if (event == TABLINE_MENU_CLOSE && first_tabpage->tp_next == NULL)
3905 return;
3906
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003907 string[0] = CSI;
3908 string[1] = KS_TABMENU;
3909 string[2] = KE_FILLER;
3910 add_to_input_buf(string, 3);
3911 string[0] = tabidx;
3912 string[1] = (char_u)(long)event;
3913 add_to_input_buf_csi(string, 2);
3914}
3915
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917
3918/*
3919 * Scrollbar stuff:
3920 */
3921
Bram Moolenaare45828b2006-02-15 22:12:56 +00003922/*
3923 * Remove all scrollbars. Used before switching to another tab page.
3924 */
3925 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003926gui_remove_scrollbars(void)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003927{
3928 int i;
3929 win_T *wp;
3930
3931 for (i = 0; i < 3; i++)
3932 {
3933 if (i == SBAR_BOTTOM)
3934 gui_mch_enable_scrollbar(&gui.bottom_sbar, FALSE);
3935 else
3936 {
3937 FOR_ALL_WINDOWS(wp)
Bram Moolenaare45828b2006-02-15 22:12:56 +00003938 gui_do_scrollbar(wp, i, FALSE);
Bram Moolenaare45828b2006-02-15 22:12:56 +00003939 }
Bram Moolenaar371d5402006-03-20 21:47:49 +00003940 curtab->tp_prev_which_scrollbars[i] = -1;
Bram Moolenaare45828b2006-02-15 22:12:56 +00003941 }
3942}
Bram Moolenaare45828b2006-02-15 22:12:56 +00003943
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003945gui_create_scrollbar(scrollbar_T *sb, int type, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946{
3947 static int sbar_ident = 0;
3948
Bram Moolenaar30613902019-12-01 22:11:18 +01003949 sb->ident = sbar_ident++; // No check for too big, but would it happen?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 sb->wp = wp;
3951 sb->type = type;
3952 sb->value = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 sb->size = 1;
3954 sb->max = 1;
3955 sb->top = 0;
3956 sb->height = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 sb->width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 sb->status_height = 0;
3959 gui_mch_create_scrollbar(sb, (wp == NULL) ? SBAR_HORIZ : SBAR_VERT);
3960}
3961
3962/*
3963 * Find the scrollbar with the given index.
3964 */
3965 scrollbar_T *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003966gui_find_scrollbar(long ident)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967{
3968 win_T *wp;
3969
3970 if (gui.bottom_sbar.ident == ident)
3971 return &gui.bottom_sbar;
3972 FOR_ALL_WINDOWS(wp)
3973 {
3974 if (wp->w_scrollbars[SBAR_LEFT].ident == ident)
3975 return &wp->w_scrollbars[SBAR_LEFT];
3976 if (wp->w_scrollbars[SBAR_RIGHT].ident == ident)
3977 return &wp->w_scrollbars[SBAR_RIGHT];
3978 }
3979 return NULL;
3980}
3981
3982/*
3983 * For most systems: Put a code in the input buffer for a dragged scrollbar.
3984 *
3985 * For Win32, Macintosh and GTK+ 2:
3986 * Scrollbars seem to grab focus and vim doesn't read the input queue until
3987 * you stop dragging the scrollbar. We get here each time the scrollbar is
3988 * dragged another pixel, but as far as the rest of vim goes, it thinks
3989 * we're just hanging in the call to DispatchMessage() in
3990 * process_message(). The DispatchMessage() call that hangs was passed a
3991 * mouse button click event in the scrollbar window. -- webb.
3992 *
3993 * Solution: Do the scrolling right here. But only when allowed.
3994 * Ignore the scrollbars while executing an external command or when there
3995 * are still characters to be processed.
3996 */
3997 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003998gui_drag_scrollbar(scrollbar_T *sb, long value, int still_dragging)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 int sb_num;
4002#ifdef USE_ON_FLY_SCROLL
4003 colnr_T old_leftcol = curwin->w_leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 linenr_T old_topline = curwin->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005# ifdef FEAT_DIFF
4006 int old_topfill = curwin->w_topfill;
4007# endif
4008#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004009 char_u bytes[sizeof(long_u)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010 int byte_count;
4011#endif
4012
4013 if (sb == NULL)
4014 return;
4015
Bram Moolenaar30613902019-12-01 22:11:18 +01004016 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 if (hold_gui_events)
4018 return;
4019
4020#ifdef FEAT_CMDWIN
4021 if (cmdwin_type != 0 && sb->wp != curwin)
4022 return;
4023#endif
4024
4025 if (still_dragging)
4026 {
4027 if (sb->wp == NULL)
4028 gui.dragged_sb = SBAR_BOTTOM;
4029 else if (sb == &sb->wp->w_scrollbars[SBAR_LEFT])
4030 gui.dragged_sb = SBAR_LEFT;
4031 else
4032 gui.dragged_sb = SBAR_RIGHT;
4033 gui.dragged_wp = sb->wp;
4034 }
4035 else
4036 {
4037 gui.dragged_sb = SBAR_NONE;
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004038#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004039 // Keep the "dragged_wp" value until after the scrolling, for when the
4040 // mouse button is released. GTK2 doesn't send the button-up event.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 gui.dragged_wp = NULL;
4042#endif
4043 }
4044
Bram Moolenaar30613902019-12-01 22:11:18 +01004045 // Vertical sbar info is kept in the first sbar (the left one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 if (sb->wp != NULL)
4047 sb = &sb->wp->w_scrollbars[0];
4048
4049 /*
4050 * Check validity of value
4051 */
4052 if (value < 0)
4053 value = 0;
4054#ifdef SCROLL_PAST_END
4055 else if (value > sb->max)
4056 value = sb->max;
4057#else
4058 if (value > sb->max - sb->size + 1)
4059 value = sb->max - sb->size + 1;
4060#endif
4061
4062 sb->value = value;
4063
4064#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar30613902019-12-01 22:11:18 +01004065 // When not allowed to do the scrolling right now, return.
4066 // This also checked input_available(), but that causes the first click in
4067 // a scrollbar to be ignored when Vim doesn't have focus.
Bram Moolenaar67840782008-01-03 15:15:07 +00004068 if (dont_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 return;
4070#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004071 // Disallow scrolling the current window when the completion popup menu is
4072 // visible.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004073 if ((sb->wp == NULL || sb->wp == curwin) && pum_visible())
4074 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075
4076#ifdef FEAT_RIGHTLEFT
4077 if (sb->wp == NULL && curwin->w_p_rl)
4078 {
4079 value = sb->max + 1 - sb->size - value;
4080 if (value < 0)
4081 value = 0;
4082 }
4083#endif
4084
Bram Moolenaar30613902019-12-01 22:11:18 +01004085 if (sb->wp != NULL) // vertical scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 {
4087 sb_num = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next)
4089 sb_num++;
4090 if (wp == NULL)
4091 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092
4093#ifdef USE_ON_FLY_SCROLL
4094 current_scrollbar = sb_num;
4095 scrollbar_value = value;
Bram Moolenaar24959102022-05-07 20:01:16 +01004096 if (State & MODE_NORMAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 {
4098 gui_do_scroll();
4099 setcursor();
4100 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004101 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 {
4103 ins_scroll();
4104 setcursor();
4105 }
Bram Moolenaar24959102022-05-07 20:01:16 +01004106 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 {
4108 if (msg_scrolled == 0)
4109 {
4110 gui_do_scroll();
4111 redrawcmdline();
4112 }
4113 }
4114# ifdef FEAT_FOLDING
Bram Moolenaar30613902019-12-01 22:11:18 +01004115 // Value may have been changed for closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 sb->value = sb->wp->w_topline - 1;
4117# endif
Bram Moolenaar371d5402006-03-20 21:47:49 +00004118
Bram Moolenaar30613902019-12-01 22:11:18 +01004119 // When dragging one scrollbar and there is another one at the other
4120 // side move the thumb of that one too.
Bram Moolenaar371d5402006-03-20 21:47:49 +00004121 if (gui.which_scrollbars[SBAR_RIGHT] && gui.which_scrollbars[SBAR_LEFT])
4122 gui_mch_set_scrollbar_thumb(
4123 &sb->wp->w_scrollbars[
4124 sb == &sb->wp->w_scrollbars[SBAR_RIGHT]
4125 ? SBAR_LEFT : SBAR_RIGHT],
4126 sb->value, sb->size, sb->max);
4127
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128#else
4129 bytes[0] = CSI;
4130 bytes[1] = KS_VER_SCROLLBAR;
4131 bytes[2] = KE_FILLER;
4132 bytes[3] = (char_u)sb_num;
4133 byte_count = 4;
4134#endif
4135 }
4136 else
4137 {
4138#ifdef USE_ON_FLY_SCROLL
4139 scrollbar_value = value;
4140
Bram Moolenaar24959102022-05-07 20:01:16 +01004141 if (State & MODE_NORMAL)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004142 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar24959102022-05-07 20:01:16 +01004143 else if (State & MODE_INSERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 ins_horscroll();
Bram Moolenaar24959102022-05-07 20:01:16 +01004145 else if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004147 if (msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004149 gui_do_horiz_scroll(scrollbar_value, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 redrawcmdline();
4151 }
4152 }
4153 if (old_leftcol != curwin->w_leftcol)
4154 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004155 updateWindow(curwin); // update window, status and cmdline
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 setcursor();
4157 }
4158#else
4159 bytes[0] = CSI;
4160 bytes[1] = KS_HOR_SCROLLBAR;
4161 bytes[2] = KE_FILLER;
4162 byte_count = 3;
4163#endif
4164 }
4165
4166#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 /*
4168 * synchronize other windows, as necessary according to 'scrollbind'
4169 */
4170 if (curwin->w_p_scb
4171 && ((sb->wp == NULL && curwin->w_leftcol != old_leftcol)
4172 || (sb->wp == curwin && (curwin->w_topline != old_topline
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004173# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 || curwin->w_topfill != old_topfill
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01004175# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 ))))
4177 {
4178 do_check_scrollbind(TRUE);
Bram Moolenaar30613902019-12-01 22:11:18 +01004179 // need to update the window right here
Bram Moolenaar29323592016-07-24 22:04:11 +02004180 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 if (wp->w_redr_type > 0)
4182 updateWindow(wp);
4183 setcursor();
4184 }
Bram Moolenaara338adc2018-01-31 20:51:47 +01004185 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186#else
Bram Moolenaar110bc6b2006-02-10 23:13:40 +00004187 add_to_input_buf(bytes, byte_count);
4188 add_long_to_buf((long_u)value, bytes);
4189 add_to_input_buf_csi(bytes, sizeof(long_u));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190#endif
4191}
4192
4193/*
4194 * Scrollbar stuff:
4195 */
4196
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004197/*
4198 * Called when something in the window layout has changed.
4199 */
4200 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004201gui_may_update_scrollbars(void)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004202{
4203 if (gui.in_use && starting == 0)
4204 {
4205 out_flush();
4206 gui_init_which_components(NULL);
4207 gui_update_scrollbars(TRUE);
4208 }
4209 need_mouse_correct = TRUE;
4210}
4211
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004213gui_update_scrollbars(
Bram Moolenaar30613902019-12-01 22:11:18 +01004214 int force) // Force all scrollbars to get updated
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215{
4216 win_T *wp;
4217 scrollbar_T *sb;
Bram Moolenaar30613902019-12-01 22:11:18 +01004218 long val, size, max; // need 32 bits here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 int which_sb;
4220 int h, y;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 static win_T *prev_curwin = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222
Bram Moolenaar30613902019-12-01 22:11:18 +01004223 // Update the horizontal scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 gui_update_horiz_scrollbar(force);
4225
Bram Moolenaar4f974752019-02-17 17:44:42 +01004226#ifndef MSWIN
Bram Moolenaar30613902019-12-01 22:11:18 +01004227 // Return straight away if there is neither a left nor right scrollbar.
4228 // On MS-Windows this is required anyway for scrollwheel messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 if (!gui.which_scrollbars[SBAR_LEFT] && !gui.which_scrollbars[SBAR_RIGHT])
4230 return;
4231#endif
4232
4233 /*
4234 * Don't want to update a scrollbar while we're dragging it. But if we
4235 * have both a left and right scrollbar, and we drag one of them, we still
4236 * need to update the other one.
4237 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004238 if (!force && (gui.dragged_sb == SBAR_LEFT || gui.dragged_sb == SBAR_RIGHT)
4239 && gui.which_scrollbars[SBAR_LEFT]
4240 && gui.which_scrollbars[SBAR_RIGHT])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 {
4242 /*
4243 * If we have two scrollbars and one of them is being dragged, just
4244 * copy the scrollbar position from the dragged one to the other one.
4245 */
4246 which_sb = SBAR_LEFT + SBAR_RIGHT - gui.dragged_sb;
4247 if (gui.dragged_wp != NULL)
4248 gui_mch_set_scrollbar_thumb(
4249 &gui.dragged_wp->w_scrollbars[which_sb],
4250 gui.dragged_wp->w_scrollbars[0].value,
4251 gui.dragged_wp->w_scrollbars[0].size,
4252 gui.dragged_wp->w_scrollbars[0].max);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 }
4254
Bram Moolenaar30613902019-12-01 22:11:18 +01004255 // avoid that moving components around generates events
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 ++hold_gui_events;
4257
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004258 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004260 if (wp->w_buffer == NULL) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 continue;
Bram Moolenaar30613902019-12-01 22:11:18 +01004262 // Skip a scrollbar that is being dragged.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004263 if (!force && (gui.dragged_sb == SBAR_LEFT
4264 || gui.dragged_sb == SBAR_RIGHT)
4265 && gui.dragged_wp == wp)
4266 continue;
4267
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268#ifdef SCROLL_PAST_END
4269 max = wp->w_buffer->b_ml.ml_line_count - 1;
4270#else
4271 max = wp->w_buffer->b_ml.ml_line_count + wp->w_height - 2;
4272#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004273 if (max < 0) // empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 max = 0;
4275 val = wp->w_topline - 1;
4276 size = wp->w_height;
4277#ifdef SCROLL_PAST_END
Bram Moolenaar30613902019-12-01 22:11:18 +01004278 if (val > max) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 val = max;
4280#else
Bram Moolenaar30613902019-12-01 22:11:18 +01004281 if (size > max + 1) // just in case
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 size = max + 1;
4283 if (val > max - size + 1)
4284 val = max - size + 1;
4285#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004286 if (val < 0) // minimal value is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 val = 0;
4288
4289 /*
4290 * Scrollbar at index 0 (the left one) contains all the information.
4291 * It would be the same info for left and right so we just store it for
4292 * one of them.
4293 */
4294 sb = &wp->w_scrollbars[0];
4295
4296 /*
4297 * Note: no check for valid w_botline. If it's not valid the
4298 * scrollbars will be updated later anyway.
4299 */
4300 if (size < 1 || wp->w_botline - 2 > max)
4301 {
4302 /*
4303 * This can happen during changing files. Just don't update the
4304 * scrollbar for now.
4305 */
Bram Moolenaar30613902019-12-01 22:11:18 +01004306 sb->height = 0; // Force update next time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 if (gui.which_scrollbars[SBAR_LEFT])
4308 gui_do_scrollbar(wp, SBAR_LEFT, FALSE);
4309 if (gui.which_scrollbars[SBAR_RIGHT])
4310 gui_do_scrollbar(wp, SBAR_RIGHT, FALSE);
4311 continue;
4312 }
4313 if (force || sb->height != wp->w_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 || sb->top != wp->w_winrow
4315 || sb->status_height != wp->w_status_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 || sb->width != wp->w_width
Bram Moolenaar4033c552017-09-16 20:54:51 +02004317 || prev_curwin != curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004319 // Height, width or position of scrollbar has changed. For
4320 // vertical split: curwin changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 sb->height = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 sb->top = wp->w_winrow;
4323 sb->status_height = wp->w_status_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 sb->width = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325
Bram Moolenaar30613902019-12-01 22:11:18 +01004326 // Calculate height and position in pixels
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 h = (sb->height + sb->status_height) * gui.char_height;
4328 y = sb->top * gui.char_height + gui.border_offset;
4329#if defined(FEAT_MENU) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF) && !defined(FEAT_GUI_PHOTON)
4330 if (gui.menu_is_active)
4331 y += gui.menu_height;
4332#endif
4333
Bram Moolenaar0b962e52022-04-03 18:02:37 +01004334#if defined(FEAT_TOOLBAR) && (defined(FEAT_GUI_MSWIN) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004335 || defined(FEAT_GUI_HAIKU))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 if (vim_strchr(p_go, GO_TOOLBAR) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 y += gui.toolbar_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338#endif
4339
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004340#if defined(FEAT_GUI_TABLINE) && defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004341 if (gui_has_tabline())
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00004342 y += gui.tabline_height;
Bram Moolenaar3991dab2006-03-27 17:01:56 +00004343#endif
4344
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 if (wp->w_winrow == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004347 // Height of top scrollbar includes width of top border
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 h += gui.border_offset;
4349 y -= gui.border_offset;
4350 }
4351 if (gui.which_scrollbars[SBAR_LEFT])
4352 {
4353 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_LEFT],
4354 gui.left_sbar_x, y,
4355 gui.scrollbar_width, h);
4356 gui_do_scrollbar(wp, SBAR_LEFT, TRUE);
4357 }
4358 if (gui.which_scrollbars[SBAR_RIGHT])
4359 {
4360 gui_mch_set_scrollbar_pos(&wp->w_scrollbars[SBAR_RIGHT],
4361 gui.right_sbar_x, y,
4362 gui.scrollbar_width, h);
4363 gui_do_scrollbar(wp, SBAR_RIGHT, TRUE);
4364 }
4365 }
4366
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 if (force || sb->value != val || sb->size != size || sb->max != max)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004369 // Thumb of scrollbar has moved
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 sb->value = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 sb->size = size;
4372 sb->max = max;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004373 if (gui.which_scrollbars[SBAR_LEFT]
4374 && (gui.dragged_sb != SBAR_LEFT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_LEFT],
4376 val, size, max);
4377 if (gui.which_scrollbars[SBAR_RIGHT]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00004378 && (gui.dragged_sb != SBAR_RIGHT || gui.dragged_wp != wp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4380 val, size, max);
4381 }
4382 }
Christian Brabandt2e0f3ec2021-11-28 18:41:05 +00004383
4384 // update the title, it may show the scroll position
4385 maketitle();
4386
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 prev_curwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 --hold_gui_events;
4389}
4390
4391/*
4392 * Enable or disable a scrollbar.
4393 * Check for scrollbars for vertically split windows which are not enabled
4394 * sometimes.
4395 */
4396 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004397gui_do_scrollbar(
4398 win_T *wp,
Bram Moolenaar30613902019-12-01 22:11:18 +01004399 int which, // SBAR_LEFT or SBAR_RIGHT
4400 int enable) // TRUE to enable scrollbar
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 int midcol = curwin->w_wincol + curwin->w_width / 2;
4403 int has_midcol = (wp->w_wincol <= midcol
4404 && wp->w_wincol + wp->w_width >= midcol);
4405
Bram Moolenaar30613902019-12-01 22:11:18 +01004406 // Only enable scrollbars that contain the middle column of the current
4407 // window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 if (gui.which_scrollbars[SBAR_RIGHT] != gui.which_scrollbars[SBAR_LEFT])
4409 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004410 // Scrollbars only on one side. Don't enable scrollbars that don't
4411 // contain the middle column of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 if (!has_midcol)
4413 enable = FALSE;
4414 }
4415 else
4416 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004417 // Scrollbars on both sides. Don't enable scrollbars that neither
4418 // contain the middle column of the current window nor are on the far
4419 // side.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 if (midcol > Columns / 2)
4421 {
4422 if (which == SBAR_LEFT ? wp->w_wincol != 0 : !has_midcol)
4423 enable = FALSE;
4424 }
4425 else
4426 {
4427 if (which == SBAR_RIGHT ? wp->w_wincol + wp->w_width != Columns
4428 : !has_midcol)
4429 enable = FALSE;
4430 }
4431 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 gui_mch_enable_scrollbar(&wp->w_scrollbars[which], enable);
4433}
4434
4435/*
4436 * Scroll a window according to the values set in the globals current_scrollbar
4437 * and scrollbar_value. Return TRUE if the cursor in the current window moved
4438 * or FALSE otherwise.
4439 */
4440 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004441gui_do_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442{
4443 win_T *wp, *save_wp;
4444 int i;
4445 long nlines;
4446 pos_T old_cursor;
4447 linenr_T old_topline;
4448#ifdef FEAT_DIFF
4449 int old_topfill;
4450#endif
4451
4452 for (wp = firstwin, i = 0; i < current_scrollbar; wp = W_NEXT(wp), i++)
4453 if (wp == NULL)
4454 break;
4455 if (wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004456 // Couldn't find window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 return FALSE;
4458
4459 /*
4460 * Compute number of lines to scroll. If zero, nothing to do.
4461 */
4462 nlines = (long)scrollbar_value + 1 - (long)wp->w_topline;
4463 if (nlines == 0)
4464 return FALSE;
4465
4466 save_wp = curwin;
4467 old_topline = wp->w_topline;
4468#ifdef FEAT_DIFF
4469 old_topfill = wp->w_topfill;
4470#endif
4471 old_cursor = wp->w_cursor;
4472 curwin = wp;
4473 curbuf = wp->w_buffer;
4474 if (nlines < 0)
4475 scrolldown(-nlines, gui.dragged_wp == NULL);
4476 else
4477 scrollup(nlines, gui.dragged_wp == NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01004478 // Reset dragged_wp after using it. "dragged_sb" will have been reset for
4479 // the mouse-up event already, but we still want it to behave like when
4480 // dragging. But not the next click in an arrow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 if (gui.dragged_sb == SBAR_NONE)
4482 gui.dragged_wp = NULL;
4483
4484 if (old_topline != wp->w_topline
4485#ifdef FEAT_DIFF
4486 || old_topfill != wp->w_topfill
4487#endif
4488 )
4489 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01004490 if (get_scrolloff_value() != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004492 cursor_correct(); // fix window for 'so'
4493 update_topline(); // avoid up/down jump
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 }
4495 if (old_cursor.lnum != wp->w_cursor.lnum)
4496 coladvance(wp->w_curswant);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 wp->w_scbind_pos = wp->w_topline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 }
4499
Bram Moolenaar30613902019-12-01 22:11:18 +01004500 // Make sure wp->w_leftcol and wp->w_skipcol are correct.
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004501 validate_cursor();
4502
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 curwin = save_wp;
4504 curbuf = save_wp->w_buffer;
4505
4506 /*
4507 * Don't call updateWindow() when nothing has changed (it will overwrite
4508 * the status line!).
4509 */
4510 if (old_topline != wp->w_topline
Bram Moolenaar578b49e2005-09-10 19:22:57 +00004511 || wp->w_redr_type != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512#ifdef FEAT_DIFF
4513 || old_topfill != wp->w_topfill
4514#endif
4515 )
4516 {
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004517 int type = VALID;
4518
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004519 if (pum_visible())
4520 {
4521 type = NOT_VALID;
4522 wp->w_lines_valid = 0;
4523 }
Bram Moolenaare2c453d2019-08-21 14:37:09 +02004524
Bram Moolenaar30613902019-12-01 22:11:18 +01004525 // Don't set must_redraw here, it may cause the popup menu to
4526 // disappear when losing focus after a scrollbar drag.
Bram Moolenaar9b25ffb2007-11-06 21:27:31 +00004527 if (wp->w_redr_type < type)
4528 wp->w_redr_type = type;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004529 mch_disable_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01004530 updateWindow(wp); // update window, status line, and cmdline
Bram Moolenaara338adc2018-01-31 20:51:47 +01004531 mch_enable_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 }
4533
Bram Moolenaar30613902019-12-01 22:11:18 +01004534 // May need to redraw the popup menu.
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004535 if (pum_visible())
4536 pum_redraw();
Bram Moolenaar05bb82f2006-09-10 19:39:25 +00004537
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004538 return (wp == curwin && !EQUAL_POS(curwin->w_cursor, old_cursor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539}
4540
4541
4542/*
4543 * Horizontal scrollbar stuff:
4544 */
4545
4546/*
4547 * Return length of line "lnum" for horizontal scrolling.
4548 */
4549 static colnr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004550scroll_line_len(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551{
4552 char_u *p;
4553 colnr_T col;
4554 int w;
4555
4556 p = ml_get(lnum);
4557 col = 0;
4558 if (*p != NUL)
4559 for (;;)
4560 {
4561 w = chartabsize(p, col);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004562 MB_PTR_ADV(p);
Bram Moolenaar30613902019-12-01 22:11:18 +01004563 if (*p == NUL) // don't count the last character
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 break;
4565 col += w;
4566 }
4567 return col;
4568}
4569
Bram Moolenaar30613902019-12-01 22:11:18 +01004570// Remember which line is currently the longest, so that we don't have to
4571// search for it when scrolling horizontally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572static linenr_T longest_lnum = 0;
4573
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004574/*
4575 * Find longest visible line number. If this is not possible (or not desired,
4576 * by setting 'h' in "guioptions") then the current line number is returned.
4577 */
4578 static linenr_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004579gui_find_longest_lnum(void)
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004580{
4581 linenr_T ret = 0;
4582
Bram Moolenaar30613902019-12-01 22:11:18 +01004583 // Calculate maximum for horizontal scrollbar. Check for reasonable
4584 // line numbers, topline and botline can be invalid when displaying is
4585 // postponed.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004586 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
4587 && curwin->w_topline <= curwin->w_cursor.lnum
4588 && curwin->w_botline > curwin->w_cursor.lnum
4589 && curwin->w_botline <= curbuf->b_ml.ml_line_count + 1)
4590 {
4591 linenr_T lnum;
4592 colnr_T n;
4593 long max = 0;
4594
Bram Moolenaar30613902019-12-01 22:11:18 +01004595 // Use maximum of all visible lines. Remember the lnum of the
4596 // longest line, closest to the cursor line. Used when scrolling
4597 // below.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004598 for (lnum = curwin->w_topline; lnum < curwin->w_botline; ++lnum)
4599 {
4600 n = scroll_line_len(lnum);
4601 if (n > (colnr_T)max)
4602 {
4603 max = n;
4604 ret = lnum;
4605 }
4606 else if (n == (colnr_T)max
4607 && abs((int)(lnum - curwin->w_cursor.lnum))
4608 < abs((int)(ret - curwin->w_cursor.lnum)))
4609 ret = lnum;
4610 }
4611 }
4612 else
Bram Moolenaar30613902019-12-01 22:11:18 +01004613 // Use cursor line only.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004614 ret = curwin->w_cursor.lnum;
4615
4616 return ret;
4617}
4618
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004620gui_update_horiz_scrollbar(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621{
Bram Moolenaar30613902019-12-01 22:11:18 +01004622 long value, size, max; // need 32 bit ints here
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623
4624 if (!gui.which_scrollbars[SBAR_BOTTOM])
4625 return;
4626
4627 if (!force && gui.dragged_sb == SBAR_BOTTOM)
4628 return;
4629
4630 if (!force && curwin->w_p_wrap && gui.prev_wrap)
4631 return;
4632
4633 /*
4634 * It is possible for the cursor to be invalid if we're in the middle of
4635 * something (like changing files). If so, don't do anything for now.
4636 */
4637 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4638 {
4639 gui.bottom_sbar.value = -1;
4640 return;
4641 }
4642
Bram Moolenaar02631462017-09-22 15:20:32 +02004643 size = curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 if (curwin->w_p_wrap)
4645 {
4646 value = 0;
4647#ifdef SCROLL_PAST_END
4648 max = 0;
4649#else
Bram Moolenaar02631462017-09-22 15:20:32 +02004650 max = curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651#endif
4652 }
4653 else
4654 {
4655 value = curwin->w_leftcol;
4656
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004657 longest_lnum = gui_find_longest_lnum();
4658 max = scroll_line_len(longest_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (virtual_active())
4661 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004662 // May move the cursor even further to the right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 if (curwin->w_virtcol >= (colnr_T)max)
4664 max = curwin->w_virtcol;
4665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666
4667#ifndef SCROLL_PAST_END
Bram Moolenaar02631462017-09-22 15:20:32 +02004668 max += curwin->w_width - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004670 // The line number isn't scrolled, thus there is less space when
4671 // 'number' or 'relativenumber' is set (also for 'foldcolumn').
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 size -= curwin_col_off();
4673#ifndef SCROLL_PAST_END
4674 max -= curwin_col_off();
4675#endif
4676 }
4677
4678#ifndef SCROLL_PAST_END
4679 if (value > max - size + 1)
Bram Moolenaar30613902019-12-01 22:11:18 +01004680 value = max - size + 1; // limit the value to allowable range
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681#endif
4682
4683#ifdef FEAT_RIGHTLEFT
4684 if (curwin->w_p_rl)
4685 {
4686 value = max + 1 - size - value;
4687 if (value < 0)
4688 {
4689 size += value;
4690 value = 0;
4691 }
4692 }
4693#endif
4694 if (!force && value == gui.bottom_sbar.value && size == gui.bottom_sbar.size
4695 && max == gui.bottom_sbar.max)
4696 return;
4697
4698 gui.bottom_sbar.value = value;
4699 gui.bottom_sbar.size = size;
4700 gui.bottom_sbar.max = max;
4701 gui.prev_wrap = curwin->w_p_wrap;
4702
4703 gui_mch_set_scrollbar_thumb(&gui.bottom_sbar, value, size, max);
4704}
4705
4706/*
4707 * Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise.
4708 */
4709 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004710gui_do_horiz_scroll(long_u leftcol, int compute_longest_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711{
Bram Moolenaar30613902019-12-01 22:11:18 +01004712 // no wrapping, no scrolling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 if (curwin->w_p_wrap)
4714 return FALSE;
4715
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004716 if (curwin->w_leftcol == (colnr_T)leftcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 return FALSE;
4718
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004719 curwin->w_leftcol = (colnr_T)leftcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720
Bram Moolenaar30613902019-12-01 22:11:18 +01004721 // When the line of the cursor is too short, move the cursor to the
4722 // longest visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 if (vim_strchr(p_go, GO_HORSCROLL) == NULL
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004724 && !virtual_active()
Bram Moolenaar5e109c42010-07-26 22:51:28 +02004725 && (colnr_T)leftcol > scroll_line_len(curwin->w_cursor.lnum))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 {
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004727 if (compute_longest_lnum)
4728 {
4729 curwin->w_cursor.lnum = gui_find_longest_lnum();
4730 curwin->w_cursor.col = 0;
4731 }
Bram Moolenaar30613902019-12-01 22:11:18 +01004732 // Do a sanity check on "longest_lnum", just in case.
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02004733 else if (longest_lnum >= curwin->w_topline
4734 && longest_lnum < curwin->w_botline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 {
4736 curwin->w_cursor.lnum = longest_lnum;
4737 curwin->w_cursor.col = 0;
4738 }
4739 }
4740
4741 return leftcol_changed();
4742}
4743
4744/*
4745 * Check that none of the colors are the same as the background color
4746 */
4747 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004748gui_check_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749{
4750 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4751 {
4752 gui_set_bg_color((char_u *)"White");
4753 if (gui.norm_pixel == gui.back_pixel || gui.norm_pixel == INVALCOLOR)
4754 gui_set_fg_color((char_u *)"Black");
4755 }
4756}
4757
Bram Moolenaar3918c952005-03-15 22:34:55 +00004758 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004759gui_set_fg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760{
4761 gui.norm_pixel = gui_get_color(name);
4762 hl_set_fg_color_name(vim_strsave(name));
4763}
4764
Bram Moolenaar3918c952005-03-15 22:34:55 +00004765 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004766gui_set_bg_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767{
4768 gui.back_pixel = gui_get_color(name);
4769 hl_set_bg_color_name(vim_strsave(name));
4770}
4771
4772/*
4773 * Allocate a color by name.
4774 * Returns INVALCOLOR and gives an error message when failed.
4775 */
4776 guicolor_T
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004777gui_get_color(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 guicolor_T t;
4780
4781 if (*name == NUL)
4782 return INVALCOLOR;
4783 t = gui_mch_get_color(name);
Bram Moolenaar843ee412004-06-30 16:16:41 +00004784
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 if (t == INVALCOLOR
Bram Moolenaar9372a112005-12-06 19:59:18 +00004786#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 && gui.in_use
4788#endif
4789 )
Drew Vogele30d1022021-10-24 20:35:07 +01004790 semsg(_(e_cannot_allocate_color_str), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 return t;
4792}
4793
4794/*
4795 * Return the grey value of a color (range 0-255).
4796 */
4797 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004798gui_get_lightness(guicolor_T pixel)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799{
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02004800 long_u rgb = (long_u)gui_mch_get_rgb(pixel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004802 return (int)( (((rgb >> 16) & 0xff) * 299)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004803 + (((rgb >> 8) & 0xff) * 587)
4804 + ((rgb & 0xff) * 114)) / 1000;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805}
4806
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004807 char_u *
4808gui_bg_default(void)
4809{
4810 if (gui_get_lightness(gui.back_pixel) < 127)
4811 return (char_u *)"dark";
4812 return (char_u *)"light";
4813}
4814
4815/*
4816 * Option initializations that can only be done after opening the GUI window.
4817 */
4818 void
4819init_gui_options(void)
4820{
Bram Moolenaar30613902019-12-01 22:11:18 +01004821 // Set the 'background' option according to the lightness of the
4822 // background color, unless the user has set it already.
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004823 if (!option_was_set((char_u *)"bg") && STRCMP(p_bg, gui_bg_default()) != 0)
4824 {
Bram Moolenaar31e5c602022-04-15 13:53:33 +01004825 set_option_value_give_err((char_u *)"bg", 0L, gui_bg_default(), 0);
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01004826 highlight_changed();
4827 }
4828}
4829
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830#if defined(FEAT_GUI_X11) || defined(PROTO)
4831 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004832gui_new_scrollbar_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833{
4834 win_T *wp;
4835
Bram Moolenaar30613902019-12-01 22:11:18 +01004836 // Nothing to do if GUI hasn't started yet.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 if (!gui.in_use)
4838 return;
4839
4840 FOR_ALL_WINDOWS(wp)
4841 {
4842 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_LEFT]));
4843 gui_mch_set_scrollbar_colors(&(wp->w_scrollbars[SBAR_RIGHT]));
4844 }
4845 gui_mch_set_scrollbar_colors(&gui.bottom_sbar);
4846}
4847#endif
4848
4849/*
4850 * Call this when focus has changed.
4851 */
4852 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004853gui_focus_change(int in_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854{
4855/*
4856 * Skip this code to avoid drawing the cursor when debugging and switching
4857 * between the debugger window and gvim.
4858 */
4859#if 1
4860 gui.in_focus = in_focus;
Bram Moolenaara338adc2018-01-31 20:51:47 +01004861 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862
4863# ifdef FEAT_XIM
4864 xim_set_focus(in_focus);
4865# endif
4866
Bram Moolenaar30613902019-12-01 22:11:18 +01004867 // Put events in the input queue only when allowed.
4868 // ui_focus_change() isn't called directly, because it invokes
4869 // autocommands and that must not happen asynchronously.
Bram Moolenaar9c8791f2007-09-05 19:47:23 +00004870 if (!hold_gui_events)
4871 {
4872 char_u bytes[3];
4873
4874 bytes[0] = CSI;
4875 bytes[1] = KS_EXTRA;
4876 bytes[2] = in_focus ? (int)KE_FOCUSGAINED : (int)KE_FOCUSLOST;
4877 add_to_input_buf(bytes, 3);
4878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879#endif
4880}
4881
4882/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004883 * When mouse moved: apply 'mousefocus'.
4884 * Also updates the mouse pointer shape.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 */
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004886 static void
4887gui_mouse_focus(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888{
4889 win_T *wp;
Bram Moolenaar7b240602006-06-20 18:39:51 +00004890 char_u st[8];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891
4892#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01004893 // Get window pointer, and update mouse shape as well.
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004894 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895#endif
4896
Bram Moolenaar30613902019-12-01 22:11:18 +01004897 // Only handle this when 'mousefocus' set and ...
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 if (p_mousef
Bram Moolenaar30613902019-12-01 22:11:18 +01004899 && !hold_gui_events // not holding events
Bram Moolenaar24959102022-05-07 20:01:16 +01004900 && (State & (MODE_NORMAL | MODE_INSERT))// Normal/Visual/Insert mode
4901 && State != MODE_HITRETURN // but not hit-return prompt
Bram Moolenaar30613902019-12-01 22:11:18 +01004902 && msg_scrolled == 0 // no scrolled message
4903 && !need_mouse_correct // not moving the pointer
4904 && gui.in_focus) // gvim in focus
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004906 // Don't move the mouse when it's left or right of the Vim window
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 if (x < 0 || x > Columns * gui.char_width)
4908 return;
4909#ifndef FEAT_MOUSESHAPE
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004910 wp = xy2win(x, y, IGNORE_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911#endif
4912 if (wp == curwin || wp == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01004913 return; // still in the same old window, or none at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914
Bram Moolenaar30613902019-12-01 22:11:18 +01004915 // Ignore position in the tab pages line.
Bram Moolenaar9c102382006-05-03 21:26:49 +00004916 if (Y_2_ROW(y) < tabline_height())
4917 return;
Bram Moolenaar9c102382006-05-03 21:26:49 +00004918
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 /*
4920 * format a mouse click on status line input
4921 * ala gui_send_mouse_event(0, x, y, 0, 0);
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004922 * Trick: Use a column number -1, so that get_pseudo_mouse_code() will
4923 * generate a K_LEFTMOUSE_NM key code.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 */
4925 if (finish_op)
4926 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004927 // abort the current operator first
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 st[0] = ESC;
4929 add_to_input_buf(st, 1);
4930 }
4931 st[0] = CSI;
4932 st[1] = KS_MOUSE;
4933 st[2] = KE_FILLER;
4934 st[3] = (char_u)MOUSE_LEFT;
4935 fill_mouse_coord(st + 4,
Bram Moolenaar41bfd302005-04-24 21:59:46 +00004936 wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 wp->w_height + W_WINROW(wp));
4938
4939 add_to_input_buf(st, 8);
4940 st[3] = (char_u)MOUSE_RELEASE;
4941 add_to_input_buf(st, 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942#ifdef FEAT_GUI_GTK
Bram Moolenaar30613902019-12-01 22:11:18 +01004943 // Need to wake up the main loop
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 if (gtk_main_level() > 0)
4945 gtk_main_quit();
4946#endif
4947 }
4948}
4949
4950/*
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004951 * Called when the mouse moved (but not when dragging).
4952 */
4953 void
4954gui_mouse_moved(int x, int y)
4955{
4956 // Ignore this while still starting up.
4957 if (!gui.in_use || gui.starting)
4958 return;
4959
4960 // apply 'mousefocus' and pointer shape
4961 gui_mouse_focus(x, y);
4962
Ernie Raelc4cb5442022-04-03 15:47:28 +01004963 if (p_mousemev
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01004964#ifdef FEAT_PROP_POPUP
Ernie Raelc4cb5442022-04-03 15:47:28 +01004965 || popup_uses_mouse_move
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004966#endif
Ernie Raelc4cb5442022-04-03 15:47:28 +01004967 )
4968 // Generate a mouse-moved event. For a <MouseMove> mapping. Or so the
4969 // popup can perhaps be closed, just like in the terminal.
4970 gui_send_mouse_event(MOUSE_MOVE, x, y, FALSE, 0);
Bram Moolenaar49fe95f2019-07-08 21:57:30 +02004971}
4972
4973/*
Bram Moolenaar0630bb62019-11-04 22:52:12 +01004974 * Get the window where the mouse pointer is on.
4975 * Returns NULL if not found.
4976 */
4977 win_T *
4978gui_mouse_window(mouse_find_T popup)
4979{
4980 int x, y;
4981
4982 if (!(gui.in_use && (p_mousef || popup == FIND_POPUP)))
4983 return NULL;
4984 gui_mch_getmouse(&x, &y);
4985
4986 // Only use the mouse when it's on the Vim window
4987 if (x >= 0 && x <= Columns * gui.char_width
4988 && y >= 0 && Y_2_ROW(y) >= tabline_height())
4989 return xy2win(x, y, popup);
4990 return NULL;
4991}
4992
4993/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 * Called when mouse should be moved to window with focus.
4995 */
4996 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004997gui_mouse_correct(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 win_T *wp = NULL;
5000
5001 need_mouse_correct = FALSE;
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00005002
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005003 wp = gui_mouse_window(IGNORE_POPUP);
Bram Moolenaar30613902019-12-01 22:11:18 +01005004 if (wp != curwin && wp != NULL) // If in other than current window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00005006 validate_cline_row();
5007 gui_mch_setmouse((int)W_ENDCOL(curwin) * gui.char_width - 3,
5008 (W_WINROW(curwin) + curwin->w_wrow) * gui.char_height
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 + (gui.char_height) / 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011}
5012
5013/*
Bram Moolenaar989a70c2017-08-16 22:46:01 +02005014 * Find window where the mouse pointer "x" / "y" coordinate is in.
Bram Moolenaar4f974752019-02-17 17:44:42 +01005015 * As a side effect update the shape of the mouse pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 static win_T *
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005018xy2win(int x, int y, mouse_find_T popup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 int row;
5021 int col;
5022 win_T *wp;
5023
5024 row = Y_2_ROW(y);
5025 col = X_2_COL(x);
Bram Moolenaar30613902019-12-01 22:11:18 +01005026 if (row < 0 || col < 0) // before first window
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 return NULL;
Bram Moolenaar0630bb62019-11-04 22:52:12 +01005028 wp = mouse_find_win(&row, &col, popup);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02005029 if (wp == NULL)
5030 return NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005031#ifdef FEAT_MOUSESHAPE
Bram Moolenaar24959102022-05-07 20:01:16 +01005032 if (State == MODE_HITRETURN || State == MODE_ASKMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 {
5034 if (Y_2_ROW(y) >= msg_row)
5035 update_mouseshape(SHAPE_IDX_MOREL);
5036 else
5037 update_mouseshape(SHAPE_IDX_MORE);
5038 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005039 else if (row > wp->w_height) // below status line
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 update_mouseshape(SHAPE_IDX_CLINE);
Bram Moolenaar24959102022-05-07 20:01:16 +01005041 else if (!(State & MODE_CMDLINE) && wp->w_vsep_width > 0 && col == wp->w_width
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005042 && (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 update_mouseshape(SHAPE_IDX_VSEP);
Bram Moolenaar24959102022-05-07 20:01:16 +01005044 else if (!(State & MODE_CMDLINE) && wp->w_status_height > 0
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005045 && row == wp->w_height && msg_scrolled == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 update_mouseshape(SHAPE_IDX_STATUS);
5047 else
5048 update_mouseshape(-2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02005050 return wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051}
5052
5053/*
5054 * ":gui" and ":gvim": Change from the terminal version to the GUI version.
5055 * File names may be given to redefine the args list.
5056 */
5057 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005058ex_gui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059{
5060 char_u *arg = eap->arg;
5061
5062 /*
5063 * Check for "-f" argument: foreground, don't fork.
5064 * Also don't fork when started with "gvim -f".
5065 * Do fork when using "gui -b".
5066 */
5067 if (arg[0] == '-'
5068 && (arg[1] == 'f' || arg[1] == 'b')
Bram Moolenaar1c465442017-03-12 20:10:05 +01005069 && (arg[2] == NUL || VIM_ISWHITE(arg[2])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 {
5071 gui.dofork = (arg[1] == 'b');
5072 eap->arg = skipwhite(eap->arg + 2);
5073 }
5074 if (!gui.in_use)
5075 {
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005076#if defined(VIMDLL) && !defined(EXPERIMENTAL_GUI_CMD)
Bram Moolenaar257a3962019-12-29 15:19:03 +01005077 if (!gui.starting)
5078 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +02005079 emsg(_(e_gui_cannot_be_used_not_enabled_at_compile_time));
Bram Moolenaar257a3962019-12-29 15:19:03 +01005080 return;
5081 }
5082#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005083 // Clear the command. Needed for when forking+exiting, to avoid part
5084 // of the argument ending up after the shell prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 msg_clr_eos_force();
Bram Moolenaar257a3962019-12-29 15:19:03 +01005086#ifdef GUI_MAY_SPAWN
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005087 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005088 gui_start(eap->arg);
5089 else
Bram Moolenaar257a3962019-12-29 15:19:03 +01005090#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005091 gui_start(NULL);
Bram Moolenaar257a3962019-12-29 15:19:03 +01005092#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard04a0202016-01-26 23:30:18 +01005093 channel_gui_register_all();
Bram Moolenaar67c53842010-05-22 18:28:27 +02005094#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 }
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02005096 if (!ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 ex_next(eap);
5098}
5099
Bram Moolenaar4f974752019-02-17 17:44:42 +01005100#if ((defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaarb3f74062020-02-26 16:16:53 +01005101 || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_PHOTON) \
5102 || defined(FEAT_GUI_HAIKU)) \
Bram Moolenaar4f974752019-02-17 17:44:42 +01005103 && defined(FEAT_TOOLBAR)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104/*
Bram Moolenaar0b962e52022-04-03 18:02:37 +01005105 * This is shared between Haiku, Motif, and GTK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107
5108/*
5109 * Callback function for do_in_runtimepath().
5110 */
5111 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005112gfp_setname(char_u *fname, void *cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005114 char_u *gfp_buffer = cookie;
5115
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 if (STRLEN(fname) >= MAXPATHL)
5117 *gfp_buffer = NUL;
5118 else
5119 STRCPY(gfp_buffer, fname);
5120}
5121
5122/*
5123 * Find the path of bitmap "name" with extension "ext" in 'runtimepath'.
5124 * Return FAIL for failure and OK if buffer[MAXPATHL] contains the result.
5125 */
5126 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005127gui_find_bitmap(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128{
5129 if (STRLEN(name) > MAXPATHL - 14)
5130 return FAIL;
Bram Moolenaar051b7822005-05-19 21:00:46 +00005131 vim_snprintf((char *)buffer, MAXPATHL, "bitmaps/%s.%s", name, ext);
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01005132 if (do_in_runtimepath(buffer, 0, gfp_setname, buffer) == FAIL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005133 || *buffer == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 return FAIL;
5135 return OK;
5136}
5137
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005138# if !defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139/*
5140 * Given the name of the "icon=" argument, try finding the bitmap file for the
5141 * icon. If it is an absolute path name, use it as it is. Otherwise append
5142 * "ext" and search for it in 'runtimepath'.
5143 * The result is put in "buffer[MAXPATHL]". If something fails "buffer"
5144 * contains "name".
5145 */
5146 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005147gui_find_iconfile(char_u *name, char_u *buffer, char *ext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148{
5149 char_u buf[MAXPATHL + 1];
5150
5151 expand_env(name, buffer, MAXPATHL);
5152 if (!mch_isFullName(buffer) && gui_find_bitmap(buffer, buf, ext) == OK)
5153 STRCPY(buffer, buf);
5154}
5155# endif
5156#endif
5157
Bram Moolenaar9e175142020-04-30 22:51:01 +02005158#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)|| defined(FEAT_GUI_HAIKU) \
5159 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005161display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162{
5163 char_u *p;
5164
5165 if (isatty(2))
5166 fflush(stderr);
5167 else if (error_ga.ga_data != NULL)
5168 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005169 // avoid putting up a message box with blanks only
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 for (p = (char_u *)error_ga.ga_data; *p != NUL; ++p)
5171 if (!isspace(*p))
5172 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005173 // Truncate a very long message, it will go off-screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 if (STRLEN(p) > 2000)
5175 STRCPY(p + 2000 - 14, "...(truncated)");
5176 (void)do_dialog(VIM_ERROR, (char_u *)_("Error"),
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005177 p, (char_u *)_("&Ok"), 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 break;
5179 }
5180 ga_clear(&error_ga);
5181 }
5182}
5183#endif
5184
5185#if defined(NO_CONSOLE_INPUT) || defined(PROTO)
5186/*
5187 * Return TRUE if still starting up and there is no place to enter text.
5188 * For GTK and X11 we check if stderr is not a tty, which means we were
5189 * (probably) started from the desktop. Also check stdin, "vim >& file" does
5190 * allow typing on stdin.
5191 */
5192 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005193no_console_input(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194{
5195 return ((!gui.in_use || gui.starting)
5196# ifndef NO_CONSOLE
5197 && !isatty(0) && !isatty(2)
5198# endif
5199 );
5200}
5201#endif
5202
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01005203#if defined(FIND_REPLACE_DIALOG) \
Bram Moolenaarda68cf32006-10-10 15:35:57 +00005204 || defined(NEED_GUI_UPDATE_SCREEN) \
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005205 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206/*
5207 * Update the current window and the screen.
5208 */
5209 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005210gui_update_screen(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211{
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005212# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005213 linenr_T conceal_old_cursor_line = 0;
5214 linenr_T conceal_new_cursor_line = 0;
5215 int conceal_update_lines = FALSE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005216# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005217
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 update_topline();
5219 validate_cursor();
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005220
Bram Moolenaar30613902019-12-01 22:11:18 +01005221 // Trigger CursorMoved if the cursor moved.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005222 if (!finish_op && (has_cursormoved()
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005223# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005224 || popup_visible
5225# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005226# ifdef FEAT_CONCEAL
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005227 || curwin->w_p_cole > 0
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005228# endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005229 ) && !EQUAL_POS(last_cursormoved, curwin->w_cursor))
Bram Moolenaarec80df72008-05-07 19:46:51 +00005230 {
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005231 if (has_cursormoved())
5232 apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf);
K.Takata6e1d31e2022-02-03 13:05:32 +00005233# ifdef FEAT_PROP_POPUP
Bram Moolenaar3397f742019-06-02 18:40:06 +02005234 if (popup_visible)
5235 popup_check_cursor_pos();
K.Takata6e1d31e2022-02-03 13:05:32 +00005236# endif
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005237# ifdef FEAT_CONCEAL
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005238 if (curwin->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005239 {
5240 conceal_old_cursor_line = last_cursormoved.lnum;
5241 conceal_new_cursor_line = curwin->w_cursor.lnum;
5242 conceal_update_lines = TRUE;
5243 }
5244# endif
Bram Moolenaarec80df72008-05-07 19:46:51 +00005245 last_cursormoved = curwin->w_cursor;
5246 }
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005247
LemonBoy09371822022-04-08 15:18:45 +01005248 if (!finish_op)
zeertzjqd58862d2022-04-12 11:32:48 +01005249 may_trigger_winscrolled();
LemonBoy09371822022-04-08 15:18:45 +01005250
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005251# ifdef FEAT_CONCEAL
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005252 if (conceal_update_lines
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005253 && (conceal_old_cursor_line != conceal_new_cursor_line
5254 || conceal_cursor_line(curwin)
5255 || need_cursor_line_redraw))
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005256 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02005257 if (conceal_old_cursor_line != conceal_new_cursor_line)
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005258 redrawWinline(curwin, conceal_old_cursor_line);
5259 redrawWinline(curwin, conceal_new_cursor_line);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005260 curwin->w_valid &= ~VALID_CROW;
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005261 need_cursor_line_redraw = FALSE;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02005262 }
5263# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01005264 update_screen(0); // may need to update the screen
Bram Moolenaar535d5b62019-01-11 20:45:36 +01005265 setcursor();
Bram Moolenaara338adc2018-01-31 20:51:47 +01005266 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267}
5268#endif
5269
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005270#if defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271/*
5272 * Get the text to use in a find/replace dialog. Uses the last search pattern
5273 * if the argument is empty.
5274 * Returns an allocated string.
5275 */
5276 char_u *
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005277get_find_dialog_text(
5278 char_u *arg,
Bram Moolenaar30613902019-12-01 22:11:18 +01005279 int *wwordp, // return: TRUE if \< \> found
5280 int *mcasep) // return: TRUE if \C found
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281{
5282 char_u *text;
5283
5284 if (*arg == NUL)
5285 text = last_search_pat();
5286 else
5287 text = arg;
5288 if (text != NULL)
5289 {
5290 text = vim_strsave(text);
5291 if (text != NULL)
5292 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005293 int len = (int)STRLEN(text);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294 int i;
5295
Bram Moolenaar30613902019-12-01 22:11:18 +01005296 // Remove "\V"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
5298 {
5299 mch_memmove(text, text + 2, (size_t)(len - 1));
5300 len -= 2;
5301 }
5302
Bram Moolenaar30613902019-12-01 22:11:18 +01005303 // Recognize "\c" and "\C" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 if (len >= 2 && *text == '\\' && (text[1] == 'c' || text[1] == 'C'))
5305 {
5306 *mcasep = (text[1] == 'C');
5307 mch_memmove(text, text + 2, (size_t)(len - 1));
5308 len -= 2;
5309 }
5310
Bram Moolenaar30613902019-12-01 22:11:18 +01005311 // Recognize "\<text\>" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 if (len >= 4
5313 && STRNCMP(text, "\\<", 2) == 0
5314 && STRNCMP(text + len - 2, "\\>", 2) == 0)
5315 {
5316 *wwordp = TRUE;
5317 mch_memmove(text, text + 2, (size_t)(len - 4));
5318 text[len - 4] = NUL;
5319 }
5320
Bram Moolenaar30613902019-12-01 22:11:18 +01005321 // Recognize "\/" or "\?" and remove.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 for (i = 0; i + 1 < len; ++i)
5323 if (text[i] == '\\' && (text[i + 1] == '/'
5324 || text[i + 1] == '?'))
5325 {
5326 mch_memmove(text + i, text + i + 1, (size_t)(len - i));
5327 --len;
5328 }
5329 }
5330 }
5331 return text;
5332}
5333
5334/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 * Handle the press of a button in the find-replace dialog.
5336 * Return TRUE when something was added to the input buffer.
5337 */
5338 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005339gui_do_findrepl(
Bram Moolenaar30613902019-12-01 22:11:18 +01005340 int flags, // one of FRD_REPLACE, FRD_FINDNEXT, etc.
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005341 char_u *find_text,
5342 char_u *repl_text,
Bram Moolenaar30613902019-12-01 22:11:18 +01005343 int down) // Search downwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344{
5345 garray_T ga;
5346 int i;
5347 int type = (flags & FRD_TYPE_MASK);
5348 char_u *p;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005349 regmatch_T regmatch;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005350 int save_did_emsg = did_emsg;
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005351 static int busy = FALSE;
5352
Bram Moolenaar30613902019-12-01 22:11:18 +01005353 // When the screen is being updated we should not change buffers and
5354 // windows structures, it may cause freed memory to be used. Also don't
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00005355 // do this recursively (pressing "Find" quickly several times).
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005356 if (updating_screen || busy)
5357 return FALSE;
5358
Bram Moolenaar30613902019-12-01 22:11:18 +01005359 // refuse replace when text cannot be changed
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005360 if ((type == FRD_REPLACE || type == FRD_REPLACEALL) && text_locked())
5361 return FALSE;
5362
5363 busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364
5365 ga_init2(&ga, 1, 100);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005366 if (type == FRD_REPLACEALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 ga_concat(&ga, (char_u *)"%s/");
5368
5369 ga_concat(&ga, (char_u *)"\\V");
5370 if (flags & FRD_MATCH_CASE)
5371 ga_concat(&ga, (char_u *)"\\C");
5372 else
5373 ga_concat(&ga, (char_u *)"\\c");
5374 if (flags & FRD_WHOLE_WORD)
5375 ga_concat(&ga, (char_u *)"\\<");
Bram Moolenaar30613902019-12-01 22:11:18 +01005376 // escape slash and backslash
Bram Moolenaar518bc172018-05-13 17:05:30 +02005377 p = vim_strsave_escaped(find_text, (char_u *)"/\\");
5378 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005379 ga_concat(&ga, p);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005380 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 if (flags & FRD_WHOLE_WORD)
5382 ga_concat(&ga, (char_u *)"\\>");
5383
5384 if (type == FRD_REPLACEALL)
5385 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 ga_concat(&ga, (char_u *)"/");
Bram Moolenaar30613902019-12-01 22:11:18 +01005387 // escape slash and backslash
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00005388 p = vim_strsave_escaped(repl_text, (char_u *)"/\\");
5389 if (p != NULL)
5390 ga_concat(&ga, p);
5391 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 ga_concat(&ga, (char_u *)"/g");
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005393 }
5394 ga_append(&ga, NUL);
5395
5396 if (type == FRD_REPLACE)
5397 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005398 // Do the replacement when the text at the cursor matches. Thus no
5399 // replacement is done if the cursor was moved!
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005400 regmatch.regprog = vim_regcomp(ga.ga_data, RE_MAGIC + RE_STRING);
5401 regmatch.rm_ic = 0;
5402 if (regmatch.regprog != NULL)
5403 {
5404 p = ml_get_cursor();
5405 if (vim_regexec_nl(&regmatch, p, (colnr_T)0)
5406 && regmatch.startp[0] == p)
5407 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005408 // Clear the command line to remove any old "No match"
5409 // error.
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005410 msg_end_prompt();
5411
5412 if (u_save_cursor() == OK)
5413 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005414 // A button was pressed thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005415 u_sync(FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005416
5417 del_bytes((long)(regmatch.endp[0] - regmatch.startp[0]),
Bram Moolenaard35f9712005-12-18 22:02:33 +00005418 FALSE, FALSE);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005419 ins_str(repl_text);
5420 }
5421 }
5422 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005423 msg(_("No match at cursor, finding next"));
Bram Moolenaar473de612013-06-08 18:19:48 +02005424 vim_regfree(regmatch.regprog);
Bram Moolenaar7171abe2004-10-11 10:06:20 +00005425 }
5426 }
5427
5428 if (type == FRD_REPLACEALL)
5429 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005430 // A button was pressed, thus undo should be synced.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00005431 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 do_cmdline_cmd(ga.ga_data);
5433 }
5434 else
5435 {
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005436 int searchflags = SEARCH_MSG + SEARCH_MARK;
5437
Bram Moolenaar30613902019-12-01 22:11:18 +01005438 // Search for the next match.
5439 // Don't skip text under cursor for single replace.
Bram Moolenaarbee666f2016-06-14 20:39:42 +02005440 if (type == FRD_REPLACE)
5441 searchflags += SEARCH_START;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 i = msg_scroll;
Bram Moolenaar518bc172018-05-13 17:05:30 +02005443 if (down)
5444 {
Bram Moolenaarc036e872020-02-21 21:30:52 +01005445 (void)do_search(NULL, '/', '/', ga.ga_data, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005446 }
5447 else
5448 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005449 // We need to escape '?' if and only if we are searching in the up
5450 // direction
Bram Moolenaar518bc172018-05-13 17:05:30 +02005451 p = vim_strsave_escaped(ga.ga_data, (char_u *)"?");
5452 if (p != NULL)
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01005453 (void)do_search(NULL, '?', '?', p, 1L, searchflags, NULL);
Bram Moolenaar518bc172018-05-13 17:05:30 +02005454 vim_free(p);
5455 }
5456
Bram Moolenaar30613902019-12-01 22:11:18 +01005457 msg_scroll = i; // don't let an error message set msg_scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 }
5459
Bram Moolenaar30613902019-12-01 22:11:18 +01005460 // Don't want to pass did_emsg to other code, it may cause disabling
5461 // syntax HL if we were busy redrawing.
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005462 did_emsg = save_did_emsg;
5463
Bram Moolenaar24959102022-05-07 20:01:16 +01005464 if (State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005466 gui_update_screen(); // update the screen
5467 msg_didout = 0; // overwrite any message
5468 need_wait_return = FALSE; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 }
5470
5471 vim_free(ga.ga_data);
Bram Moolenaar9f8650c2009-07-29 09:11:15 +00005472 busy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 return (ga.ga_len > 0);
5474}
5475
5476#endif
5477
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005478#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479/*
5480 * Jump to the window at specified point (x, y).
5481 */
5482 static void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005483gui_wingoto_xy(int x, int y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484{
5485 int row = Y_2_ROW(y);
5486 int col = X_2_COL(x);
5487 win_T *wp;
5488
5489 if (row >= 0 && col >= 0)
5490 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02005491 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 if (wp != NULL && wp != curwin)
5493 win_goto(wp);
5494 }
5495}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496
5497/*
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005498 * Function passed to handle_drop() for the actions to be done after the
5499 * argument list has been updated.
5500 */
5501 static void
5502drop_callback(void *cookie)
5503{
5504 char_u *p = cookie;
Bram Moolenaar4671e882021-11-22 17:21:48 +00005505 int do_shorten = FALSE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005506
Bram Moolenaar30613902019-12-01 22:11:18 +01005507 // If Shift held down, change to first file's directory. If the first
5508 // item is a directory, change to that directory (and let the explorer
5509 // plugin show the contents).
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005510 if (p != NULL)
5511 {
5512 if (mch_isdir(p))
5513 {
5514 if (mch_chdir((char *)p) == 0)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005515 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005516 }
5517 else if (vim_chdirfile(p, "drop") == OK)
Bram Moolenaar4671e882021-11-22 17:21:48 +00005518 do_shorten = TRUE;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005519 vim_free(p);
Bram Moolenaar4671e882021-11-22 17:21:48 +00005520 if (do_shorten)
5521 {
5522 shorten_fnames(TRUE);
5523 last_chdir_reason = "drop";
5524 }
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005525 }
5526
Bram Moolenaar30613902019-12-01 22:11:18 +01005527 // Update the screen display
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005528 update_screen(NOT_VALID);
5529# ifdef FEAT_MENU
5530 gui_update_menus(0);
5531# endif
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005532 maketitle();
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005533 setcursor();
5534 out_flush_cursor(FALSE, FALSE);
5535}
5536
5537/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 * Process file drop. Mouse cursor position, key modifiers, name of files
5539 * and count of files are given. Argument "fnames[count]" has full pathnames
5540 * of dropped files, they will be freed in this function, and caller can't use
5541 * fnames after call this function.
5542 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01005544gui_handle_drop(
5545 int x UNUSED,
5546 int y UNUSED,
5547 int_u modifiers,
5548 char_u **fnames,
5549 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550{
5551 int i;
5552 char_u *p;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005553 static int entered = FALSE;
5554
5555 /*
5556 * This function is called by event handlers. Just in case we get a
5557 * second event before the first one is handled, ignore the second one.
5558 * Not sure if this can ever happen, just in case.
5559 */
5560 if (entered)
5561 return;
5562 entered = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563
5564 /*
5565 * When the cursor is at the command line, add the file names to the
5566 * command line, don't edit the files.
5567 */
Bram Moolenaar24959102022-05-07 20:01:16 +01005568 if (State & MODE_CMDLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 {
5570 shorten_filenames(fnames, count);
5571 for (i = 0; i < count; ++i)
5572 {
5573 if (fnames[i] != NULL)
5574 {
5575 if (i > 0)
5576 add_to_input_buf((char_u*)" ", 1);
5577
Bram Moolenaar30613902019-12-01 22:11:18 +01005578 // We don't know what command is used thus we can't be sure
5579 // about which characters need to be escaped. Only escape the
5580 // most common ones.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581# ifdef BACKSLASH_IN_FILENAME
5582 p = vim_strsave_escaped(fnames[i], (char_u *)" \t\"|");
5583# else
5584 p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
5585# endif
5586 if (p != NULL)
Bram Moolenaar70c2a632007-08-15 18:08:50 +00005587 add_to_input_buf_csi(p, (int)STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 vim_free(p);
5589 vim_free(fnames[i]);
5590 }
5591 }
5592 vim_free(fnames);
5593 }
5594 else
5595 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005596 // Go to the window under mouse cursor, then shorten given "fnames" by
5597 // current window, because a window can have local current dir.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 gui_wingoto_xy(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 shorten_filenames(fnames, count);
5600
Bram Moolenaar30613902019-12-01 22:11:18 +01005601 // If Shift held down, remember the first item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 if ((modifiers & MOUSE_SHIFT) != 0)
5603 p = vim_strsave(fnames[0]);
5604 else
5605 p = NULL;
5606
Bram Moolenaar30613902019-12-01 22:11:18 +01005607 // Handle the drop, :edit or :split to get to the file. This also
5608 // frees fnames[]. Skip this if there is only one item, it's a
5609 // directory and Shift is held down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5611 && mch_isdir(fnames[0]))
5612 {
5613 vim_free(fnames[0]);
5614 vim_free(fnames);
Yegappan Lakshmanan18d46582021-06-23 20:46:52 +02005615 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 }
5617 else
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005618 handle_drop(count, fnames, (modifiers & MOUSE_CTRL) != 0,
Bram Moolenaar4671e882021-11-22 17:21:48 +00005619 drop_callback, (void *)p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 }
Bram Moolenaarc236c162008-07-13 17:41:49 +00005621
5622 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623}
5624#endif
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005625
5626/*
5627 * Check if "key" is to interrupt us. Handles a key that has not had modifiers
5628 * applied yet.
5629 * Return the key with modifiers applied if so, NUL if not.
5630 */
5631 int
5632check_for_interrupt(int key, int modifiers_arg)
5633{
5634 int modifiers = modifiers_arg;
5635 int c = merge_modifyOtherKeys(key, &modifiers);
5636
5637 if ((c == Ctrl_C && ctrl_c_interrupts)
Bram Moolenaaraf50e892020-08-01 13:22:10 +02005638#ifdef UNIX
5639 || (intr_char != Ctrl_C && c == intr_char)
5640#endif
5641 )
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02005642 {
5643 got_int = TRUE;
5644 return c;
5645 }
5646 return NUL;
5647}
5648
Bram Moolenaar2d12c252022-06-13 21:42:45 +01005649/*
5650 * If the "--gui-log-file fname" argument is given write the dialog title and
5651 * message to a file and return TRUE. Otherwise return FALSE.
5652 * When there is any problem opening the file or writing to the file this is
5653 * ignored, showing the dialog might get the test to get stuck.
5654 */
5655 int
5656gui_dialog_log(char_u *title, char_u *message)
5657{
5658 char_u *fname = get_gui_dialog_file();
5659 FILE *fd;
5660
5661 if (fname == NULL)
5662 return FALSE;
5663
5664 fd = mch_fopen((char *)fname, "a");
5665 if (fd != NULL)
5666 {
5667 fprintf(fd, "%s: %s\n", title, message);
5668 fclose(fd);
5669 }
5670 return TRUE;
5671}