blob: 2748da403bb6bc4fc991c8a4eb446d7ce8203aa3 [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 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ui.c: functions that handle the user interface.
12 * 1. Keyboard input stuff, and a bit of windowing stuff. These are called
13 * before the machine specific stuff (mch_*) so that we can call the GUI
14 * stuff instead if the GUI is running.
15 * 2. Clipboard stuff.
16 * 3. Input buffer stuff.
17 */
18
19#include "vim.h"
20
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +020021#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
22# define WIN32_LEAN_AND_MEAN
23# include <windows.h>
24# include "winclip.pro"
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010028ui_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029{
30#ifdef FEAT_GUI
31 if (gui.in_use && !gui.dying && !gui.starting)
32 {
33 gui_write(s, len);
34 if (p_wd)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +010035 gui_wait_for_chars(p_wd, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 return;
37 }
38#endif
39#ifndef NO_CONSOLE
40 /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */
41 if (!(silent_mode && p_verbose == 0))
42 {
Bram Moolenaar4f974752019-02-17 17:44:42 +010043#if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 char_u *tofree = NULL;
45
46 if (output_conv.vc_type != CONV_NONE)
47 {
48 /* Convert characters from 'encoding' to 'termencoding'. */
49 tofree = string_convert(&output_conv, s, &len);
50 if (tofree != NULL)
51 s = tofree;
52 }
53#endif
54
55 mch_write(s, len);
56
Bram Moolenaar4f974752019-02-17 17:44:42 +010057# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 if (output_conv.vc_type != CONV_NONE)
59 vim_free(tofree);
Bram Moolenaar264b74f2019-01-24 17:18:42 +010060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 }
62#endif
63}
64
Bram Moolenaar4f974752019-02-17 17:44:42 +010065#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When executing an external program, there may be some typed characters that
68 * are not consumed by it. Give them back to ui_inchar() and they are stored
69 * here for the next call.
70 */
71static char_u *ta_str = NULL;
72static int ta_off; /* offset for next char to use when ta_str != NULL */
73static int ta_len; /* length of ta_str when it's not NULL*/
74
75 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010076ui_inchar_undo(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 char_u *new;
79 int newlen;
80
81 newlen = len;
82 if (ta_str != NULL)
83 newlen += ta_len - ta_off;
84 new = alloc(newlen);
85 if (new != NULL)
86 {
87 if (ta_str != NULL)
88 {
89 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
90 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
91 vim_free(ta_str);
92 }
93 else
94 mch_memmove(new, s, (size_t)len);
95 ta_str = new;
96 ta_len = newlen;
97 ta_off = 0;
98 }
99}
100#endif
101
102/*
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200103 * ui_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * Get characters from the keyboard.
105 * Return the number of characters that are available.
106 * If "wtime" == 0 do not wait for characters.
107 * If "wtime" == -1 wait forever for characters.
108 * If "wtime" > 0 wait "wtime" milliseconds for a character.
109 *
110 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
111 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
112 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
113 * otherwise.
114 */
115 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100116ui_inchar(
117 char_u *buf,
118 int maxlen,
119 long wtime, /* don't use "time", MIPS cannot handle it */
120 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121{
122 int retval = 0;
123
124#if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
125 /*
126 * Use the typeahead if there is any.
127 */
128 if (ta_str != NULL)
129 {
130 if (maxlen >= ta_len - ta_off)
131 {
132 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
Bram Moolenaard23a8232018-02-10 18:45:26 +0100133 VIM_CLEAR(ta_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 return ta_len;
135 }
136 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
137 ta_off += maxlen;
138 return maxlen;
139 }
140#endif
141
Bram Moolenaar05159a02005-02-26 23:04:13 +0000142#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000143 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000144 prof_inchar_enter();
145#endif
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#ifdef NO_CONSOLE_INPUT
148 /* Don't wait for character input when the window hasn't been opened yet.
149 * Do try reading, this works when redirecting stdin from a file.
150 * Must return something, otherwise we'll loop forever. If we run into
151 * this very often we probably got stuck, exit Vim. */
152 if (no_console_input())
153 {
154 static int count = 0;
155
156# ifndef NO_CONSOLE
Bram Moolenaar13410242018-11-26 21:19:11 +0100157 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000158 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000159 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160# endif
161 if (wtime == -1 && ++count == 1000)
162 read_error_exit();
163 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000164 retval = 1;
165 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 }
167#endif
168
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000169 /* If we are going to wait for some time or block... */
170 if (wtime == -1 || wtime > 100L)
171 {
172 /* ... allow signals to kill us. */
173 (void)vim_handle_signal(SIGNAL_UNBLOCK);
174
175 /* ... there is no need for CTRL-C to interrupt something, don't let
176 * it set got_int when it was mapped. */
Bram Moolenaar50008692015-01-14 16:08:32 +0100177 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state())
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000178 ctrl_c_interrupts = FALSE;
179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100181 /*
182 * Here we call gui_inchar() or mch_inchar(), the GUI or machine-dependent
183 * input function. The functionality they implement is like this:
184 *
185 * while (not timed out)
186 * {
187 * handle-resize;
188 * parse-queued-messages;
189 * if (waited for 'updatetime')
190 * trigger-cursorhold;
191 * ui_wait_for_chars_or_timer()
192 * if (character available)
193 * break;
194 * }
195 *
196 * ui_wait_for_chars_or_timer() does:
197 *
198 * while (not timed out)
199 * {
200 * if (any-timer-triggered)
201 * invoke-timer-callback;
202 * wait-for-character();
203 * if (character available)
204 * break;
205 * }
206 *
207 * wait-for-character() does:
208 * while (not timed out)
209 * {
210 * Wait for event;
211 * if (something on channel)
212 * read/write channel;
213 * else if (resized)
214 * handle_resize();
215 * else if (system event)
216 * deal-with-system-event;
217 * else if (character available)
218 * break;
219 * }
220 *
221 */
222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223#ifdef FEAT_GUI
224 if (gui.in_use)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100225 retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226#endif
227#ifndef NO_CONSOLE
228# ifdef FEAT_GUI
229 else
230# endif
231 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
232#endif
233
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000234 if (wtime == -1 || wtime > 100L)
235 /* block SIGHUP et al. */
236 (void)vim_handle_signal(SIGNAL_BLOCK);
237
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 ctrl_c_interrupts = TRUE;
239
Bram Moolenaar05159a02005-02-26 23:04:13 +0000240#ifdef NO_CONSOLE_INPUT
241theend:
242#endif
243#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000244 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000245 prof_inchar_exit();
246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 return retval;
248}
249
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100250#if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO)
251/*
252 * Common code for mch_inchar() and gui_inchar(): Wait for a while or
253 * indefinitely until characters are available, dealing with timers and
254 * messages on channels.
255 *
256 * "buf" may be NULL if the available characters are not to be returned, only
257 * check if they are available.
258 *
259 * Return the number of characters that are available.
260 * If "wtime" == 0 do not wait for characters.
261 * If "wtime" == n wait a short time for characters.
262 * If "wtime" == -1 wait forever for characters.
263 */
264 int
265inchar_loop(
266 char_u *buf,
267 int maxlen,
268 long wtime, // don't use "time", MIPS cannot handle it
269 int tb_change_cnt,
270 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
271 int (*resize_func)(int check_only))
272{
273 int len;
274 int interrupted = FALSE;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100275 int did_call_wait_func = FALSE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100276 int did_start_blocking = FALSE;
277 long wait_time;
278 long elapsed_time = 0;
279#ifdef ELAPSED_FUNC
280 elapsed_T start_tv;
281
282 ELAPSED_INIT(start_tv);
283#endif
284
285 /* repeat until we got a character or waited long enough */
286 for (;;)
287 {
288 /* Check if window changed size while we were busy, perhaps the ":set
289 * columns=99" command was used. */
290 if (resize_func != NULL)
291 resize_func(FALSE);
292
293#ifdef MESSAGE_QUEUE
294 // Only process messages when waiting.
295 if (wtime != 0)
296 {
297 parse_queued_messages();
298 // If input was put directly in typeahead buffer bail out here.
299 if (typebuf_changed(tb_change_cnt))
300 return 0;
301 }
302#endif
303 if (wtime < 0 && did_start_blocking)
304 // blocking and already waited for p_ut
305 wait_time = -1;
306 else
307 {
308 if (wtime >= 0)
309 wait_time = wtime;
310 else
311 // going to block after p_ut
312 wait_time = p_ut;
313#ifdef ELAPSED_FUNC
314 elapsed_time = ELAPSED_FUNC(start_tv);
315#endif
316 wait_time -= elapsed_time;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100317
318 // If the waiting time is now zero or less, we timed out. However,
319 // loop at least once to check for characters and events. Matters
320 // when "wtime" is zero.
321 if (wait_time <= 0 && did_call_wait_func)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100322 {
323 if (wtime >= 0)
324 // no character available within "wtime"
325 return 0;
326
327 // No character available within 'updatetime'.
328 did_start_blocking = TRUE;
329 if (trigger_cursorhold() && maxlen >= 3
330 && !typebuf_changed(tb_change_cnt))
331 {
332 // Put K_CURSORHOLD in the input buffer or return it.
333 if (buf == NULL)
334 {
335 char_u ibuf[3];
336
337 ibuf[0] = CSI;
338 ibuf[1] = KS_EXTRA;
339 ibuf[2] = (int)KE_CURSORHOLD;
340 add_to_input_buf(ibuf, 3);
341 }
342 else
343 {
344 buf[0] = K_SPECIAL;
345 buf[1] = KS_EXTRA;
346 buf[2] = (int)KE_CURSORHOLD;
347 }
348 return 3;
349 }
350
351 // There is no character available within 'updatetime' seconds:
352 // flush all the swap files to disk. Also done when
353 // interrupted by SIGWINCH.
354 before_blocking();
355 continue;
356 }
357 }
358
359#ifdef FEAT_JOB_CHANNEL
360 if (wait_time < 0 || wait_time > 100L)
361 {
362 // Checking if a job ended requires polling. Do this at least
363 // every 100 msec.
364 if (has_pending_job())
365 wait_time = 100L;
366
367 // If there is readahead then parse_queued_messages() timed out and
368 // we should call it again soon.
369 if (channel_any_readahead())
370 wait_time = 10L;
371 }
372#endif
373#ifdef FEAT_BEVAL_GUI
374 if (p_beval && wait_time > 100L)
375 // The 'balloonexpr' may indirectly invoke a callback while waiting
376 // for a character, need to check often.
377 wait_time = 100L;
378#endif
379
380 // Wait for a character to be typed or another event, such as the winch
381 // signal or an event on the monitored file descriptors.
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100382 did_call_wait_func = TRUE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100383 if (wait_func(wait_time, &interrupted, FALSE))
384 {
385 // If input was put directly in typeahead buffer bail out here.
386 if (typebuf_changed(tb_change_cnt))
387 return 0;
388
389 // We might have something to return now.
390 if (buf == NULL)
391 // "buf" is NULL, we were just waiting, not actually getting
392 // input.
393 return input_available();
394
395 len = read_from_input_buf(buf, (long)maxlen);
396 if (len > 0)
397 return len;
398 continue;
399 }
400 // Timed out or interrupted with no character available.
401
402#ifndef ELAPSED_FUNC
403 // estimate the elapsed time
404 elapsed_time += wait_time;
405#endif
406
407 if ((resize_func != NULL && resize_func(TRUE))
Bram Moolenaar3e9d4d82019-01-27 17:08:40 +0100408#if defined(FEAT_CLIENTSERVER) && defined(UNIX)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100409 || server_waiting()
410#endif
411#ifdef MESSAGE_QUEUE
412 || interrupted
413#endif
414 || wait_time > 0
415 || (wtime < 0 && !did_start_blocking))
416 // no character available, but something to be done, keep going
417 continue;
418
419 // no character available or interrupted, return zero
420 break;
421 }
422 return 0;
423}
424#endif
425
Bram Moolenaarc46af532019-01-09 22:24:49 +0100426#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100427/*
428 * Wait for a timer to fire or "wait_func" to return non-zero.
429 * Returns OK when something was read.
430 * Returns FAIL when it timed out or was interrupted.
431 */
432 int
433ui_wait_for_chars_or_timer(
434 long wtime,
435 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
436 int *interrupted,
437 int ignore_input)
438{
439 int due_time;
440 long remaining = wtime;
441 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100442# ifdef FEAT_JOB_CHANNEL
Bram Moolenaare299bbd2019-01-17 14:12:02 +0100443 int brief_wait = FALSE;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100444# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100445
Bram Moolenaarc46af532019-01-09 22:24:49 +0100446 // When waiting very briefly don't trigger timers.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100447 if (wtime >= 0 && wtime < 10L)
448 return wait_func(wtime, NULL, ignore_input);
449
450 while (wtime < 0 || remaining > 0)
451 {
Bram Moolenaarc46af532019-01-09 22:24:49 +0100452 // Trigger timers and then get the time in wtime until the next one is
453 // due. Wait up to that time.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100454 due_time = check_due_timer();
455 if (typebuf.tb_change_cnt != tb_change_cnt)
456 {
457 /* timer may have used feedkeys() */
458 return FAIL;
459 }
460 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
461 due_time = remaining;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100462# ifdef FEAT_JOB_CHANNEL
463 if ((due_time < 0 || due_time > 10L)
464# ifdef FEAT_GUI
465 && !gui.in_use
466# endif
467 && (has_pending_job() || channel_any_readahead()))
468 {
469 // There is a pending job or channel, should return soon in order
470 // to handle them ASAP. Do check for input briefly.
471 due_time = 10L;
472 brief_wait = TRUE;
473 }
474# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100475 if (wait_func(due_time, interrupted, ignore_input))
476 return OK;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100477 if ((interrupted != NULL && *interrupted)
478# ifdef FEAT_JOB_CHANNEL
479 || brief_wait
480# endif
481 )
482 // Nothing available, but need to return so that side effects get
483 // handled, such as handling a message on a channel.
Bram Moolenaara338adc2018-01-31 20:51:47 +0100484 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100485 if (wtime > 0)
486 remaining -= due_time;
487 }
488 return FAIL;
489}
490#endif
491
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492/*
Bram Moolenaarc46af532019-01-09 22:24:49 +0100493 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 */
495 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100496ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497{
498#ifdef FEAT_GUI
499 if (gui.in_use)
500 {
501 gui_mch_update();
502 return input_available();
503 }
504#endif
505#ifndef NO_CONSOLE
506# ifdef NO_CONSOLE_INPUT
507 if (no_console_input())
508 return 0;
509# endif
510 return mch_char_avail();
511#else
512 return 0;
513#endif
514}
515
516/*
517 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
518 * cancel the delay if a key is hit.
519 */
520 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100521ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522{
523#ifdef FEAT_GUI
524 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100525 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 else
527#endif
528 mch_delay(msec, ignoreinput);
529}
530
531/*
532 * If the machine has job control, use it to suspend the program,
533 * otherwise fake it by starting a new shell.
534 * When running the GUI iconify the window.
535 */
536 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100537ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538{
539#ifdef FEAT_GUI
540 if (gui.in_use)
541 {
542 gui_mch_iconify();
543 return;
544 }
545#endif
546 mch_suspend();
547}
548
549#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
550/*
551 * When the OS can't really suspend, call this function to start a shell.
552 * This is never called in the GUI.
553 */
554 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100555suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556{
557 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100558 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 else
560 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100561 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 do_shell(NULL, 0);
563 }
564}
565#endif
566
567/*
568 * Try to get the current Vim shell size. Put the result in Rows and Columns.
569 * Use the new sizes as defaults for 'columns' and 'lines'.
570 * Return OK when size could be determined, FAIL otherwise.
571 */
572 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100573ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
575 int retval;
576
577#ifdef FEAT_GUI
578 if (gui.in_use)
579 retval = gui_get_shellsize();
580 else
581#endif
582 retval = mch_get_shellsize();
583
584 check_shellsize();
585
586 /* adjust the default for 'lines' and 'columns' */
587 if (retval == OK)
588 {
589 set_number_default("lines", Rows);
590 set_number_default("columns", Columns);
591 }
592 return retval;
593}
594
595/*
596 * Set the size of the Vim shell according to Rows and Columns, if possible.
597 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
598 * new size. If this is not possible, it will adjust Rows and Columns.
599 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100601ui_set_shellsize(
602 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604#ifdef FEAT_GUI
605 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200606 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 else
608#endif
609 mch_set_shellsize();
610}
611
612/*
613 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
614 * region.
615 */
616 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100617ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618{
619 if (full_screen && !exiting)
620 {
621#ifdef FEAT_GUI
622 if (gui.in_use)
623 gui_new_shellsize();
624 else
625#endif
626 mch_new_shellsize();
627 }
628}
629
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200630#if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200631 && (defined(FEAT_GUI) \
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200632 || defined(MSWIN) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200633 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200634 || defined(PROTO)
635/*
636 * Get the window position in pixels, if possible.
637 * Return FAIL when not possible.
638 */
639 int
640ui_get_winpos(int *x, int *y, varnumber_T timeout)
641{
642# ifdef FEAT_GUI
643 if (gui.in_use)
644 return gui_mch_get_winpos(x, y);
645# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200646# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200647 return mch_get_winpos(x, y);
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200648# else
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200649# if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)
650 return term_get_winpos(x, y, timeout);
651# else
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200652 return FAIL;
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200653# endif
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200654# endif
655}
656#endif
657
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100659ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200661 ui_breakcheck_force(FALSE);
662}
663
664/*
665 * When "force" is true also check when the terminal is not in raw mode.
666 * This is useful to read input on channels.
667 */
668 void
669ui_breakcheck_force(int force)
670{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100671 static int recursive = FALSE;
672 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100673
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100674 // We could be called recursively if stderr is redirected, calling
675 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
676 // calls vgetorpeek() which calls ui_breakcheck() again.
677 if (recursive)
678 return;
679 recursive = TRUE;
680
681 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100682 ++updating_screen;
683
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684#ifdef FEAT_GUI
685 if (gui.in_use)
686 gui_mch_update();
687 else
688#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200689 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100690
Bram Moolenaar42335f52018-09-13 15:33:43 +0200691 if (save_updating_screen)
692 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200693 else
Bram Moolenaar68a4b042019-05-29 22:28:29 +0200694 after_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100695
696 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697}
698
699/*****************************************************************************
700 * Functions for copying and pasting text between applications.
701 * This is always included in a GUI version, but may also be included when the
702 * clipboard and mouse is available to a terminal version such as xterm.
703 * Note: there are some more functions in ops.c that handle selection stuff.
704 *
705 * Also note that the majority of functions here deal with the X 'primary'
706 * (visible - for Visual mode use) selection, and only that. There are no
707 * versions of these for the 'clipboard' selection, as Visual mode has no use
708 * for them.
709 */
710
711#if defined(FEAT_CLIPBOARD) || defined(PROTO)
712
713/*
714 * Selection stuff using Visual mode, for cutting and pasting text to other
715 * windows.
716 */
717
718/*
719 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
720 * is included, but the clipboard can not be used, or TRUE if the clipboard can
721 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
722 * the GUI starts.
723 */
724 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100725clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200727 Clipboard_T *cb;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728
729 cb = &clip_star;
730 for (;;)
731 {
732 cb->available = can_use;
733 cb->owned = FALSE;
734 cb->start.lnum = 0;
735 cb->start.col = 0;
736 cb->end.lnum = 0;
737 cb->end.col = 0;
738 cb->state = SELECT_CLEARED;
739
740 if (cb == &clip_plus)
741 break;
742 cb = &clip_plus;
743 }
744}
745
746/*
747 * Check whether the VIsual area has changed, and if so try to become the owner
748 * of the selection, and free any old converted selection we may still have
749 * lying around. If the VIsual mode has ended, make a copy of what was
750 * selected so we can still give it to others. Will probably have to make sure
751 * this is called whenever VIsual mode is ended.
752 */
753 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200754clip_update_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200756 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
758 /* If visual mode is only due to a redo command ("."), then ignore it */
759 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
760 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100761 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 {
763 start = VIsual;
764 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000766 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 }
768 else
769 {
770 start = curwin->w_cursor;
771 end = VIsual;
772 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100773 if (!EQUAL_POS(clip->start, start)
774 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200775 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200777 clip_clear_selection(clip);
778 clip->start = start;
779 clip->end = end;
780 clip->vmode = VIsual_mode;
781 clip_free_selection(clip);
782 clip_own_selection(clip);
783 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 }
785 }
786}
787
788 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200789clip_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
791 /*
792 * Also want to check somehow that we are reading from the keyboard rather
793 * than a mapping etc.
794 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200796 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200797 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200798 if (cbd->available)
799 {
800 int was_owned = cbd->owned;
801
802 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200803 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000805 /* May have to show a different kind of highlighting for the
806 * selected area. There is no specific redraw command for this,
807 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000809 && (get_real_state() == VISUAL
810 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200811 && (cbd == &clip_star ? clip_isautosel_star()
812 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100813 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 redraw_curbuf_later(INVERTED_ALL);
815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200817#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200818 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200819 if (!cbd->owned && cbd->available)
820 cbd->owned = (clip_gen_own_selection(cbd) == OK);
821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822}
823
824 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200825clip_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826{
827#ifdef FEAT_X11
828 int was_owned = cbd->owned;
829#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200830 int visual_selection = FALSE;
831
832 if (cbd == &clip_star || cbd == &clip_plus)
833 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834
835 clip_free_selection(cbd);
836 cbd->owned = FALSE;
837 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200838 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 clip_gen_lose_selection(cbd);
840#ifdef FEAT_X11
841 if (visual_selection)
842 {
843 /* May have to show a different kind of highlighting for the selected
844 * area. There is no specific redraw command for this, just redraw all
845 * windows on the current buffer. */
846 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000847 && (get_real_state() == VISUAL
848 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200849 && (cbd == &clip_star ?
850 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100851 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
853 update_curbuf(INVERTED_ALL);
854 setcursor();
855 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100856 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 }
858 }
859#endif
860}
861
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200862 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200863clip_copy_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200865 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200867 clip_update_selection(clip);
868 clip_free_selection(clip);
869 clip_own_selection(clip);
870 if (clip->owned)
871 clip_get_selection(clip);
872 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 }
874}
875
876/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200877 * Save and restore clip_unnamed before doing possibly many changes. This
878 * prevents accessing the clipboard very often which might slow down Vim
879 * considerably.
880 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100881static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200882static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
883static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200884
885/*
886 * Save clip_unnamed and reset it.
887 */
888 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100889start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200890{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100891 if (++global_change_count > 1)
892 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200893 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100894 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200895
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100896 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200897 {
898 clip_unnamed = FALSE;
899 clip_did_set_selection = FALSE;
900 }
901}
902
903/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200904 * Return TRUE if setting the clipboard was postponed, it already contains the
905 * right text.
906 */
907 int
908is_clipboard_needs_update()
909{
910 return clipboard_needs_update;
911}
912
913/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200914 * Restore clip_unnamed and set the selection when needed.
915 */
916 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100917end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200918{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100919 if (--global_change_count > 0)
920 /* recursive */
921 return;
922 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200923 {
924 clip_did_set_selection = TRUE;
925 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100926 clip_unnamed_saved = FALSE;
927 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200928 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100929 /* only store something in the clipboard,
930 * if we have yanked anything to it */
931 if (clip_unnamed & CLIP_UNNAMED)
932 {
933 clip_own_selection(&clip_star);
934 clip_gen_set_selection(&clip_star);
935 }
936 if (clip_unnamed & CLIP_UNNAMED_PLUS)
937 {
938 clip_own_selection(&clip_plus);
939 clip_gen_set_selection(&clip_plus);
940 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200941 }
942 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200943 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200944}
945
946/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 * Called when Visual mode is ended: update the selection.
948 */
949 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100950clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200952 if (clip_isautosel_star())
953 clip_copy_selection(&clip_star);
954 if (clip_isautosel_plus())
955 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956}
957
958/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200959 * Return TRUE if automatic selection of Visual area is desired for the *
960 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 */
962 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100963clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964{
965 return (
966#ifdef FEAT_GUI
967 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
968#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200969 clip_autoselect_star);
970}
971
972/*
973 * Return TRUE if automatic selection of Visual area is desired for the +
974 * register.
975 */
976 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100977clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200978{
979 return (
980#ifdef FEAT_GUI
981 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
982#endif
983 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984}
985
986
987/*
988 * Stuff for general mouse selection, without using Visual mode.
989 */
990
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100991static void clip_invert_area(int, int, int, int, int how);
992static void clip_invert_rectangle(int row, int col, int height, int width, int invert);
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200993static void clip_get_word_boundaries(Clipboard_T *, int, int);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100994static int clip_get_line_end(int);
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200995static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996
997/* flags for clip_invert_area() */
998#define CLIP_CLEAR 1
999#define CLIP_SET 2
1000#define CLIP_TOGGLE 3
1001
1002/*
1003 * Start, continue or end a modeless selection. Used when editing the
Bram Moolenaarb53fb312019-06-13 23:59:52 +02001004 * command-line, in the cmdline window and when the mouse is in a popup window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 */
1006 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001007clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008{
1009 int repeat;
1010
1011 repeat = ((clip_star.mode == SELECT_MODE_CHAR
1012 || clip_star.mode == SELECT_MODE_LINE)
1013 && (mod_mask & MOD_MASK_2CLICK))
1014 || (clip_star.mode == SELECT_MODE_WORD
1015 && (mod_mask & MOD_MASK_3CLICK));
1016 if (is_click && button == MOUSE_RIGHT)
1017 {
1018 /* Right mouse button: If there was no selection, start one.
1019 * Otherwise extend the existing selection. */
1020 if (clip_star.state == SELECT_CLEARED)
1021 clip_start_selection(mouse_col, mouse_row, FALSE);
1022 clip_process_selection(button, mouse_col, mouse_row, repeat);
1023 }
1024 else if (is_click)
1025 clip_start_selection(mouse_col, mouse_row, repeat);
1026 else if (is_drag)
1027 {
1028 /* Don't try extending a selection if there isn't one. Happens when
1029 * button-down is in the cmdline and them moving mouse upwards. */
1030 if (clip_star.state != SELECT_CLEARED)
1031 clip_process_selection(button, mouse_col, mouse_row, repeat);
1032 }
1033 else /* release */
1034 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1035}
1036
1037/*
1038 * Compare two screen positions ala strcmp()
1039 */
1040 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001041clip_compare_pos(
1042 int row1,
1043 int col1,
1044 int row2,
1045 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046{
1047 if (row1 > row2) return(1);
1048 if (row1 < row2) return(-1);
1049 if (col1 > col2) return(1);
1050 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001051 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052}
1053
1054/*
1055 * Start the selection
1056 */
1057 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001058clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001060 Clipboard_T *cb = &clip_star;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
1062 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001063 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065 row = check_row(row);
1066 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068
1069 cb->start.lnum = row;
1070 cb->start.col = col;
1071 cb->end = cb->start;
1072 cb->origin_row = (short_u)cb->start.lnum;
1073 cb->state = SELECT_IN_PROGRESS;
1074
1075 if (repeated_click)
1076 {
1077 if (++cb->mode > SELECT_MODE_LINE)
1078 cb->mode = SELECT_MODE_CHAR;
1079 }
1080 else
1081 cb->mode = SELECT_MODE_CHAR;
1082
1083#ifdef FEAT_GUI
1084 /* clear the cursor until the selection is made */
1085 if (gui.in_use)
1086 gui_undraw_cursor();
1087#endif
1088
1089 switch (cb->mode)
1090 {
1091 case SELECT_MODE_CHAR:
1092 cb->origin_start_col = cb->start.col;
1093 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
1094 break;
1095
1096 case SELECT_MODE_WORD:
1097 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1098 cb->origin_start_col = cb->word_start_col;
1099 cb->origin_end_col = cb->word_end_col;
1100
1101 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
1102 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1103 cb->start.col = cb->word_start_col;
1104 cb->end.col = cb->word_end_col;
1105 break;
1106
1107 case SELECT_MODE_LINE:
1108 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
1109 (int)Columns, CLIP_SET);
1110 cb->start.col = 0;
1111 cb->end.col = Columns;
1112 break;
1113 }
1114
1115 cb->prev = cb->start;
1116
1117#ifdef DEBUG_SELECTION
1118 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
1119#endif
1120}
1121
1122/*
1123 * Continue processing the selection
1124 */
1125 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001126clip_process_selection(
1127 int button,
1128 int col,
1129 int row,
1130 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001132 Clipboard_T *cb = &clip_star;
1133 int diff;
1134 int slen = 1; // cursor shape width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135
1136 if (button == MOUSE_RELEASE)
1137 {
1138 /* Check to make sure we have something selected */
1139 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1140 {
1141#ifdef FEAT_GUI
1142 if (gui.in_use)
1143 gui_update_cursor(FALSE, FALSE);
1144#endif
1145 cb->state = SELECT_CLEARED;
1146 return;
1147 }
1148
1149#ifdef DEBUG_SELECTION
1150 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1151 cb->start.col, cb->end.lnum, cb->end.col);
1152#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001153 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 || (
1155#ifdef FEAT_GUI
1156 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1157#endif
1158 clip_autoselectml))
1159 clip_copy_modeless_selection(FALSE);
1160#ifdef FEAT_GUI
1161 if (gui.in_use)
1162 gui_update_cursor(FALSE, FALSE);
1163#endif
1164
1165 cb->state = SELECT_DONE;
1166 return;
1167 }
1168
1169 row = check_row(row);
1170 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172
1173 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1174 return;
1175
1176 /*
1177 * When extending the selection with the right mouse button, swap the
1178 * start and end if the position is before half the selection
1179 */
1180 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1181 {
1182 /*
1183 * If the click is before the start, or the click is inside the
1184 * selection and the start is the closest side, set the origin to the
1185 * end of the selection.
1186 */
1187 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1188 || (clip_compare_pos(row, col,
1189 (int)cb->end.lnum, cb->end.col) < 0
1190 && (((cb->start.lnum == cb->end.lnum
1191 && cb->end.col - col > col - cb->start.col))
1192 || ((diff = (cb->end.lnum - row) -
1193 (row - cb->start.lnum)) > 0
1194 || (diff == 0 && col < (int)(cb->start.col +
1195 cb->end.col) / 2)))))
1196 {
1197 cb->origin_row = (short_u)cb->end.lnum;
1198 cb->origin_start_col = cb->end.col - 1;
1199 cb->origin_end_col = cb->end.col;
1200 }
1201 else
1202 {
1203 cb->origin_row = (short_u)cb->start.lnum;
1204 cb->origin_start_col = cb->start.col;
1205 cb->origin_end_col = cb->start.col;
1206 }
1207 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1208 cb->mode = SELECT_MODE_CHAR;
1209 }
1210
1211 /* set state, for when using the right mouse button */
1212 cb->state = SELECT_IN_PROGRESS;
1213
1214#ifdef DEBUG_SELECTION
1215 printf("Selection extending to (%d,%d)\n", row, col);
1216#endif
1217
1218 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1219 cb->mode = SELECT_MODE_CHAR;
1220
1221 switch (cb->mode)
1222 {
1223 case SELECT_MODE_CHAR:
1224 /* If we're on a different line, find where the line ends */
1225 if (row != cb->prev.lnum)
1226 cb->word_end_col = clip_get_line_end(row);
1227
1228 /* See if we are before or after the origin of the selection */
1229 if (clip_compare_pos(row, col, cb->origin_row,
1230 cb->origin_start_col) >= 0)
1231 {
1232 if (col >= (int)cb->word_end_col)
1233 clip_update_modeless_selection(cb, cb->origin_row,
1234 cb->origin_start_col, row, (int)Columns);
1235 else
1236 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 if (has_mbyte && mb_lefthalve(row, col))
1238 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 clip_update_modeless_selection(cb, cb->origin_row,
1240 cb->origin_start_col, row, col + slen);
1241 }
1242 }
1243 else
1244 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 if (has_mbyte
1246 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1247 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 if (col >= (int)cb->word_end_col)
1249 clip_update_modeless_selection(cb, row, cb->word_end_col,
1250 cb->origin_row, cb->origin_start_col + slen);
1251 else
1252 clip_update_modeless_selection(cb, row, col,
1253 cb->origin_row, cb->origin_start_col + slen);
1254 }
1255 break;
1256
1257 case SELECT_MODE_WORD:
1258 /* If we are still within the same word, do nothing */
1259 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1260 && col < (int)cb->word_end_col && !repeated_click)
1261 return;
1262
1263 /* Get new word boundaries */
1264 clip_get_word_boundaries(cb, row, col);
1265
1266 /* Handle being after the origin point of selection */
1267 if (clip_compare_pos(row, col, cb->origin_row,
1268 cb->origin_start_col) >= 0)
1269 clip_update_modeless_selection(cb, cb->origin_row,
1270 cb->origin_start_col, row, cb->word_end_col);
1271 else
1272 clip_update_modeless_selection(cb, row, cb->word_start_col,
1273 cb->origin_row, cb->origin_end_col);
1274 break;
1275
1276 case SELECT_MODE_LINE:
1277 if (row == cb->prev.lnum && !repeated_click)
1278 return;
1279
1280 if (clip_compare_pos(row, col, cb->origin_row,
1281 cb->origin_start_col) >= 0)
1282 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1283 (int)Columns);
1284 else
1285 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1286 (int)Columns);
1287 break;
1288 }
1289
1290 cb->prev.lnum = row;
1291 cb->prev.col = col;
1292
1293#ifdef DEBUG_SELECTION
1294 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1295 cb->start.col, cb->end.lnum, cb->end.col);
1296#endif
1297}
1298
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299# if defined(FEAT_GUI) || defined(PROTO)
1300/*
1301 * Redraw part of the selection if character at "row,col" is inside of it.
1302 * Only used for the GUI.
1303 */
1304 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001305clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306{
1307 int start = col;
1308 int end = col + len;
1309
1310 if (clip_star.state != SELECT_CLEARED
1311 && row >= clip_star.start.lnum
1312 && row <= clip_star.end.lnum)
1313 {
1314 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1315 start = clip_star.start.col;
1316 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1317 end = clip_star.end.col;
1318 if (end > start)
1319 clip_invert_area(row, start, row, end, 0);
1320 }
1321}
1322# endif
1323
1324/*
1325 * Called from outside to clear selected region from the display
1326 */
1327 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001328clip_clear_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001331 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 return;
1333
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001334 clip_invert_area((int)cbd->start.lnum, cbd->start.col, (int)cbd->end.lnum,
1335 cbd->end.col, CLIP_CLEAR);
1336 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337}
1338
1339/*
1340 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1341 */
1342 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001343clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344{
1345 if (clip_star.state == SELECT_DONE
1346 && row2 >= clip_star.start.lnum
1347 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001348 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349}
1350
1351/*
1352 * Called before the screen is scrolled up or down. Adjusts the line numbers
1353 * of the selection. Call with big number when clearing the screen.
1354 */
1355 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001356clip_scroll_selection(
1357 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358{
1359 int lnum;
1360
1361 if (clip_star.state == SELECT_CLEARED)
1362 return;
1363
1364 lnum = clip_star.start.lnum - rows;
1365 if (lnum <= 0)
1366 clip_star.start.lnum = 0;
1367 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1368 clip_star.state = SELECT_CLEARED;
1369 else
1370 clip_star.start.lnum = lnum;
1371
1372 lnum = clip_star.end.lnum - rows;
1373 if (lnum < 0) /* scrolled off of the screen */
1374 clip_star.state = SELECT_CLEARED;
1375 else if (lnum >= screen_Rows)
1376 clip_star.end.lnum = screen_Rows - 1;
1377 else
1378 clip_star.end.lnum = lnum;
1379}
1380
1381/*
1382 * Invert a region of the display between a starting and ending row and column
1383 * Values for "how":
1384 * CLIP_CLEAR: undo inversion
1385 * CLIP_SET: set inversion
1386 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1387 * 0: invert (GUI only).
1388 */
1389 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001390clip_invert_area(
1391 int row1,
1392 int col1,
1393 int row2,
1394 int col2,
1395 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396{
1397 int invert = FALSE;
1398
1399 if (how == CLIP_SET)
1400 invert = TRUE;
1401
1402 /* Swap the from and to positions so the from is always before */
1403 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1404 {
1405 int tmp_row, tmp_col;
1406
1407 tmp_row = row1;
1408 tmp_col = col1;
1409 row1 = row2;
1410 col1 = col2;
1411 row2 = tmp_row;
1412 col2 = tmp_col;
1413 }
1414 else if (how == CLIP_TOGGLE)
1415 invert = TRUE;
1416
1417 /* If all on the same line, do it the easy way */
1418 if (row1 == row2)
1419 {
1420 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1421 }
1422 else
1423 {
1424 /* Handle a piece of the first line */
1425 if (col1 > 0)
1426 {
1427 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1428 row1++;
1429 }
1430
1431 /* Handle a piece of the last line */
1432 if (col2 < Columns - 1)
1433 {
1434 clip_invert_rectangle(row2, 0, 1, col2, invert);
1435 row2--;
1436 }
1437
1438 /* Handle the rectangle thats left */
1439 if (row2 >= row1)
1440 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1441 invert);
1442 }
1443}
1444
1445/*
1446 * Invert or un-invert a rectangle of the screen.
1447 * "invert" is true if the result is inverted.
1448 */
1449 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001450clip_invert_rectangle(
1451 int row,
1452 int col,
1453 int height,
1454 int width,
1455 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456{
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001457#ifdef FEAT_TEXT_PROP
1458 // this goes on top of all popup windows
1459 screen_zindex = 32000;
1460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461#ifdef FEAT_GUI
1462 if (gui.in_use)
1463 gui_mch_invert_rectangle(row, col, height, width);
1464 else
1465#endif
1466 screen_draw_rectangle(row, col, height, width, invert);
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001467#ifdef FEAT_TEXT_PROP
1468 screen_zindex = 0;
1469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470}
1471
1472/*
1473 * Copy the currently selected area into the '*' register so it will be
1474 * available for pasting.
1475 * When "both" is TRUE also copy to the '+' register.
1476 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001478clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479{
1480 char_u *buffer;
1481 char_u *bufp;
1482 int row;
1483 int start_col;
1484 int end_col;
1485 int line_end_col;
1486 int add_newline_flag = FALSE;
1487 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 int row1 = clip_star.start.lnum;
1490 int col1 = clip_star.start.col;
1491 int row2 = clip_star.end.lnum;
1492 int col2 = clip_star.end.col;
1493
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001494 /* Can't use ScreenLines unless initialized */
1495 if (ScreenLines == NULL)
1496 return;
1497
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 /*
1499 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1500 */
1501 if (row1 > row2)
1502 {
1503 row = row1; row1 = row2; row2 = row;
1504 row = col1; col1 = col2; col2 = row;
1505 }
1506 else if (row1 == row2 && col1 > col2)
1507 {
1508 row = col1; col1 = col2; col2 = row;
1509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 /* correct starting point for being on right halve of double-wide char */
1511 p = ScreenLines + LineOffset[row1];
1512 if (enc_dbcs != 0)
1513 col1 -= (*mb_head_off)(p, p + col1);
1514 else if (enc_utf8 && p[col1] == 0)
1515 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516
1517 /* Create a temporary buffer for storing the text */
1518 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 if (enc_dbcs != 0)
1520 len *= 2; /* max. 2 bytes per display cell */
1521 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001522 len *= MB_MAXBYTES;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001523 buffer = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 if (buffer == NULL) /* out of memory */
1525 return;
1526
1527 /* Process each row in the selection */
1528 for (bufp = buffer, row = row1; row <= row2; row++)
1529 {
1530 if (row == row1)
1531 start_col = col1;
1532 else
1533 start_col = 0;
1534
1535 if (row == row2)
1536 end_col = col2;
1537 else
1538 end_col = Columns;
1539
1540 line_end_col = clip_get_line_end(row);
1541
1542 /* See if we need to nuke some trailing whitespace */
1543 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1544 {
1545 /* Get rid of trailing whitespace */
1546 end_col = line_end_col;
1547 if (end_col < start_col)
1548 end_col = start_col;
1549
1550 /* If the last line extended to the end, add an extra newline */
1551 if (row == row2)
1552 add_newline_flag = TRUE;
1553 }
1554
1555 /* If after the first row, we need to always add a newline */
1556 if (row > row1 && !LineWraps[row - 1])
1557 *bufp++ = NL;
1558
1559 if (row < screen_Rows && end_col <= screen_Columns)
1560 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 if (enc_dbcs != 0)
1562 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001563 int i;
1564
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 p = ScreenLines + LineOffset[row];
1566 for (i = start_col; i < end_col; ++i)
1567 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1568 {
1569 /* single-width double-byte char */
1570 *bufp++ = 0x8e;
1571 *bufp++ = ScreenLines2[LineOffset[row] + i];
1572 }
1573 else
1574 {
1575 *bufp++ = p[i];
1576 if (MB_BYTE2LEN(p[i]) == 2)
1577 *bufp++ = p[++i];
1578 }
1579 }
1580 else if (enc_utf8)
1581 {
1582 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001583 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001584 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585
1586 off = LineOffset[row];
1587 for (i = start_col; i < end_col; ++i)
1588 {
1589 /* The base character is either in ScreenLinesUC[] or
1590 * ScreenLines[]. */
1591 if (ScreenLinesUC[off + i] == 0)
1592 *bufp++ = ScreenLines[off + i];
1593 else
1594 {
1595 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001596 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001598 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001599 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001600 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001601 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 }
1604 }
1605 /* Skip right halve of double-wide character. */
1606 if (ScreenLines[off + i + 1] == 0)
1607 ++i;
1608 }
1609 }
1610 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 {
1612 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1613 end_col - start_col);
1614 bufp += end_col - start_col;
1615 }
1616 }
1617 }
1618
1619 /* Add a newline at the end if the selection ended there */
1620 if (add_newline_flag)
1621 *bufp++ = NL;
1622
1623 /* First cleanup any old selection and become the owner. */
1624 clip_free_selection(&clip_star);
1625 clip_own_selection(&clip_star);
1626
1627 /* Yank the text into the '*' register. */
1628 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1629
1630 /* Make the register contents available to the outside world. */
1631 clip_gen_set_selection(&clip_star);
1632
1633#ifdef FEAT_X11
1634 if (both)
1635 {
1636 /* Do the same for the '+' register. */
1637 clip_free_selection(&clip_plus);
1638 clip_own_selection(&clip_plus);
1639 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1640 clip_gen_set_selection(&clip_plus);
1641 }
1642#endif
1643 vim_free(buffer);
1644}
1645
1646/*
1647 * Find the starting and ending positions of the word at the given row and
1648 * column. Only white-separated words are recognized here.
1649 */
1650#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1651
1652 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001653clip_get_word_boundaries(Clipboard_T *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
1655 int start_class;
1656 int temp_col;
1657 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001660 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 return;
1662
1663 p = ScreenLines + LineOffset[row];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 /* Correct for starting in the right halve of a double-wide char */
1665 if (enc_dbcs != 0)
1666 col -= dbcs_screen_head_off(p, p + col);
1667 else if (enc_utf8 && p[col] == 0)
1668 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 start_class = CHAR_CLASS(p[col]);
1670
1671 temp_col = col;
1672 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 if (enc_dbcs != 0
1674 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1675 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001676 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1677 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 break;
1679 cb->word_start_col = temp_col;
1680
1681 temp_col = col;
1682 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1684 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001685 else if (CHAR_CLASS(p[temp_col]) != start_class
1686 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 break;
1688 cb->word_end_col = temp_col;
1689}
1690
1691/*
1692 * Find the column position for the last non-whitespace character on the given
1693 * line.
1694 */
1695 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001696clip_get_line_end(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697{
1698 int i;
1699
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001700 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 return 0;
1702 for (i = screen_Columns; i > 0; i--)
1703 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1704 break;
1705 return i;
1706}
1707
1708/*
1709 * Update the currently selected region by adding and/or subtracting from the
1710 * beginning or end and inverting the changed area(s).
1711 */
1712 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001713clip_update_modeless_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001714 Clipboard_T *cb,
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001715 int row1,
1716 int col1,
1717 int row2,
1718 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719{
1720 /* See if we changed at the beginning of the selection */
1721 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1722 {
1723 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1724 CLIP_TOGGLE);
1725 cb->start.lnum = row1;
1726 cb->start.col = col1;
1727 }
1728
1729 /* See if we changed at the end of the selection */
1730 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1731 {
1732 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1733 CLIP_TOGGLE);
1734 cb->end.lnum = row2;
1735 cb->end.col = col2;
1736 }
1737}
1738
1739 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001740clip_gen_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741{
1742#ifdef FEAT_XCLIPBOARD
1743# ifdef FEAT_GUI
1744 if (gui.in_use)
1745 return clip_mch_own_selection(cbd);
1746 else
1747# endif
1748 return clip_xterm_own_selection(cbd);
1749#else
1750 return clip_mch_own_selection(cbd);
1751#endif
1752}
1753
1754 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001755clip_gen_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756{
1757#ifdef FEAT_XCLIPBOARD
1758# ifdef FEAT_GUI
1759 if (gui.in_use)
1760 clip_mch_lose_selection(cbd);
1761 else
1762# endif
1763 clip_xterm_lose_selection(cbd);
1764#else
1765 clip_mch_lose_selection(cbd);
1766#endif
1767}
1768
1769 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001770clip_gen_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001772 if (!clip_did_set_selection)
1773 {
1774 /* Updating postponed, so that accessing the system clipboard won't
Bram Moolenaarbdace832019-03-02 10:13:42 +01001775 * hang Vim when accessing it many times (e.g. on a :g command). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001776 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1777 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1778 {
1779 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001780 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001781 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783#ifdef FEAT_XCLIPBOARD
1784# ifdef FEAT_GUI
1785 if (gui.in_use)
1786 clip_mch_set_selection(cbd);
1787 else
1788# endif
1789 clip_xterm_set_selection(cbd);
1790#else
1791 clip_mch_set_selection(cbd);
1792#endif
1793}
1794
1795 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001796clip_gen_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
1798#ifdef FEAT_XCLIPBOARD
1799# ifdef FEAT_GUI
1800 if (gui.in_use)
1801 clip_mch_request_selection(cbd);
1802 else
1803# endif
1804 clip_xterm_request_selection(cbd);
1805#else
1806 clip_mch_request_selection(cbd);
1807#endif
1808}
1809
Bram Moolenaar113e1072019-01-20 15:30:40 +01001810#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001811 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001812clip_gen_owner_exists(Clipboard_T *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001813{
1814#ifdef FEAT_XCLIPBOARD
1815# ifdef FEAT_GUI_GTK
1816 if (gui.in_use)
1817 return clip_gtk_owner_exists(cbd);
1818 else
1819# endif
1820 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001821#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001822 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001823#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001824}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001825#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001826
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827#endif /* FEAT_CLIPBOARD */
1828
1829/*****************************************************************************
1830 * Functions that handle the input buffer.
1831 * This is used for any GUI version, and the unix terminal version.
1832 *
1833 * For Unix, the input characters are buffered to be able to check for a
1834 * CTRL-C. This should be done with signals, but I don't know how to do that
1835 * in a portable way for a tty in RAW mode.
1836 *
1837 * For the client-server code in the console the received keys are put in the
1838 * input buffer.
1839 */
1840
1841#if defined(USE_INPUT_BUF) || defined(PROTO)
1842
1843/*
1844 * Internal typeahead buffer. Includes extra space for long key code
1845 * descriptions which would otherwise overflow. The buffer is considered full
1846 * when only this extra space (or part of it) remains.
1847 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001848#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001850 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 * This requires a larger buffer...
1852 * (Madsen) Go with this for remote input as well ...
1853 */
1854# define INBUFLEN 4096
1855#else
1856# define INBUFLEN 250
1857#endif
1858
1859static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1860static int inbufcount = 0; /* number of chars in inbuf[] */
1861
1862/*
1863 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1864 * trash_input_buf() are functions for manipulating the input buffer. These
1865 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1866 */
1867
1868 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001869vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870{
1871 return (inbufcount >= INBUFLEN);
1872}
1873
1874 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001875vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876{
1877 return (inbufcount == 0);
1878}
1879
1880#if defined(FEAT_OLE) || defined(PROTO)
1881 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001882vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883{
1884 return (INBUFLEN - inbufcount);
1885}
1886#endif
1887
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001888#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001890vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891{
1892 return inbufcount;
1893}
1894#endif
1895
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896/*
1897 * Return the current contents of the input buffer and make it empty.
1898 * The returned pointer must be passed to set_input_buf() later.
1899 */
1900 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001901get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 garray_T *gap;
1904
1905 /* We use a growarray to store the data pointer and the length. */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001906 gap = ALLOC_ONE(garray_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 if (gap != NULL)
1908 {
1909 /* Add one to avoid a zero size. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001910 gap->ga_data = alloc(inbufcount + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 if (gap->ga_data != NULL)
1912 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1913 gap->ga_len = inbufcount;
1914 }
1915 trash_input_buf();
1916 return (char_u *)gap;
1917}
1918
1919/*
1920 * Restore the input buffer with a pointer returned from get_input_buf().
1921 * The allocated memory is freed, this only works once!
1922 */
1923 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001924set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925{
1926 garray_T *gap = (garray_T *)p;
1927
1928 if (gap != NULL)
1929 {
1930 if (gap->ga_data != NULL)
1931 {
1932 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1933 inbufcount = gap->ga_len;
1934 vim_free(gap->ga_data);
1935 }
1936 vim_free(gap);
1937 }
1938}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940/*
1941 * Add the given bytes to the input buffer
1942 * Special keys start with CSI. A real CSI must have been translated to
1943 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1944 */
1945 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001946add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947{
1948 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1949 return; /* Shouldn't ever happen! */
1950
1951#ifdef FEAT_HANGULIN
1952 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1953 if ((len = hangul_input_process(s, len)) == 0)
1954 return;
1955#endif
1956
1957 while (len--)
1958 inbuf[inbufcount++] = *s++;
1959}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961/*
1962 * Add "str[len]" to the input buffer while escaping CSI bytes.
1963 */
1964 void
1965add_to_input_buf_csi(char_u *str, int len)
1966{
1967 int i;
1968 char_u buf[2];
1969
1970 for (i = 0; i < len; ++i)
1971 {
1972 add_to_input_buf(str + i, 1);
1973 if (str[i] == CSI)
1974 {
1975 /* Turn CSI into K_CSI. */
1976 buf[0] = KS_EXTRA;
1977 buf[1] = (int)KE_CSI;
1978 add_to_input_buf(buf, 2);
1979 }
1980 }
1981}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982
1983#if defined(FEAT_HANGULIN) || defined(PROTO)
1984 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001985push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001987 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001988 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001989
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001990 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001991 tmpbuf = hangul_string_convert(s, &len);
1992 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001993 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001994
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001995 for (; len--; inp++)
1996 {
1997 inbuf[inbufcount++] = *inp;
1998 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01001999 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002000 /* Turn CSI into K_CSI. */
2001 inbuf[inbufcount++] = KS_EXTRA;
2002 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01002003 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01002004 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002005 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006}
2007#endif
2008
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009/* Remove everything from the input buffer. Called when ^C is found */
2010 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002011trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012{
2013 inbufcount = 0;
2014}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
2016/*
2017 * Read as much data from the input buffer as possible up to maxlen, and store
2018 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 */
2020 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002021read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 if (inbufcount == 0) /* if the buffer is empty, fill it */
2024 fill_input_buf(TRUE);
2025 if (maxlen > inbufcount)
2026 maxlen = inbufcount;
2027 mch_memmove(buf, inbuf, (size_t)maxlen);
2028 inbufcount -= maxlen;
2029 if (inbufcount)
2030 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
2031 return (int)maxlen;
2032}
2033
2034 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002035fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036{
Bram Moolenaard0573012017-10-28 21:11:06 +02002037#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 int len;
2039 int try;
2040 static int did_read_something = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 static char_u *rest = NULL; /* unconverted rest of previous read */
2042 static int restlen = 0;
2043 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044#endif
2045
2046#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002047 if (gui.in_use
2048# ifdef NO_CONSOLE_INPUT
2049 /* Don't use the GUI input when the window hasn't been opened yet.
2050 * We get here from ui_inchar() when we should try reading from stdin. */
2051 && !no_console_input()
2052# endif
2053 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 {
2055 gui_mch_update();
2056 return;
2057 }
2058#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002059#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 if (vim_is_input_buf_full())
2061 return;
2062 /*
2063 * Fill_input_buf() is only called when we really need a character.
2064 * If we can't get any, but there is some in the buffer, just return.
2065 * If we can't get any, and there isn't any in the buffer, we give up and
2066 * exit Vim.
2067 */
2068# ifdef __BEOS__
2069 /*
2070 * On the BeBox version (for now), all input is secretly performed within
2071 * beos_select() which is called from RealWaitForChar().
2072 */
2073 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2074 ;
2075 len = inbufcount;
2076 inbufcount = 0;
2077# else
2078
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 if (rest != NULL)
2080 {
2081 /* Use remainder of previous call, starts with an invalid character
2082 * that may become valid when reading more. */
2083 if (restlen > INBUFLEN - inbufcount)
2084 unconverted = INBUFLEN - inbufcount;
2085 else
2086 unconverted = restlen;
2087 mch_memmove(inbuf + inbufcount, rest, unconverted);
2088 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002089 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 else
2091 {
2092 restlen -= unconverted;
2093 mch_memmove(rest, rest + unconverted, restlen);
2094 }
2095 inbufcount += unconverted;
2096 }
2097 else
2098 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099
2100 len = 0; /* to avoid gcc warning */
2101 for (try = 0; try < 100; ++try)
2102 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002103 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002104 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002105# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002106 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002107# else
2108 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002110
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 if (len > 0 || got_int)
2112 break;
2113 /*
2114 * If reading stdin results in an error, continue reading stderr.
2115 * This helps when using "foo | xargs vim".
2116 */
2117 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2118 {
2119 int m = cur_tmode;
2120
2121 /* We probably set the wrong file descriptor to raw mode. Switch
2122 * back to cooked mode, use another descriptor and set the mode to
2123 * what it was. */
2124 settmode(TMODE_COOK);
2125#ifdef HAVE_DUP
2126 /* Use stderr for stdin, also works for shell commands. */
2127 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002128 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129#else
2130 read_cmd_fd = 2; /* read from stderr instead of stdin */
2131#endif
2132 settmode(m);
2133 }
2134 if (!exit_on_error)
2135 return;
2136 }
2137# endif
2138 if (len <= 0 && !got_int)
2139 read_error_exit();
2140 if (len > 0)
2141 did_read_something = TRUE;
2142 if (got_int)
2143 {
2144 /* Interrupted, pretend a CTRL-C was typed. */
2145 inbuf[0] = 3;
2146 inbufcount = 1;
2147 }
2148 else
2149 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 /*
2151 * May perform conversion on the input characters.
2152 * Include the unconverted rest of the previous call.
2153 * If there is an incomplete char at the end it is kept for the next
2154 * time, reading more bytes should make conversion possible.
2155 * Don't do this in the unlikely event that the input buffer is too
2156 * small ("rest" still contains more bytes).
2157 */
2158 if (input_conv.vc_type != CONV_NONE)
2159 {
2160 inbufcount -= unconverted;
2161 len = convert_input_safe(inbuf + inbufcount,
2162 len + unconverted, INBUFLEN - inbufcount,
2163 rest == NULL ? &rest : NULL, &restlen);
2164 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 while (len-- > 0)
2166 {
2167 /*
2168 * if a CTRL-C was typed, remove it from the buffer and set got_int
2169 */
2170 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2171 {
2172 /* remove everything typed before the CTRL-C */
2173 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2174 inbufcount = 0;
2175 got_int = TRUE;
2176 }
2177 ++inbufcount;
2178 }
2179 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002180#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002182#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183
2184/*
2185 * Exit because of an input read error.
2186 */
2187 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002188read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
2190 if (silent_mode) /* Normal way to exit for "ex -s" */
2191 getout(0);
2192 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2193 preserve_exit();
2194}
2195
2196#if defined(CURSOR_SHAPE) || defined(PROTO)
2197/*
2198 * May update the shape of the cursor.
2199 */
2200 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002201ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202{
2203# ifdef FEAT_GUI
2204 if (gui.in_use)
2205 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002206 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002208 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002209
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210# ifdef MCH_CURSOR_SHAPE
2211 mch_update_cursor();
2212# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002213
2214# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002215 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002216# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002218
2219 void
2220ui_cursor_shape(void)
2221{
2222 ui_cursor_shape_forced(FALSE);
2223}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224#endif
2225
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226/*
2227 * Check bounds for column number
2228 */
2229 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002230check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231{
2232 if (col < 0)
2233 return 0;
2234 if (col >= (int)screen_Columns)
2235 return (int)screen_Columns - 1;
2236 return col;
2237}
2238
2239/*
2240 * Check bounds for row number
2241 */
2242 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002243check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
2245 if (row < 0)
2246 return 0;
2247 if (row >= (int)screen_Rows)
2248 return (int)screen_Rows - 1;
2249 return row;
2250}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251
2252/*
2253 * Stuff for the X clipboard. Shared between VMS and Unix.
2254 */
2255
2256#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2257# include <X11/Xatom.h>
2258# include <X11/Intrinsic.h>
2259
2260/*
2261 * Open the application context (if it hasn't been opened yet).
2262 * Used for Motif and Athena GUI and the xterm clipboard.
2263 */
2264 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002265open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266{
2267 if (app_context == NULL)
2268 {
2269 XtToolkitInitialize();
2270 app_context = XtCreateApplicationContext();
2271 }
2272}
2273
2274static Atom vim_atom; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002276static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277static Atom compound_text_atom;
2278static Atom text_atom;
2279static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002280static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
2282 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002283x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284{
2285 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002287 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2289 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002290 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002292 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2293 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294}
2295
2296/*
2297 * X Selection stuff, for cutting and pasting text to other windows.
2298 */
2299
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002300static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2301static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2302static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002303
2304/*
2305 * Property callback to get a timestamp for XtOwnSelection.
2306 */
2307 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002308clip_x11_timestamp_cb(
2309 Widget w,
2310 XtPointer n UNUSED,
2311 XEvent *event,
2312 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002313{
2314 Atom actual_type;
2315 int format;
2316 unsigned long nitems, bytes_after;
2317 unsigned char *prop=NULL;
2318 XPropertyEvent *xproperty=&event->xproperty;
2319
2320 /* Must be a property notify, state can't be Delete (True), has to be
2321 * one of the supported selection types. */
2322 if (event->type != PropertyNotify || xproperty->state
2323 || (xproperty->atom != clip_star.sel_atom
2324 && xproperty->atom != clip_plus.sel_atom))
2325 return;
2326
2327 if (XGetWindowProperty(xproperty->display, xproperty->window,
2328 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2329 &nitems, &bytes_after, &prop))
2330 return;
2331
2332 if (prop)
2333 XFree(prop);
2334
2335 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2336 if (actual_type != timestamp_atom || format != 32)
2337 return;
2338
2339 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002340 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2341 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002342 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002343 {
2344 /* Set the "owned" flag now, there may have been a call to
2345 * lose_ownership_cb in between. */
2346 if (xproperty->atom == clip_plus.sel_atom)
2347 clip_plus.owned = TRUE;
2348 else
2349 clip_star.owned = TRUE;
2350 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002351}
2352
2353 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002354x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002355{
2356 XtAddEventHandler(w, PropertyChangeMask, False,
2357 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2358}
2359
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002361clip_x11_request_selection_cb(
2362 Widget w UNUSED,
2363 XtPointer success,
2364 Atom *sel_atom,
2365 Atom *type,
2366 XtPointer value,
2367 long_u *length,
2368 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002370 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 long_u len;
2372 char_u *p;
2373 char **text_list = NULL;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002374 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
2377 if (*sel_atom == clip_plus.sel_atom)
2378 cbd = &clip_plus;
2379 else
2380 cbd = &clip_star;
2381
2382 if (value == NULL || *length == 0)
2383 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002384 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 *(int *)success = FALSE;
2386 return;
2387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 p = (char_u *)value;
2389 len = *length;
2390 if (*type == vim_atom)
2391 {
2392 motion_type = *p++;
2393 len--;
2394 }
2395
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 else if (*type == vimenc_atom)
2397 {
2398 char_u *enc;
2399 vimconv_T conv;
2400 int convlen;
2401
2402 motion_type = *p++;
2403 --len;
2404
2405 enc = p;
2406 p += STRLEN(p) + 1;
2407 len -= p - enc;
2408
2409 /* If the encoding of the text is different from 'encoding', attempt
2410 * converting it. */
2411 conv.vc_type = CONV_NONE;
2412 convert_setup(&conv, enc, p_enc);
2413 if (conv.vc_type != CONV_NONE)
2414 {
2415 convlen = len; /* Need to use an int here. */
2416 tmpbuf = string_convert(&conv, p, &convlen);
2417 len = convlen;
2418 if (tmpbuf != NULL)
2419 p = tmpbuf;
2420 convert_setup(&conv, NULL, NULL);
2421 }
2422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002424 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002425 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002426 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
2428 XTextProperty text_prop;
2429 int n_text = 0;
2430 int status;
2431
2432 text_prop.value = (unsigned char *)value;
2433 text_prop.encoding = *type;
2434 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002435 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002436#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002437 if (*type == utf8_atom)
2438 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2439 &text_list, &n_text);
2440 else
2441#endif
2442 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 &text_list, &n_text);
2444 if (status != Success || n_text < 1)
2445 {
2446 *(int *)success = FALSE;
2447 return;
2448 }
2449 p = (char_u *)text_list[0];
2450 len = STRLEN(p);
2451 }
2452 clip_yank_selection(motion_type, p, (long)len, cbd);
2453
2454 if (text_list != NULL)
2455 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 XtFree((char *)value);
2458 *(int *)success = TRUE;
2459}
2460
2461 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002462clip_x11_request_selection(
2463 Widget myShell,
2464 Display *dpy,
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002465 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466{
2467 XEvent event;
2468 Atom type;
2469 static int success;
2470 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002471 time_t start_time;
2472 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002474 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 {
2476 switch (i)
2477 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002480 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002481 case 3: type = compound_text_atom; break;
2482 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 default: type = XA_STRING;
2484 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002485 if (type == utf8_atom
2486# if defined(X_HAVE_UTF8_STRING)
2487 && !enc_utf8
2488# endif
2489 )
2490 /* Only request utf-8 when 'encoding' is utf8 and
2491 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002492 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002493 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2495 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2496
2497 /* Make sure the request for the selection goes out before waiting for
2498 * a response. */
2499 XFlush(dpy);
2500
2501 /*
2502 * Wait for result of selection request, otherwise if we type more
2503 * characters, then they will appear before the one that requested the
2504 * paste! Don't worry, we will catch up with any other events later.
2505 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002506 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002507 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002509 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2510 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2511 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002512 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002513 /* This is where clip_x11_request_selection_cb() should be
2514 * called. It may actually happen a bit later, so we loop
2515 * until "success" changes.
2516 * We may get a SelectionRequest here and if we don't handle
2517 * it we hang. KDE klipper does this, for example.
2518 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002519 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002520 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522
Bram Moolenaar89417b92008-09-07 19:48:53 +00002523 /* Time out after 2 to 3 seconds to avoid that we hang when the
2524 * other process doesn't respond. Note that the SelectionNotify
2525 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002526 * to life and the text gets inserted unexpectedly. Don't know
2527 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002528 if (time(NULL) > start_time + 2)
2529 {
2530 timed_out = TRUE;
2531 break;
2532 }
2533
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 /* Do we need this? Probably not. */
2535 XSync(dpy, False);
2536
Bram Moolenaar89417b92008-09-07 19:48:53 +00002537 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2538 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 }
2540
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002541 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002543
2544 /* don't do a retry with another type after timing out, otherwise we
2545 * hang for 15 seconds. */
2546 if (timed_out)
2547 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 }
2549
2550 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002551 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552}
2553
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002555clip_x11_convert_selection_cb(
2556 Widget w UNUSED,
2557 Atom *sel_atom,
2558 Atom *target,
2559 Atom *type,
2560 XtPointer *value,
2561 long_u *length,
2562 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002564 static char_u *save_result = NULL;
2565 static long_u save_length = 0;
2566 char_u *string;
2567 int motion_type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002568 Clipboard_T *cbd;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002569 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570
2571 if (*sel_atom == clip_plus.sel_atom)
2572 cbd = &clip_plus;
2573 else
2574 cbd = &clip_star;
2575
2576 if (!cbd->owned)
2577 return False; /* Shouldn't ever happen */
2578
2579 /* requestor wants to know what target types we support */
2580 if (*target == targets_atom)
2581 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002582 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 *value = (XtPointer)array;
2585 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002589 if (enc_utf8)
2590 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002591 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 array[i++] = text_atom;
2593 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002594
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 *type = XA_ATOM;
2596 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2597 * crashes on 64 bit machines. (Peter Derr) */
2598 *format = 32;
2599 *length = i;
2600 return True;
2601 }
2602
2603 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002605 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 && *target != vim_atom
2607 && *target != text_atom
2608 && *target != compound_text_atom)
2609 return False;
2610
2611 clip_get_selection(cbd);
2612 motion_type = clip_convert_selection(&string, length, cbd);
2613 if (motion_type < 0)
2614 return False;
2615
2616 /* For our own format, the first byte contains the motion type */
2617 if (*target == vim_atom)
2618 (*length)++;
2619
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 /* Our own format with encoding: motion 'encoding' NUL text */
2621 if (*target == vimenc_atom)
2622 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002624 if (save_length < *length || save_length / 2 >= *length)
2625 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2626 else
2627 *value = save_result;
2628 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 {
2630 vim_free(string);
2631 return False;
2632 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002633 save_result = (char_u *)*value;
2634 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002636 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002638 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002639 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002641 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 {
2643 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002644 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002645 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646
2647 /* create NUL terminated string which XmbTextListToTextProperty wants */
2648 mch_memmove(string_nt, string, (size_t)*length);
2649 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002650 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2651 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002652 if (conv_result != Success)
2653 {
2654 vim_free(string);
2655 return False;
2656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 *value = (XtPointer)(text_prop.value); /* from plain text */
2658 *length = text_prop.nitems;
2659 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002660 XtFree((char *)save_result);
2661 save_result = (char_u *)*value;
2662 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 else if (*target == vimenc_atom)
2665 {
2666 int l = STRLEN(p_enc);
2667
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002668 save_result[0] = motion_type;
2669 STRCPY(save_result + 1, p_enc);
2670 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 *type = vimenc_atom;
2672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 else
2674 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002675 save_result[0] = motion_type;
2676 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 *type = vim_atom;
2678 }
2679 *format = 8; /* 8 bits per char */
2680 vim_free(string);
2681 return True;
2682}
2683
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002685clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686{
2687 if (*sel_atom == clip_plus.sel_atom)
2688 clip_lose_selection(&clip_plus);
2689 else
2690 clip_lose_selection(&clip_star);
2691}
2692
2693 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002694clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002696 XtDisownSelection(myShell, cbd->sel_atom,
2697 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698}
2699
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002700 static void
2701clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2702{
2703 /* To prevent automatically freeing the selection value. */
2704}
2705
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002707clip_x11_own_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002709 /* When using the GUI we have proper timestamps, use the one of the last
2710 * event. When in the console we don't get events (the terminal gets
2711 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2712 * be called with the current timestamp. */
2713#ifdef FEAT_GUI
2714 if (gui.in_use)
2715 {
2716 if (XtOwnSelection(myShell, cbd->sel_atom,
2717 XtLastTimestampProcessed(XtDisplay(myShell)),
2718 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002719 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002720 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002721 }
2722 else
2723#endif
2724 {
2725 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2726 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002727 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002728 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002729 /* Flush is required in a terminal as nothing else is doing it. */
2730 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 return OK;
2732}
2733
2734/*
2735 * Send the current selection to the clipboard. Do nothing for X because we
2736 * will fill in the selection only when requested by another app.
2737 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002739clip_x11_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
2741}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002742
Bram Moolenaar113e1072019-01-20 15:30:40 +01002743#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2744 || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002745 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002746clip_x11_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002747{
2748 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2749}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002751#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002753#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2754 || defined(FEAT_GUI_GTK) || defined(PROTO)
2755/*
2756 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2757 */
2758 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002759yank_cut_buffer0(Display *dpy, Clipboard_T *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002760{
2761 int nbytes = 0;
2762 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2763
2764 if (nbytes > 0)
2765 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002766 int done = FALSE;
2767
2768 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2769 * using a multi-byte encoding. Conversion between two 8-bit
2770 * character sets usually fails and the text might actually be in
2771 * 'enc' anyway. */
2772 if (has_mbyte)
2773 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002774 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002775 vimconv_T vc;
2776
2777 vc.vc_type = CONV_NONE;
2778 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2779 {
2780 conv_buf = string_convert(&vc, buffer, &nbytes);
2781 if (conv_buf != NULL)
2782 {
2783 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2784 vim_free(conv_buf);
2785 done = TRUE;
2786 }
2787 convert_setup(&vc, NULL, NULL);
2788 }
2789 }
2790 if (!done) /* use the text without conversion */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002791 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2792 XFree((void *)buffer);
2793 if (p_verbose > 0)
2794 {
2795 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002796 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002797 verbose_leave();
2798 }
2799 }
2800}
2801#endif
2802
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803#if defined(FEAT_MOUSE) || defined(PROTO)
2804
2805/*
2806 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002807 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2809 *
2810 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2811 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2812 *
2813 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2814 * if the mouse is outside the window then the text will scroll, or if the
2815 * mouse was previously on a status line, then the status line may be dragged.
2816 *
2817 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2818 * cursor is moved unless the cursor was on a status line.
2819 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2820 * IN_SEP_LINE depending on where the cursor was clicked.
2821 *
2822 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2823 * the mouse is on the status line of the same window.
2824 *
2825 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2826 * the last call.
2827 *
2828 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2829 * remembered.
2830 */
2831 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002832jump_to_mouse(
2833 int flags,
2834 int *inclusive, /* used for inclusive operator, can be NULL */
2835 int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836{
2837 static int on_status_line = 0; /* #lines below bottom of window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 static int on_sep_line = 0; /* on separator right of window */
Bram Moolenaareb163d72017-09-23 15:08:17 +02002839#ifdef FEAT_MENU
2840 static int in_winbar = FALSE;
2841#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002842#ifdef FEAT_TEXT_PROP
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002843 static int in_popup_win = FALSE;
2844 static win_T *popup_dragwin = NULL;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 static int prev_row = -1;
2847 static int prev_col = -1;
2848 static win_T *dragwin = NULL; /* window being dragged */
2849 static int did_drag = FALSE; /* drag was noticed */
2850
2851 win_T *wp, *old_curwin;
2852 pos_T old_cursor;
2853 int count;
2854 int first;
2855 int row = mouse_row;
2856 int col = mouse_col;
2857#ifdef FEAT_FOLDING
2858 int mouse_char;
2859#endif
2860
2861 mouse_past_bottom = FALSE;
2862 mouse_past_eol = FALSE;
2863
2864 if (flags & MOUSE_RELEASED)
2865 {
2866 /* On button release we may change window focus if positioned on a
2867 * status line and no dragging happened. */
2868 if (dragwin != NULL && !did_drag)
2869 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2870 dragwin = NULL;
2871 did_drag = FALSE;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002872#ifdef FEAT_TEXT_PROP
2873 popup_dragwin = NULL;
2874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 }
2876
2877 if ((flags & MOUSE_DID_MOVE)
2878 && prev_row == mouse_row
2879 && prev_col == mouse_col)
2880 {
2881retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002882 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 * line, stop Visual mode */
2884 if (on_status_line)
2885 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if (on_sep_line)
2887 return IN_SEP_LINE;
Bram Moolenaard327b0c2017-11-12 16:56:12 +01002888#ifdef FEAT_MENU
2889 if (in_winbar)
2890 {
2891 /* A quick second click may arrive as a double-click, but we use it
2892 * as a second click in the WinBar. */
2893 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
2894 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002895 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaard327b0c2017-11-12 16:56:12 +01002896 if (wp == NULL)
2897 return IN_UNKNOWN;
2898 winbar_click(wp, col);
2899 }
2900 return IN_OTHER_WIN | MOUSE_WINBAR;
2901 }
2902#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 if (flags & MOUSE_MAY_STOP_VIS)
2904 {
2905 end_visual_mode();
2906 redraw_curbuf_later(INVERTED); /* delete the inversion */
2907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002909 // Continue a modeless selection in another window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002910 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 return IN_OTHER_WIN;
2912#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002913#ifdef FEAT_TEXT_PROP
2914 // Continue a modeless selection in a popup window.
2915 if (in_popup_win)
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002916 {
2917 if (popup_dragwin != NULL)
2918 {
2919 // dragging a popup window
2920 popup_drag(popup_dragwin);
2921 return IN_UNKNOWN;
2922 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002923 return IN_OTHER_WIN;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002924 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 return IN_BUFFER;
2927 }
2928
2929 prev_row = mouse_row;
2930 prev_col = mouse_col;
2931
2932 if (flags & MOUSE_SETPOS)
2933 goto retnomove; /* ugly goto... */
2934
2935#ifdef FEAT_FOLDING
2936 /* Remember the character under the mouse, it might be a '-' or '+' in the
2937 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002938 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2939 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 mouse_char = ScreenLines[LineOffset[row] + col];
2941 else
2942 mouse_char = ' ';
2943#endif
2944
2945 old_curwin = curwin;
2946 old_cursor = curwin->w_cursor;
2947
2948 if (!(flags & MOUSE_FOCUS))
2949 {
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002950 if (row < 0 || col < 0) // check if it makes sense
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 return IN_UNKNOWN;
2952
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002953 // find the window where the row is in
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002954 wp = mouse_find_win(&row, &col, FIND_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02002955 if (wp == NULL)
2956 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 dragwin = NULL;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002958
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002959#ifdef FEAT_TEXT_PROP
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002960 // Click in a popup window may start dragging or modeless selection,
2961 // but not much else.
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002962 if (bt_popup(wp->w_buffer))
2963 {
2964 on_sep_line = 0;
2965 in_popup_win = TRUE;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002966 if (wp->w_popup_drag && popup_on_border(wp, row, col))
2967 {
2968 popup_dragwin = wp;
2969 popup_start_drag(wp);
2970 return IN_UNKNOWN;
2971 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002972# ifdef FEAT_CLIPBOARD
2973 return IN_OTHER_WIN;
2974# else
2975 return IN_UNKNOWN;
2976# endif
2977 }
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002978 in_popup_win = FALSE;
2979 popup_dragwin = NULL;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002980#endif
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002981#ifdef FEAT_MENU
2982 if (row == -1)
2983 {
2984 /* A click in the window toolbar does not enter another window or
2985 * change Visual highlighting. */
2986 winbar_click(wp, col);
Bram Moolenaareb163d72017-09-23 15:08:17 +02002987 in_winbar = TRUE;
2988 return IN_OTHER_WIN | MOUSE_WINBAR;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002989 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02002990 in_winbar = FALSE;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002991#endif
2992
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 /*
2994 * winpos and height may change in win_enter()!
2995 */
2996 if (row >= wp->w_height) /* In (or below) status line */
2997 {
2998 on_status_line = row - wp->w_height + 1;
2999 dragwin = wp;
3000 }
3001 else
3002 on_status_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 if (col >= wp->w_width) /* In separator line */
3004 {
3005 on_sep_line = col - wp->w_width + 1;
3006 dragwin = wp;
3007 }
3008 else
3009 on_sep_line = 0;
3010
3011 /* The rightmost character of the status line might be a vertical
3012 * separator character if there is no connecting window to the right. */
3013 if (on_status_line && on_sep_line)
3014 {
3015 if (stl_connected(wp))
3016 on_sep_line = 0;
3017 else
3018 on_status_line = 0;
3019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 /* Before jumping to another buffer, or moving the cursor for a left
3022 * click, stop Visual mode. */
3023 if (VIsual_active
3024 && (wp->w_buffer != curwin->w_buffer
Bram Moolenaar4033c552017-09-16 20:54:51 +02003025 || (!on_status_line && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003026#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003028# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003029 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003031 col >= wp->w_p_fdc
3032# ifdef FEAT_CMDWIN
3033 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
3034# endif
3035 )
3036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 && (flags & MOUSE_MAY_STOP_VIS))))
3038 {
3039 end_visual_mode();
3040 redraw_curbuf_later(INVERTED); /* delete the inversion */
3041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042#ifdef FEAT_CMDWIN
3043 if (cmdwin_type != 0 && wp != curwin)
3044 {
3045 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01003046 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 on_sep_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048# ifdef FEAT_CLIPBOARD
3049 if (on_status_line)
3050 return IN_STATUS_LINE;
3051 return IN_OTHER_WIN;
3052# else
3053 row = 0;
3054 col += wp->w_wincol;
3055 wp = curwin;
3056# endif
3057 }
3058#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 /* Only change window focus when not clicking on or dragging the
3060 * status line. Do change focus when releasing the mouse button
3061 * (MOUSE_FOCUS was set above if we dragged first). */
3062 if (dragwin == NULL || (flags & MOUSE_RELEASED))
3063 win_enter(wp, TRUE); /* can make wp invalid! */
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003064
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 if (curwin != old_curwin)
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003066 {
3067#ifdef CHECK_DOUBLE_CLICK
3068 /* set topline, to be able to check for double click ourselves */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 set_mouse_topline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070#endif
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003071#ifdef FEAT_TERMINAL
3072 /* when entering a terminal window may change state */
3073 term_win_entered();
3074#endif
3075 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 if (on_status_line) /* In (or below) status line */
3077 {
3078 /* Don't use start_arrow() if we're in the same window */
3079 if (curwin == old_curwin)
3080 return IN_STATUS_LINE;
3081 else
3082 return IN_STATUS_LINE | CURSOR_MOVED;
3083 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 if (on_sep_line) /* In (or below) status line */
3085 {
3086 /* Don't use start_arrow() if we're in the same window */
3087 if (curwin == old_curwin)
3088 return IN_SEP_LINE;
3089 else
3090 return IN_SEP_LINE | CURSOR_MOVED;
3091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092
3093 curwin->w_cursor.lnum = curwin->w_topline;
3094#ifdef FEAT_GUI
3095 /* remember topline, needed for double click */
3096 gui_prev_topline = curwin->w_topline;
3097# ifdef FEAT_DIFF
3098 gui_prev_topfill = curwin->w_topfill;
3099# endif
3100#endif
3101 }
3102 else if (on_status_line && which_button == MOUSE_LEFT)
3103 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 if (dragwin != NULL)
3105 {
3106 /* Drag the status line */
3107 count = row - dragwin->w_winrow - dragwin->w_height + 1
3108 - on_status_line;
3109 win_drag_status_line(dragwin, count);
3110 did_drag |= count;
3111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 return IN_STATUS_LINE; /* Cursor didn't move */
3113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 else if (on_sep_line && which_button == MOUSE_LEFT)
3115 {
3116 if (dragwin != NULL)
3117 {
3118 /* Drag the separator column */
3119 count = col - dragwin->w_wincol - dragwin->w_width + 1
3120 - on_sep_line;
3121 win_drag_vsep_line(dragwin, count);
3122 did_drag |= count;
3123 }
3124 return IN_SEP_LINE; /* Cursor didn't move */
3125 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02003126#ifdef FEAT_MENU
3127 else if (in_winbar)
3128 {
3129 /* After a click on the window toolbar don't start Visual mode. */
3130 return IN_OTHER_WIN | MOUSE_WINBAR;
3131 }
3132#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 else /* keep_window_focus must be TRUE */
3134 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 /* before moving the cursor for a left click, stop Visual mode */
3136 if (flags & MOUSE_MAY_STOP_VIS)
3137 {
3138 end_visual_mode();
3139 redraw_curbuf_later(INVERTED); /* delete the inversion */
3140 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141
3142#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
3143 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003144 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 return IN_OTHER_WIN;
3146#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003147#ifdef FEAT_TEXT_PROP
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003148 if (in_popup_win)
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003149 {
3150 if (popup_dragwin != NULL)
3151 {
3152 // dragging a popup window
3153 popup_drag(popup_dragwin);
3154 return IN_UNKNOWN;
3155 }
3156 // continue a modeless selection in a popup window
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003157 return IN_OTHER_WIN;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003158 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160
3161 row -= W_WINROW(curwin);
Bram Moolenaar53f81742017-09-22 14:35:51 +02003162 col -= curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163
3164 /*
3165 * When clicking beyond the end of the window, scroll the screen.
3166 * Scroll by however many rows outside the window we are.
3167 */
3168 if (row < 0)
3169 {
3170 count = 0;
3171 for (first = TRUE; curwin->w_topline > 1; )
3172 {
3173#ifdef FEAT_DIFF
3174 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3175 ++count;
3176 else
3177#endif
3178 count += plines(curwin->w_topline - 1);
3179 if (!first && count > -row)
3180 break;
3181 first = FALSE;
3182#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02003183 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184#endif
3185#ifdef FEAT_DIFF
3186 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3187 ++curwin->w_topfill;
3188 else
3189#endif
3190 {
3191 --curwin->w_topline;
3192#ifdef FEAT_DIFF
3193 curwin->w_topfill = 0;
3194#endif
3195 }
3196 }
3197#ifdef FEAT_DIFF
3198 check_topfill(curwin, FALSE);
3199#endif
3200 curwin->w_valid &=
3201 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3202 redraw_later(VALID);
3203 row = 0;
3204 }
3205 else if (row >= curwin->w_height)
3206 {
3207 count = 0;
3208 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
3209 {
3210#ifdef FEAT_DIFF
3211 if (curwin->w_topfill > 0)
3212 ++count;
3213 else
3214#endif
3215 count += plines(curwin->w_topline);
3216 if (!first && count > row - curwin->w_height + 1)
3217 break;
3218 first = FALSE;
3219#ifdef FEAT_FOLDING
3220 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
3221 && curwin->w_topline == curbuf->b_ml.ml_line_count)
3222 break;
3223#endif
3224#ifdef FEAT_DIFF
3225 if (curwin->w_topfill > 0)
3226 --curwin->w_topfill;
3227 else
3228#endif
3229 {
3230 ++curwin->w_topline;
3231#ifdef FEAT_DIFF
3232 curwin->w_topfill =
3233 diff_check_fill(curwin, curwin->w_topline);
3234#endif
3235 }
3236 }
3237#ifdef FEAT_DIFF
3238 check_topfill(curwin, FALSE);
3239#endif
3240 redraw_later(VALID);
3241 curwin->w_valid &=
3242 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3243 row = curwin->w_height - 1;
3244 }
3245 else if (row == 0)
3246 {
3247 /* When dragging the mouse, while the text has been scrolled up as
3248 * far as it goes, moving the mouse in the top line should scroll
3249 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003250 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 && curwin->w_cursor.lnum
3252 == curwin->w_buffer->b_ml.ml_line_count
3253 && curwin->w_cursor.lnum == curwin->w_topline)
3254 curwin->w_valid &= ~(VALID_TOPLINE);
3255 }
3256 }
3257
3258#ifdef FEAT_FOLDING
3259 /* Check for position outside of the fold column. */
3260 if (
3261# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003262 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263# endif
3264 col >= curwin->w_p_fdc
3265# ifdef FEAT_CMDWIN
3266 + (cmdwin_type == 0 ? 0 : 1)
3267# endif
3268 )
3269 mouse_char = ' ';
3270#endif
3271
3272 /* compute the position in the buffer line from the posn on the screen */
3273 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
3274 mouse_past_bottom = TRUE;
3275
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
3277 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
3278 {
3279 check_visual_highlight();
3280 VIsual = old_cursor;
3281 VIsual_active = TRUE;
3282 VIsual_reselect = TRUE;
3283 /* if 'selectmode' contains "mouse", start Select mode */
3284 may_start_select('o');
3285 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00003286 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 redraw_cmdline = TRUE; /* show visual mode later */
3288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289
3290 curwin->w_curswant = col;
3291 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
3292 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
3293 {
3294 if (inclusive != NULL)
3295 *inclusive = TRUE;
3296 mouse_past_eol = TRUE;
3297 }
3298 else if (inclusive != NULL)
3299 *inclusive = FALSE;
3300
3301 count = IN_BUFFER;
3302 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
3303 || curwin->w_cursor.col != old_cursor.col)
3304 count |= CURSOR_MOVED; /* Cursor has moved */
3305
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003306# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 if (mouse_char == '+')
3308 count |= MOUSE_FOLD_OPEN;
3309 else if (mouse_char != ' ')
3310 count |= MOUSE_FOLD_CLOSE;
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003311# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312
3313 return count;
3314}
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003315#endif
3316
3317// Functions also used for popup windows.
3318#if defined(FEAT_MOUSE) || defined(FEAT_TEXT_PROP) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319
3320/*
3321 * Compute the position in the buffer line from the posn on the screen in
3322 * window "win".
3323 * Returns TRUE if the position is below the last line.
3324 */
3325 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003326mouse_comp_pos(
3327 win_T *win,
3328 int *rowp,
3329 int *colp,
3330 linenr_T *lnump)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
3332 int col = *colp;
3333 int row = *rowp;
3334 linenr_T lnum;
3335 int retval = FALSE;
3336 int off;
3337 int count;
3338
3339#ifdef FEAT_RIGHTLEFT
3340 if (win->w_p_rl)
Bram Moolenaar02631462017-09-22 15:20:32 +02003341 col = win->w_width - 1 - col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342#endif
3343
3344 lnum = win->w_topline;
3345
3346 while (row > 0)
3347 {
3348#ifdef FEAT_DIFF
3349 /* Don't include filler lines in "count" */
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003350 if (win->w_p_diff
3351# ifdef FEAT_FOLDING
3352 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3353# endif
3354 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 {
3356 if (lnum == win->w_topline)
3357 row -= win->w_topfill;
3358 else
3359 row -= diff_check_fill(win, lnum);
3360 count = plines_win_nofill(win, lnum, TRUE);
3361 }
3362 else
3363#endif
3364 count = plines_win(win, lnum, TRUE);
3365 if (count > row)
3366 break; /* Position is in this buffer line. */
3367#ifdef FEAT_FOLDING
3368 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3369#endif
3370 if (lnum == win->w_buffer->b_ml.ml_line_count)
3371 {
3372 retval = TRUE;
3373 break; /* past end of file */
3374 }
3375 row -= count;
3376 ++lnum;
3377 }
3378
3379 if (!retval)
3380 {
3381 /* Compute the column without wrapping. */
3382 off = win_col_off(win) - win_col_off2(win);
3383 if (col < off)
3384 col = off;
Bram Moolenaar02631462017-09-22 15:20:32 +02003385 col += row * (win->w_width - off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 /* add skip column (for long wrapping line) */
3387 col += win->w_skipcol;
3388 }
3389
3390 if (!win->w_p_wrap)
3391 col += win->w_leftcol;
3392
3393 /* skip line number and fold column in front of the line */
3394 col -= win_col_off(win);
3395 if (col < 0)
3396 {
3397#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003398 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399#endif
3400 col = 0;
3401 }
3402
3403 *colp = col;
3404 *rowp = row;
3405 *lnump = lnum;
3406 return retval;
3407}
3408
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409/*
3410 * Find the window at screen position "*rowp" and "*colp". The positions are
3411 * updated to become relative to the top-left of the window.
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003412 * When "popup" is FAIL_POPUP and the position is in a popup window then NULL
3413 * is returned. When "popup" is IGNORE_POPUP then do not even check popup
3414 * windows.
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003415 * Returns NULL when something is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 win_T *
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003418mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419{
3420 frame_T *fp;
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003421 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003423#ifdef FEAT_TEXT_PROP
3424 win_T *pwp = NULL;
3425
3426 if (popup != IGNORE_POPUP)
3427 {
3428 popup_reset_handled();
3429 while ((wp = find_next_popup(TRUE)) != NULL)
3430 {
3431 if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp)
3432 && *colp >= wp->w_wincol
3433 && *colp < wp->w_wincol + popup_width(wp))
3434 pwp = wp;
3435 }
3436 if (pwp != NULL)
3437 {
3438 if (popup == FAIL_POPUP)
3439 return NULL;
3440 *rowp -= pwp->w_winrow;
3441 *colp -= pwp->w_wincol;
3442 return pwp;
3443 }
3444 }
3445#endif
3446
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003448 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 for (;;)
3450 {
3451 if (fp->fr_layout == FR_LEAF)
3452 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 if (fp->fr_layout == FR_ROW)
3454 {
3455 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3456 {
3457 if (*colp < fp->fr_width)
3458 break;
3459 *colp -= fp->fr_width;
3460 }
3461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 else /* fr_layout == FR_COL */
3463 {
3464 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3465 {
3466 if (*rowp < fp->fr_height)
3467 break;
3468 *rowp -= fp->fr_height;
3469 }
3470 }
3471 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003472 /* When using a timer that closes a window the window might not actually
3473 * exist. */
3474 FOR_ALL_WINDOWS(wp)
3475 if (wp == fp->fr_win)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003476 {
3477#ifdef FEAT_MENU
3478 *rowp -= wp->w_winbar_height;
3479#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003480 return wp;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003481 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003482 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484
Bram Moolenaar860cae12010-06-05 23:22:07 +02003485#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar658a1542018-03-03 19:29:43 +01003487 || defined(FEAT_GUI_PHOTON) || defined(FEAT_TERM_POPUP_MENU) \
3488 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489/*
3490 * Translate window coordinates to buffer position without any side effects
3491 */
3492 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003493get_fpos_of_mouse(pos_T *mpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494{
3495 win_T *wp;
3496 int row = mouse_row;
3497 int col = mouse_col;
3498
3499 if (row < 0 || col < 0) /* check if it makes sense */
3500 return IN_UNKNOWN;
3501
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 /* find the window where the row is in */
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003503 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003504 if (wp == NULL)
3505 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 /*
3507 * winpos and height may change in win_enter()!
3508 */
3509 if (row >= wp->w_height) /* In (or below) status line */
3510 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 if (col >= wp->w_width) /* In vertical separator line */
3512 return IN_SEP_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513
3514 if (wp != curwin)
3515 return IN_UNKNOWN;
3516
3517 /* compute the position in the buffer line from the posn on the screen */
3518 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3519 return IN_STATUS_LINE; /* past bottom */
3520
3521 mpos->col = vcol2col(wp, mpos->lnum, col);
3522
3523 if (mpos->col > 0)
3524 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003525 mpos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 return IN_BUFFER;
3527}
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003530#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
3531 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar3767b612018-03-03 19:51:58 +01003532 || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \
3533 || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534/*
3535 * Convert a virtual (screen) column to a character column.
3536 * The first column is one.
3537 */
3538 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003539vcol2col(win_T *wp, linenr_T lnum, int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
3541 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 int count = 0;
3543 char_u *ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02003544 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545
Bram Moolenaar597a4222014-06-25 14:39:50 +02003546 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003547 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02003549 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003550 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02003552 return (int)(ptr - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553}
3554#endif
3555
3556#endif /* FEAT_MOUSE */
3557
Bram Moolenaar4f974752019-02-17 17:44:42 +01003558#if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559/*
3560 * Called when focus changed. Used for the GUI or for systems where this can
3561 * be done in the console (Win32).
3562 */
3563 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003564ui_focus_change(
3565 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566{
3567 static time_t last_time = (time_t)0;
3568 int need_redraw = FALSE;
3569
3570 /* When activated: Check if any file was modified outside of Vim.
3571 * Only do this when not done within the last two seconds (could get
3572 * several events in a row). */
3573 if (in_focus && last_time + 2 < time(NULL))
3574 {
3575 need_redraw = check_timestamps(
3576# ifdef FEAT_GUI
3577 gui.in_use
3578# else
3579 FALSE
3580# endif
3581 );
3582 last_time = time(NULL);
3583 }
3584
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 /*
3586 * Fire the focus gained/lost autocommand.
3587 */
3588 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3589 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590
3591 if (need_redraw)
3592 {
3593 /* Something was executed, make sure the cursor is put back where it
3594 * belongs. */
3595 need_wait_return = FALSE;
3596
3597 if (State & CMDLINE)
3598 redrawcmdline();
3599 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3600 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3601 repeat_message();
3602 else if ((State & NORMAL) || (State & INSERT))
3603 {
3604 if (must_redraw != 0)
3605 update_screen(0);
3606 setcursor();
3607 }
3608 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01003609 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610# ifdef FEAT_GUI
3611 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613# endif
3614 }
3615#ifdef FEAT_TITLE
3616 /* File may have been changed from 'readonly' to 'noreadonly' */
3617 if (need_maketitle)
3618 maketitle();
3619#endif
3620}
3621#endif
3622
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003623#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624/*
3625 * Save current Input Method status to specified place.
3626 */
3627 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003628im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629{
3630 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3631 * disabled then (but might start later).
3632 * Also don't save when inside a mapping, vgetc_im_active has not been set
3633 * then.
3634 * And don't save when the keys were stuffed (e.g., for a "." command).
3635 * And don't save when the GUI is running but our window doesn't have
3636 * input focus (e.g., when a find dialog is open). */
3637 if (!p_imdisable && KeyTyped && !KeyStuffed
3638# ifdef FEAT_XIM
3639 && xic != NULL
3640# endif
3641# ifdef FEAT_GUI
3642 && (!gui.in_use || gui.in_focus)
3643# endif
3644 )
3645 {
3646 /* Do save when IM is on, or IM is off and saved status is on. */
3647 if (vgetc_im_active)
3648 *psave = B_IMODE_IM;
3649 else if (*psave == B_IMODE_IM)
3650 *psave = B_IMODE_NONE;
3651 }
3652}
3653#endif