blob: 0d08c5d0537525410628d2dd6078a6d29136e66e [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 Moolenaar264b74f2019-01-24 17:18:42 +010043#if !defined(WIN3264)
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 Moolenaar264b74f2019-01-24 17:18:42 +010057# if !defined(WIN3264)
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 Moolenaar4b9669f2011-07-07 16:20:52 +020065#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(WIN3264)
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;
275 int did_start_blocking = FALSE;
276 long wait_time;
277 long elapsed_time = 0;
278#ifdef ELAPSED_FUNC
279 elapsed_T start_tv;
280
281 ELAPSED_INIT(start_tv);
282#endif
283
284 /* repeat until we got a character or waited long enough */
285 for (;;)
286 {
287 /* Check if window changed size while we were busy, perhaps the ":set
288 * columns=99" command was used. */
289 if (resize_func != NULL)
290 resize_func(FALSE);
291
292#ifdef MESSAGE_QUEUE
293 // Only process messages when waiting.
294 if (wtime != 0)
295 {
296 parse_queued_messages();
297 // If input was put directly in typeahead buffer bail out here.
298 if (typebuf_changed(tb_change_cnt))
299 return 0;
300 }
301#endif
302 if (wtime < 0 && did_start_blocking)
303 // blocking and already waited for p_ut
304 wait_time = -1;
305 else
306 {
307 if (wtime >= 0)
308 wait_time = wtime;
309 else
310 // going to block after p_ut
311 wait_time = p_ut;
312#ifdef ELAPSED_FUNC
313 elapsed_time = ELAPSED_FUNC(start_tv);
314#endif
315 wait_time -= elapsed_time;
316 if (wait_time <= 0)
317 {
318 if (wtime >= 0)
319 // no character available within "wtime"
320 return 0;
321
322 // No character available within 'updatetime'.
323 did_start_blocking = TRUE;
324 if (trigger_cursorhold() && maxlen >= 3
325 && !typebuf_changed(tb_change_cnt))
326 {
327 // Put K_CURSORHOLD in the input buffer or return it.
328 if (buf == NULL)
329 {
330 char_u ibuf[3];
331
332 ibuf[0] = CSI;
333 ibuf[1] = KS_EXTRA;
334 ibuf[2] = (int)KE_CURSORHOLD;
335 add_to_input_buf(ibuf, 3);
336 }
337 else
338 {
339 buf[0] = K_SPECIAL;
340 buf[1] = KS_EXTRA;
341 buf[2] = (int)KE_CURSORHOLD;
342 }
343 return 3;
344 }
345
346 // There is no character available within 'updatetime' seconds:
347 // flush all the swap files to disk. Also done when
348 // interrupted by SIGWINCH.
349 before_blocking();
350 continue;
351 }
352 }
353
354#ifdef FEAT_JOB_CHANNEL
355 if (wait_time < 0 || wait_time > 100L)
356 {
357 // Checking if a job ended requires polling. Do this at least
358 // every 100 msec.
359 if (has_pending_job())
360 wait_time = 100L;
361
362 // If there is readahead then parse_queued_messages() timed out and
363 // we should call it again soon.
364 if (channel_any_readahead())
365 wait_time = 10L;
366 }
367#endif
368#ifdef FEAT_BEVAL_GUI
369 if (p_beval && wait_time > 100L)
370 // The 'balloonexpr' may indirectly invoke a callback while waiting
371 // for a character, need to check often.
372 wait_time = 100L;
373#endif
374
375 // Wait for a character to be typed or another event, such as the winch
376 // signal or an event on the monitored file descriptors.
377 if (wait_func(wait_time, &interrupted, FALSE))
378 {
379 // If input was put directly in typeahead buffer bail out here.
380 if (typebuf_changed(tb_change_cnt))
381 return 0;
382
383 // We might have something to return now.
384 if (buf == NULL)
385 // "buf" is NULL, we were just waiting, not actually getting
386 // input.
387 return input_available();
388
389 len = read_from_input_buf(buf, (long)maxlen);
390 if (len > 0)
391 return len;
392 continue;
393 }
394 // Timed out or interrupted with no character available.
395
396#ifndef ELAPSED_FUNC
397 // estimate the elapsed time
398 elapsed_time += wait_time;
399#endif
400
401 if ((resize_func != NULL && resize_func(TRUE))
402#ifdef FEAT_CLIENTSERVER
403 || server_waiting()
404#endif
405#ifdef MESSAGE_QUEUE
406 || interrupted
407#endif
408 || wait_time > 0
409 || (wtime < 0 && !did_start_blocking))
410 // no character available, but something to be done, keep going
411 continue;
412
413 // no character available or interrupted, return zero
414 break;
415 }
416 return 0;
417}
418#endif
419
Bram Moolenaarc46af532019-01-09 22:24:49 +0100420#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100421/*
422 * Wait for a timer to fire or "wait_func" to return non-zero.
423 * Returns OK when something was read.
424 * Returns FAIL when it timed out or was interrupted.
425 */
426 int
427ui_wait_for_chars_or_timer(
428 long wtime,
429 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
430 int *interrupted,
431 int ignore_input)
432{
433 int due_time;
434 long remaining = wtime;
435 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100436# ifdef FEAT_JOB_CHANNEL
Bram Moolenaare299bbd2019-01-17 14:12:02 +0100437 int brief_wait = FALSE;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100438# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100439
Bram Moolenaarc46af532019-01-09 22:24:49 +0100440 // When waiting very briefly don't trigger timers.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100441 if (wtime >= 0 && wtime < 10L)
442 return wait_func(wtime, NULL, ignore_input);
443
444 while (wtime < 0 || remaining > 0)
445 {
Bram Moolenaarc46af532019-01-09 22:24:49 +0100446 // Trigger timers and then get the time in wtime until the next one is
447 // due. Wait up to that time.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100448 due_time = check_due_timer();
449 if (typebuf.tb_change_cnt != tb_change_cnt)
450 {
451 /* timer may have used feedkeys() */
452 return FAIL;
453 }
454 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
455 due_time = remaining;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100456# ifdef FEAT_JOB_CHANNEL
457 if ((due_time < 0 || due_time > 10L)
458# ifdef FEAT_GUI
459 && !gui.in_use
460# endif
461 && (has_pending_job() || channel_any_readahead()))
462 {
463 // There is a pending job or channel, should return soon in order
464 // to handle them ASAP. Do check for input briefly.
465 due_time = 10L;
466 brief_wait = TRUE;
467 }
468# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100469 if (wait_func(due_time, interrupted, ignore_input))
470 return OK;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100471 if ((interrupted != NULL && *interrupted)
472# ifdef FEAT_JOB_CHANNEL
473 || brief_wait
474# endif
475 )
476 // Nothing available, but need to return so that side effects get
477 // handled, such as handling a message on a channel.
Bram Moolenaara338adc2018-01-31 20:51:47 +0100478 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100479 if (wtime > 0)
480 remaining -= due_time;
481 }
482 return FAIL;
483}
484#endif
485
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486/*
Bram Moolenaarc46af532019-01-09 22:24:49 +0100487 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 */
489 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100490ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491{
492#ifdef FEAT_GUI
493 if (gui.in_use)
494 {
495 gui_mch_update();
496 return input_available();
497 }
498#endif
499#ifndef NO_CONSOLE
500# ifdef NO_CONSOLE_INPUT
501 if (no_console_input())
502 return 0;
503# endif
504 return mch_char_avail();
505#else
506 return 0;
507#endif
508}
509
510/*
511 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
512 * cancel the delay if a key is hit.
513 */
514 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100515ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516{
517#ifdef FEAT_GUI
518 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100519 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 else
521#endif
522 mch_delay(msec, ignoreinput);
523}
524
525/*
526 * If the machine has job control, use it to suspend the program,
527 * otherwise fake it by starting a new shell.
528 * When running the GUI iconify the window.
529 */
530 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100531ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532{
533#ifdef FEAT_GUI
534 if (gui.in_use)
535 {
536 gui_mch_iconify();
537 return;
538 }
539#endif
540 mch_suspend();
541}
542
543#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
544/*
545 * When the OS can't really suspend, call this function to start a shell.
546 * This is never called in the GUI.
547 */
548 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100549suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550{
551 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100552 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 else
554 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100555 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 do_shell(NULL, 0);
557 }
558}
559#endif
560
561/*
562 * Try to get the current Vim shell size. Put the result in Rows and Columns.
563 * Use the new sizes as defaults for 'columns' and 'lines'.
564 * Return OK when size could be determined, FAIL otherwise.
565 */
566 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100567ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568{
569 int retval;
570
571#ifdef FEAT_GUI
572 if (gui.in_use)
573 retval = gui_get_shellsize();
574 else
575#endif
576 retval = mch_get_shellsize();
577
578 check_shellsize();
579
580 /* adjust the default for 'lines' and 'columns' */
581 if (retval == OK)
582 {
583 set_number_default("lines", Rows);
584 set_number_default("columns", Columns);
585 }
586 return retval;
587}
588
589/*
590 * Set the size of the Vim shell according to Rows and Columns, if possible.
591 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
592 * new size. If this is not possible, it will adjust Rows and Columns.
593 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100595ui_set_shellsize(
596 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597{
598#ifdef FEAT_GUI
599 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200600 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 else
602#endif
603 mch_set_shellsize();
604}
605
606/*
607 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
608 * region.
609 */
610 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100611ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612{
613 if (full_screen && !exiting)
614 {
615#ifdef FEAT_GUI
616 if (gui.in_use)
617 gui_new_shellsize();
618 else
619#endif
620 mch_new_shellsize();
621 }
622}
623
624 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100625ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200627 ui_breakcheck_force(FALSE);
628}
629
630/*
631 * When "force" is true also check when the terminal is not in raw mode.
632 * This is useful to read input on channels.
633 */
634 void
635ui_breakcheck_force(int force)
636{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100637 static int recursive = FALSE;
638 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100639
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100640 // We could be called recursively if stderr is redirected, calling
641 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
642 // calls vgetorpeek() which calls ui_breakcheck() again.
643 if (recursive)
644 return;
645 recursive = TRUE;
646
647 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100648 ++updating_screen;
649
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650#ifdef FEAT_GUI
651 if (gui.in_use)
652 gui_mch_update();
653 else
654#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200655 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100656
Bram Moolenaar42335f52018-09-13 15:33:43 +0200657 if (save_updating_screen)
658 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200659 else
660 reset_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100661
662 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663}
664
665/*****************************************************************************
666 * Functions for copying and pasting text between applications.
667 * This is always included in a GUI version, but may also be included when the
668 * clipboard and mouse is available to a terminal version such as xterm.
669 * Note: there are some more functions in ops.c that handle selection stuff.
670 *
671 * Also note that the majority of functions here deal with the X 'primary'
672 * (visible - for Visual mode use) selection, and only that. There are no
673 * versions of these for the 'clipboard' selection, as Visual mode has no use
674 * for them.
675 */
676
677#if defined(FEAT_CLIPBOARD) || defined(PROTO)
678
679/*
680 * Selection stuff using Visual mode, for cutting and pasting text to other
681 * windows.
682 */
683
684/*
685 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
686 * is included, but the clipboard can not be used, or TRUE if the clipboard can
687 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
688 * the GUI starts.
689 */
690 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100691clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692{
693 VimClipboard *cb;
694
695 cb = &clip_star;
696 for (;;)
697 {
698 cb->available = can_use;
699 cb->owned = FALSE;
700 cb->start.lnum = 0;
701 cb->start.col = 0;
702 cb->end.lnum = 0;
703 cb->end.col = 0;
704 cb->state = SELECT_CLEARED;
705
706 if (cb == &clip_plus)
707 break;
708 cb = &clip_plus;
709 }
710}
711
712/*
713 * Check whether the VIsual area has changed, and if so try to become the owner
714 * of the selection, and free any old converted selection we may still have
715 * lying around. If the VIsual mode has ended, make a copy of what was
716 * selected so we can still give it to others. Will probably have to make sure
717 * this is called whenever VIsual mode is ended.
718 */
719 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100720clip_update_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200722 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
724 /* If visual mode is only due to a redo command ("."), then ignore it */
725 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
726 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100727 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {
729 start = VIsual;
730 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000732 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 }
734 else
735 {
736 start = curwin->w_cursor;
737 end = VIsual;
738 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100739 if (!EQUAL_POS(clip->start, start)
740 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200741 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200743 clip_clear_selection(clip);
744 clip->start = start;
745 clip->end = end;
746 clip->vmode = VIsual_mode;
747 clip_free_selection(clip);
748 clip_own_selection(clip);
749 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 }
751 }
752}
753
754 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100755clip_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756{
757 /*
758 * Also want to check somehow that we are reading from the keyboard rather
759 * than a mapping etc.
760 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200762 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200763 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200764 if (cbd->available)
765 {
766 int was_owned = cbd->owned;
767
768 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200769 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000771 /* May have to show a different kind of highlighting for the
772 * selected area. There is no specific redraw command for this,
773 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000775 && (get_real_state() == VISUAL
776 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200777 && (cbd == &clip_star ? clip_isautosel_star()
778 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100779 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 redraw_curbuf_later(INVERTED_ALL);
781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200783#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200784 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200785 if (!cbd->owned && cbd->available)
786 cbd->owned = (clip_gen_own_selection(cbd) == OK);
787#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788}
789
790 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100791clip_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792{
793#ifdef FEAT_X11
794 int was_owned = cbd->owned;
795#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200796 int visual_selection = FALSE;
797
798 if (cbd == &clip_star || cbd == &clip_plus)
799 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800
801 clip_free_selection(cbd);
802 cbd->owned = FALSE;
803 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200804 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 clip_gen_lose_selection(cbd);
806#ifdef FEAT_X11
807 if (visual_selection)
808 {
809 /* May have to show a different kind of highlighting for the selected
810 * area. There is no specific redraw command for this, just redraw all
811 * windows on the current buffer. */
812 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000813 && (get_real_state() == VISUAL
814 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200815 && (cbd == &clip_star ?
816 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100817 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
819 update_curbuf(INVERTED_ALL);
820 setcursor();
821 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100822 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 }
824 }
825#endif
826}
827
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200828 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100829clip_copy_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200831 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200833 clip_update_selection(clip);
834 clip_free_selection(clip);
835 clip_own_selection(clip);
836 if (clip->owned)
837 clip_get_selection(clip);
838 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 }
840}
841
842/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200843 * Save and restore clip_unnamed before doing possibly many changes. This
844 * prevents accessing the clipboard very often which might slow down Vim
845 * considerably.
846 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100847static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200848static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
849static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200850
851/*
852 * Save clip_unnamed and reset it.
853 */
854 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100855start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200856{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100857 if (++global_change_count > 1)
858 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200859 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100860 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200861
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100862 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200863 {
864 clip_unnamed = FALSE;
865 clip_did_set_selection = FALSE;
866 }
867}
868
869/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200870 * Return TRUE if setting the clipboard was postponed, it already contains the
871 * right text.
872 */
873 int
874is_clipboard_needs_update()
875{
876 return clipboard_needs_update;
877}
878
879/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200880 * Restore clip_unnamed and set the selection when needed.
881 */
882 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100883end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200884{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100885 if (--global_change_count > 0)
886 /* recursive */
887 return;
888 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200889 {
890 clip_did_set_selection = TRUE;
891 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100892 clip_unnamed_saved = FALSE;
893 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200894 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100895 /* only store something in the clipboard,
896 * if we have yanked anything to it */
897 if (clip_unnamed & CLIP_UNNAMED)
898 {
899 clip_own_selection(&clip_star);
900 clip_gen_set_selection(&clip_star);
901 }
902 if (clip_unnamed & CLIP_UNNAMED_PLUS)
903 {
904 clip_own_selection(&clip_plus);
905 clip_gen_set_selection(&clip_plus);
906 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200907 }
908 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200909 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200910}
911
912/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 * Called when Visual mode is ended: update the selection.
914 */
915 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100916clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200918 if (clip_isautosel_star())
919 clip_copy_selection(&clip_star);
920 if (clip_isautosel_plus())
921 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922}
923
924/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200925 * Return TRUE if automatic selection of Visual area is desired for the *
926 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 */
928 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100929clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930{
931 return (
932#ifdef FEAT_GUI
933 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
934#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200935 clip_autoselect_star);
936}
937
938/*
939 * Return TRUE if automatic selection of Visual area is desired for the +
940 * register.
941 */
942 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100943clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200944{
945 return (
946#ifdef FEAT_GUI
947 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
948#endif
949 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950}
951
952
953/*
954 * Stuff for general mouse selection, without using Visual mode.
955 */
956
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100957static void clip_invert_area(int, int, int, int, int how);
958static void clip_invert_rectangle(int row, int col, int height, int width, int invert);
959static void clip_get_word_boundaries(VimClipboard *, int, int);
960static int clip_get_line_end(int);
961static void clip_update_modeless_selection(VimClipboard *, int, int,
962 int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
964/* flags for clip_invert_area() */
965#define CLIP_CLEAR 1
966#define CLIP_SET 2
967#define CLIP_TOGGLE 3
968
969/*
970 * Start, continue or end a modeless selection. Used when editing the
971 * command-line and in the cmdline window.
972 */
973 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100974clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975{
976 int repeat;
977
978 repeat = ((clip_star.mode == SELECT_MODE_CHAR
979 || clip_star.mode == SELECT_MODE_LINE)
980 && (mod_mask & MOD_MASK_2CLICK))
981 || (clip_star.mode == SELECT_MODE_WORD
982 && (mod_mask & MOD_MASK_3CLICK));
983 if (is_click && button == MOUSE_RIGHT)
984 {
985 /* Right mouse button: If there was no selection, start one.
986 * Otherwise extend the existing selection. */
987 if (clip_star.state == SELECT_CLEARED)
988 clip_start_selection(mouse_col, mouse_row, FALSE);
989 clip_process_selection(button, mouse_col, mouse_row, repeat);
990 }
991 else if (is_click)
992 clip_start_selection(mouse_col, mouse_row, repeat);
993 else if (is_drag)
994 {
995 /* Don't try extending a selection if there isn't one. Happens when
996 * button-down is in the cmdline and them moving mouse upwards. */
997 if (clip_star.state != SELECT_CLEARED)
998 clip_process_selection(button, mouse_col, mouse_row, repeat);
999 }
1000 else /* release */
1001 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1002}
1003
1004/*
1005 * Compare two screen positions ala strcmp()
1006 */
1007 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001008clip_compare_pos(
1009 int row1,
1010 int col1,
1011 int row2,
1012 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013{
1014 if (row1 > row2) return(1);
1015 if (row1 < row2) return(-1);
1016 if (col1 > col2) return(1);
1017 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001018 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019}
1020
1021/*
1022 * Start the selection
1023 */
1024 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001025clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026{
1027 VimClipboard *cb = &clip_star;
1028
1029 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001030 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031
1032 row = check_row(row);
1033 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
1036 cb->start.lnum = row;
1037 cb->start.col = col;
1038 cb->end = cb->start;
1039 cb->origin_row = (short_u)cb->start.lnum;
1040 cb->state = SELECT_IN_PROGRESS;
1041
1042 if (repeated_click)
1043 {
1044 if (++cb->mode > SELECT_MODE_LINE)
1045 cb->mode = SELECT_MODE_CHAR;
1046 }
1047 else
1048 cb->mode = SELECT_MODE_CHAR;
1049
1050#ifdef FEAT_GUI
1051 /* clear the cursor until the selection is made */
1052 if (gui.in_use)
1053 gui_undraw_cursor();
1054#endif
1055
1056 switch (cb->mode)
1057 {
1058 case SELECT_MODE_CHAR:
1059 cb->origin_start_col = cb->start.col;
1060 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
1061 break;
1062
1063 case SELECT_MODE_WORD:
1064 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1065 cb->origin_start_col = cb->word_start_col;
1066 cb->origin_end_col = cb->word_end_col;
1067
1068 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
1069 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1070 cb->start.col = cb->word_start_col;
1071 cb->end.col = cb->word_end_col;
1072 break;
1073
1074 case SELECT_MODE_LINE:
1075 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
1076 (int)Columns, CLIP_SET);
1077 cb->start.col = 0;
1078 cb->end.col = Columns;
1079 break;
1080 }
1081
1082 cb->prev = cb->start;
1083
1084#ifdef DEBUG_SELECTION
1085 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
1086#endif
1087}
1088
1089/*
1090 * Continue processing the selection
1091 */
1092 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001093clip_process_selection(
1094 int button,
1095 int col,
1096 int row,
1097 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098{
1099 VimClipboard *cb = &clip_star;
1100 int diff;
1101 int slen = 1; /* cursor shape width */
1102
1103 if (button == MOUSE_RELEASE)
1104 {
1105 /* Check to make sure we have something selected */
1106 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1107 {
1108#ifdef FEAT_GUI
1109 if (gui.in_use)
1110 gui_update_cursor(FALSE, FALSE);
1111#endif
1112 cb->state = SELECT_CLEARED;
1113 return;
1114 }
1115
1116#ifdef DEBUG_SELECTION
1117 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1118 cb->start.col, cb->end.lnum, cb->end.col);
1119#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001120 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 || (
1122#ifdef FEAT_GUI
1123 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1124#endif
1125 clip_autoselectml))
1126 clip_copy_modeless_selection(FALSE);
1127#ifdef FEAT_GUI
1128 if (gui.in_use)
1129 gui_update_cursor(FALSE, FALSE);
1130#endif
1131
1132 cb->state = SELECT_DONE;
1133 return;
1134 }
1135
1136 row = check_row(row);
1137 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139
1140 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1141 return;
1142
1143 /*
1144 * When extending the selection with the right mouse button, swap the
1145 * start and end if the position is before half the selection
1146 */
1147 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1148 {
1149 /*
1150 * If the click is before the start, or the click is inside the
1151 * selection and the start is the closest side, set the origin to the
1152 * end of the selection.
1153 */
1154 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1155 || (clip_compare_pos(row, col,
1156 (int)cb->end.lnum, cb->end.col) < 0
1157 && (((cb->start.lnum == cb->end.lnum
1158 && cb->end.col - col > col - cb->start.col))
1159 || ((diff = (cb->end.lnum - row) -
1160 (row - cb->start.lnum)) > 0
1161 || (diff == 0 && col < (int)(cb->start.col +
1162 cb->end.col) / 2)))))
1163 {
1164 cb->origin_row = (short_u)cb->end.lnum;
1165 cb->origin_start_col = cb->end.col - 1;
1166 cb->origin_end_col = cb->end.col;
1167 }
1168 else
1169 {
1170 cb->origin_row = (short_u)cb->start.lnum;
1171 cb->origin_start_col = cb->start.col;
1172 cb->origin_end_col = cb->start.col;
1173 }
1174 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1175 cb->mode = SELECT_MODE_CHAR;
1176 }
1177
1178 /* set state, for when using the right mouse button */
1179 cb->state = SELECT_IN_PROGRESS;
1180
1181#ifdef DEBUG_SELECTION
1182 printf("Selection extending to (%d,%d)\n", row, col);
1183#endif
1184
1185 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1186 cb->mode = SELECT_MODE_CHAR;
1187
1188 switch (cb->mode)
1189 {
1190 case SELECT_MODE_CHAR:
1191 /* If we're on a different line, find where the line ends */
1192 if (row != cb->prev.lnum)
1193 cb->word_end_col = clip_get_line_end(row);
1194
1195 /* See if we are before or after the origin of the selection */
1196 if (clip_compare_pos(row, col, cb->origin_row,
1197 cb->origin_start_col) >= 0)
1198 {
1199 if (col >= (int)cb->word_end_col)
1200 clip_update_modeless_selection(cb, cb->origin_row,
1201 cb->origin_start_col, row, (int)Columns);
1202 else
1203 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 if (has_mbyte && mb_lefthalve(row, col))
1205 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 clip_update_modeless_selection(cb, cb->origin_row,
1207 cb->origin_start_col, row, col + slen);
1208 }
1209 }
1210 else
1211 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 if (has_mbyte
1213 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1214 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 if (col >= (int)cb->word_end_col)
1216 clip_update_modeless_selection(cb, row, cb->word_end_col,
1217 cb->origin_row, cb->origin_start_col + slen);
1218 else
1219 clip_update_modeless_selection(cb, row, col,
1220 cb->origin_row, cb->origin_start_col + slen);
1221 }
1222 break;
1223
1224 case SELECT_MODE_WORD:
1225 /* If we are still within the same word, do nothing */
1226 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1227 && col < (int)cb->word_end_col && !repeated_click)
1228 return;
1229
1230 /* Get new word boundaries */
1231 clip_get_word_boundaries(cb, row, col);
1232
1233 /* Handle being after the origin point of selection */
1234 if (clip_compare_pos(row, col, cb->origin_row,
1235 cb->origin_start_col) >= 0)
1236 clip_update_modeless_selection(cb, cb->origin_row,
1237 cb->origin_start_col, row, cb->word_end_col);
1238 else
1239 clip_update_modeless_selection(cb, row, cb->word_start_col,
1240 cb->origin_row, cb->origin_end_col);
1241 break;
1242
1243 case SELECT_MODE_LINE:
1244 if (row == cb->prev.lnum && !repeated_click)
1245 return;
1246
1247 if (clip_compare_pos(row, col, cb->origin_row,
1248 cb->origin_start_col) >= 0)
1249 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1250 (int)Columns);
1251 else
1252 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1253 (int)Columns);
1254 break;
1255 }
1256
1257 cb->prev.lnum = row;
1258 cb->prev.col = col;
1259
1260#ifdef DEBUG_SELECTION
1261 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1262 cb->start.col, cb->end.lnum, cb->end.col);
1263#endif
1264}
1265
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266# if defined(FEAT_GUI) || defined(PROTO)
1267/*
1268 * Redraw part of the selection if character at "row,col" is inside of it.
1269 * Only used for the GUI.
1270 */
1271 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001272clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273{
1274 int start = col;
1275 int end = col + len;
1276
1277 if (clip_star.state != SELECT_CLEARED
1278 && row >= clip_star.start.lnum
1279 && row <= clip_star.end.lnum)
1280 {
1281 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1282 start = clip_star.start.col;
1283 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1284 end = clip_star.end.col;
1285 if (end > start)
1286 clip_invert_area(row, start, row, end, 0);
1287 }
1288}
1289# endif
1290
1291/*
1292 * Called from outside to clear selected region from the display
1293 */
1294 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001295clip_clear_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001298 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 return;
1300
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001301 clip_invert_area((int)cbd->start.lnum, cbd->start.col, (int)cbd->end.lnum,
1302 cbd->end.col, CLIP_CLEAR);
1303 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304}
1305
1306/*
1307 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1308 */
1309 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001310clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311{
1312 if (clip_star.state == SELECT_DONE
1313 && row2 >= clip_star.start.lnum
1314 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001315 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316}
1317
1318/*
1319 * Called before the screen is scrolled up or down. Adjusts the line numbers
1320 * of the selection. Call with big number when clearing the screen.
1321 */
1322 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001323clip_scroll_selection(
1324 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325{
1326 int lnum;
1327
1328 if (clip_star.state == SELECT_CLEARED)
1329 return;
1330
1331 lnum = clip_star.start.lnum - rows;
1332 if (lnum <= 0)
1333 clip_star.start.lnum = 0;
1334 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1335 clip_star.state = SELECT_CLEARED;
1336 else
1337 clip_star.start.lnum = lnum;
1338
1339 lnum = clip_star.end.lnum - rows;
1340 if (lnum < 0) /* scrolled off of the screen */
1341 clip_star.state = SELECT_CLEARED;
1342 else if (lnum >= screen_Rows)
1343 clip_star.end.lnum = screen_Rows - 1;
1344 else
1345 clip_star.end.lnum = lnum;
1346}
1347
1348/*
1349 * Invert a region of the display between a starting and ending row and column
1350 * Values for "how":
1351 * CLIP_CLEAR: undo inversion
1352 * CLIP_SET: set inversion
1353 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1354 * 0: invert (GUI only).
1355 */
1356 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001357clip_invert_area(
1358 int row1,
1359 int col1,
1360 int row2,
1361 int col2,
1362 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363{
1364 int invert = FALSE;
1365
1366 if (how == CLIP_SET)
1367 invert = TRUE;
1368
1369 /* Swap the from and to positions so the from is always before */
1370 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1371 {
1372 int tmp_row, tmp_col;
1373
1374 tmp_row = row1;
1375 tmp_col = col1;
1376 row1 = row2;
1377 col1 = col2;
1378 row2 = tmp_row;
1379 col2 = tmp_col;
1380 }
1381 else if (how == CLIP_TOGGLE)
1382 invert = TRUE;
1383
1384 /* If all on the same line, do it the easy way */
1385 if (row1 == row2)
1386 {
1387 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1388 }
1389 else
1390 {
1391 /* Handle a piece of the first line */
1392 if (col1 > 0)
1393 {
1394 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1395 row1++;
1396 }
1397
1398 /* Handle a piece of the last line */
1399 if (col2 < Columns - 1)
1400 {
1401 clip_invert_rectangle(row2, 0, 1, col2, invert);
1402 row2--;
1403 }
1404
1405 /* Handle the rectangle thats left */
1406 if (row2 >= row1)
1407 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1408 invert);
1409 }
1410}
1411
1412/*
1413 * Invert or un-invert a rectangle of the screen.
1414 * "invert" is true if the result is inverted.
1415 */
1416 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001417clip_invert_rectangle(
1418 int row,
1419 int col,
1420 int height,
1421 int width,
1422 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423{
1424#ifdef FEAT_GUI
1425 if (gui.in_use)
1426 gui_mch_invert_rectangle(row, col, height, width);
1427 else
1428#endif
1429 screen_draw_rectangle(row, col, height, width, invert);
1430}
1431
1432/*
1433 * Copy the currently selected area into the '*' register so it will be
1434 * available for pasting.
1435 * When "both" is TRUE also copy to the '+' register.
1436 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001438clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 char_u *buffer;
1441 char_u *bufp;
1442 int row;
1443 int start_col;
1444 int end_col;
1445 int line_end_col;
1446 int add_newline_flag = FALSE;
1447 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 int row1 = clip_star.start.lnum;
1450 int col1 = clip_star.start.col;
1451 int row2 = clip_star.end.lnum;
1452 int col2 = clip_star.end.col;
1453
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001454 /* Can't use ScreenLines unless initialized */
1455 if (ScreenLines == NULL)
1456 return;
1457
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 /*
1459 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1460 */
1461 if (row1 > row2)
1462 {
1463 row = row1; row1 = row2; row2 = row;
1464 row = col1; col1 = col2; col2 = row;
1465 }
1466 else if (row1 == row2 && col1 > col2)
1467 {
1468 row = col1; col1 = col2; col2 = row;
1469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 /* correct starting point for being on right halve of double-wide char */
1471 p = ScreenLines + LineOffset[row1];
1472 if (enc_dbcs != 0)
1473 col1 -= (*mb_head_off)(p, p + col1);
1474 else if (enc_utf8 && p[col1] == 0)
1475 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476
1477 /* Create a temporary buffer for storing the text */
1478 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 if (enc_dbcs != 0)
1480 len *= 2; /* max. 2 bytes per display cell */
1481 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001482 len *= MB_MAXBYTES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 buffer = lalloc((long_u)len, TRUE);
1484 if (buffer == NULL) /* out of memory */
1485 return;
1486
1487 /* Process each row in the selection */
1488 for (bufp = buffer, row = row1; row <= row2; row++)
1489 {
1490 if (row == row1)
1491 start_col = col1;
1492 else
1493 start_col = 0;
1494
1495 if (row == row2)
1496 end_col = col2;
1497 else
1498 end_col = Columns;
1499
1500 line_end_col = clip_get_line_end(row);
1501
1502 /* See if we need to nuke some trailing whitespace */
1503 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1504 {
1505 /* Get rid of trailing whitespace */
1506 end_col = line_end_col;
1507 if (end_col < start_col)
1508 end_col = start_col;
1509
1510 /* If the last line extended to the end, add an extra newline */
1511 if (row == row2)
1512 add_newline_flag = TRUE;
1513 }
1514
1515 /* If after the first row, we need to always add a newline */
1516 if (row > row1 && !LineWraps[row - 1])
1517 *bufp++ = NL;
1518
1519 if (row < screen_Rows && end_col <= screen_Columns)
1520 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 if (enc_dbcs != 0)
1522 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001523 int i;
1524
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 p = ScreenLines + LineOffset[row];
1526 for (i = start_col; i < end_col; ++i)
1527 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1528 {
1529 /* single-width double-byte char */
1530 *bufp++ = 0x8e;
1531 *bufp++ = ScreenLines2[LineOffset[row] + i];
1532 }
1533 else
1534 {
1535 *bufp++ = p[i];
1536 if (MB_BYTE2LEN(p[i]) == 2)
1537 *bufp++ = p[++i];
1538 }
1539 }
1540 else if (enc_utf8)
1541 {
1542 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001543 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001544 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545
1546 off = LineOffset[row];
1547 for (i = start_col; i < end_col; ++i)
1548 {
1549 /* The base character is either in ScreenLinesUC[] or
1550 * ScreenLines[]. */
1551 if (ScreenLinesUC[off + i] == 0)
1552 *bufp++ = ScreenLines[off + i];
1553 else
1554 {
1555 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001556 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001558 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001559 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001560 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001561 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 }
1564 }
1565 /* Skip right halve of double-wide character. */
1566 if (ScreenLines[off + i + 1] == 0)
1567 ++i;
1568 }
1569 }
1570 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 {
1572 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1573 end_col - start_col);
1574 bufp += end_col - start_col;
1575 }
1576 }
1577 }
1578
1579 /* Add a newline at the end if the selection ended there */
1580 if (add_newline_flag)
1581 *bufp++ = NL;
1582
1583 /* First cleanup any old selection and become the owner. */
1584 clip_free_selection(&clip_star);
1585 clip_own_selection(&clip_star);
1586
1587 /* Yank the text into the '*' register. */
1588 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1589
1590 /* Make the register contents available to the outside world. */
1591 clip_gen_set_selection(&clip_star);
1592
1593#ifdef FEAT_X11
1594 if (both)
1595 {
1596 /* Do the same for the '+' register. */
1597 clip_free_selection(&clip_plus);
1598 clip_own_selection(&clip_plus);
1599 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1600 clip_gen_set_selection(&clip_plus);
1601 }
1602#endif
1603 vim_free(buffer);
1604}
1605
1606/*
1607 * Find the starting and ending positions of the word at the given row and
1608 * column. Only white-separated words are recognized here.
1609 */
1610#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1611
1612 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001613clip_get_word_boundaries(VimClipboard *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614{
1615 int start_class;
1616 int temp_col;
1617 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001620 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 return;
1622
1623 p = ScreenLines + LineOffset[row];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 /* Correct for starting in the right halve of a double-wide char */
1625 if (enc_dbcs != 0)
1626 col -= dbcs_screen_head_off(p, p + col);
1627 else if (enc_utf8 && p[col] == 0)
1628 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 start_class = CHAR_CLASS(p[col]);
1630
1631 temp_col = col;
1632 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 if (enc_dbcs != 0
1634 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1635 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001636 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1637 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 break;
1639 cb->word_start_col = temp_col;
1640
1641 temp_col = col;
1642 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1644 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001645 else if (CHAR_CLASS(p[temp_col]) != start_class
1646 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 break;
1648 cb->word_end_col = temp_col;
1649}
1650
1651/*
1652 * Find the column position for the last non-whitespace character on the given
1653 * line.
1654 */
1655 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001656clip_get_line_end(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657{
1658 int i;
1659
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001660 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 return 0;
1662 for (i = screen_Columns; i > 0; i--)
1663 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1664 break;
1665 return i;
1666}
1667
1668/*
1669 * Update the currently selected region by adding and/or subtracting from the
1670 * beginning or end and inverting the changed area(s).
1671 */
1672 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001673clip_update_modeless_selection(
1674 VimClipboard *cb,
1675 int row1,
1676 int col1,
1677 int row2,
1678 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679{
1680 /* See if we changed at the beginning of the selection */
1681 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1682 {
1683 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1684 CLIP_TOGGLE);
1685 cb->start.lnum = row1;
1686 cb->start.col = col1;
1687 }
1688
1689 /* See if we changed at the end of the selection */
1690 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1691 {
1692 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1693 CLIP_TOGGLE);
1694 cb->end.lnum = row2;
1695 cb->end.col = col2;
1696 }
1697}
1698
1699 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001700clip_gen_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701{
1702#ifdef FEAT_XCLIPBOARD
1703# ifdef FEAT_GUI
1704 if (gui.in_use)
1705 return clip_mch_own_selection(cbd);
1706 else
1707# endif
1708 return clip_xterm_own_selection(cbd);
1709#else
1710 return clip_mch_own_selection(cbd);
1711#endif
1712}
1713
1714 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001715clip_gen_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716{
1717#ifdef FEAT_XCLIPBOARD
1718# ifdef FEAT_GUI
1719 if (gui.in_use)
1720 clip_mch_lose_selection(cbd);
1721 else
1722# endif
1723 clip_xterm_lose_selection(cbd);
1724#else
1725 clip_mch_lose_selection(cbd);
1726#endif
1727}
1728
1729 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001730clip_gen_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001732 if (!clip_did_set_selection)
1733 {
1734 /* Updating postponed, so that accessing the system clipboard won't
1735 * hang Vim when accessing it many times (e.g. on a :g comand). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001736 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1737 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1738 {
1739 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001740 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001741 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743#ifdef FEAT_XCLIPBOARD
1744# ifdef FEAT_GUI
1745 if (gui.in_use)
1746 clip_mch_set_selection(cbd);
1747 else
1748# endif
1749 clip_xterm_set_selection(cbd);
1750#else
1751 clip_mch_set_selection(cbd);
1752#endif
1753}
1754
1755 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001756clip_gen_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757{
1758#ifdef FEAT_XCLIPBOARD
1759# ifdef FEAT_GUI
1760 if (gui.in_use)
1761 clip_mch_request_selection(cbd);
1762 else
1763# endif
1764 clip_xterm_request_selection(cbd);
1765#else
1766 clip_mch_request_selection(cbd);
1767#endif
1768}
1769
Bram Moolenaar113e1072019-01-20 15:30:40 +01001770#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001771 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001772clip_gen_owner_exists(VimClipboard *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001773{
1774#ifdef FEAT_XCLIPBOARD
1775# ifdef FEAT_GUI_GTK
1776 if (gui.in_use)
1777 return clip_gtk_owner_exists(cbd);
1778 else
1779# endif
1780 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001781#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001782 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001783#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001784}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001785#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001786
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787#endif /* FEAT_CLIPBOARD */
1788
1789/*****************************************************************************
1790 * Functions that handle the input buffer.
1791 * This is used for any GUI version, and the unix terminal version.
1792 *
1793 * For Unix, the input characters are buffered to be able to check for a
1794 * CTRL-C. This should be done with signals, but I don't know how to do that
1795 * in a portable way for a tty in RAW mode.
1796 *
1797 * For the client-server code in the console the received keys are put in the
1798 * input buffer.
1799 */
1800
1801#if defined(USE_INPUT_BUF) || defined(PROTO)
1802
1803/*
1804 * Internal typeahead buffer. Includes extra space for long key code
1805 * descriptions which would otherwise overflow. The buffer is considered full
1806 * when only this extra space (or part of it) remains.
1807 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001808#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001810 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 * This requires a larger buffer...
1812 * (Madsen) Go with this for remote input as well ...
1813 */
1814# define INBUFLEN 4096
1815#else
1816# define INBUFLEN 250
1817#endif
1818
1819static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1820static int inbufcount = 0; /* number of chars in inbuf[] */
1821
1822/*
1823 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1824 * trash_input_buf() are functions for manipulating the input buffer. These
1825 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1826 */
1827
1828 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001829vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830{
1831 return (inbufcount >= INBUFLEN);
1832}
1833
1834 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001835vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836{
1837 return (inbufcount == 0);
1838}
1839
1840#if defined(FEAT_OLE) || defined(PROTO)
1841 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001842vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843{
1844 return (INBUFLEN - inbufcount);
1845}
1846#endif
1847
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001848#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001850vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851{
1852 return inbufcount;
1853}
1854#endif
1855
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856/*
1857 * Return the current contents of the input buffer and make it empty.
1858 * The returned pointer must be passed to set_input_buf() later.
1859 */
1860 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001861get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862{
1863 garray_T *gap;
1864
1865 /* We use a growarray to store the data pointer and the length. */
1866 gap = (garray_T *)alloc((unsigned)sizeof(garray_T));
1867 if (gap != NULL)
1868 {
1869 /* Add one to avoid a zero size. */
1870 gap->ga_data = alloc((unsigned)inbufcount + 1);
1871 if (gap->ga_data != NULL)
1872 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1873 gap->ga_len = inbufcount;
1874 }
1875 trash_input_buf();
1876 return (char_u *)gap;
1877}
1878
1879/*
1880 * Restore the input buffer with a pointer returned from get_input_buf().
1881 * The allocated memory is freed, this only works once!
1882 */
1883 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001884set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885{
1886 garray_T *gap = (garray_T *)p;
1887
1888 if (gap != NULL)
1889 {
1890 if (gap->ga_data != NULL)
1891 {
1892 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1893 inbufcount = gap->ga_len;
1894 vim_free(gap->ga_data);
1895 }
1896 vim_free(gap);
1897 }
1898}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900/*
1901 * Add the given bytes to the input buffer
1902 * Special keys start with CSI. A real CSI must have been translated to
1903 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1904 */
1905 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001906add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907{
1908 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1909 return; /* Shouldn't ever happen! */
1910
1911#ifdef FEAT_HANGULIN
1912 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1913 if ((len = hangul_input_process(s, len)) == 0)
1914 return;
1915#endif
1916
1917 while (len--)
1918 inbuf[inbufcount++] = *s++;
1919}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921/*
1922 * Add "str[len]" to the input buffer while escaping CSI bytes.
1923 */
1924 void
1925add_to_input_buf_csi(char_u *str, int len)
1926{
1927 int i;
1928 char_u buf[2];
1929
1930 for (i = 0; i < len; ++i)
1931 {
1932 add_to_input_buf(str + i, 1);
1933 if (str[i] == CSI)
1934 {
1935 /* Turn CSI into K_CSI. */
1936 buf[0] = KS_EXTRA;
1937 buf[1] = (int)KE_CSI;
1938 add_to_input_buf(buf, 2);
1939 }
1940 }
1941}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942
1943#if defined(FEAT_HANGULIN) || defined(PROTO)
1944 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001945push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001947 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001948 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001949
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001950 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001951 tmpbuf = hangul_string_convert(s, &len);
1952 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001953 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001954
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001955 for (; len--; inp++)
1956 {
1957 inbuf[inbufcount++] = *inp;
1958 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01001959 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001960 /* Turn CSI into K_CSI. */
1961 inbuf[inbufcount++] = KS_EXTRA;
1962 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01001963 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01001964 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001965 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966}
1967#endif
1968
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969/* Remove everything from the input buffer. Called when ^C is found */
1970 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001971trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972{
1973 inbufcount = 0;
1974}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976/*
1977 * Read as much data from the input buffer as possible up to maxlen, and store
1978 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 */
1980 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001981read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982{
1983 if (inbufcount == 0) /* if the buffer is empty, fill it */
1984 fill_input_buf(TRUE);
1985 if (maxlen > inbufcount)
1986 maxlen = inbufcount;
1987 mch_memmove(buf, inbuf, (size_t)maxlen);
1988 inbufcount -= maxlen;
1989 if (inbufcount)
1990 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
1991 return (int)maxlen;
1992}
1993
1994 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001995fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996{
Bram Moolenaard0573012017-10-28 21:11:06 +02001997#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 int len;
1999 int try;
2000 static int did_read_something = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 static char_u *rest = NULL; /* unconverted rest of previous read */
2002 static int restlen = 0;
2003 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004#endif
2005
2006#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002007 if (gui.in_use
2008# ifdef NO_CONSOLE_INPUT
2009 /* Don't use the GUI input when the window hasn't been opened yet.
2010 * We get here from ui_inchar() when we should try reading from stdin. */
2011 && !no_console_input()
2012# endif
2013 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 {
2015 gui_mch_update();
2016 return;
2017 }
2018#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002019#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 if (vim_is_input_buf_full())
2021 return;
2022 /*
2023 * Fill_input_buf() is only called when we really need a character.
2024 * If we can't get any, but there is some in the buffer, just return.
2025 * If we can't get any, and there isn't any in the buffer, we give up and
2026 * exit Vim.
2027 */
2028# ifdef __BEOS__
2029 /*
2030 * On the BeBox version (for now), all input is secretly performed within
2031 * beos_select() which is called from RealWaitForChar().
2032 */
2033 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2034 ;
2035 len = inbufcount;
2036 inbufcount = 0;
2037# else
2038
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 if (rest != NULL)
2040 {
2041 /* Use remainder of previous call, starts with an invalid character
2042 * that may become valid when reading more. */
2043 if (restlen > INBUFLEN - inbufcount)
2044 unconverted = INBUFLEN - inbufcount;
2045 else
2046 unconverted = restlen;
2047 mch_memmove(inbuf + inbufcount, rest, unconverted);
2048 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002049 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 else
2051 {
2052 restlen -= unconverted;
2053 mch_memmove(rest, rest + unconverted, restlen);
2054 }
2055 inbufcount += unconverted;
2056 }
2057 else
2058 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
2060 len = 0; /* to avoid gcc warning */
2061 for (try = 0; try < 100; ++try)
2062 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002063 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002064 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002065# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002066 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002067# else
2068 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002070
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (len > 0 || got_int)
2072 break;
2073 /*
2074 * If reading stdin results in an error, continue reading stderr.
2075 * This helps when using "foo | xargs vim".
2076 */
2077 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2078 {
2079 int m = cur_tmode;
2080
2081 /* We probably set the wrong file descriptor to raw mode. Switch
2082 * back to cooked mode, use another descriptor and set the mode to
2083 * what it was. */
2084 settmode(TMODE_COOK);
2085#ifdef HAVE_DUP
2086 /* Use stderr for stdin, also works for shell commands. */
2087 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002088 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089#else
2090 read_cmd_fd = 2; /* read from stderr instead of stdin */
2091#endif
2092 settmode(m);
2093 }
2094 if (!exit_on_error)
2095 return;
2096 }
2097# endif
2098 if (len <= 0 && !got_int)
2099 read_error_exit();
2100 if (len > 0)
2101 did_read_something = TRUE;
2102 if (got_int)
2103 {
2104 /* Interrupted, pretend a CTRL-C was typed. */
2105 inbuf[0] = 3;
2106 inbufcount = 1;
2107 }
2108 else
2109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 /*
2111 * May perform conversion on the input characters.
2112 * Include the unconverted rest of the previous call.
2113 * If there is an incomplete char at the end it is kept for the next
2114 * time, reading more bytes should make conversion possible.
2115 * Don't do this in the unlikely event that the input buffer is too
2116 * small ("rest" still contains more bytes).
2117 */
2118 if (input_conv.vc_type != CONV_NONE)
2119 {
2120 inbufcount -= unconverted;
2121 len = convert_input_safe(inbuf + inbufcount,
2122 len + unconverted, INBUFLEN - inbufcount,
2123 rest == NULL ? &rest : NULL, &restlen);
2124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 while (len-- > 0)
2126 {
2127 /*
2128 * if a CTRL-C was typed, remove it from the buffer and set got_int
2129 */
2130 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2131 {
2132 /* remove everything typed before the CTRL-C */
2133 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2134 inbufcount = 0;
2135 got_int = TRUE;
2136 }
2137 ++inbufcount;
2138 }
2139 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002140#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002142#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143
2144/*
2145 * Exit because of an input read error.
2146 */
2147 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002148read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149{
2150 if (silent_mode) /* Normal way to exit for "ex -s" */
2151 getout(0);
2152 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2153 preserve_exit();
2154}
2155
2156#if defined(CURSOR_SHAPE) || defined(PROTO)
2157/*
2158 * May update the shape of the cursor.
2159 */
2160 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002161ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162{
2163# ifdef FEAT_GUI
2164 if (gui.in_use)
2165 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002166 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002168 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002169
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170# ifdef MCH_CURSOR_SHAPE
2171 mch_update_cursor();
2172# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002173
2174# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002175 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002176# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002178
2179 void
2180ui_cursor_shape(void)
2181{
2182 ui_cursor_shape_forced(FALSE);
2183}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#endif
2185
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186/*
2187 * Check bounds for column number
2188 */
2189 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002190check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
2192 if (col < 0)
2193 return 0;
2194 if (col >= (int)screen_Columns)
2195 return (int)screen_Columns - 1;
2196 return col;
2197}
2198
2199/*
2200 * Check bounds for row number
2201 */
2202 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002203check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204{
2205 if (row < 0)
2206 return 0;
2207 if (row >= (int)screen_Rows)
2208 return (int)screen_Rows - 1;
2209 return row;
2210}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211
2212/*
2213 * Stuff for the X clipboard. Shared between VMS and Unix.
2214 */
2215
2216#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2217# include <X11/Xatom.h>
2218# include <X11/Intrinsic.h>
2219
2220/*
2221 * Open the application context (if it hasn't been opened yet).
2222 * Used for Motif and Athena GUI and the xterm clipboard.
2223 */
2224 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002225open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 if (app_context == NULL)
2228 {
2229 XtToolkitInitialize();
2230 app_context = XtCreateApplicationContext();
2231 }
2232}
2233
2234static Atom vim_atom; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002236static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237static Atom compound_text_atom;
2238static Atom text_atom;
2239static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002240static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241
2242 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002243x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
2245 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002247 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2249 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002250 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002252 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2253 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254}
2255
2256/*
2257 * X Selection stuff, for cutting and pasting text to other windows.
2258 */
2259
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002260static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2261static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2262static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002263
2264/*
2265 * Property callback to get a timestamp for XtOwnSelection.
2266 */
2267 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002268clip_x11_timestamp_cb(
2269 Widget w,
2270 XtPointer n UNUSED,
2271 XEvent *event,
2272 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002273{
2274 Atom actual_type;
2275 int format;
2276 unsigned long nitems, bytes_after;
2277 unsigned char *prop=NULL;
2278 XPropertyEvent *xproperty=&event->xproperty;
2279
2280 /* Must be a property notify, state can't be Delete (True), has to be
2281 * one of the supported selection types. */
2282 if (event->type != PropertyNotify || xproperty->state
2283 || (xproperty->atom != clip_star.sel_atom
2284 && xproperty->atom != clip_plus.sel_atom))
2285 return;
2286
2287 if (XGetWindowProperty(xproperty->display, xproperty->window,
2288 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2289 &nitems, &bytes_after, &prop))
2290 return;
2291
2292 if (prop)
2293 XFree(prop);
2294
2295 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2296 if (actual_type != timestamp_atom || format != 32)
2297 return;
2298
2299 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002300 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2301 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002302 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002303 {
2304 /* Set the "owned" flag now, there may have been a call to
2305 * lose_ownership_cb in between. */
2306 if (xproperty->atom == clip_plus.sel_atom)
2307 clip_plus.owned = TRUE;
2308 else
2309 clip_star.owned = TRUE;
2310 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002311}
2312
2313 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002314x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002315{
2316 XtAddEventHandler(w, PropertyChangeMask, False,
2317 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2318}
2319
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002321clip_x11_request_selection_cb(
2322 Widget w UNUSED,
2323 XtPointer success,
2324 Atom *sel_atom,
2325 Atom *type,
2326 XtPointer value,
2327 long_u *length,
2328 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002330 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 long_u len;
2332 char_u *p;
2333 char **text_list = NULL;
2334 VimClipboard *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336
2337 if (*sel_atom == clip_plus.sel_atom)
2338 cbd = &clip_plus;
2339 else
2340 cbd = &clip_star;
2341
2342 if (value == NULL || *length == 0)
2343 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002344 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 *(int *)success = FALSE;
2346 return;
2347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 p = (char_u *)value;
2349 len = *length;
2350 if (*type == vim_atom)
2351 {
2352 motion_type = *p++;
2353 len--;
2354 }
2355
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 else if (*type == vimenc_atom)
2357 {
2358 char_u *enc;
2359 vimconv_T conv;
2360 int convlen;
2361
2362 motion_type = *p++;
2363 --len;
2364
2365 enc = p;
2366 p += STRLEN(p) + 1;
2367 len -= p - enc;
2368
2369 /* If the encoding of the text is different from 'encoding', attempt
2370 * converting it. */
2371 conv.vc_type = CONV_NONE;
2372 convert_setup(&conv, enc, p_enc);
2373 if (conv.vc_type != CONV_NONE)
2374 {
2375 convlen = len; /* Need to use an int here. */
2376 tmpbuf = string_convert(&conv, p, &convlen);
2377 len = convlen;
2378 if (tmpbuf != NULL)
2379 p = tmpbuf;
2380 convert_setup(&conv, NULL, NULL);
2381 }
2382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002384 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002385 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002386 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 {
2388 XTextProperty text_prop;
2389 int n_text = 0;
2390 int status;
2391
2392 text_prop.value = (unsigned char *)value;
2393 text_prop.encoding = *type;
2394 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002395 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002396#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002397 if (*type == utf8_atom)
2398 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2399 &text_list, &n_text);
2400 else
2401#endif
2402 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 &text_list, &n_text);
2404 if (status != Success || n_text < 1)
2405 {
2406 *(int *)success = FALSE;
2407 return;
2408 }
2409 p = (char_u *)text_list[0];
2410 len = STRLEN(p);
2411 }
2412 clip_yank_selection(motion_type, p, (long)len, cbd);
2413
2414 if (text_list != NULL)
2415 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 XtFree((char *)value);
2418 *(int *)success = TRUE;
2419}
2420
2421 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002422clip_x11_request_selection(
2423 Widget myShell,
2424 Display *dpy,
2425 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426{
2427 XEvent event;
2428 Atom type;
2429 static int success;
2430 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002431 time_t start_time;
2432 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002434 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 {
2436 switch (i)
2437 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002440 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002441 case 3: type = compound_text_atom; break;
2442 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 default: type = XA_STRING;
2444 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002445 if (type == utf8_atom
2446# if defined(X_HAVE_UTF8_STRING)
2447 && !enc_utf8
2448# endif
2449 )
2450 /* Only request utf-8 when 'encoding' is utf8 and
2451 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002452 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002453 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2455 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2456
2457 /* Make sure the request for the selection goes out before waiting for
2458 * a response. */
2459 XFlush(dpy);
2460
2461 /*
2462 * Wait for result of selection request, otherwise if we type more
2463 * characters, then they will appear before the one that requested the
2464 * paste! Don't worry, we will catch up with any other events later.
2465 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002466 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002467 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002469 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2470 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2471 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002472 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002473 /* This is where clip_x11_request_selection_cb() should be
2474 * called. It may actually happen a bit later, so we loop
2475 * until "success" changes.
2476 * We may get a SelectionRequest here and if we don't handle
2477 * it we hang. KDE klipper does this, for example.
2478 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002479 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002480 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002481 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482
Bram Moolenaar89417b92008-09-07 19:48:53 +00002483 /* Time out after 2 to 3 seconds to avoid that we hang when the
2484 * other process doesn't respond. Note that the SelectionNotify
2485 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002486 * to life and the text gets inserted unexpectedly. Don't know
2487 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002488 if (time(NULL) > start_time + 2)
2489 {
2490 timed_out = TRUE;
2491 break;
2492 }
2493
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 /* Do we need this? Probably not. */
2495 XSync(dpy, False);
2496
Bram Moolenaar89417b92008-09-07 19:48:53 +00002497 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2498 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 }
2500
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002501 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002503
2504 /* don't do a retry with another type after timing out, otherwise we
2505 * hang for 15 seconds. */
2506 if (timed_out)
2507 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 }
2509
2510 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002511 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512}
2513
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002515clip_x11_convert_selection_cb(
2516 Widget w UNUSED,
2517 Atom *sel_atom,
2518 Atom *target,
2519 Atom *type,
2520 XtPointer *value,
2521 long_u *length,
2522 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002524 static char_u *save_result = NULL;
2525 static long_u save_length = 0;
2526 char_u *string;
2527 int motion_type;
2528 VimClipboard *cbd;
2529 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530
2531 if (*sel_atom == clip_plus.sel_atom)
2532 cbd = &clip_plus;
2533 else
2534 cbd = &clip_star;
2535
2536 if (!cbd->owned)
2537 return False; /* Shouldn't ever happen */
2538
2539 /* requestor wants to know what target types we support */
2540 if (*target == targets_atom)
2541 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002542 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 *value = (XtPointer)array;
2545 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002549 if (enc_utf8)
2550 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002551 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 array[i++] = text_atom;
2553 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002554
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 *type = XA_ATOM;
2556 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2557 * crashes on 64 bit machines. (Peter Derr) */
2558 *format = 32;
2559 *length = i;
2560 return True;
2561 }
2562
2563 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002565 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 && *target != vim_atom
2567 && *target != text_atom
2568 && *target != compound_text_atom)
2569 return False;
2570
2571 clip_get_selection(cbd);
2572 motion_type = clip_convert_selection(&string, length, cbd);
2573 if (motion_type < 0)
2574 return False;
2575
2576 /* For our own format, the first byte contains the motion type */
2577 if (*target == vim_atom)
2578 (*length)++;
2579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 /* Our own format with encoding: motion 'encoding' NUL text */
2581 if (*target == vimenc_atom)
2582 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002584 if (save_length < *length || save_length / 2 >= *length)
2585 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2586 else
2587 *value = save_result;
2588 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 {
2590 vim_free(string);
2591 return False;
2592 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002593 save_result = (char_u *)*value;
2594 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002596 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002598 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002599 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002601 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 {
2603 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002604 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002605 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606
2607 /* create NUL terminated string which XmbTextListToTextProperty wants */
2608 mch_memmove(string_nt, string, (size_t)*length);
2609 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002610 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2611 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002612 if (conv_result != Success)
2613 {
2614 vim_free(string);
2615 return False;
2616 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 *value = (XtPointer)(text_prop.value); /* from plain text */
2618 *length = text_prop.nitems;
2619 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002620 XtFree((char *)save_result);
2621 save_result = (char_u *)*value;
2622 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 else if (*target == vimenc_atom)
2625 {
2626 int l = STRLEN(p_enc);
2627
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002628 save_result[0] = motion_type;
2629 STRCPY(save_result + 1, p_enc);
2630 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 *type = vimenc_atom;
2632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 else
2634 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002635 save_result[0] = motion_type;
2636 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 *type = vim_atom;
2638 }
2639 *format = 8; /* 8 bits per char */
2640 vim_free(string);
2641 return True;
2642}
2643
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002645clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646{
2647 if (*sel_atom == clip_plus.sel_atom)
2648 clip_lose_selection(&clip_plus);
2649 else
2650 clip_lose_selection(&clip_star);
2651}
2652
2653 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002654clip_x11_lose_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002656 XtDisownSelection(myShell, cbd->sel_atom,
2657 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658}
2659
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002660 static void
2661clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2662{
2663 /* To prevent automatically freeing the selection value. */
2664}
2665
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002667clip_x11_own_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002669 /* When using the GUI we have proper timestamps, use the one of the last
2670 * event. When in the console we don't get events (the terminal gets
2671 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2672 * be called with the current timestamp. */
2673#ifdef FEAT_GUI
2674 if (gui.in_use)
2675 {
2676 if (XtOwnSelection(myShell, cbd->sel_atom,
2677 XtLastTimestampProcessed(XtDisplay(myShell)),
2678 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002679 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002680 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002681 }
2682 else
2683#endif
2684 {
2685 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2686 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002687 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002688 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002689 /* Flush is required in a terminal as nothing else is doing it. */
2690 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 return OK;
2692}
2693
2694/*
2695 * Send the current selection to the clipboard. Do nothing for X because we
2696 * will fill in the selection only when requested by another app.
2697 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002699clip_x11_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002702
Bram Moolenaar113e1072019-01-20 15:30:40 +01002703#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2704 || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002705 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002706clip_x11_owner_exists(VimClipboard *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002707{
2708 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2709}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002711#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002713#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2714 || defined(FEAT_GUI_GTK) || defined(PROTO)
2715/*
2716 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2717 */
2718 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002719yank_cut_buffer0(Display *dpy, VimClipboard *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002720{
2721 int nbytes = 0;
2722 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2723
2724 if (nbytes > 0)
2725 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002726 int done = FALSE;
2727
2728 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2729 * using a multi-byte encoding. Conversion between two 8-bit
2730 * character sets usually fails and the text might actually be in
2731 * 'enc' anyway. */
2732 if (has_mbyte)
2733 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002734 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002735 vimconv_T vc;
2736
2737 vc.vc_type = CONV_NONE;
2738 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2739 {
2740 conv_buf = string_convert(&vc, buffer, &nbytes);
2741 if (conv_buf != NULL)
2742 {
2743 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2744 vim_free(conv_buf);
2745 done = TRUE;
2746 }
2747 convert_setup(&vc, NULL, NULL);
2748 }
2749 }
2750 if (!done) /* use the text without conversion */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002751 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2752 XFree((void *)buffer);
2753 if (p_verbose > 0)
2754 {
2755 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002756 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002757 verbose_leave();
2758 }
2759 }
2760}
2761#endif
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763#if defined(FEAT_MOUSE) || defined(PROTO)
2764
2765/*
2766 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002767 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2769 *
2770 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2771 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2772 *
2773 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2774 * if the mouse is outside the window then the text will scroll, or if the
2775 * mouse was previously on a status line, then the status line may be dragged.
2776 *
2777 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2778 * cursor is moved unless the cursor was on a status line.
2779 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2780 * IN_SEP_LINE depending on where the cursor was clicked.
2781 *
2782 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2783 * the mouse is on the status line of the same window.
2784 *
2785 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2786 * the last call.
2787 *
2788 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2789 * remembered.
2790 */
2791 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002792jump_to_mouse(
2793 int flags,
2794 int *inclusive, /* used for inclusive operator, can be NULL */
2795 int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796{
2797 static int on_status_line = 0; /* #lines below bottom of window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 static int on_sep_line = 0; /* on separator right of window */
Bram Moolenaareb163d72017-09-23 15:08:17 +02002799#ifdef FEAT_MENU
2800 static int in_winbar = FALSE;
2801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 static int prev_row = -1;
2803 static int prev_col = -1;
2804 static win_T *dragwin = NULL; /* window being dragged */
2805 static int did_drag = FALSE; /* drag was noticed */
2806
2807 win_T *wp, *old_curwin;
2808 pos_T old_cursor;
2809 int count;
2810 int first;
2811 int row = mouse_row;
2812 int col = mouse_col;
2813#ifdef FEAT_FOLDING
2814 int mouse_char;
2815#endif
2816
2817 mouse_past_bottom = FALSE;
2818 mouse_past_eol = FALSE;
2819
2820 if (flags & MOUSE_RELEASED)
2821 {
2822 /* On button release we may change window focus if positioned on a
2823 * status line and no dragging happened. */
2824 if (dragwin != NULL && !did_drag)
2825 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2826 dragwin = NULL;
2827 did_drag = FALSE;
2828 }
2829
2830 if ((flags & MOUSE_DID_MOVE)
2831 && prev_row == mouse_row
2832 && prev_col == mouse_col)
2833 {
2834retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002835 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 * line, stop Visual mode */
2837 if (on_status_line)
2838 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 if (on_sep_line)
2840 return IN_SEP_LINE;
Bram Moolenaard327b0c2017-11-12 16:56:12 +01002841#ifdef FEAT_MENU
2842 if (in_winbar)
2843 {
2844 /* A quick second click may arrive as a double-click, but we use it
2845 * as a second click in the WinBar. */
2846 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
2847 {
2848 wp = mouse_find_win(&row, &col);
2849 if (wp == NULL)
2850 return IN_UNKNOWN;
2851 winbar_click(wp, col);
2852 }
2853 return IN_OTHER_WIN | MOUSE_WINBAR;
2854 }
2855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 if (flags & MOUSE_MAY_STOP_VIS)
2857 {
2858 end_visual_mode();
2859 redraw_curbuf_later(INVERTED); /* delete the inversion */
2860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2862 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002863 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 return IN_OTHER_WIN;
2865#endif
2866 return IN_BUFFER;
2867 }
2868
2869 prev_row = mouse_row;
2870 prev_col = mouse_col;
2871
2872 if (flags & MOUSE_SETPOS)
2873 goto retnomove; /* ugly goto... */
2874
2875#ifdef FEAT_FOLDING
2876 /* Remember the character under the mouse, it might be a '-' or '+' in the
2877 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002878 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2879 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 mouse_char = ScreenLines[LineOffset[row] + col];
2881 else
2882 mouse_char = ' ';
2883#endif
2884
2885 old_curwin = curwin;
2886 old_cursor = curwin->w_cursor;
2887
2888 if (!(flags & MOUSE_FOCUS))
2889 {
2890 if (row < 0 || col < 0) /* check if it makes sense */
2891 return IN_UNKNOWN;
2892
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 /* find the window where the row is in */
2894 wp = mouse_find_win(&row, &col);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02002895 if (wp == NULL)
2896 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 dragwin = NULL;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002898
2899#ifdef FEAT_MENU
2900 if (row == -1)
2901 {
2902 /* A click in the window toolbar does not enter another window or
2903 * change Visual highlighting. */
2904 winbar_click(wp, col);
Bram Moolenaareb163d72017-09-23 15:08:17 +02002905 in_winbar = TRUE;
2906 return IN_OTHER_WIN | MOUSE_WINBAR;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002907 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02002908 in_winbar = FALSE;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002909#endif
2910
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 /*
2912 * winpos and height may change in win_enter()!
2913 */
2914 if (row >= wp->w_height) /* In (or below) status line */
2915 {
2916 on_status_line = row - wp->w_height + 1;
2917 dragwin = wp;
2918 }
2919 else
2920 on_status_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 if (col >= wp->w_width) /* In separator line */
2922 {
2923 on_sep_line = col - wp->w_width + 1;
2924 dragwin = wp;
2925 }
2926 else
2927 on_sep_line = 0;
2928
2929 /* The rightmost character of the status line might be a vertical
2930 * separator character if there is no connecting window to the right. */
2931 if (on_status_line && on_sep_line)
2932 {
2933 if (stl_connected(wp))
2934 on_sep_line = 0;
2935 else
2936 on_status_line = 0;
2937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 /* Before jumping to another buffer, or moving the cursor for a left
2940 * click, stop Visual mode. */
2941 if (VIsual_active
2942 && (wp->w_buffer != curwin->w_buffer
Bram Moolenaar4033c552017-09-16 20:54:51 +02002943 || (!on_status_line && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002944#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002946# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02002947 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002949 col >= wp->w_p_fdc
2950# ifdef FEAT_CMDWIN
2951 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
2952# endif
2953 )
2954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 && (flags & MOUSE_MAY_STOP_VIS))))
2956 {
2957 end_visual_mode();
2958 redraw_curbuf_later(INVERTED); /* delete the inversion */
2959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960#ifdef FEAT_CMDWIN
2961 if (cmdwin_type != 0 && wp != curwin)
2962 {
2963 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01002964 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 on_sep_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966# ifdef FEAT_CLIPBOARD
2967 if (on_status_line)
2968 return IN_STATUS_LINE;
2969 return IN_OTHER_WIN;
2970# else
2971 row = 0;
2972 col += wp->w_wincol;
2973 wp = curwin;
2974# endif
2975 }
2976#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 /* Only change window focus when not clicking on or dragging the
2978 * status line. Do change focus when releasing the mouse button
2979 * (MOUSE_FOCUS was set above if we dragged first). */
2980 if (dragwin == NULL || (flags & MOUSE_RELEASED))
2981 win_enter(wp, TRUE); /* can make wp invalid! */
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002982
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 if (curwin != old_curwin)
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002984 {
2985#ifdef CHECK_DOUBLE_CLICK
2986 /* set topline, to be able to check for double click ourselves */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 set_mouse_topline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#endif
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002989#ifdef FEAT_TERMINAL
2990 /* when entering a terminal window may change state */
2991 term_win_entered();
2992#endif
2993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 if (on_status_line) /* In (or below) status line */
2995 {
2996 /* Don't use start_arrow() if we're in the same window */
2997 if (curwin == old_curwin)
2998 return IN_STATUS_LINE;
2999 else
3000 return IN_STATUS_LINE | CURSOR_MOVED;
3001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 if (on_sep_line) /* In (or below) status line */
3003 {
3004 /* Don't use start_arrow() if we're in the same window */
3005 if (curwin == old_curwin)
3006 return IN_SEP_LINE;
3007 else
3008 return IN_SEP_LINE | CURSOR_MOVED;
3009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
3011 curwin->w_cursor.lnum = curwin->w_topline;
3012#ifdef FEAT_GUI
3013 /* remember topline, needed for double click */
3014 gui_prev_topline = curwin->w_topline;
3015# ifdef FEAT_DIFF
3016 gui_prev_topfill = curwin->w_topfill;
3017# endif
3018#endif
3019 }
3020 else if (on_status_line && which_button == MOUSE_LEFT)
3021 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 if (dragwin != NULL)
3023 {
3024 /* Drag the status line */
3025 count = row - dragwin->w_winrow - dragwin->w_height + 1
3026 - on_status_line;
3027 win_drag_status_line(dragwin, count);
3028 did_drag |= count;
3029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 return IN_STATUS_LINE; /* Cursor didn't move */
3031 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 else if (on_sep_line && which_button == MOUSE_LEFT)
3033 {
3034 if (dragwin != NULL)
3035 {
3036 /* Drag the separator column */
3037 count = col - dragwin->w_wincol - dragwin->w_width + 1
3038 - on_sep_line;
3039 win_drag_vsep_line(dragwin, count);
3040 did_drag |= count;
3041 }
3042 return IN_SEP_LINE; /* Cursor didn't move */
3043 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02003044#ifdef FEAT_MENU
3045 else if (in_winbar)
3046 {
3047 /* After a click on the window toolbar don't start Visual mode. */
3048 return IN_OTHER_WIN | MOUSE_WINBAR;
3049 }
3050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 else /* keep_window_focus must be TRUE */
3052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 /* before moving the cursor for a left click, stop Visual mode */
3054 if (flags & MOUSE_MAY_STOP_VIS)
3055 {
3056 end_visual_mode();
3057 redraw_curbuf_later(INVERTED); /* delete the inversion */
3058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059
3060#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
3061 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003062 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 return IN_OTHER_WIN;
3064#endif
3065
3066 row -= W_WINROW(curwin);
Bram Moolenaar53f81742017-09-22 14:35:51 +02003067 col -= curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068
3069 /*
3070 * When clicking beyond the end of the window, scroll the screen.
3071 * Scroll by however many rows outside the window we are.
3072 */
3073 if (row < 0)
3074 {
3075 count = 0;
3076 for (first = TRUE; curwin->w_topline > 1; )
3077 {
3078#ifdef FEAT_DIFF
3079 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3080 ++count;
3081 else
3082#endif
3083 count += plines(curwin->w_topline - 1);
3084 if (!first && count > -row)
3085 break;
3086 first = FALSE;
3087#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02003088 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089#endif
3090#ifdef FEAT_DIFF
3091 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3092 ++curwin->w_topfill;
3093 else
3094#endif
3095 {
3096 --curwin->w_topline;
3097#ifdef FEAT_DIFF
3098 curwin->w_topfill = 0;
3099#endif
3100 }
3101 }
3102#ifdef FEAT_DIFF
3103 check_topfill(curwin, FALSE);
3104#endif
3105 curwin->w_valid &=
3106 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3107 redraw_later(VALID);
3108 row = 0;
3109 }
3110 else if (row >= curwin->w_height)
3111 {
3112 count = 0;
3113 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
3114 {
3115#ifdef FEAT_DIFF
3116 if (curwin->w_topfill > 0)
3117 ++count;
3118 else
3119#endif
3120 count += plines(curwin->w_topline);
3121 if (!first && count > row - curwin->w_height + 1)
3122 break;
3123 first = FALSE;
3124#ifdef FEAT_FOLDING
3125 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
3126 && curwin->w_topline == curbuf->b_ml.ml_line_count)
3127 break;
3128#endif
3129#ifdef FEAT_DIFF
3130 if (curwin->w_topfill > 0)
3131 --curwin->w_topfill;
3132 else
3133#endif
3134 {
3135 ++curwin->w_topline;
3136#ifdef FEAT_DIFF
3137 curwin->w_topfill =
3138 diff_check_fill(curwin, curwin->w_topline);
3139#endif
3140 }
3141 }
3142#ifdef FEAT_DIFF
3143 check_topfill(curwin, FALSE);
3144#endif
3145 redraw_later(VALID);
3146 curwin->w_valid &=
3147 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3148 row = curwin->w_height - 1;
3149 }
3150 else if (row == 0)
3151 {
3152 /* When dragging the mouse, while the text has been scrolled up as
3153 * far as it goes, moving the mouse in the top line should scroll
3154 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003155 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 && curwin->w_cursor.lnum
3157 == curwin->w_buffer->b_ml.ml_line_count
3158 && curwin->w_cursor.lnum == curwin->w_topline)
3159 curwin->w_valid &= ~(VALID_TOPLINE);
3160 }
3161 }
3162
3163#ifdef FEAT_FOLDING
3164 /* Check for position outside of the fold column. */
3165 if (
3166# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003167 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168# endif
3169 col >= curwin->w_p_fdc
3170# ifdef FEAT_CMDWIN
3171 + (cmdwin_type == 0 ? 0 : 1)
3172# endif
3173 )
3174 mouse_char = ' ';
3175#endif
3176
3177 /* compute the position in the buffer line from the posn on the screen */
3178 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
3179 mouse_past_bottom = TRUE;
3180
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
3182 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
3183 {
3184 check_visual_highlight();
3185 VIsual = old_cursor;
3186 VIsual_active = TRUE;
3187 VIsual_reselect = TRUE;
3188 /* if 'selectmode' contains "mouse", start Select mode */
3189 may_start_select('o');
3190 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00003191 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 redraw_cmdline = TRUE; /* show visual mode later */
3193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194
3195 curwin->w_curswant = col;
3196 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
3197 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
3198 {
3199 if (inclusive != NULL)
3200 *inclusive = TRUE;
3201 mouse_past_eol = TRUE;
3202 }
3203 else if (inclusive != NULL)
3204 *inclusive = FALSE;
3205
3206 count = IN_BUFFER;
3207 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
3208 || curwin->w_cursor.col != old_cursor.col)
3209 count |= CURSOR_MOVED; /* Cursor has moved */
3210
3211#ifdef FEAT_FOLDING
3212 if (mouse_char == '+')
3213 count |= MOUSE_FOLD_OPEN;
3214 else if (mouse_char != ' ')
3215 count |= MOUSE_FOLD_CLOSE;
3216#endif
3217
3218 return count;
3219}
3220
3221/*
3222 * Compute the position in the buffer line from the posn on the screen in
3223 * window "win".
3224 * Returns TRUE if the position is below the last line.
3225 */
3226 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003227mouse_comp_pos(
3228 win_T *win,
3229 int *rowp,
3230 int *colp,
3231 linenr_T *lnump)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232{
3233 int col = *colp;
3234 int row = *rowp;
3235 linenr_T lnum;
3236 int retval = FALSE;
3237 int off;
3238 int count;
3239
3240#ifdef FEAT_RIGHTLEFT
3241 if (win->w_p_rl)
Bram Moolenaar02631462017-09-22 15:20:32 +02003242 col = win->w_width - 1 - col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243#endif
3244
3245 lnum = win->w_topline;
3246
3247 while (row > 0)
3248 {
3249#ifdef FEAT_DIFF
3250 /* Don't include filler lines in "count" */
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003251 if (win->w_p_diff
3252# ifdef FEAT_FOLDING
3253 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3254# endif
3255 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 {
3257 if (lnum == win->w_topline)
3258 row -= win->w_topfill;
3259 else
3260 row -= diff_check_fill(win, lnum);
3261 count = plines_win_nofill(win, lnum, TRUE);
3262 }
3263 else
3264#endif
3265 count = plines_win(win, lnum, TRUE);
3266 if (count > row)
3267 break; /* Position is in this buffer line. */
3268#ifdef FEAT_FOLDING
3269 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3270#endif
3271 if (lnum == win->w_buffer->b_ml.ml_line_count)
3272 {
3273 retval = TRUE;
3274 break; /* past end of file */
3275 }
3276 row -= count;
3277 ++lnum;
3278 }
3279
3280 if (!retval)
3281 {
3282 /* Compute the column without wrapping. */
3283 off = win_col_off(win) - win_col_off2(win);
3284 if (col < off)
3285 col = off;
Bram Moolenaar02631462017-09-22 15:20:32 +02003286 col += row * (win->w_width - off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 /* add skip column (for long wrapping line) */
3288 col += win->w_skipcol;
3289 }
3290
3291 if (!win->w_p_wrap)
3292 col += win->w_leftcol;
3293
3294 /* skip line number and fold column in front of the line */
3295 col -= win_col_off(win);
3296 if (col < 0)
3297 {
3298#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003299 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300#endif
3301 col = 0;
3302 }
3303
3304 *colp = col;
3305 *rowp = row;
3306 *lnump = lnum;
3307 return retval;
3308}
3309
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310/*
3311 * Find the window at screen position "*rowp" and "*colp". The positions are
3312 * updated to become relative to the top-left of the window.
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003313 * Returns NULL when something is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 win_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003316mouse_find_win(int *rowp, int *colp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317{
3318 frame_T *fp;
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003319 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320
3321 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003322 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 for (;;)
3324 {
3325 if (fp->fr_layout == FR_LEAF)
3326 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 if (fp->fr_layout == FR_ROW)
3328 {
3329 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3330 {
3331 if (*colp < fp->fr_width)
3332 break;
3333 *colp -= fp->fr_width;
3334 }
3335 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 else /* fr_layout == FR_COL */
3337 {
3338 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3339 {
3340 if (*rowp < fp->fr_height)
3341 break;
3342 *rowp -= fp->fr_height;
3343 }
3344 }
3345 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003346 /* When using a timer that closes a window the window might not actually
3347 * exist. */
3348 FOR_ALL_WINDOWS(wp)
3349 if (wp == fp->fr_win)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003350 {
3351#ifdef FEAT_MENU
3352 *rowp -= wp->w_winbar_height;
3353#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003354 return wp;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003355 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003356 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358
Bram Moolenaar860cae12010-06-05 23:22:07 +02003359#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar658a1542018-03-03 19:29:43 +01003361 || defined(FEAT_GUI_PHOTON) || defined(FEAT_TERM_POPUP_MENU) \
3362 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363/*
3364 * Translate window coordinates to buffer position without any side effects
3365 */
3366 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003367get_fpos_of_mouse(pos_T *mpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368{
3369 win_T *wp;
3370 int row = mouse_row;
3371 int col = mouse_col;
3372
3373 if (row < 0 || col < 0) /* check if it makes sense */
3374 return IN_UNKNOWN;
3375
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 /* find the window where the row is in */
3377 wp = mouse_find_win(&row, &col);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003378 if (wp == NULL)
3379 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 /*
3381 * winpos and height may change in win_enter()!
3382 */
3383 if (row >= wp->w_height) /* In (or below) status line */
3384 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 if (col >= wp->w_width) /* In vertical separator line */
3386 return IN_SEP_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
3388 if (wp != curwin)
3389 return IN_UNKNOWN;
3390
3391 /* compute the position in the buffer line from the posn on the screen */
3392 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3393 return IN_STATUS_LINE; /* past bottom */
3394
3395 mpos->col = vcol2col(wp, mpos->lnum, col);
3396
3397 if (mpos->col > 0)
3398 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003399 mpos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 return IN_BUFFER;
3401}
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003402#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003404#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
3405 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar3767b612018-03-03 19:51:58 +01003406 || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \
3407 || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408/*
3409 * Convert a virtual (screen) column to a character column.
3410 * The first column is one.
3411 */
3412 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003413vcol2col(win_T *wp, linenr_T lnum, int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414{
3415 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 int count = 0;
3417 char_u *ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02003418 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419
Bram Moolenaar597a4222014-06-25 14:39:50 +02003420 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003421 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02003423 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003424 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02003426 return (int)(ptr - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427}
3428#endif
3429
3430#endif /* FEAT_MOUSE */
3431
3432#if defined(FEAT_GUI) || defined(WIN3264) || defined(PROTO)
3433/*
3434 * Called when focus changed. Used for the GUI or for systems where this can
3435 * be done in the console (Win32).
3436 */
3437 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003438ui_focus_change(
3439 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440{
3441 static time_t last_time = (time_t)0;
3442 int need_redraw = FALSE;
3443
3444 /* When activated: Check if any file was modified outside of Vim.
3445 * Only do this when not done within the last two seconds (could get
3446 * several events in a row). */
3447 if (in_focus && last_time + 2 < time(NULL))
3448 {
3449 need_redraw = check_timestamps(
3450# ifdef FEAT_GUI
3451 gui.in_use
3452# else
3453 FALSE
3454# endif
3455 );
3456 last_time = time(NULL);
3457 }
3458
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 /*
3460 * Fire the focus gained/lost autocommand.
3461 */
3462 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3463 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464
3465 if (need_redraw)
3466 {
3467 /* Something was executed, make sure the cursor is put back where it
3468 * belongs. */
3469 need_wait_return = FALSE;
3470
3471 if (State & CMDLINE)
3472 redrawcmdline();
3473 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3474 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3475 repeat_message();
3476 else if ((State & NORMAL) || (State & INSERT))
3477 {
3478 if (must_redraw != 0)
3479 update_screen(0);
3480 setcursor();
3481 }
3482 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01003483 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484# ifdef FEAT_GUI
3485 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487# endif
3488 }
3489#ifdef FEAT_TITLE
3490 /* File may have been changed from 'readonly' to 'noreadonly' */
3491 if (need_maketitle)
3492 maketitle();
3493#endif
3494}
3495#endif
3496
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003497#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498/*
3499 * Save current Input Method status to specified place.
3500 */
3501 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003502im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503{
3504 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3505 * disabled then (but might start later).
3506 * Also don't save when inside a mapping, vgetc_im_active has not been set
3507 * then.
3508 * And don't save when the keys were stuffed (e.g., for a "." command).
3509 * And don't save when the GUI is running but our window doesn't have
3510 * input focus (e.g., when a find dialog is open). */
3511 if (!p_imdisable && KeyTyped && !KeyStuffed
3512# ifdef FEAT_XIM
3513 && xic != NULL
3514# endif
3515# ifdef FEAT_GUI
3516 && (!gui.in_use || gui.in_focus)
3517# endif
3518 )
3519 {
3520 /* Do save when IM is on, or IM is off and saved status is on. */
3521 if (vgetc_im_active)
3522 *psave = B_IMODE_IM;
3523 else if (*psave == B_IMODE_IM)
3524 *psave = B_IMODE_NONE;
3525 }
3526}
3527#endif