blob: cde97c3f30ca46525934fe60f9388a97dd8b6a6c [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ui.c: functions that handle the user interface.
12 * 1. Keyboard input stuff, and a bit of windowing stuff. These are called
13 * before the machine specific stuff (mch_*) so that we can call the GUI
14 * stuff instead if the GUI is running.
15 * 2. Clipboard stuff.
16 * 3. Input buffer stuff.
17 */
18
19#include "vim.h"
20
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +020021#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
22# define WIN32_LEAN_AND_MEAN
23# include <windows.h>
24# include "winclip.pro"
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010028ui_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029{
30#ifdef FEAT_GUI
31 if (gui.in_use && !gui.dying && !gui.starting)
32 {
33 gui_write(s, len);
34 if (p_wd)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +010035 gui_wait_for_chars(p_wd, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 return;
37 }
38#endif
39#ifndef NO_CONSOLE
40 /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */
41 if (!(silent_mode && p_verbose == 0))
42 {
Bram Moolenaar4f974752019-02-17 17:44:42 +010043#if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 char_u *tofree = NULL;
45
46 if (output_conv.vc_type != CONV_NONE)
47 {
48 /* Convert characters from 'encoding' to 'termencoding'. */
49 tofree = string_convert(&output_conv, s, &len);
50 if (tofree != NULL)
51 s = tofree;
52 }
53#endif
54
55 mch_write(s, len);
56
Bram Moolenaar4f974752019-02-17 17:44:42 +010057# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 if (output_conv.vc_type != CONV_NONE)
59 vim_free(tofree);
Bram Moolenaar264b74f2019-01-24 17:18:42 +010060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 }
62#endif
63}
64
Bram Moolenaar4f974752019-02-17 17:44:42 +010065#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When executing an external program, there may be some typed characters that
68 * are not consumed by it. Give them back to ui_inchar() and they are stored
69 * here for the next call.
70 */
71static char_u *ta_str = NULL;
72static int ta_off; /* offset for next char to use when ta_str != NULL */
73static int ta_len; /* length of ta_str when it's not NULL*/
74
75 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010076ui_inchar_undo(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 char_u *new;
79 int newlen;
80
81 newlen = len;
82 if (ta_str != NULL)
83 newlen += ta_len - ta_off;
84 new = alloc(newlen);
85 if (new != NULL)
86 {
87 if (ta_str != NULL)
88 {
89 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
90 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
91 vim_free(ta_str);
92 }
93 else
94 mch_memmove(new, s, (size_t)len);
95 ta_str = new;
96 ta_len = newlen;
97 ta_off = 0;
98 }
99}
100#endif
101
102/*
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200103 * ui_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * Get characters from the keyboard.
105 * Return the number of characters that are available.
106 * If "wtime" == 0 do not wait for characters.
107 * If "wtime" == -1 wait forever for characters.
108 * If "wtime" > 0 wait "wtime" milliseconds for a character.
109 *
110 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
111 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
112 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
113 * otherwise.
114 */
115 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100116ui_inchar(
117 char_u *buf,
118 int maxlen,
119 long wtime, /* don't use "time", MIPS cannot handle it */
120 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121{
122 int retval = 0;
123
124#if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
125 /*
126 * Use the typeahead if there is any.
127 */
128 if (ta_str != NULL)
129 {
130 if (maxlen >= ta_len - ta_off)
131 {
132 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
Bram Moolenaard23a8232018-02-10 18:45:26 +0100133 VIM_CLEAR(ta_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 return ta_len;
135 }
136 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
137 ta_off += maxlen;
138 return maxlen;
139 }
140#endif
141
Bram Moolenaar05159a02005-02-26 23:04:13 +0000142#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000143 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000144 prof_inchar_enter();
145#endif
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#ifdef NO_CONSOLE_INPUT
148 /* Don't wait for character input when the window hasn't been opened yet.
149 * Do try reading, this works when redirecting stdin from a file.
150 * Must return something, otherwise we'll loop forever. If we run into
151 * this very often we probably got stuck, exit Vim. */
152 if (no_console_input())
153 {
154 static int count = 0;
155
156# ifndef NO_CONSOLE
Bram Moolenaar13410242018-11-26 21:19:11 +0100157 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000158 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000159 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160# endif
161 if (wtime == -1 && ++count == 1000)
162 read_error_exit();
163 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000164 retval = 1;
165 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 }
167#endif
168
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000169 /* If we are going to wait for some time or block... */
170 if (wtime == -1 || wtime > 100L)
171 {
172 /* ... allow signals to kill us. */
173 (void)vim_handle_signal(SIGNAL_UNBLOCK);
174
175 /* ... there is no need for CTRL-C to interrupt something, don't let
176 * it set got_int when it was mapped. */
Bram Moolenaar50008692015-01-14 16:08:32 +0100177 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state())
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000178 ctrl_c_interrupts = FALSE;
179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100181 /*
182 * Here we call gui_inchar() or mch_inchar(), the GUI or machine-dependent
183 * input function. The functionality they implement is like this:
184 *
185 * while (not timed out)
186 * {
187 * handle-resize;
188 * parse-queued-messages;
189 * if (waited for 'updatetime')
190 * trigger-cursorhold;
191 * ui_wait_for_chars_or_timer()
192 * if (character available)
193 * break;
194 * }
195 *
196 * ui_wait_for_chars_or_timer() does:
197 *
198 * while (not timed out)
199 * {
200 * if (any-timer-triggered)
201 * invoke-timer-callback;
202 * wait-for-character();
203 * if (character available)
204 * break;
205 * }
206 *
207 * wait-for-character() does:
208 * while (not timed out)
209 * {
210 * Wait for event;
211 * if (something on channel)
212 * read/write channel;
213 * else if (resized)
214 * handle_resize();
215 * else if (system event)
216 * deal-with-system-event;
217 * else if (character available)
218 * break;
219 * }
220 *
221 */
222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223#ifdef FEAT_GUI
224 if (gui.in_use)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100225 retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226#endif
227#ifndef NO_CONSOLE
228# ifdef FEAT_GUI
229 else
230# endif
231 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
232#endif
233
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000234 if (wtime == -1 || wtime > 100L)
235 /* block SIGHUP et al. */
236 (void)vim_handle_signal(SIGNAL_BLOCK);
237
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 ctrl_c_interrupts = TRUE;
239
Bram Moolenaar05159a02005-02-26 23:04:13 +0000240#ifdef NO_CONSOLE_INPUT
241theend:
242#endif
243#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000244 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000245 prof_inchar_exit();
246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 return retval;
248}
249
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100250#if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO)
251/*
252 * Common code for mch_inchar() and gui_inchar(): Wait for a while or
253 * indefinitely until characters are available, dealing with timers and
254 * messages on channels.
255 *
256 * "buf" may be NULL if the available characters are not to be returned, only
257 * check if they are available.
258 *
259 * Return the number of characters that are available.
260 * If "wtime" == 0 do not wait for characters.
261 * If "wtime" == n wait a short time for characters.
262 * If "wtime" == -1 wait forever for characters.
263 */
264 int
265inchar_loop(
266 char_u *buf,
267 int maxlen,
268 long wtime, // don't use "time", MIPS cannot handle it
269 int tb_change_cnt,
270 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
271 int (*resize_func)(int check_only))
272{
273 int len;
274 int interrupted = FALSE;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100275 int did_call_wait_func = FALSE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100276 int did_start_blocking = FALSE;
277 long wait_time;
278 long elapsed_time = 0;
279#ifdef ELAPSED_FUNC
280 elapsed_T start_tv;
281
282 ELAPSED_INIT(start_tv);
283#endif
284
285 /* repeat until we got a character or waited long enough */
286 for (;;)
287 {
288 /* Check if window changed size while we were busy, perhaps the ":set
289 * columns=99" command was used. */
290 if (resize_func != NULL)
291 resize_func(FALSE);
292
293#ifdef MESSAGE_QUEUE
294 // Only process messages when waiting.
295 if (wtime != 0)
296 {
297 parse_queued_messages();
298 // If input was put directly in typeahead buffer bail out here.
299 if (typebuf_changed(tb_change_cnt))
300 return 0;
301 }
302#endif
303 if (wtime < 0 && did_start_blocking)
304 // blocking and already waited for p_ut
305 wait_time = -1;
306 else
307 {
308 if (wtime >= 0)
309 wait_time = wtime;
310 else
311 // going to block after p_ut
312 wait_time = p_ut;
313#ifdef ELAPSED_FUNC
314 elapsed_time = ELAPSED_FUNC(start_tv);
315#endif
316 wait_time -= elapsed_time;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100317
318 // If the waiting time is now zero or less, we timed out. However,
319 // loop at least once to check for characters and events. Matters
320 // when "wtime" is zero.
321 if (wait_time <= 0 && did_call_wait_func)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100322 {
323 if (wtime >= 0)
324 // no character available within "wtime"
325 return 0;
326
327 // No character available within 'updatetime'.
328 did_start_blocking = TRUE;
329 if (trigger_cursorhold() && maxlen >= 3
330 && !typebuf_changed(tb_change_cnt))
331 {
332 // Put K_CURSORHOLD in the input buffer or return it.
333 if (buf == NULL)
334 {
335 char_u ibuf[3];
336
337 ibuf[0] = CSI;
338 ibuf[1] = KS_EXTRA;
339 ibuf[2] = (int)KE_CURSORHOLD;
340 add_to_input_buf(ibuf, 3);
341 }
342 else
343 {
344 buf[0] = K_SPECIAL;
345 buf[1] = KS_EXTRA;
346 buf[2] = (int)KE_CURSORHOLD;
347 }
348 return 3;
349 }
350
351 // There is no character available within 'updatetime' seconds:
352 // flush all the swap files to disk. Also done when
353 // interrupted by SIGWINCH.
354 before_blocking();
355 continue;
356 }
357 }
358
359#ifdef FEAT_JOB_CHANNEL
360 if (wait_time < 0 || wait_time > 100L)
361 {
362 // Checking if a job ended requires polling. Do this at least
363 // every 100 msec.
364 if (has_pending_job())
365 wait_time = 100L;
366
367 // If there is readahead then parse_queued_messages() timed out and
368 // we should call it again soon.
369 if (channel_any_readahead())
370 wait_time = 10L;
371 }
372#endif
373#ifdef FEAT_BEVAL_GUI
374 if (p_beval && wait_time > 100L)
375 // The 'balloonexpr' may indirectly invoke a callback while waiting
376 // for a character, need to check often.
377 wait_time = 100L;
378#endif
379
380 // Wait for a character to be typed or another event, such as the winch
381 // signal or an event on the monitored file descriptors.
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100382 did_call_wait_func = TRUE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100383 if (wait_func(wait_time, &interrupted, FALSE))
384 {
385 // If input was put directly in typeahead buffer bail out here.
386 if (typebuf_changed(tb_change_cnt))
387 return 0;
388
389 // We might have something to return now.
390 if (buf == NULL)
391 // "buf" is NULL, we were just waiting, not actually getting
392 // input.
393 return input_available();
394
395 len = read_from_input_buf(buf, (long)maxlen);
396 if (len > 0)
397 return len;
398 continue;
399 }
400 // Timed out or interrupted with no character available.
401
402#ifndef ELAPSED_FUNC
403 // estimate the elapsed time
404 elapsed_time += wait_time;
405#endif
406
407 if ((resize_func != NULL && resize_func(TRUE))
Bram Moolenaar3e9d4d82019-01-27 17:08:40 +0100408#if defined(FEAT_CLIENTSERVER) && defined(UNIX)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100409 || server_waiting()
410#endif
411#ifdef MESSAGE_QUEUE
412 || interrupted
413#endif
414 || wait_time > 0
415 || (wtime < 0 && !did_start_blocking))
416 // no character available, but something to be done, keep going
417 continue;
418
419 // no character available or interrupted, return zero
420 break;
421 }
422 return 0;
423}
424#endif
425
Bram Moolenaarc46af532019-01-09 22:24:49 +0100426#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100427/*
428 * Wait for a timer to fire or "wait_func" to return non-zero.
429 * Returns OK when something was read.
430 * Returns FAIL when it timed out or was interrupted.
431 */
432 int
433ui_wait_for_chars_or_timer(
434 long wtime,
435 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
436 int *interrupted,
437 int ignore_input)
438{
439 int due_time;
440 long remaining = wtime;
441 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100442# ifdef FEAT_JOB_CHANNEL
Bram Moolenaare299bbd2019-01-17 14:12:02 +0100443 int brief_wait = FALSE;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100444# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100445
Bram Moolenaarc46af532019-01-09 22:24:49 +0100446 // When waiting very briefly don't trigger timers.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100447 if (wtime >= 0 && wtime < 10L)
448 return wait_func(wtime, NULL, ignore_input);
449
450 while (wtime < 0 || remaining > 0)
451 {
Bram Moolenaarc46af532019-01-09 22:24:49 +0100452 // Trigger timers and then get the time in wtime until the next one is
453 // due. Wait up to that time.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100454 due_time = check_due_timer();
455 if (typebuf.tb_change_cnt != tb_change_cnt)
456 {
457 /* timer may have used feedkeys() */
458 return FAIL;
459 }
460 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
461 due_time = remaining;
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200462# if defined(FEAT_JOB_CHANNEL) || defined(FEAT_SOUND_CANBERRA)
463 if ((due_time < 0 || due_time > 10L) && (
464# if defined(FEAT_JOB_CHANNEL)
465 (
466# if defined(FEAT_GUI)
467 !gui.in_use &&
468# endif
469 (has_pending_job() || channel_any_readahead()))
470# ifdef FEAT_SOUND_CANBERRA
471 ||
472# endif
Bram Moolenaarc46af532019-01-09 22:24:49 +0100473# endif
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200474# ifdef FEAT_SOUND_CANBERRA
475 has_any_sound_callback()
476# endif
477 ))
Bram Moolenaarc46af532019-01-09 22:24:49 +0100478 {
479 // There is a pending job or channel, should return soon in order
480 // to handle them ASAP. Do check for input briefly.
481 due_time = 10L;
Bram Moolenaar6cdce2a2019-09-07 23:25:09 +0200482# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarc46af532019-01-09 22:24:49 +0100483 brief_wait = TRUE;
Bram Moolenaar6cdce2a2019-09-07 23:25:09 +0200484# endif
Bram Moolenaarc46af532019-01-09 22:24:49 +0100485 }
486# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100487 if (wait_func(due_time, interrupted, ignore_input))
488 return OK;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100489 if ((interrupted != NULL && *interrupted)
490# ifdef FEAT_JOB_CHANNEL
491 || brief_wait
492# endif
493 )
494 // Nothing available, but need to return so that side effects get
495 // handled, such as handling a message on a channel.
Bram Moolenaara338adc2018-01-31 20:51:47 +0100496 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100497 if (wtime > 0)
498 remaining -= due_time;
499 }
500 return FAIL;
501}
502#endif
503
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504/*
Bram Moolenaarc46af532019-01-09 22:24:49 +0100505 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 */
507 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100508ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509{
510#ifdef FEAT_GUI
511 if (gui.in_use)
512 {
513 gui_mch_update();
514 return input_available();
515 }
516#endif
517#ifndef NO_CONSOLE
518# ifdef NO_CONSOLE_INPUT
519 if (no_console_input())
520 return 0;
521# endif
522 return mch_char_avail();
523#else
524 return 0;
525#endif
526}
527
528/*
529 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
530 * cancel the delay if a key is hit.
531 */
532 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100533ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534{
Bram Moolenaareda1da02019-11-17 17:06:33 +0100535#ifdef FEAT_JOB_CHANNEL
536 ch_log(NULL, "ui_delay(%ld)", msec);
537#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538#ifdef FEAT_GUI
539 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100540 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 else
542#endif
543 mch_delay(msec, ignoreinput);
544}
545
546/*
547 * If the machine has job control, use it to suspend the program,
548 * otherwise fake it by starting a new shell.
549 * When running the GUI iconify the window.
550 */
551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100552ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553{
554#ifdef FEAT_GUI
555 if (gui.in_use)
556 {
557 gui_mch_iconify();
558 return;
559 }
560#endif
561 mch_suspend();
562}
563
564#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
565/*
566 * When the OS can't really suspend, call this function to start a shell.
567 * This is never called in the GUI.
568 */
569 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100570suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571{
572 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100573 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 else
575 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100576 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 do_shell(NULL, 0);
578 }
579}
580#endif
581
582/*
583 * Try to get the current Vim shell size. Put the result in Rows and Columns.
584 * Use the new sizes as defaults for 'columns' and 'lines'.
585 * Return OK when size could be determined, FAIL otherwise.
586 */
587 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100588ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 int retval;
591
592#ifdef FEAT_GUI
593 if (gui.in_use)
594 retval = gui_get_shellsize();
595 else
596#endif
597 retval = mch_get_shellsize();
598
599 check_shellsize();
600
601 /* adjust the default for 'lines' and 'columns' */
602 if (retval == OK)
603 {
604 set_number_default("lines", Rows);
605 set_number_default("columns", Columns);
606 }
607 return retval;
608}
609
610/*
611 * Set the size of the Vim shell according to Rows and Columns, if possible.
612 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
613 * new size. If this is not possible, it will adjust Rows and Columns.
614 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100616ui_set_shellsize(
617 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618{
619#ifdef FEAT_GUI
620 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200621 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 else
623#endif
624 mch_set_shellsize();
625}
626
627/*
628 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
629 * region.
630 */
631 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100632ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633{
634 if (full_screen && !exiting)
635 {
636#ifdef FEAT_GUI
637 if (gui.in_use)
638 gui_new_shellsize();
639 else
640#endif
641 mch_new_shellsize();
642 }
643}
644
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200645#if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200646 && (defined(FEAT_GUI) \
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200647 || defined(MSWIN) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200648 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200649 || defined(PROTO)
650/*
651 * Get the window position in pixels, if possible.
652 * Return FAIL when not possible.
653 */
654 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200655ui_get_winpos(int *x, int *y, varnumber_T timeout UNUSED)
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200656{
657# ifdef FEAT_GUI
658 if (gui.in_use)
659 return gui_mch_get_winpos(x, y);
660# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200661# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200662 return mch_get_winpos(x, y);
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200663# else
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200664# if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)
665 return term_get_winpos(x, y, timeout);
666# else
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200667 return FAIL;
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200668# endif
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200669# endif
670}
671#endif
672
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100674ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200676 ui_breakcheck_force(FALSE);
677}
678
679/*
680 * When "force" is true also check when the terminal is not in raw mode.
681 * This is useful to read input on channels.
682 */
683 void
684ui_breakcheck_force(int force)
685{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100686 static int recursive = FALSE;
687 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100688
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100689 // We could be called recursively if stderr is redirected, calling
690 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
691 // calls vgetorpeek() which calls ui_breakcheck() again.
692 if (recursive)
693 return;
694 recursive = TRUE;
695
696 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100697 ++updating_screen;
698
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699#ifdef FEAT_GUI
700 if (gui.in_use)
701 gui_mch_update();
702 else
703#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200704 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100705
Bram Moolenaar42335f52018-09-13 15:33:43 +0200706 if (save_updating_screen)
707 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200708 else
Bram Moolenaar68a4b042019-05-29 22:28:29 +0200709 after_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100710
711 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712}
713
714/*****************************************************************************
715 * Functions for copying and pasting text between applications.
716 * This is always included in a GUI version, but may also be included when the
717 * clipboard and mouse is available to a terminal version such as xterm.
718 * Note: there are some more functions in ops.c that handle selection stuff.
719 *
720 * Also note that the majority of functions here deal with the X 'primary'
721 * (visible - for Visual mode use) selection, and only that. There are no
722 * versions of these for the 'clipboard' selection, as Visual mode has no use
723 * for them.
724 */
725
726#if defined(FEAT_CLIPBOARD) || defined(PROTO)
727
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200728static void clip_gen_lose_selection(Clipboard_T *cbd);
729static int clip_gen_own_selection(Clipboard_T *cbd);
730#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)
731static int clip_x11_owner_exists(Clipboard_T *cbd);
732#endif
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734/*
735 * Selection stuff using Visual mode, for cutting and pasting text to other
736 * windows.
737 */
738
739/*
740 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
741 * is included, but the clipboard can not be used, or TRUE if the clipboard can
742 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
743 * the GUI starts.
744 */
745 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100746clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747{
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200748 Clipboard_T *cb;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749
750 cb = &clip_star;
751 for (;;)
752 {
753 cb->available = can_use;
754 cb->owned = FALSE;
755 cb->start.lnum = 0;
756 cb->start.col = 0;
757 cb->end.lnum = 0;
758 cb->end.col = 0;
759 cb->state = SELECT_CLEARED;
760
761 if (cb == &clip_plus)
762 break;
763 cb = &clip_plus;
764 }
765}
766
767/*
768 * Check whether the VIsual area has changed, and if so try to become the owner
769 * of the selection, and free any old converted selection we may still have
770 * lying around. If the VIsual mode has ended, make a copy of what was
771 * selected so we can still give it to others. Will probably have to make sure
772 * this is called whenever VIsual mode is ended.
773 */
774 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200775clip_update_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200777 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778
779 /* If visual mode is only due to a redo command ("."), then ignore it */
780 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
781 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100782 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 {
784 start = VIsual;
785 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000787 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 }
789 else
790 {
791 start = curwin->w_cursor;
792 end = VIsual;
793 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100794 if (!EQUAL_POS(clip->start, start)
795 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200796 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200798 clip_clear_selection(clip);
799 clip->start = start;
800 clip->end = end;
801 clip->vmode = VIsual_mode;
802 clip_free_selection(clip);
803 clip_own_selection(clip);
804 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 }
806 }
807}
808
809 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200810clip_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811{
812 /*
813 * Also want to check somehow that we are reading from the keyboard rather
814 * than a mapping etc.
815 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200817 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200818 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200819 if (cbd->available)
820 {
821 int was_owned = cbd->owned;
822
823 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200824 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000826 /* May have to show a different kind of highlighting for the
827 * selected area. There is no specific redraw command for this,
828 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000830 && (get_real_state() == VISUAL
831 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200832 && (cbd == &clip_star ? clip_isautosel_star()
833 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100834 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 redraw_curbuf_later(INVERTED_ALL);
836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200838#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200839 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200840 if (!cbd->owned && cbd->available)
841 cbd->owned = (clip_gen_own_selection(cbd) == OK);
842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843}
844
845 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200846clip_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847{
848#ifdef FEAT_X11
849 int was_owned = cbd->owned;
850#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200851 int visual_selection = FALSE;
852
853 if (cbd == &clip_star || cbd == &clip_plus)
854 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 clip_free_selection(cbd);
857 cbd->owned = FALSE;
858 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200859 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 clip_gen_lose_selection(cbd);
861#ifdef FEAT_X11
862 if (visual_selection)
863 {
864 /* May have to show a different kind of highlighting for the selected
865 * area. There is no specific redraw command for this, just redraw all
866 * windows on the current buffer. */
867 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000868 && (get_real_state() == VISUAL
869 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200870 && (cbd == &clip_star ?
871 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100872 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 {
874 update_curbuf(INVERTED_ALL);
875 setcursor();
876 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100877 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 }
879 }
880#endif
881}
882
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200883 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200884clip_copy_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200886 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200888 clip_update_selection(clip);
889 clip_free_selection(clip);
890 clip_own_selection(clip);
891 if (clip->owned)
892 clip_get_selection(clip);
893 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 }
895}
896
897/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200898 * Save and restore clip_unnamed before doing possibly many changes. This
899 * prevents accessing the clipboard very often which might slow down Vim
900 * considerably.
901 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100902static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200903static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
904static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200905
906/*
907 * Save clip_unnamed and reset it.
908 */
909 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100910start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200911{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100912 if (++global_change_count > 1)
913 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200914 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100915 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200916
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100917 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200918 {
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100919 clip_unnamed = 0;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200920 clip_did_set_selection = FALSE;
921 }
922}
923
924/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200925 * Return TRUE if setting the clipboard was postponed, it already contains the
926 * right text.
927 */
928 int
929is_clipboard_needs_update()
930{
931 return clipboard_needs_update;
932}
933
934/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200935 * Restore clip_unnamed and set the selection when needed.
936 */
937 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100938end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200939{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100940 if (--global_change_count > 0)
941 /* recursive */
942 return;
943 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200944 {
945 clip_did_set_selection = TRUE;
946 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100947 clip_unnamed_saved = 0;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100948 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200949 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100950 /* only store something in the clipboard,
951 * if we have yanked anything to it */
952 if (clip_unnamed & CLIP_UNNAMED)
953 {
954 clip_own_selection(&clip_star);
955 clip_gen_set_selection(&clip_star);
956 }
957 if (clip_unnamed & CLIP_UNNAMED_PLUS)
958 {
959 clip_own_selection(&clip_plus);
960 clip_gen_set_selection(&clip_plus);
961 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200962 }
963 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200964 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200965}
966
967/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 * Called when Visual mode is ended: update the selection.
969 */
970 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100971clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200973 if (clip_isautosel_star())
974 clip_copy_selection(&clip_star);
975 if (clip_isautosel_plus())
976 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977}
978
979/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200980 * Return TRUE if automatic selection of Visual area is desired for the *
981 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 */
983 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100984clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 return (
987#ifdef FEAT_GUI
988 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
989#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200990 clip_autoselect_star);
991}
992
993/*
994 * Return TRUE if automatic selection of Visual area is desired for the +
995 * register.
996 */
997 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100998clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200999{
1000 return (
1001#ifdef FEAT_GUI
1002 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
1003#endif
1004 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005}
1006
1007
1008/*
1009 * Stuff for general mouse selection, without using Visual mode.
1010 */
1011
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001012static void clip_invert_area(Clipboard_T *, int, int, int, int, int how);
1013static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001014static void clip_get_word_boundaries(Clipboard_T *, int, int);
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001015static int clip_get_line_end(Clipboard_T *, int);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001016static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001018// "how" flags for clip_invert_area()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019#define CLIP_CLEAR 1
1020#define CLIP_SET 2
1021#define CLIP_TOGGLE 3
1022
1023/*
1024 * Start, continue or end a modeless selection. Used when editing the
Bram Moolenaarb53fb312019-06-13 23:59:52 +02001025 * command-line, in the cmdline window and when the mouse is in a popup window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 */
1027 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001028clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029{
1030 int repeat;
1031
1032 repeat = ((clip_star.mode == SELECT_MODE_CHAR
1033 || clip_star.mode == SELECT_MODE_LINE)
1034 && (mod_mask & MOD_MASK_2CLICK))
1035 || (clip_star.mode == SELECT_MODE_WORD
1036 && (mod_mask & MOD_MASK_3CLICK));
1037 if (is_click && button == MOUSE_RIGHT)
1038 {
1039 /* Right mouse button: If there was no selection, start one.
1040 * Otherwise extend the existing selection. */
1041 if (clip_star.state == SELECT_CLEARED)
1042 clip_start_selection(mouse_col, mouse_row, FALSE);
1043 clip_process_selection(button, mouse_col, mouse_row, repeat);
1044 }
1045 else if (is_click)
1046 clip_start_selection(mouse_col, mouse_row, repeat);
1047 else if (is_drag)
1048 {
1049 /* Don't try extending a selection if there isn't one. Happens when
1050 * button-down is in the cmdline and them moving mouse upwards. */
1051 if (clip_star.state != SELECT_CLEARED)
1052 clip_process_selection(button, mouse_col, mouse_row, repeat);
1053 }
1054 else /* release */
1055 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1056}
1057
1058/*
1059 * Compare two screen positions ala strcmp()
1060 */
1061 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001062clip_compare_pos(
1063 int row1,
1064 int col1,
1065 int row2,
1066 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067{
1068 if (row1 > row2) return(1);
1069 if (row1 < row2) return(-1);
1070 if (col1 > col2) return(1);
1071 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001072 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073}
1074
1075/*
1076 * Start the selection
1077 */
1078 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001079clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001081 Clipboard_T *cb = &clip_star;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001082#ifdef FEAT_TEXT_PROP
1083 win_T *wp;
1084 int row_cp = row;
1085 int col_cp = col;
1086
1087 wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP);
1088 if (wp != NULL && WIN_IS_POPUP(wp)
1089 && popup_is_in_scrollbar(wp, row_cp, col_cp))
1090 // click or double click in scrollbar does not start a selection
1091 return;
1092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
1094 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001095 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
1097 row = check_row(row);
1098 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100
1101 cb->start.lnum = row;
1102 cb->start.col = col;
1103 cb->end = cb->start;
1104 cb->origin_row = (short_u)cb->start.lnum;
1105 cb->state = SELECT_IN_PROGRESS;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001106#ifdef FEAT_TEXT_PROP
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001107 if (wp != NULL && WIN_IS_POPUP(wp))
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001108 {
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001109 // Click in a popup window restricts selection to that window,
1110 // excluding the border.
1111 cb->min_col = wp->w_wincol + wp->w_popup_border[3];
Bram Moolenaar4dd751b2019-08-17 19:10:53 +02001112 cb->max_col = wp->w_wincol + popup_width(wp)
1113 - wp->w_popup_border[1] - wp->w_has_scrollbar;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001114 if (cb->max_col > screen_Columns)
1115 cb->max_col = screen_Columns;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001116 cb->min_row = wp->w_winrow + wp->w_popup_border[0];
1117 cb->max_row = wp->w_winrow + popup_height(wp) - 1
1118 - wp->w_popup_border[2];
1119 }
1120 else
1121 {
1122 cb->min_col = 0;
1123 cb->max_col = screen_Columns;
1124 cb->min_row = 0;
1125 cb->max_row = screen_Rows;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001126 }
1127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128
1129 if (repeated_click)
1130 {
1131 if (++cb->mode > SELECT_MODE_LINE)
1132 cb->mode = SELECT_MODE_CHAR;
1133 }
1134 else
1135 cb->mode = SELECT_MODE_CHAR;
1136
1137#ifdef FEAT_GUI
1138 /* clear the cursor until the selection is made */
1139 if (gui.in_use)
1140 gui_undraw_cursor();
1141#endif
1142
1143 switch (cb->mode)
1144 {
1145 case SELECT_MODE_CHAR:
1146 cb->origin_start_col = cb->start.col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001147 cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 break;
1149
1150 case SELECT_MODE_WORD:
1151 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1152 cb->origin_start_col = cb->word_start_col;
1153 cb->origin_end_col = cb->word_end_col;
1154
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001155 clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1157 cb->start.col = cb->word_start_col;
1158 cb->end.col = cb->word_end_col;
1159 break;
1160
1161 case SELECT_MODE_LINE:
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001162 clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 (int)Columns, CLIP_SET);
1164 cb->start.col = 0;
1165 cb->end.col = Columns;
1166 break;
1167 }
1168
1169 cb->prev = cb->start;
1170
1171#ifdef DEBUG_SELECTION
1172 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
1173#endif
1174}
1175
1176/*
1177 * Continue processing the selection
1178 */
1179 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001180clip_process_selection(
1181 int button,
1182 int col,
1183 int row,
1184 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001186 Clipboard_T *cb = &clip_star;
1187 int diff;
1188 int slen = 1; // cursor shape width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189
1190 if (button == MOUSE_RELEASE)
1191 {
Bram Moolenaar741ea172019-08-24 14:16:32 +02001192 if (cb->state != SELECT_IN_PROGRESS)
1193 return;
1194
1195 // Check to make sure we have something selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1197 {
1198#ifdef FEAT_GUI
1199 if (gui.in_use)
1200 gui_update_cursor(FALSE, FALSE);
1201#endif
1202 cb->state = SELECT_CLEARED;
1203 return;
1204 }
1205
1206#ifdef DEBUG_SELECTION
1207 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1208 cb->start.col, cb->end.lnum, cb->end.col);
1209#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001210 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 || (
1212#ifdef FEAT_GUI
1213 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1214#endif
1215 clip_autoselectml))
1216 clip_copy_modeless_selection(FALSE);
1217#ifdef FEAT_GUI
1218 if (gui.in_use)
1219 gui_update_cursor(FALSE, FALSE);
1220#endif
1221
1222 cb->state = SELECT_DONE;
1223 return;
1224 }
1225
1226 row = check_row(row);
1227 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
1230 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1231 return;
1232
1233 /*
1234 * When extending the selection with the right mouse button, swap the
1235 * start and end if the position is before half the selection
1236 */
1237 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1238 {
1239 /*
1240 * If the click is before the start, or the click is inside the
1241 * selection and the start is the closest side, set the origin to the
1242 * end of the selection.
1243 */
1244 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1245 || (clip_compare_pos(row, col,
1246 (int)cb->end.lnum, cb->end.col) < 0
1247 && (((cb->start.lnum == cb->end.lnum
1248 && cb->end.col - col > col - cb->start.col))
1249 || ((diff = (cb->end.lnum - row) -
1250 (row - cb->start.lnum)) > 0
1251 || (diff == 0 && col < (int)(cb->start.col +
1252 cb->end.col) / 2)))))
1253 {
1254 cb->origin_row = (short_u)cb->end.lnum;
1255 cb->origin_start_col = cb->end.col - 1;
1256 cb->origin_end_col = cb->end.col;
1257 }
1258 else
1259 {
1260 cb->origin_row = (short_u)cb->start.lnum;
1261 cb->origin_start_col = cb->start.col;
1262 cb->origin_end_col = cb->start.col;
1263 }
1264 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1265 cb->mode = SELECT_MODE_CHAR;
1266 }
1267
1268 /* set state, for when using the right mouse button */
1269 cb->state = SELECT_IN_PROGRESS;
1270
1271#ifdef DEBUG_SELECTION
1272 printf("Selection extending to (%d,%d)\n", row, col);
1273#endif
1274
1275 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1276 cb->mode = SELECT_MODE_CHAR;
1277
1278 switch (cb->mode)
1279 {
1280 case SELECT_MODE_CHAR:
1281 /* If we're on a different line, find where the line ends */
1282 if (row != cb->prev.lnum)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001283 cb->word_end_col = clip_get_line_end(cb, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
1285 /* See if we are before or after the origin of the selection */
1286 if (clip_compare_pos(row, col, cb->origin_row,
1287 cb->origin_start_col) >= 0)
1288 {
1289 if (col >= (int)cb->word_end_col)
1290 clip_update_modeless_selection(cb, cb->origin_row,
1291 cb->origin_start_col, row, (int)Columns);
1292 else
1293 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if (has_mbyte && mb_lefthalve(row, col))
1295 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 clip_update_modeless_selection(cb, cb->origin_row,
1297 cb->origin_start_col, row, col + slen);
1298 }
1299 }
1300 else
1301 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 if (has_mbyte
1303 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1304 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 if (col >= (int)cb->word_end_col)
1306 clip_update_modeless_selection(cb, row, cb->word_end_col,
1307 cb->origin_row, cb->origin_start_col + slen);
1308 else
1309 clip_update_modeless_selection(cb, row, col,
1310 cb->origin_row, cb->origin_start_col + slen);
1311 }
1312 break;
1313
1314 case SELECT_MODE_WORD:
1315 /* If we are still within the same word, do nothing */
1316 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1317 && col < (int)cb->word_end_col && !repeated_click)
1318 return;
1319
1320 /* Get new word boundaries */
1321 clip_get_word_boundaries(cb, row, col);
1322
1323 /* Handle being after the origin point of selection */
1324 if (clip_compare_pos(row, col, cb->origin_row,
1325 cb->origin_start_col) >= 0)
1326 clip_update_modeless_selection(cb, cb->origin_row,
1327 cb->origin_start_col, row, cb->word_end_col);
1328 else
1329 clip_update_modeless_selection(cb, row, cb->word_start_col,
1330 cb->origin_row, cb->origin_end_col);
1331 break;
1332
1333 case SELECT_MODE_LINE:
1334 if (row == cb->prev.lnum && !repeated_click)
1335 return;
1336
1337 if (clip_compare_pos(row, col, cb->origin_row,
1338 cb->origin_start_col) >= 0)
1339 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1340 (int)Columns);
1341 else
1342 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1343 (int)Columns);
1344 break;
1345 }
1346
1347 cb->prev.lnum = row;
1348 cb->prev.col = col;
1349
1350#ifdef DEBUG_SELECTION
1351 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1352 cb->start.col, cb->end.lnum, cb->end.col);
1353#endif
1354}
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356# if defined(FEAT_GUI) || defined(PROTO)
1357/*
1358 * Redraw part of the selection if character at "row,col" is inside of it.
1359 * Only used for the GUI.
1360 */
1361 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001362clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363{
1364 int start = col;
1365 int end = col + len;
1366
1367 if (clip_star.state != SELECT_CLEARED
1368 && row >= clip_star.start.lnum
1369 && row <= clip_star.end.lnum)
1370 {
1371 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1372 start = clip_star.start.col;
1373 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1374 end = clip_star.end.col;
1375 if (end > start)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001376 clip_invert_area(&clip_star, row, start, row, end, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 }
1378}
1379# endif
1380
1381/*
1382 * Called from outside to clear selected region from the display
1383 */
1384 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001385clip_clear_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001388 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 return;
1390
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001391 clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col,
1392 (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001393 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394}
1395
1396/*
1397 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1398 */
1399 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001400clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401{
1402 if (clip_star.state == SELECT_DONE
1403 && row2 >= clip_star.start.lnum
1404 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001405 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406}
1407
1408/*
1409 * Called before the screen is scrolled up or down. Adjusts the line numbers
1410 * of the selection. Call with big number when clearing the screen.
1411 */
1412 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001413clip_scroll_selection(
1414 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415{
1416 int lnum;
1417
1418 if (clip_star.state == SELECT_CLEARED)
1419 return;
1420
1421 lnum = clip_star.start.lnum - rows;
1422 if (lnum <= 0)
1423 clip_star.start.lnum = 0;
1424 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1425 clip_star.state = SELECT_CLEARED;
1426 else
1427 clip_star.start.lnum = lnum;
1428
1429 lnum = clip_star.end.lnum - rows;
1430 if (lnum < 0) /* scrolled off of the screen */
1431 clip_star.state = SELECT_CLEARED;
1432 else if (lnum >= screen_Rows)
1433 clip_star.end.lnum = screen_Rows - 1;
1434 else
1435 clip_star.end.lnum = lnum;
1436}
1437
1438/*
1439 * Invert a region of the display between a starting and ending row and column
1440 * Values for "how":
1441 * CLIP_CLEAR: undo inversion
1442 * CLIP_SET: set inversion
1443 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1444 * 0: invert (GUI only).
1445 */
1446 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001447clip_invert_area(
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001448 Clipboard_T *cbd,
1449 int row1,
1450 int col1,
1451 int row2,
1452 int col2,
1453 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454{
1455 int invert = FALSE;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001456 int max_col;
1457
1458#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001459 max_col = cbd->max_col - 1;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001460#else
1461 max_col = Columns - 1;
1462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463
1464 if (how == CLIP_SET)
1465 invert = TRUE;
1466
1467 /* Swap the from and to positions so the from is always before */
1468 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1469 {
1470 int tmp_row, tmp_col;
1471
1472 tmp_row = row1;
1473 tmp_col = col1;
1474 row1 = row2;
1475 col1 = col2;
1476 row2 = tmp_row;
1477 col2 = tmp_col;
1478 }
1479 else if (how == CLIP_TOGGLE)
1480 invert = TRUE;
1481
1482 /* If all on the same line, do it the easy way */
1483 if (row1 == row2)
1484 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001485 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 }
1487 else
1488 {
1489 /* Handle a piece of the first line */
1490 if (col1 > 0)
1491 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001492 clip_invert_rectangle(cbd, row1, col1, 1,
1493 (int)Columns - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 row1++;
1495 }
1496
1497 /* Handle a piece of the last line */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001498 if (col2 < max_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001500 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 row2--;
1502 }
1503
1504 /* Handle the rectangle thats left */
1505 if (row2 >= row1)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001506 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1,
1507 (int)Columns, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 }
1509}
1510
1511/*
1512 * Invert or un-invert a rectangle of the screen.
1513 * "invert" is true if the result is inverted.
1514 */
1515 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001516clip_invert_rectangle(
Bram Moolenaar405bb422019-06-21 00:12:29 +02001517 Clipboard_T *cbd UNUSED,
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001518 int row_arg,
1519 int col_arg,
1520 int height_arg,
1521 int width_arg,
1522 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523{
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001524 int row = row_arg;
1525 int col = col_arg;
1526 int height = height_arg;
1527 int width = width_arg;
1528
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001529#ifdef FEAT_TEXT_PROP
1530 // this goes on top of all popup windows
Bram Moolenaarc662ec92019-06-23 00:15:57 +02001531 screen_zindex = CLIP_ZINDEX;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001532
1533 if (col < cbd->min_col)
1534 {
1535 width -= cbd->min_col - col;
1536 col = cbd->min_col;
1537 }
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001538 if (width > cbd->max_col - col)
1539 width = cbd->max_col - col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001540 if (row < cbd->min_row)
1541 {
1542 height -= cbd->min_row - row;
1543 row = cbd->min_row;
1544 }
1545 if (height > cbd->max_row - row + 1)
1546 height = cbd->max_row - row + 1;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548#ifdef FEAT_GUI
1549 if (gui.in_use)
1550 gui_mch_invert_rectangle(row, col, height, width);
1551 else
1552#endif
1553 screen_draw_rectangle(row, col, height, width, invert);
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001554#ifdef FEAT_TEXT_PROP
1555 screen_zindex = 0;
1556#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557}
1558
1559/*
1560 * Copy the currently selected area into the '*' register so it will be
1561 * available for pasting.
1562 * When "both" is TRUE also copy to the '+' register.
1563 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001565clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566{
1567 char_u *buffer;
1568 char_u *bufp;
1569 int row;
1570 int start_col;
1571 int end_col;
1572 int line_end_col;
1573 int add_newline_flag = FALSE;
1574 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 int row1 = clip_star.start.lnum;
1577 int col1 = clip_star.start.col;
1578 int row2 = clip_star.end.lnum;
1579 int col2 = clip_star.end.col;
1580
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001581 /* Can't use ScreenLines unless initialized */
1582 if (ScreenLines == NULL)
1583 return;
1584
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 /*
1586 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1587 */
1588 if (row1 > row2)
1589 {
1590 row = row1; row1 = row2; row2 = row;
1591 row = col1; col1 = col2; col2 = row;
1592 }
1593 else if (row1 == row2 && col1 > col2)
1594 {
1595 row = col1; col1 = col2; col2 = row;
1596 }
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001597#ifdef FEAT_TEXT_PROP
1598 if (col1 < clip_star.min_col)
1599 col1 = clip_star.min_col;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001600 if (col2 > clip_star.max_col)
1601 col2 = clip_star.max_col;
Bram Moolenaar741ea172019-08-24 14:16:32 +02001602 if (row1 > clip_star.max_row || row2 < clip_star.min_row)
1603 return;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001604 if (row1 < clip_star.min_row)
1605 row1 = clip_star.min_row;
1606 if (row2 > clip_star.max_row)
1607 row2 = clip_star.max_row;
1608#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 /* correct starting point for being on right halve of double-wide char */
1610 p = ScreenLines + LineOffset[row1];
1611 if (enc_dbcs != 0)
1612 col1 -= (*mb_head_off)(p, p + col1);
1613 else if (enc_utf8 && p[col1] == 0)
1614 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615
1616 /* Create a temporary buffer for storing the text */
1617 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 if (enc_dbcs != 0)
1619 len *= 2; /* max. 2 bytes per display cell */
1620 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001621 len *= MB_MAXBYTES;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001622 buffer = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 if (buffer == NULL) /* out of memory */
1624 return;
1625
1626 /* Process each row in the selection */
1627 for (bufp = buffer, row = row1; row <= row2; row++)
1628 {
1629 if (row == row1)
1630 start_col = col1;
1631 else
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001632#ifdef FEAT_TEXT_PROP
1633 start_col = clip_star.min_col;
1634#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 start_col = 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
1638 if (row == row2)
1639 end_col = col2;
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001640 else
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001641#ifdef FEAT_TEXT_PROP
1642 end_col = clip_star.max_col;
1643#else
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001644 end_col = Columns;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001647 line_end_col = clip_get_line_end(&clip_star, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
1649 /* See if we need to nuke some trailing whitespace */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001650 if (end_col >=
1651#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001652 clip_star.max_col
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001653#else
1654 Columns
1655#endif
1656 && (row < row2 || end_col > line_end_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 {
1658 /* Get rid of trailing whitespace */
1659 end_col = line_end_col;
1660 if (end_col < start_col)
1661 end_col = start_col;
1662
1663 /* If the last line extended to the end, add an extra newline */
1664 if (row == row2)
1665 add_newline_flag = TRUE;
1666 }
1667
1668 /* If after the first row, we need to always add a newline */
1669 if (row > row1 && !LineWraps[row - 1])
1670 *bufp++ = NL;
1671
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001672 // Safetey check for in case resizing went wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 if (row < screen_Rows && end_col <= screen_Columns)
1674 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 if (enc_dbcs != 0)
1676 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001677 int i;
1678
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 p = ScreenLines + LineOffset[row];
1680 for (i = start_col; i < end_col; ++i)
1681 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1682 {
1683 /* single-width double-byte char */
1684 *bufp++ = 0x8e;
1685 *bufp++ = ScreenLines2[LineOffset[row] + i];
1686 }
1687 else
1688 {
1689 *bufp++ = p[i];
1690 if (MB_BYTE2LEN(p[i]) == 2)
1691 *bufp++ = p[++i];
1692 }
1693 }
1694 else if (enc_utf8)
1695 {
1696 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001697 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001698 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699
1700 off = LineOffset[row];
1701 for (i = start_col; i < end_col; ++i)
1702 {
1703 /* The base character is either in ScreenLinesUC[] or
1704 * ScreenLines[]. */
1705 if (ScreenLinesUC[off + i] == 0)
1706 *bufp++ = ScreenLines[off + i];
1707 else
1708 {
1709 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001710 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001712 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001713 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001714 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001715 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 }
1718 }
1719 /* Skip right halve of double-wide character. */
1720 if (ScreenLines[off + i + 1] == 0)
1721 ++i;
1722 }
1723 }
1724 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 {
1726 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1727 end_col - start_col);
1728 bufp += end_col - start_col;
1729 }
1730 }
1731 }
1732
1733 /* Add a newline at the end if the selection ended there */
1734 if (add_newline_flag)
1735 *bufp++ = NL;
1736
1737 /* First cleanup any old selection and become the owner. */
1738 clip_free_selection(&clip_star);
1739 clip_own_selection(&clip_star);
1740
1741 /* Yank the text into the '*' register. */
1742 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1743
1744 /* Make the register contents available to the outside world. */
1745 clip_gen_set_selection(&clip_star);
1746
1747#ifdef FEAT_X11
1748 if (both)
1749 {
1750 /* Do the same for the '+' register. */
1751 clip_free_selection(&clip_plus);
1752 clip_own_selection(&clip_plus);
1753 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1754 clip_gen_set_selection(&clip_plus);
1755 }
1756#endif
1757 vim_free(buffer);
1758}
1759
1760/*
1761 * Find the starting and ending positions of the word at the given row and
1762 * column. Only white-separated words are recognized here.
1763 */
1764#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1765
1766 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001767clip_get_word_boundaries(Clipboard_T *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768{
1769 int start_class;
1770 int temp_col;
1771 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001774 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 return;
1776
1777 p = ScreenLines + LineOffset[row];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 /* Correct for starting in the right halve of a double-wide char */
1779 if (enc_dbcs != 0)
1780 col -= dbcs_screen_head_off(p, p + col);
1781 else if (enc_utf8 && p[col] == 0)
1782 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 start_class = CHAR_CLASS(p[col]);
1784
1785 temp_col = col;
1786 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 if (enc_dbcs != 0
1788 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1789 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001790 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1791 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 break;
1793 cb->word_start_col = temp_col;
1794
1795 temp_col = col;
1796 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1798 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001799 else if (CHAR_CLASS(p[temp_col]) != start_class
1800 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 break;
1802 cb->word_end_col = temp_col;
1803}
1804
1805/*
1806 * Find the column position for the last non-whitespace character on the given
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001807 * line at or before start_col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 */
1809 static int
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001810clip_get_line_end(Clipboard_T *cbd UNUSED, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811{
1812 int i;
1813
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001814 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 return 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001816 for (i =
1817#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001818 cbd->max_col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001819#else
1820 screen_Columns;
1821#endif
1822 i > 0; i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1824 break;
1825 return i;
1826}
1827
1828/*
1829 * Update the currently selected region by adding and/or subtracting from the
1830 * beginning or end and inverting the changed area(s).
1831 */
1832 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001833clip_update_modeless_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001834 Clipboard_T *cb,
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001835 int row1,
1836 int col1,
1837 int row2,
1838 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839{
1840 /* See if we changed at the beginning of the selection */
1841 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1842 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001843 clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 CLIP_TOGGLE);
1845 cb->start.lnum = row1;
1846 cb->start.col = col1;
1847 }
1848
1849 /* See if we changed at the end of the selection */
1850 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1851 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001852 clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 CLIP_TOGGLE);
1854 cb->end.lnum = row2;
1855 cb->end.col = col2;
1856 }
1857}
1858
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001859 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001860clip_gen_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861{
1862#ifdef FEAT_XCLIPBOARD
1863# ifdef FEAT_GUI
1864 if (gui.in_use)
1865 return clip_mch_own_selection(cbd);
1866 else
1867# endif
1868 return clip_xterm_own_selection(cbd);
1869#else
1870 return clip_mch_own_selection(cbd);
1871#endif
1872}
1873
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001874 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001875clip_gen_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876{
1877#ifdef FEAT_XCLIPBOARD
1878# ifdef FEAT_GUI
1879 if (gui.in_use)
1880 clip_mch_lose_selection(cbd);
1881 else
1882# endif
1883 clip_xterm_lose_selection(cbd);
1884#else
1885 clip_mch_lose_selection(cbd);
1886#endif
1887}
1888
1889 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001890clip_gen_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001892 if (!clip_did_set_selection)
1893 {
1894 /* Updating postponed, so that accessing the system clipboard won't
Bram Moolenaarbdace832019-03-02 10:13:42 +01001895 * hang Vim when accessing it many times (e.g. on a :g command). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001896 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1897 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1898 {
1899 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001900 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001901 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903#ifdef FEAT_XCLIPBOARD
1904# ifdef FEAT_GUI
1905 if (gui.in_use)
1906 clip_mch_set_selection(cbd);
1907 else
1908# endif
1909 clip_xterm_set_selection(cbd);
1910#else
1911 clip_mch_set_selection(cbd);
1912#endif
1913}
1914
1915 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001916clip_gen_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917{
1918#ifdef FEAT_XCLIPBOARD
1919# ifdef FEAT_GUI
1920 if (gui.in_use)
1921 clip_mch_request_selection(cbd);
1922 else
1923# endif
1924 clip_xterm_request_selection(cbd);
1925#else
1926 clip_mch_request_selection(cbd);
1927#endif
1928}
1929
Bram Moolenaar113e1072019-01-20 15:30:40 +01001930#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001931 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001932clip_gen_owner_exists(Clipboard_T *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001933{
1934#ifdef FEAT_XCLIPBOARD
1935# ifdef FEAT_GUI_GTK
1936 if (gui.in_use)
1937 return clip_gtk_owner_exists(cbd);
1938 else
1939# endif
1940 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001941#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001942 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001943#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001944}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001945#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001946
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif /* FEAT_CLIPBOARD */
1948
1949/*****************************************************************************
1950 * Functions that handle the input buffer.
1951 * This is used for any GUI version, and the unix terminal version.
1952 *
1953 * For Unix, the input characters are buffered to be able to check for a
1954 * CTRL-C. This should be done with signals, but I don't know how to do that
1955 * in a portable way for a tty in RAW mode.
1956 *
1957 * For the client-server code in the console the received keys are put in the
1958 * input buffer.
1959 */
1960
1961#if defined(USE_INPUT_BUF) || defined(PROTO)
1962
1963/*
1964 * Internal typeahead buffer. Includes extra space for long key code
1965 * descriptions which would otherwise overflow. The buffer is considered full
1966 * when only this extra space (or part of it) remains.
1967 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001968#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001970 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 * This requires a larger buffer...
1972 * (Madsen) Go with this for remote input as well ...
1973 */
1974# define INBUFLEN 4096
1975#else
1976# define INBUFLEN 250
1977#endif
1978
1979static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1980static int inbufcount = 0; /* number of chars in inbuf[] */
1981
1982/*
1983 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1984 * trash_input_buf() are functions for manipulating the input buffer. These
1985 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1986 */
1987
1988 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001989vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990{
1991 return (inbufcount >= INBUFLEN);
1992}
1993
1994 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001995vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996{
1997 return (inbufcount == 0);
1998}
1999
2000#if defined(FEAT_OLE) || defined(PROTO)
2001 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002002vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003{
2004 return (INBUFLEN - inbufcount);
2005}
2006#endif
2007
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00002008#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002010vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011{
2012 return inbufcount;
2013}
2014#endif
2015
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016/*
2017 * Return the current contents of the input buffer and make it empty.
2018 * The returned pointer must be passed to set_input_buf() later.
2019 */
2020 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002021get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
2023 garray_T *gap;
2024
2025 /* We use a growarray to store the data pointer and the length. */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002026 gap = ALLOC_ONE(garray_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 if (gap != NULL)
2028 {
2029 /* Add one to avoid a zero size. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02002030 gap->ga_data = alloc(inbufcount + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 if (gap->ga_data != NULL)
2032 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
2033 gap->ga_len = inbufcount;
2034 }
2035 trash_input_buf();
2036 return (char_u *)gap;
2037}
2038
2039/*
2040 * Restore the input buffer with a pointer returned from get_input_buf().
2041 * The allocated memory is freed, this only works once!
2042 */
2043 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002044set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045{
2046 garray_T *gap = (garray_T *)p;
2047
2048 if (gap != NULL)
2049 {
2050 if (gap->ga_data != NULL)
2051 {
2052 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
2053 inbufcount = gap->ga_len;
2054 vim_free(gap->ga_data);
2055 }
2056 vim_free(gap);
2057 }
2058}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060/*
2061 * Add the given bytes to the input buffer
2062 * Special keys start with CSI. A real CSI must have been translated to
2063 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
2064 */
2065 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002066add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067{
2068 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
2069 return; /* Shouldn't ever happen! */
2070
2071#ifdef FEAT_HANGULIN
2072 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
2073 if ((len = hangul_input_process(s, len)) == 0)
2074 return;
2075#endif
2076
2077 while (len--)
2078 inbuf[inbufcount++] = *s++;
2079}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081/*
2082 * Add "str[len]" to the input buffer while escaping CSI bytes.
2083 */
2084 void
2085add_to_input_buf_csi(char_u *str, int len)
2086{
2087 int i;
2088 char_u buf[2];
2089
2090 for (i = 0; i < len; ++i)
2091 {
2092 add_to_input_buf(str + i, 1);
2093 if (str[i] == CSI)
2094 {
2095 /* Turn CSI into K_CSI. */
2096 buf[0] = KS_EXTRA;
2097 buf[1] = (int)KE_CSI;
2098 add_to_input_buf(buf, 2);
2099 }
2100 }
2101}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102
2103#if defined(FEAT_HANGULIN) || defined(PROTO)
2104 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002105push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002107 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002108 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002109
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002110 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002111 tmpbuf = hangul_string_convert(s, &len);
2112 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002113 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002114
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002115 for (; len--; inp++)
2116 {
2117 inbuf[inbufcount++] = *inp;
2118 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01002119 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002120 /* Turn CSI into K_CSI. */
2121 inbuf[inbufcount++] = KS_EXTRA;
2122 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01002123 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01002124 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002125 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126}
2127#endif
2128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129/* Remove everything from the input buffer. Called when ^C is found */
2130 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002131trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132{
2133 inbufcount = 0;
2134}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135
2136/*
2137 * Read as much data from the input buffer as possible up to maxlen, and store
2138 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 */
2140 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002141read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142{
2143 if (inbufcount == 0) /* if the buffer is empty, fill it */
2144 fill_input_buf(TRUE);
2145 if (maxlen > inbufcount)
2146 maxlen = inbufcount;
2147 mch_memmove(buf, inbuf, (size_t)maxlen);
2148 inbufcount -= maxlen;
2149 if (inbufcount)
2150 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
2151 return (int)maxlen;
2152}
2153
2154 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002155fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
Bram Moolenaard0573012017-10-28 21:11:06 +02002157#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 int len;
2159 int try;
2160 static int did_read_something = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 static char_u *rest = NULL; /* unconverted rest of previous read */
2162 static int restlen = 0;
2163 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164#endif
2165
2166#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002167 if (gui.in_use
2168# ifdef NO_CONSOLE_INPUT
2169 /* Don't use the GUI input when the window hasn't been opened yet.
2170 * We get here from ui_inchar() when we should try reading from stdin. */
2171 && !no_console_input()
2172# endif
2173 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
2175 gui_mch_update();
2176 return;
2177 }
2178#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002179#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 if (vim_is_input_buf_full())
2181 return;
2182 /*
2183 * Fill_input_buf() is only called when we really need a character.
2184 * If we can't get any, but there is some in the buffer, just return.
2185 * If we can't get any, and there isn't any in the buffer, we give up and
2186 * exit Vim.
2187 */
2188# ifdef __BEOS__
2189 /*
2190 * On the BeBox version (for now), all input is secretly performed within
2191 * beos_select() which is called from RealWaitForChar().
2192 */
2193 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2194 ;
2195 len = inbufcount;
2196 inbufcount = 0;
2197# else
2198
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 if (rest != NULL)
2200 {
2201 /* Use remainder of previous call, starts with an invalid character
2202 * that may become valid when reading more. */
2203 if (restlen > INBUFLEN - inbufcount)
2204 unconverted = INBUFLEN - inbufcount;
2205 else
2206 unconverted = restlen;
2207 mch_memmove(inbuf + inbufcount, rest, unconverted);
2208 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002209 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 else
2211 {
2212 restlen -= unconverted;
2213 mch_memmove(rest, rest + unconverted, restlen);
2214 }
2215 inbufcount += unconverted;
2216 }
2217 else
2218 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219
2220 len = 0; /* to avoid gcc warning */
2221 for (try = 0; try < 100; ++try)
2222 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002223 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002224 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002225# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002226 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002227# else
2228 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002230
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 if (len > 0 || got_int)
2232 break;
2233 /*
2234 * If reading stdin results in an error, continue reading stderr.
2235 * This helps when using "foo | xargs vim".
2236 */
2237 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2238 {
2239 int m = cur_tmode;
2240
2241 /* We probably set the wrong file descriptor to raw mode. Switch
2242 * back to cooked mode, use another descriptor and set the mode to
2243 * what it was. */
2244 settmode(TMODE_COOK);
2245#ifdef HAVE_DUP
2246 /* Use stderr for stdin, also works for shell commands. */
2247 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002248 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249#else
2250 read_cmd_fd = 2; /* read from stderr instead of stdin */
2251#endif
2252 settmode(m);
2253 }
2254 if (!exit_on_error)
2255 return;
2256 }
2257# endif
2258 if (len <= 0 && !got_int)
2259 read_error_exit();
2260 if (len > 0)
2261 did_read_something = TRUE;
2262 if (got_int)
2263 {
2264 /* Interrupted, pretend a CTRL-C was typed. */
2265 inbuf[0] = 3;
2266 inbufcount = 1;
2267 }
2268 else
2269 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 /*
2271 * May perform conversion on the input characters.
2272 * Include the unconverted rest of the previous call.
2273 * If there is an incomplete char at the end it is kept for the next
2274 * time, reading more bytes should make conversion possible.
2275 * Don't do this in the unlikely event that the input buffer is too
2276 * small ("rest" still contains more bytes).
2277 */
2278 if (input_conv.vc_type != CONV_NONE)
2279 {
2280 inbufcount -= unconverted;
2281 len = convert_input_safe(inbuf + inbufcount,
2282 len + unconverted, INBUFLEN - inbufcount,
2283 rest == NULL ? &rest : NULL, &restlen);
2284 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 while (len-- > 0)
2286 {
2287 /*
2288 * if a CTRL-C was typed, remove it from the buffer and set got_int
2289 */
2290 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2291 {
2292 /* remove everything typed before the CTRL-C */
2293 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2294 inbufcount = 0;
2295 got_int = TRUE;
2296 }
2297 ++inbufcount;
2298 }
2299 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002300#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002302#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304/*
2305 * Exit because of an input read error.
2306 */
2307 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002308read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309{
2310 if (silent_mode) /* Normal way to exit for "ex -s" */
2311 getout(0);
2312 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2313 preserve_exit();
2314}
2315
2316#if defined(CURSOR_SHAPE) || defined(PROTO)
2317/*
2318 * May update the shape of the cursor.
2319 */
2320 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002321ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322{
2323# ifdef FEAT_GUI
2324 if (gui.in_use)
2325 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002326 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002328 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002329
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330# ifdef MCH_CURSOR_SHAPE
2331 mch_update_cursor();
2332# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002333
2334# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002335 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002338
2339 void
2340ui_cursor_shape(void)
2341{
2342 ui_cursor_shape_forced(FALSE);
2343}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344#endif
2345
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346/*
2347 * Check bounds for column number
2348 */
2349 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002350check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351{
2352 if (col < 0)
2353 return 0;
2354 if (col >= (int)screen_Columns)
2355 return (int)screen_Columns - 1;
2356 return col;
2357}
2358
2359/*
2360 * Check bounds for row number
2361 */
2362 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002363check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364{
2365 if (row < 0)
2366 return 0;
2367 if (row >= (int)screen_Rows)
2368 return (int)screen_Rows - 1;
2369 return row;
2370}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371
2372/*
2373 * Stuff for the X clipboard. Shared between VMS and Unix.
2374 */
2375
2376#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2377# include <X11/Xatom.h>
2378# include <X11/Intrinsic.h>
2379
2380/*
2381 * Open the application context (if it hasn't been opened yet).
2382 * Used for Motif and Athena GUI and the xterm clipboard.
2383 */
2384 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002385open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386{
2387 if (app_context == NULL)
2388 {
2389 XtToolkitInitialize();
2390 app_context = XtCreateApplicationContext();
2391 }
2392}
2393
2394static Atom vim_atom; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002396static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397static Atom compound_text_atom;
2398static Atom text_atom;
2399static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002400static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
2402 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002403x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404{
2405 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002407 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2409 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002410 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002412 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2413 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414}
2415
2416/*
2417 * X Selection stuff, for cutting and pasting text to other windows.
2418 */
2419
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002420static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2421static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2422static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002423
2424/*
2425 * Property callback to get a timestamp for XtOwnSelection.
2426 */
2427 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002428clip_x11_timestamp_cb(
2429 Widget w,
2430 XtPointer n UNUSED,
2431 XEvent *event,
2432 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002433{
2434 Atom actual_type;
2435 int format;
2436 unsigned long nitems, bytes_after;
2437 unsigned char *prop=NULL;
2438 XPropertyEvent *xproperty=&event->xproperty;
2439
2440 /* Must be a property notify, state can't be Delete (True), has to be
2441 * one of the supported selection types. */
2442 if (event->type != PropertyNotify || xproperty->state
2443 || (xproperty->atom != clip_star.sel_atom
2444 && xproperty->atom != clip_plus.sel_atom))
2445 return;
2446
2447 if (XGetWindowProperty(xproperty->display, xproperty->window,
2448 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2449 &nitems, &bytes_after, &prop))
2450 return;
2451
2452 if (prop)
2453 XFree(prop);
2454
2455 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2456 if (actual_type != timestamp_atom || format != 32)
2457 return;
2458
2459 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002460 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2461 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002462 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002463 {
2464 /* Set the "owned" flag now, there may have been a call to
2465 * lose_ownership_cb in between. */
2466 if (xproperty->atom == clip_plus.sel_atom)
2467 clip_plus.owned = TRUE;
2468 else
2469 clip_star.owned = TRUE;
2470 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002471}
2472
2473 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002474x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002475{
2476 XtAddEventHandler(w, PropertyChangeMask, False,
2477 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2478}
2479
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002481clip_x11_request_selection_cb(
2482 Widget w UNUSED,
2483 XtPointer success,
2484 Atom *sel_atom,
2485 Atom *type,
2486 XtPointer value,
2487 long_u *length,
2488 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002490 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 long_u len;
2492 char_u *p;
2493 char **text_list = NULL;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002494 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496
2497 if (*sel_atom == clip_plus.sel_atom)
2498 cbd = &clip_plus;
2499 else
2500 cbd = &clip_star;
2501
2502 if (value == NULL || *length == 0)
2503 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002504 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 *(int *)success = FALSE;
2506 return;
2507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 p = (char_u *)value;
2509 len = *length;
2510 if (*type == vim_atom)
2511 {
2512 motion_type = *p++;
2513 len--;
2514 }
2515
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 else if (*type == vimenc_atom)
2517 {
2518 char_u *enc;
2519 vimconv_T conv;
2520 int convlen;
2521
2522 motion_type = *p++;
2523 --len;
2524
2525 enc = p;
2526 p += STRLEN(p) + 1;
2527 len -= p - enc;
2528
2529 /* If the encoding of the text is different from 'encoding', attempt
2530 * converting it. */
2531 conv.vc_type = CONV_NONE;
2532 convert_setup(&conv, enc, p_enc);
2533 if (conv.vc_type != CONV_NONE)
2534 {
2535 convlen = len; /* Need to use an int here. */
2536 tmpbuf = string_convert(&conv, p, &convlen);
2537 len = convlen;
2538 if (tmpbuf != NULL)
2539 p = tmpbuf;
2540 convert_setup(&conv, NULL, NULL);
2541 }
2542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002544 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002545 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002546 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 {
2548 XTextProperty text_prop;
2549 int n_text = 0;
2550 int status;
2551
2552 text_prop.value = (unsigned char *)value;
2553 text_prop.encoding = *type;
2554 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002555 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002556#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002557 if (*type == utf8_atom)
2558 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2559 &text_list, &n_text);
2560 else
2561#endif
2562 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 &text_list, &n_text);
2564 if (status != Success || n_text < 1)
2565 {
2566 *(int *)success = FALSE;
2567 return;
2568 }
2569 p = (char_u *)text_list[0];
2570 len = STRLEN(p);
2571 }
2572 clip_yank_selection(motion_type, p, (long)len, cbd);
2573
2574 if (text_list != NULL)
2575 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 XtFree((char *)value);
2578 *(int *)success = TRUE;
2579}
2580
2581 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002582clip_x11_request_selection(
2583 Widget myShell,
2584 Display *dpy,
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002585 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587 XEvent event;
2588 Atom type;
2589 static int success;
2590 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002591 time_t start_time;
2592 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002594 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
2596 switch (i)
2597 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002600 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002601 case 3: type = compound_text_atom; break;
2602 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 default: type = XA_STRING;
2604 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002605 if (type == utf8_atom
2606# if defined(X_HAVE_UTF8_STRING)
2607 && !enc_utf8
2608# endif
2609 )
2610 /* Only request utf-8 when 'encoding' is utf8 and
2611 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002612 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002613 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2615 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2616
2617 /* Make sure the request for the selection goes out before waiting for
2618 * a response. */
2619 XFlush(dpy);
2620
2621 /*
2622 * Wait for result of selection request, otherwise if we type more
2623 * characters, then they will appear before the one that requested the
2624 * paste! Don't worry, we will catch up with any other events later.
2625 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002626 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002627 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002629 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2630 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2631 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002632 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002633 /* This is where clip_x11_request_selection_cb() should be
2634 * called. It may actually happen a bit later, so we loop
2635 * until "success" changes.
2636 * We may get a SelectionRequest here and if we don't handle
2637 * it we hang. KDE klipper does this, for example.
2638 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002639 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002640 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642
Bram Moolenaar89417b92008-09-07 19:48:53 +00002643 /* Time out after 2 to 3 seconds to avoid that we hang when the
2644 * other process doesn't respond. Note that the SelectionNotify
2645 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002646 * to life and the text gets inserted unexpectedly. Don't know
2647 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002648 if (time(NULL) > start_time + 2)
2649 {
2650 timed_out = TRUE;
2651 break;
2652 }
2653
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 /* Do we need this? Probably not. */
2655 XSync(dpy, False);
2656
Bram Moolenaar89417b92008-09-07 19:48:53 +00002657 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2658 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 }
2660
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002661 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002663
2664 /* don't do a retry with another type after timing out, otherwise we
2665 * hang for 15 seconds. */
2666 if (timed_out)
2667 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 }
2669
2670 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002671 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672}
2673
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002675clip_x11_convert_selection_cb(
2676 Widget w UNUSED,
2677 Atom *sel_atom,
2678 Atom *target,
2679 Atom *type,
2680 XtPointer *value,
2681 long_u *length,
2682 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002684 static char_u *save_result = NULL;
2685 static long_u save_length = 0;
2686 char_u *string;
2687 int motion_type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002688 Clipboard_T *cbd;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002689 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690
2691 if (*sel_atom == clip_plus.sel_atom)
2692 cbd = &clip_plus;
2693 else
2694 cbd = &clip_star;
2695
2696 if (!cbd->owned)
2697 return False; /* Shouldn't ever happen */
2698
2699 /* requestor wants to know what target types we support */
2700 if (*target == targets_atom)
2701 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002702 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 *value = (XtPointer)array;
2705 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002709 if (enc_utf8)
2710 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002711 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 array[i++] = text_atom;
2713 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002714
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 *type = XA_ATOM;
2716 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2717 * crashes on 64 bit machines. (Peter Derr) */
2718 *format = 32;
2719 *length = i;
2720 return True;
2721 }
2722
2723 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002725 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 && *target != vim_atom
2727 && *target != text_atom
2728 && *target != compound_text_atom)
2729 return False;
2730
2731 clip_get_selection(cbd);
2732 motion_type = clip_convert_selection(&string, length, cbd);
2733 if (motion_type < 0)
2734 return False;
2735
2736 /* For our own format, the first byte contains the motion type */
2737 if (*target == vim_atom)
2738 (*length)++;
2739
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 /* Our own format with encoding: motion 'encoding' NUL text */
2741 if (*target == vimenc_atom)
2742 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002744 if (save_length < *length || save_length / 2 >= *length)
2745 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2746 else
2747 *value = save_result;
2748 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 {
2750 vim_free(string);
2751 return False;
2752 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002753 save_result = (char_u *)*value;
2754 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002756 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002758 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002759 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002761 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 {
2763 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002764 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002765 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
2767 /* create NUL terminated string which XmbTextListToTextProperty wants */
2768 mch_memmove(string_nt, string, (size_t)*length);
2769 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002770 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2771 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002772 if (conv_result != Success)
2773 {
2774 vim_free(string);
2775 return False;
2776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 *value = (XtPointer)(text_prop.value); /* from plain text */
2778 *length = text_prop.nitems;
2779 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002780 XtFree((char *)save_result);
2781 save_result = (char_u *)*value;
2782 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 else if (*target == vimenc_atom)
2785 {
2786 int l = STRLEN(p_enc);
2787
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002788 save_result[0] = motion_type;
2789 STRCPY(save_result + 1, p_enc);
2790 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 *type = vimenc_atom;
2792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 else
2794 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002795 save_result[0] = motion_type;
2796 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 *type = vim_atom;
2798 }
2799 *format = 8; /* 8 bits per char */
2800 vim_free(string);
2801 return True;
2802}
2803
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002805clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806{
2807 if (*sel_atom == clip_plus.sel_atom)
2808 clip_lose_selection(&clip_plus);
2809 else
2810 clip_lose_selection(&clip_star);
2811}
2812
2813 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002814clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002816 XtDisownSelection(myShell, cbd->sel_atom,
2817 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818}
2819
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002820 static void
2821clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2822{
2823 /* To prevent automatically freeing the selection value. */
2824}
2825
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002827clip_x11_own_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002829 /* When using the GUI we have proper timestamps, use the one of the last
2830 * event. When in the console we don't get events (the terminal gets
2831 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2832 * be called with the current timestamp. */
2833#ifdef FEAT_GUI
2834 if (gui.in_use)
2835 {
2836 if (XtOwnSelection(myShell, cbd->sel_atom,
2837 XtLastTimestampProcessed(XtDisplay(myShell)),
2838 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002839 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002840 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002841 }
2842 else
2843#endif
2844 {
2845 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2846 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002847 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002848 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002849 /* Flush is required in a terminal as nothing else is doing it. */
2850 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 return OK;
2852}
2853
2854/*
2855 * Send the current selection to the clipboard. Do nothing for X because we
2856 * will fill in the selection only when requested by another app.
2857 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002859clip_x11_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860{
2861}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002862
Bram Moolenaar113e1072019-01-20 15:30:40 +01002863#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2864 || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002865 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002866clip_x11_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002867{
2868 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2869}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002873#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2874 || defined(FEAT_GUI_GTK) || defined(PROTO)
2875/*
2876 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2877 */
2878 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002879yank_cut_buffer0(Display *dpy, Clipboard_T *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002880{
2881 int nbytes = 0;
2882 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2883
2884 if (nbytes > 0)
2885 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002886 int done = FALSE;
2887
2888 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2889 * using a multi-byte encoding. Conversion between two 8-bit
2890 * character sets usually fails and the text might actually be in
2891 * 'enc' anyway. */
2892 if (has_mbyte)
2893 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002894 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002895 vimconv_T vc;
2896
2897 vc.vc_type = CONV_NONE;
2898 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2899 {
2900 conv_buf = string_convert(&vc, buffer, &nbytes);
2901 if (conv_buf != NULL)
2902 {
2903 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2904 vim_free(conv_buf);
2905 done = TRUE;
2906 }
2907 convert_setup(&vc, NULL, NULL);
2908 }
2909 }
2910 if (!done) /* use the text without conversion */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002911 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2912 XFree((void *)buffer);
2913 if (p_verbose > 0)
2914 {
2915 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002916 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002917 verbose_leave();
2918 }
2919 }
2920}
2921#endif
2922
Bram Moolenaar4f974752019-02-17 17:44:42 +01002923#if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924/*
2925 * Called when focus changed. Used for the GUI or for systems where this can
2926 * be done in the console (Win32).
2927 */
2928 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002929ui_focus_change(
2930 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931{
2932 static time_t last_time = (time_t)0;
2933 int need_redraw = FALSE;
2934
2935 /* When activated: Check if any file was modified outside of Vim.
2936 * Only do this when not done within the last two seconds (could get
2937 * several events in a row). */
2938 if (in_focus && last_time + 2 < time(NULL))
2939 {
2940 need_redraw = check_timestamps(
2941# ifdef FEAT_GUI
2942 gui.in_use
2943# else
2944 FALSE
2945# endif
2946 );
2947 last_time = time(NULL);
2948 }
2949
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 /*
2951 * Fire the focus gained/lost autocommand.
2952 */
2953 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
2954 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955
2956 if (need_redraw)
2957 {
2958 /* Something was executed, make sure the cursor is put back where it
2959 * belongs. */
2960 need_wait_return = FALSE;
2961
2962 if (State & CMDLINE)
2963 redrawcmdline();
2964 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
2965 || State == EXTERNCMD || State == CONFIRM || exmode_active)
2966 repeat_message();
2967 else if ((State & NORMAL) || (State & INSERT))
2968 {
2969 if (must_redraw != 0)
2970 update_screen(0);
2971 setcursor();
2972 }
2973 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002974 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975# ifdef FEAT_GUI
2976 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978# endif
2979 }
2980#ifdef FEAT_TITLE
2981 /* File may have been changed from 'readonly' to 'noreadonly' */
2982 if (need_maketitle)
2983 maketitle();
2984#endif
2985}
2986#endif
2987
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002988#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989/*
2990 * Save current Input Method status to specified place.
2991 */
2992 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002993im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994{
2995 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
2996 * disabled then (but might start later).
2997 * Also don't save when inside a mapping, vgetc_im_active has not been set
2998 * then.
2999 * And don't save when the keys were stuffed (e.g., for a "." command).
3000 * And don't save when the GUI is running but our window doesn't have
3001 * input focus (e.g., when a find dialog is open). */
3002 if (!p_imdisable && KeyTyped && !KeyStuffed
3003# ifdef FEAT_XIM
3004 && xic != NULL
3005# endif
3006# ifdef FEAT_GUI
3007 && (!gui.in_use || gui.in_focus)
3008# endif
3009 )
3010 {
3011 /* Do save when IM is on, or IM is off and saved status is on. */
3012 if (vgetc_im_active)
3013 *psave = B_IMODE_IM;
3014 else if (*psave == B_IMODE_IM)
3015 *psave = B_IMODE_NONE;
3016 }
3017}
3018#endif