blob: d3a655cbab8388ab43865ed87e6a24e23185612a [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{
535#ifdef FEAT_GUI
536 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100537 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 else
539#endif
540 mch_delay(msec, ignoreinput);
541}
542
543/*
544 * If the machine has job control, use it to suspend the program,
545 * otherwise fake it by starting a new shell.
546 * When running the GUI iconify the window.
547 */
548 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100549ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550{
551#ifdef FEAT_GUI
552 if (gui.in_use)
553 {
554 gui_mch_iconify();
555 return;
556 }
557#endif
558 mch_suspend();
559}
560
561#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
562/*
563 * When the OS can't really suspend, call this function to start a shell.
564 * This is never called in the GUI.
565 */
566 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100567suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568{
569 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100570 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 else
572 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100573 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 do_shell(NULL, 0);
575 }
576}
577#endif
578
579/*
580 * Try to get the current Vim shell size. Put the result in Rows and Columns.
581 * Use the new sizes as defaults for 'columns' and 'lines'.
582 * Return OK when size could be determined, FAIL otherwise.
583 */
584 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100585ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586{
587 int retval;
588
589#ifdef FEAT_GUI
590 if (gui.in_use)
591 retval = gui_get_shellsize();
592 else
593#endif
594 retval = mch_get_shellsize();
595
596 check_shellsize();
597
598 /* adjust the default for 'lines' and 'columns' */
599 if (retval == OK)
600 {
601 set_number_default("lines", Rows);
602 set_number_default("columns", Columns);
603 }
604 return retval;
605}
606
607/*
608 * Set the size of the Vim shell according to Rows and Columns, if possible.
609 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
610 * new size. If this is not possible, it will adjust Rows and Columns.
611 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100613ui_set_shellsize(
614 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615{
616#ifdef FEAT_GUI
617 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200618 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 else
620#endif
621 mch_set_shellsize();
622}
623
624/*
625 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
626 * region.
627 */
628 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100629ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630{
631 if (full_screen && !exiting)
632 {
633#ifdef FEAT_GUI
634 if (gui.in_use)
635 gui_new_shellsize();
636 else
637#endif
638 mch_new_shellsize();
639 }
640}
641
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200642#if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200643 && (defined(FEAT_GUI) \
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200644 || defined(MSWIN) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200645 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200646 || defined(PROTO)
647/*
648 * Get the window position in pixels, if possible.
649 * Return FAIL when not possible.
650 */
651 int
652ui_get_winpos(int *x, int *y, varnumber_T timeout)
653{
654# ifdef FEAT_GUI
655 if (gui.in_use)
656 return gui_mch_get_winpos(x, y);
657# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200658# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200659 return mch_get_winpos(x, y);
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200660# else
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200661# if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)
662 return term_get_winpos(x, y, timeout);
663# else
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200664 return FAIL;
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200665# endif
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200666# endif
667}
668#endif
669
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100671ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200673 ui_breakcheck_force(FALSE);
674}
675
676/*
677 * When "force" is true also check when the terminal is not in raw mode.
678 * This is useful to read input on channels.
679 */
680 void
681ui_breakcheck_force(int force)
682{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100683 static int recursive = FALSE;
684 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100685
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100686 // We could be called recursively if stderr is redirected, calling
687 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
688 // calls vgetorpeek() which calls ui_breakcheck() again.
689 if (recursive)
690 return;
691 recursive = TRUE;
692
693 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100694 ++updating_screen;
695
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696#ifdef FEAT_GUI
697 if (gui.in_use)
698 gui_mch_update();
699 else
700#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200701 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100702
Bram Moolenaar42335f52018-09-13 15:33:43 +0200703 if (save_updating_screen)
704 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200705 else
Bram Moolenaar68a4b042019-05-29 22:28:29 +0200706 after_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100707
708 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709}
710
711/*****************************************************************************
712 * Functions for copying and pasting text between applications.
713 * This is always included in a GUI version, but may also be included when the
714 * clipboard and mouse is available to a terminal version such as xterm.
715 * Note: there are some more functions in ops.c that handle selection stuff.
716 *
717 * Also note that the majority of functions here deal with the X 'primary'
718 * (visible - for Visual mode use) selection, and only that. There are no
719 * versions of these for the 'clipboard' selection, as Visual mode has no use
720 * for them.
721 */
722
723#if defined(FEAT_CLIPBOARD) || defined(PROTO)
724
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200725static void clip_gen_lose_selection(Clipboard_T *cbd);
726static int clip_gen_own_selection(Clipboard_T *cbd);
727#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)
728static int clip_x11_owner_exists(Clipboard_T *cbd);
729#endif
730
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731/*
732 * Selection stuff using Visual mode, for cutting and pasting text to other
733 * windows.
734 */
735
736/*
737 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
738 * is included, but the clipboard can not be used, or TRUE if the clipboard can
739 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
740 * the GUI starts.
741 */
742 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100743clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744{
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200745 Clipboard_T *cb;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746
747 cb = &clip_star;
748 for (;;)
749 {
750 cb->available = can_use;
751 cb->owned = FALSE;
752 cb->start.lnum = 0;
753 cb->start.col = 0;
754 cb->end.lnum = 0;
755 cb->end.col = 0;
756 cb->state = SELECT_CLEARED;
757
758 if (cb == &clip_plus)
759 break;
760 cb = &clip_plus;
761 }
762}
763
764/*
765 * Check whether the VIsual area has changed, and if so try to become the owner
766 * of the selection, and free any old converted selection we may still have
767 * lying around. If the VIsual mode has ended, make a copy of what was
768 * selected so we can still give it to others. Will probably have to make sure
769 * this is called whenever VIsual mode is ended.
770 */
771 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200772clip_update_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200774 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775
776 /* If visual mode is only due to a redo command ("."), then ignore it */
777 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
778 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100779 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 {
781 start = VIsual;
782 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000784 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 }
786 else
787 {
788 start = curwin->w_cursor;
789 end = VIsual;
790 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100791 if (!EQUAL_POS(clip->start, start)
792 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200793 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200795 clip_clear_selection(clip);
796 clip->start = start;
797 clip->end = end;
798 clip->vmode = VIsual_mode;
799 clip_free_selection(clip);
800 clip_own_selection(clip);
801 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 }
803 }
804}
805
806 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200807clip_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808{
809 /*
810 * Also want to check somehow that we are reading from the keyboard rather
811 * than a mapping etc.
812 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200814 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200815 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200816 if (cbd->available)
817 {
818 int was_owned = cbd->owned;
819
820 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200821 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000823 /* May have to show a different kind of highlighting for the
824 * selected area. There is no specific redraw command for this,
825 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000827 && (get_real_state() == VISUAL
828 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200829 && (cbd == &clip_star ? clip_isautosel_star()
830 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100831 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 redraw_curbuf_later(INVERTED_ALL);
833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200835#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200836 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200837 if (!cbd->owned && cbd->available)
838 cbd->owned = (clip_gen_own_selection(cbd) == OK);
839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840}
841
842 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200843clip_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844{
845#ifdef FEAT_X11
846 int was_owned = cbd->owned;
847#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200848 int visual_selection = FALSE;
849
850 if (cbd == &clip_star || cbd == &clip_plus)
851 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852
853 clip_free_selection(cbd);
854 cbd->owned = FALSE;
855 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200856 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 clip_gen_lose_selection(cbd);
858#ifdef FEAT_X11
859 if (visual_selection)
860 {
861 /* May have to show a different kind of highlighting for the selected
862 * area. There is no specific redraw command for this, just redraw all
863 * windows on the current buffer. */
864 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000865 && (get_real_state() == VISUAL
866 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200867 && (cbd == &clip_star ?
868 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100869 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 {
871 update_curbuf(INVERTED_ALL);
872 setcursor();
873 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100874 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 }
876 }
877#endif
878}
879
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200880 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200881clip_copy_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200883 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200885 clip_update_selection(clip);
886 clip_free_selection(clip);
887 clip_own_selection(clip);
888 if (clip->owned)
889 clip_get_selection(clip);
890 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 }
892}
893
894/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200895 * Save and restore clip_unnamed before doing possibly many changes. This
896 * prevents accessing the clipboard very often which might slow down Vim
897 * considerably.
898 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100899static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200900static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
901static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200902
903/*
904 * Save clip_unnamed and reset it.
905 */
906 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100907start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200908{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100909 if (++global_change_count > 1)
910 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200911 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100912 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200913
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100914 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200915 {
916 clip_unnamed = FALSE;
917 clip_did_set_selection = FALSE;
918 }
919}
920
921/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200922 * Return TRUE if setting the clipboard was postponed, it already contains the
923 * right text.
924 */
925 int
926is_clipboard_needs_update()
927{
928 return clipboard_needs_update;
929}
930
931/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200932 * Restore clip_unnamed and set the selection when needed.
933 */
934 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100935end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200936{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100937 if (--global_change_count > 0)
938 /* recursive */
939 return;
940 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200941 {
942 clip_did_set_selection = TRUE;
943 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100944 clip_unnamed_saved = FALSE;
945 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200946 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100947 /* only store something in the clipboard,
948 * if we have yanked anything to it */
949 if (clip_unnamed & CLIP_UNNAMED)
950 {
951 clip_own_selection(&clip_star);
952 clip_gen_set_selection(&clip_star);
953 }
954 if (clip_unnamed & CLIP_UNNAMED_PLUS)
955 {
956 clip_own_selection(&clip_plus);
957 clip_gen_set_selection(&clip_plus);
958 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200959 }
960 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200961 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200962}
963
964/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 * Called when Visual mode is ended: update the selection.
966 */
967 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100968clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200970 if (clip_isautosel_star())
971 clip_copy_selection(&clip_star);
972 if (clip_isautosel_plus())
973 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974}
975
976/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200977 * Return TRUE if automatic selection of Visual area is desired for the *
978 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 */
980 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100981clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982{
983 return (
984#ifdef FEAT_GUI
985 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
986#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200987 clip_autoselect_star);
988}
989
990/*
991 * Return TRUE if automatic selection of Visual area is desired for the +
992 * register.
993 */
994 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100995clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200996{
997 return (
998#ifdef FEAT_GUI
999 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
1000#endif
1001 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002}
1003
1004
1005/*
1006 * Stuff for general mouse selection, without using Visual mode.
1007 */
1008
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001009static void clip_invert_area(Clipboard_T *, int, int, int, int, int how);
1010static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001011static void clip_get_word_boundaries(Clipboard_T *, int, int);
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001012static int clip_get_line_end(Clipboard_T *, int);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001013static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001015// "how" flags for clip_invert_area()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016#define CLIP_CLEAR 1
1017#define CLIP_SET 2
1018#define CLIP_TOGGLE 3
1019
1020/*
1021 * Start, continue or end a modeless selection. Used when editing the
Bram Moolenaarb53fb312019-06-13 23:59:52 +02001022 * command-line, in the cmdline window and when the mouse is in a popup window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 */
1024 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001025clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026{
1027 int repeat;
1028
1029 repeat = ((clip_star.mode == SELECT_MODE_CHAR
1030 || clip_star.mode == SELECT_MODE_LINE)
1031 && (mod_mask & MOD_MASK_2CLICK))
1032 || (clip_star.mode == SELECT_MODE_WORD
1033 && (mod_mask & MOD_MASK_3CLICK));
1034 if (is_click && button == MOUSE_RIGHT)
1035 {
1036 /* Right mouse button: If there was no selection, start one.
1037 * Otherwise extend the existing selection. */
1038 if (clip_star.state == SELECT_CLEARED)
1039 clip_start_selection(mouse_col, mouse_row, FALSE);
1040 clip_process_selection(button, mouse_col, mouse_row, repeat);
1041 }
1042 else if (is_click)
1043 clip_start_selection(mouse_col, mouse_row, repeat);
1044 else if (is_drag)
1045 {
1046 /* Don't try extending a selection if there isn't one. Happens when
1047 * button-down is in the cmdline and them moving mouse upwards. */
1048 if (clip_star.state != SELECT_CLEARED)
1049 clip_process_selection(button, mouse_col, mouse_row, repeat);
1050 }
1051 else /* release */
1052 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1053}
1054
1055/*
1056 * Compare two screen positions ala strcmp()
1057 */
1058 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001059clip_compare_pos(
1060 int row1,
1061 int col1,
1062 int row2,
1063 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
1065 if (row1 > row2) return(1);
1066 if (row1 < row2) return(-1);
1067 if (col1 > col2) return(1);
1068 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001069 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070}
1071
1072/*
1073 * Start the selection
1074 */
1075 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001076clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001078 Clipboard_T *cb = &clip_star;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001079#ifdef FEAT_TEXT_PROP
1080 win_T *wp;
1081 int row_cp = row;
1082 int col_cp = col;
1083
1084 wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP);
1085 if (wp != NULL && WIN_IS_POPUP(wp)
1086 && popup_is_in_scrollbar(wp, row_cp, col_cp))
1087 // click or double click in scrollbar does not start a selection
1088 return;
1089#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090
1091 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001092 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
1094 row = check_row(row);
1095 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097
1098 cb->start.lnum = row;
1099 cb->start.col = col;
1100 cb->end = cb->start;
1101 cb->origin_row = (short_u)cb->start.lnum;
1102 cb->state = SELECT_IN_PROGRESS;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001103#ifdef FEAT_TEXT_PROP
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001104 if (wp != NULL && WIN_IS_POPUP(wp))
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001105 {
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001106 // Click in a popup window restricts selection to that window,
1107 // excluding the border.
1108 cb->min_col = wp->w_wincol + wp->w_popup_border[3];
Bram Moolenaar4dd751b2019-08-17 19:10:53 +02001109 cb->max_col = wp->w_wincol + popup_width(wp)
1110 - wp->w_popup_border[1] - wp->w_has_scrollbar;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001111 if (cb->max_col > screen_Columns)
1112 cb->max_col = screen_Columns;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001113 cb->min_row = wp->w_winrow + wp->w_popup_border[0];
1114 cb->max_row = wp->w_winrow + popup_height(wp) - 1
1115 - wp->w_popup_border[2];
1116 }
1117 else
1118 {
1119 cb->min_col = 0;
1120 cb->max_col = screen_Columns;
1121 cb->min_row = 0;
1122 cb->max_row = screen_Rows;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001123 }
1124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
1126 if (repeated_click)
1127 {
1128 if (++cb->mode > SELECT_MODE_LINE)
1129 cb->mode = SELECT_MODE_CHAR;
1130 }
1131 else
1132 cb->mode = SELECT_MODE_CHAR;
1133
1134#ifdef FEAT_GUI
1135 /* clear the cursor until the selection is made */
1136 if (gui.in_use)
1137 gui_undraw_cursor();
1138#endif
1139
1140 switch (cb->mode)
1141 {
1142 case SELECT_MODE_CHAR:
1143 cb->origin_start_col = cb->start.col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001144 cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 break;
1146
1147 case SELECT_MODE_WORD:
1148 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1149 cb->origin_start_col = cb->word_start_col;
1150 cb->origin_end_col = cb->word_end_col;
1151
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001152 clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1154 cb->start.col = cb->word_start_col;
1155 cb->end.col = cb->word_end_col;
1156 break;
1157
1158 case SELECT_MODE_LINE:
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001159 clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 (int)Columns, CLIP_SET);
1161 cb->start.col = 0;
1162 cb->end.col = Columns;
1163 break;
1164 }
1165
1166 cb->prev = cb->start;
1167
1168#ifdef DEBUG_SELECTION
1169 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
1170#endif
1171}
1172
1173/*
1174 * Continue processing the selection
1175 */
1176 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001177clip_process_selection(
1178 int button,
1179 int col,
1180 int row,
1181 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001183 Clipboard_T *cb = &clip_star;
1184 int diff;
1185 int slen = 1; // cursor shape width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186
1187 if (button == MOUSE_RELEASE)
1188 {
Bram Moolenaar741ea172019-08-24 14:16:32 +02001189 if (cb->state != SELECT_IN_PROGRESS)
1190 return;
1191
1192 // Check to make sure we have something selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1194 {
1195#ifdef FEAT_GUI
1196 if (gui.in_use)
1197 gui_update_cursor(FALSE, FALSE);
1198#endif
1199 cb->state = SELECT_CLEARED;
1200 return;
1201 }
1202
1203#ifdef DEBUG_SELECTION
1204 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1205 cb->start.col, cb->end.lnum, cb->end.col);
1206#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001207 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 || (
1209#ifdef FEAT_GUI
1210 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1211#endif
1212 clip_autoselectml))
1213 clip_copy_modeless_selection(FALSE);
1214#ifdef FEAT_GUI
1215 if (gui.in_use)
1216 gui_update_cursor(FALSE, FALSE);
1217#endif
1218
1219 cb->state = SELECT_DONE;
1220 return;
1221 }
1222
1223 row = check_row(row);
1224 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1228 return;
1229
1230 /*
1231 * When extending the selection with the right mouse button, swap the
1232 * start and end if the position is before half the selection
1233 */
1234 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1235 {
1236 /*
1237 * If the click is before the start, or the click is inside the
1238 * selection and the start is the closest side, set the origin to the
1239 * end of the selection.
1240 */
1241 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1242 || (clip_compare_pos(row, col,
1243 (int)cb->end.lnum, cb->end.col) < 0
1244 && (((cb->start.lnum == cb->end.lnum
1245 && cb->end.col - col > col - cb->start.col))
1246 || ((diff = (cb->end.lnum - row) -
1247 (row - cb->start.lnum)) > 0
1248 || (diff == 0 && col < (int)(cb->start.col +
1249 cb->end.col) / 2)))))
1250 {
1251 cb->origin_row = (short_u)cb->end.lnum;
1252 cb->origin_start_col = cb->end.col - 1;
1253 cb->origin_end_col = cb->end.col;
1254 }
1255 else
1256 {
1257 cb->origin_row = (short_u)cb->start.lnum;
1258 cb->origin_start_col = cb->start.col;
1259 cb->origin_end_col = cb->start.col;
1260 }
1261 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1262 cb->mode = SELECT_MODE_CHAR;
1263 }
1264
1265 /* set state, for when using the right mouse button */
1266 cb->state = SELECT_IN_PROGRESS;
1267
1268#ifdef DEBUG_SELECTION
1269 printf("Selection extending to (%d,%d)\n", row, col);
1270#endif
1271
1272 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1273 cb->mode = SELECT_MODE_CHAR;
1274
1275 switch (cb->mode)
1276 {
1277 case SELECT_MODE_CHAR:
1278 /* If we're on a different line, find where the line ends */
1279 if (row != cb->prev.lnum)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001280 cb->word_end_col = clip_get_line_end(cb, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
1282 /* See if we are before or after the origin of the selection */
1283 if (clip_compare_pos(row, col, cb->origin_row,
1284 cb->origin_start_col) >= 0)
1285 {
1286 if (col >= (int)cb->word_end_col)
1287 clip_update_modeless_selection(cb, cb->origin_row,
1288 cb->origin_start_col, row, (int)Columns);
1289 else
1290 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 if (has_mbyte && mb_lefthalve(row, col))
1292 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 clip_update_modeless_selection(cb, cb->origin_row,
1294 cb->origin_start_col, row, col + slen);
1295 }
1296 }
1297 else
1298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (has_mbyte
1300 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1301 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 if (col >= (int)cb->word_end_col)
1303 clip_update_modeless_selection(cb, row, cb->word_end_col,
1304 cb->origin_row, cb->origin_start_col + slen);
1305 else
1306 clip_update_modeless_selection(cb, row, col,
1307 cb->origin_row, cb->origin_start_col + slen);
1308 }
1309 break;
1310
1311 case SELECT_MODE_WORD:
1312 /* If we are still within the same word, do nothing */
1313 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1314 && col < (int)cb->word_end_col && !repeated_click)
1315 return;
1316
1317 /* Get new word boundaries */
1318 clip_get_word_boundaries(cb, row, col);
1319
1320 /* Handle being after the origin point of selection */
1321 if (clip_compare_pos(row, col, cb->origin_row,
1322 cb->origin_start_col) >= 0)
1323 clip_update_modeless_selection(cb, cb->origin_row,
1324 cb->origin_start_col, row, cb->word_end_col);
1325 else
1326 clip_update_modeless_selection(cb, row, cb->word_start_col,
1327 cb->origin_row, cb->origin_end_col);
1328 break;
1329
1330 case SELECT_MODE_LINE:
1331 if (row == cb->prev.lnum && !repeated_click)
1332 return;
1333
1334 if (clip_compare_pos(row, col, cb->origin_row,
1335 cb->origin_start_col) >= 0)
1336 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1337 (int)Columns);
1338 else
1339 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1340 (int)Columns);
1341 break;
1342 }
1343
1344 cb->prev.lnum = row;
1345 cb->prev.col = col;
1346
1347#ifdef DEBUG_SELECTION
1348 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1349 cb->start.col, cb->end.lnum, cb->end.col);
1350#endif
1351}
1352
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353# if defined(FEAT_GUI) || defined(PROTO)
1354/*
1355 * Redraw part of the selection if character at "row,col" is inside of it.
1356 * Only used for the GUI.
1357 */
1358 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001359clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360{
1361 int start = col;
1362 int end = col + len;
1363
1364 if (clip_star.state != SELECT_CLEARED
1365 && row >= clip_star.start.lnum
1366 && row <= clip_star.end.lnum)
1367 {
1368 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1369 start = clip_star.start.col;
1370 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1371 end = clip_star.end.col;
1372 if (end > start)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001373 clip_invert_area(&clip_star, row, start, row, end, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 }
1375}
1376# endif
1377
1378/*
1379 * Called from outside to clear selected region from the display
1380 */
1381 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001382clip_clear_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001385 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 return;
1387
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001388 clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col,
1389 (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001390 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391}
1392
1393/*
1394 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1395 */
1396 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001397clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398{
1399 if (clip_star.state == SELECT_DONE
1400 && row2 >= clip_star.start.lnum
1401 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001402 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403}
1404
1405/*
1406 * Called before the screen is scrolled up or down. Adjusts the line numbers
1407 * of the selection. Call with big number when clearing the screen.
1408 */
1409 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001410clip_scroll_selection(
1411 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412{
1413 int lnum;
1414
1415 if (clip_star.state == SELECT_CLEARED)
1416 return;
1417
1418 lnum = clip_star.start.lnum - rows;
1419 if (lnum <= 0)
1420 clip_star.start.lnum = 0;
1421 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1422 clip_star.state = SELECT_CLEARED;
1423 else
1424 clip_star.start.lnum = lnum;
1425
1426 lnum = clip_star.end.lnum - rows;
1427 if (lnum < 0) /* scrolled off of the screen */
1428 clip_star.state = SELECT_CLEARED;
1429 else if (lnum >= screen_Rows)
1430 clip_star.end.lnum = screen_Rows - 1;
1431 else
1432 clip_star.end.lnum = lnum;
1433}
1434
1435/*
1436 * Invert a region of the display between a starting and ending row and column
1437 * Values for "how":
1438 * CLIP_CLEAR: undo inversion
1439 * CLIP_SET: set inversion
1440 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1441 * 0: invert (GUI only).
1442 */
1443 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001444clip_invert_area(
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001445 Clipboard_T *cbd,
1446 int row1,
1447 int col1,
1448 int row2,
1449 int col2,
1450 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451{
1452 int invert = FALSE;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001453 int max_col;
1454
1455#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001456 max_col = cbd->max_col - 1;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001457#else
1458 max_col = Columns - 1;
1459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460
1461 if (how == CLIP_SET)
1462 invert = TRUE;
1463
1464 /* Swap the from and to positions so the from is always before */
1465 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1466 {
1467 int tmp_row, tmp_col;
1468
1469 tmp_row = row1;
1470 tmp_col = col1;
1471 row1 = row2;
1472 col1 = col2;
1473 row2 = tmp_row;
1474 col2 = tmp_col;
1475 }
1476 else if (how == CLIP_TOGGLE)
1477 invert = TRUE;
1478
1479 /* If all on the same line, do it the easy way */
1480 if (row1 == row2)
1481 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001482 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 }
1484 else
1485 {
1486 /* Handle a piece of the first line */
1487 if (col1 > 0)
1488 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001489 clip_invert_rectangle(cbd, row1, col1, 1,
1490 (int)Columns - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 row1++;
1492 }
1493
1494 /* Handle a piece of the last line */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001495 if (col2 < max_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001497 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 row2--;
1499 }
1500
1501 /* Handle the rectangle thats left */
1502 if (row2 >= row1)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001503 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1,
1504 (int)Columns, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 }
1506}
1507
1508/*
1509 * Invert or un-invert a rectangle of the screen.
1510 * "invert" is true if the result is inverted.
1511 */
1512 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001513clip_invert_rectangle(
Bram Moolenaar405bb422019-06-21 00:12:29 +02001514 Clipboard_T *cbd UNUSED,
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001515 int row_arg,
1516 int col_arg,
1517 int height_arg,
1518 int width_arg,
1519 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520{
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001521 int row = row_arg;
1522 int col = col_arg;
1523 int height = height_arg;
1524 int width = width_arg;
1525
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001526#ifdef FEAT_TEXT_PROP
1527 // this goes on top of all popup windows
Bram Moolenaarc662ec92019-06-23 00:15:57 +02001528 screen_zindex = CLIP_ZINDEX;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001529
1530 if (col < cbd->min_col)
1531 {
1532 width -= cbd->min_col - col;
1533 col = cbd->min_col;
1534 }
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001535 if (width > cbd->max_col - col)
1536 width = cbd->max_col - col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001537 if (row < cbd->min_row)
1538 {
1539 height -= cbd->min_row - row;
1540 row = cbd->min_row;
1541 }
1542 if (height > cbd->max_row - row + 1)
1543 height = cbd->max_row - row + 1;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545#ifdef FEAT_GUI
1546 if (gui.in_use)
1547 gui_mch_invert_rectangle(row, col, height, width);
1548 else
1549#endif
1550 screen_draw_rectangle(row, col, height, width, invert);
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001551#ifdef FEAT_TEXT_PROP
1552 screen_zindex = 0;
1553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554}
1555
1556/*
1557 * Copy the currently selected area into the '*' register so it will be
1558 * available for pasting.
1559 * When "both" is TRUE also copy to the '+' register.
1560 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001562clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563{
1564 char_u *buffer;
1565 char_u *bufp;
1566 int row;
1567 int start_col;
1568 int end_col;
1569 int line_end_col;
1570 int add_newline_flag = FALSE;
1571 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 int row1 = clip_star.start.lnum;
1574 int col1 = clip_star.start.col;
1575 int row2 = clip_star.end.lnum;
1576 int col2 = clip_star.end.col;
1577
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001578 /* Can't use ScreenLines unless initialized */
1579 if (ScreenLines == NULL)
1580 return;
1581
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 /*
1583 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1584 */
1585 if (row1 > row2)
1586 {
1587 row = row1; row1 = row2; row2 = row;
1588 row = col1; col1 = col2; col2 = row;
1589 }
1590 else if (row1 == row2 && col1 > col2)
1591 {
1592 row = col1; col1 = col2; col2 = row;
1593 }
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001594#ifdef FEAT_TEXT_PROP
1595 if (col1 < clip_star.min_col)
1596 col1 = clip_star.min_col;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001597 if (col2 > clip_star.max_col)
1598 col2 = clip_star.max_col;
Bram Moolenaar741ea172019-08-24 14:16:32 +02001599 if (row1 > clip_star.max_row || row2 < clip_star.min_row)
1600 return;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001601 if (row1 < clip_star.min_row)
1602 row1 = clip_star.min_row;
1603 if (row2 > clip_star.max_row)
1604 row2 = clip_star.max_row;
1605#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 /* correct starting point for being on right halve of double-wide char */
1607 p = ScreenLines + LineOffset[row1];
1608 if (enc_dbcs != 0)
1609 col1 -= (*mb_head_off)(p, p + col1);
1610 else if (enc_utf8 && p[col1] == 0)
1611 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
1613 /* Create a temporary buffer for storing the text */
1614 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 if (enc_dbcs != 0)
1616 len *= 2; /* max. 2 bytes per display cell */
1617 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001618 len *= MB_MAXBYTES;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001619 buffer = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 if (buffer == NULL) /* out of memory */
1621 return;
1622
1623 /* Process each row in the selection */
1624 for (bufp = buffer, row = row1; row <= row2; row++)
1625 {
1626 if (row == row1)
1627 start_col = col1;
1628 else
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001629#ifdef FEAT_TEXT_PROP
1630 start_col = clip_star.min_col;
1631#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 start_col = 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001633#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
1635 if (row == row2)
1636 end_col = col2;
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001637 else
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001638#ifdef FEAT_TEXT_PROP
1639 end_col = clip_star.max_col;
1640#else
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001641 end_col = Columns;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001644 line_end_col = clip_get_line_end(&clip_star, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646 /* See if we need to nuke some trailing whitespace */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001647 if (end_col >=
1648#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001649 clip_star.max_col
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001650#else
1651 Columns
1652#endif
1653 && (row < row2 || end_col > line_end_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 {
1655 /* Get rid of trailing whitespace */
1656 end_col = line_end_col;
1657 if (end_col < start_col)
1658 end_col = start_col;
1659
1660 /* If the last line extended to the end, add an extra newline */
1661 if (row == row2)
1662 add_newline_flag = TRUE;
1663 }
1664
1665 /* If after the first row, we need to always add a newline */
1666 if (row > row1 && !LineWraps[row - 1])
1667 *bufp++ = NL;
1668
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001669 // Safetey check for in case resizing went wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 if (row < screen_Rows && end_col <= screen_Columns)
1671 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 if (enc_dbcs != 0)
1673 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001674 int i;
1675
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 p = ScreenLines + LineOffset[row];
1677 for (i = start_col; i < end_col; ++i)
1678 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1679 {
1680 /* single-width double-byte char */
1681 *bufp++ = 0x8e;
1682 *bufp++ = ScreenLines2[LineOffset[row] + i];
1683 }
1684 else
1685 {
1686 *bufp++ = p[i];
1687 if (MB_BYTE2LEN(p[i]) == 2)
1688 *bufp++ = p[++i];
1689 }
1690 }
1691 else if (enc_utf8)
1692 {
1693 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001694 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001695 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
1697 off = LineOffset[row];
1698 for (i = start_col; i < end_col; ++i)
1699 {
1700 /* The base character is either in ScreenLinesUC[] or
1701 * ScreenLines[]. */
1702 if (ScreenLinesUC[off + i] == 0)
1703 *bufp++ = ScreenLines[off + i];
1704 else
1705 {
1706 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001707 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001709 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001710 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001711 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001712 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 }
1715 }
1716 /* Skip right halve of double-wide character. */
1717 if (ScreenLines[off + i + 1] == 0)
1718 ++i;
1719 }
1720 }
1721 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 {
1723 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1724 end_col - start_col);
1725 bufp += end_col - start_col;
1726 }
1727 }
1728 }
1729
1730 /* Add a newline at the end if the selection ended there */
1731 if (add_newline_flag)
1732 *bufp++ = NL;
1733
1734 /* First cleanup any old selection and become the owner. */
1735 clip_free_selection(&clip_star);
1736 clip_own_selection(&clip_star);
1737
1738 /* Yank the text into the '*' register. */
1739 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1740
1741 /* Make the register contents available to the outside world. */
1742 clip_gen_set_selection(&clip_star);
1743
1744#ifdef FEAT_X11
1745 if (both)
1746 {
1747 /* Do the same for the '+' register. */
1748 clip_free_selection(&clip_plus);
1749 clip_own_selection(&clip_plus);
1750 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1751 clip_gen_set_selection(&clip_plus);
1752 }
1753#endif
1754 vim_free(buffer);
1755}
1756
1757/*
1758 * Find the starting and ending positions of the word at the given row and
1759 * column. Only white-separated words are recognized here.
1760 */
1761#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1762
1763 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001764clip_get_word_boundaries(Clipboard_T *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 int start_class;
1767 int temp_col;
1768 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001771 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 return;
1773
1774 p = ScreenLines + LineOffset[row];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 /* Correct for starting in the right halve of a double-wide char */
1776 if (enc_dbcs != 0)
1777 col -= dbcs_screen_head_off(p, p + col);
1778 else if (enc_utf8 && p[col] == 0)
1779 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 start_class = CHAR_CLASS(p[col]);
1781
1782 temp_col = col;
1783 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 if (enc_dbcs != 0
1785 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1786 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001787 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1788 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 break;
1790 cb->word_start_col = temp_col;
1791
1792 temp_col = col;
1793 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1795 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001796 else if (CHAR_CLASS(p[temp_col]) != start_class
1797 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 break;
1799 cb->word_end_col = temp_col;
1800}
1801
1802/*
1803 * Find the column position for the last non-whitespace character on the given
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001804 * line at or before start_col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 */
1806 static int
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001807clip_get_line_end(Clipboard_T *cbd UNUSED, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808{
1809 int i;
1810
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001811 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 return 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001813 for (i =
1814#ifdef FEAT_TEXT_PROP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001815 cbd->max_col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001816#else
1817 screen_Columns;
1818#endif
1819 i > 0; i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1821 break;
1822 return i;
1823}
1824
1825/*
1826 * Update the currently selected region by adding and/or subtracting from the
1827 * beginning or end and inverting the changed area(s).
1828 */
1829 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001830clip_update_modeless_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001831 Clipboard_T *cb,
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001832 int row1,
1833 int col1,
1834 int row2,
1835 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836{
1837 /* See if we changed at the beginning of the selection */
1838 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1839 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001840 clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 CLIP_TOGGLE);
1842 cb->start.lnum = row1;
1843 cb->start.col = col1;
1844 }
1845
1846 /* See if we changed at the end of the selection */
1847 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1848 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001849 clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 CLIP_TOGGLE);
1851 cb->end.lnum = row2;
1852 cb->end.col = col2;
1853 }
1854}
1855
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001856 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001857clip_gen_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858{
1859#ifdef FEAT_XCLIPBOARD
1860# ifdef FEAT_GUI
1861 if (gui.in_use)
1862 return clip_mch_own_selection(cbd);
1863 else
1864# endif
1865 return clip_xterm_own_selection(cbd);
1866#else
1867 return clip_mch_own_selection(cbd);
1868#endif
1869}
1870
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001871 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001872clip_gen_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873{
1874#ifdef FEAT_XCLIPBOARD
1875# ifdef FEAT_GUI
1876 if (gui.in_use)
1877 clip_mch_lose_selection(cbd);
1878 else
1879# endif
1880 clip_xterm_lose_selection(cbd);
1881#else
1882 clip_mch_lose_selection(cbd);
1883#endif
1884}
1885
1886 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001887clip_gen_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001889 if (!clip_did_set_selection)
1890 {
1891 /* Updating postponed, so that accessing the system clipboard won't
Bram Moolenaarbdace832019-03-02 10:13:42 +01001892 * hang Vim when accessing it many times (e.g. on a :g command). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001893 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1894 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1895 {
1896 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001897 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001898 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900#ifdef FEAT_XCLIPBOARD
1901# ifdef FEAT_GUI
1902 if (gui.in_use)
1903 clip_mch_set_selection(cbd);
1904 else
1905# endif
1906 clip_xterm_set_selection(cbd);
1907#else
1908 clip_mch_set_selection(cbd);
1909#endif
1910}
1911
1912 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001913clip_gen_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914{
1915#ifdef FEAT_XCLIPBOARD
1916# ifdef FEAT_GUI
1917 if (gui.in_use)
1918 clip_mch_request_selection(cbd);
1919 else
1920# endif
1921 clip_xterm_request_selection(cbd);
1922#else
1923 clip_mch_request_selection(cbd);
1924#endif
1925}
1926
Bram Moolenaar113e1072019-01-20 15:30:40 +01001927#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001928 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001929clip_gen_owner_exists(Clipboard_T *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001930{
1931#ifdef FEAT_XCLIPBOARD
1932# ifdef FEAT_GUI_GTK
1933 if (gui.in_use)
1934 return clip_gtk_owner_exists(cbd);
1935 else
1936# endif
1937 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001938#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001939 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001940#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001941}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001942#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001943
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944#endif /* FEAT_CLIPBOARD */
1945
1946/*****************************************************************************
1947 * Functions that handle the input buffer.
1948 * This is used for any GUI version, and the unix terminal version.
1949 *
1950 * For Unix, the input characters are buffered to be able to check for a
1951 * CTRL-C. This should be done with signals, but I don't know how to do that
1952 * in a portable way for a tty in RAW mode.
1953 *
1954 * For the client-server code in the console the received keys are put in the
1955 * input buffer.
1956 */
1957
1958#if defined(USE_INPUT_BUF) || defined(PROTO)
1959
1960/*
1961 * Internal typeahead buffer. Includes extra space for long key code
1962 * descriptions which would otherwise overflow. The buffer is considered full
1963 * when only this extra space (or part of it) remains.
1964 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001965#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001967 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 * This requires a larger buffer...
1969 * (Madsen) Go with this for remote input as well ...
1970 */
1971# define INBUFLEN 4096
1972#else
1973# define INBUFLEN 250
1974#endif
1975
1976static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1977static int inbufcount = 0; /* number of chars in inbuf[] */
1978
1979/*
1980 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1981 * trash_input_buf() are functions for manipulating the input buffer. These
1982 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1983 */
1984
1985 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001986vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 return (inbufcount >= INBUFLEN);
1989}
1990
1991 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001992vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993{
1994 return (inbufcount == 0);
1995}
1996
1997#if defined(FEAT_OLE) || defined(PROTO)
1998 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001999vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
2001 return (INBUFLEN - inbufcount);
2002}
2003#endif
2004
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00002005#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002007vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008{
2009 return inbufcount;
2010}
2011#endif
2012
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013/*
2014 * Return the current contents of the input buffer and make it empty.
2015 * The returned pointer must be passed to set_input_buf() later.
2016 */
2017 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002018get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 garray_T *gap;
2021
2022 /* We use a growarray to store the data pointer and the length. */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002023 gap = ALLOC_ONE(garray_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 if (gap != NULL)
2025 {
2026 /* Add one to avoid a zero size. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02002027 gap->ga_data = alloc(inbufcount + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 if (gap->ga_data != NULL)
2029 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
2030 gap->ga_len = inbufcount;
2031 }
2032 trash_input_buf();
2033 return (char_u *)gap;
2034}
2035
2036/*
2037 * Restore the input buffer with a pointer returned from get_input_buf().
2038 * The allocated memory is freed, this only works once!
2039 */
2040 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002041set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042{
2043 garray_T *gap = (garray_T *)p;
2044
2045 if (gap != NULL)
2046 {
2047 if (gap->ga_data != NULL)
2048 {
2049 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
2050 inbufcount = gap->ga_len;
2051 vim_free(gap->ga_data);
2052 }
2053 vim_free(gap);
2054 }
2055}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057/*
2058 * Add the given bytes to the input buffer
2059 * Special keys start with CSI. A real CSI must have been translated to
2060 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
2061 */
2062 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002063add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064{
2065 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
2066 return; /* Shouldn't ever happen! */
2067
2068#ifdef FEAT_HANGULIN
2069 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
2070 if ((len = hangul_input_process(s, len)) == 0)
2071 return;
2072#endif
2073
2074 while (len--)
2075 inbuf[inbufcount++] = *s++;
2076}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078/*
2079 * Add "str[len]" to the input buffer while escaping CSI bytes.
2080 */
2081 void
2082add_to_input_buf_csi(char_u *str, int len)
2083{
2084 int i;
2085 char_u buf[2];
2086
2087 for (i = 0; i < len; ++i)
2088 {
2089 add_to_input_buf(str + i, 1);
2090 if (str[i] == CSI)
2091 {
2092 /* Turn CSI into K_CSI. */
2093 buf[0] = KS_EXTRA;
2094 buf[1] = (int)KE_CSI;
2095 add_to_input_buf(buf, 2);
2096 }
2097 }
2098}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099
2100#if defined(FEAT_HANGULIN) || defined(PROTO)
2101 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002102push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002104 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002105 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002106
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002107 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002108 tmpbuf = hangul_string_convert(s, &len);
2109 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002110 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002111
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002112 for (; len--; inp++)
2113 {
2114 inbuf[inbufcount++] = *inp;
2115 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01002116 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002117 /* Turn CSI into K_CSI. */
2118 inbuf[inbufcount++] = KS_EXTRA;
2119 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01002120 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01002121 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002122 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123}
2124#endif
2125
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126/* Remove everything from the input buffer. Called when ^C is found */
2127 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002128trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129{
2130 inbufcount = 0;
2131}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132
2133/*
2134 * Read as much data from the input buffer as possible up to maxlen, and store
2135 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 */
2137 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002138read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139{
2140 if (inbufcount == 0) /* if the buffer is empty, fill it */
2141 fill_input_buf(TRUE);
2142 if (maxlen > inbufcount)
2143 maxlen = inbufcount;
2144 mch_memmove(buf, inbuf, (size_t)maxlen);
2145 inbufcount -= maxlen;
2146 if (inbufcount)
2147 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
2148 return (int)maxlen;
2149}
2150
2151 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002152fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153{
Bram Moolenaard0573012017-10-28 21:11:06 +02002154#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 int len;
2156 int try;
2157 static int did_read_something = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 static char_u *rest = NULL; /* unconverted rest of previous read */
2159 static int restlen = 0;
2160 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161#endif
2162
2163#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002164 if (gui.in_use
2165# ifdef NO_CONSOLE_INPUT
2166 /* Don't use the GUI input when the window hasn't been opened yet.
2167 * We get here from ui_inchar() when we should try reading from stdin. */
2168 && !no_console_input()
2169# endif
2170 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 {
2172 gui_mch_update();
2173 return;
2174 }
2175#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002176#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 if (vim_is_input_buf_full())
2178 return;
2179 /*
2180 * Fill_input_buf() is only called when we really need a character.
2181 * If we can't get any, but there is some in the buffer, just return.
2182 * If we can't get any, and there isn't any in the buffer, we give up and
2183 * exit Vim.
2184 */
2185# ifdef __BEOS__
2186 /*
2187 * On the BeBox version (for now), all input is secretly performed within
2188 * beos_select() which is called from RealWaitForChar().
2189 */
2190 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2191 ;
2192 len = inbufcount;
2193 inbufcount = 0;
2194# else
2195
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 if (rest != NULL)
2197 {
2198 /* Use remainder of previous call, starts with an invalid character
2199 * that may become valid when reading more. */
2200 if (restlen > INBUFLEN - inbufcount)
2201 unconverted = INBUFLEN - inbufcount;
2202 else
2203 unconverted = restlen;
2204 mch_memmove(inbuf + inbufcount, rest, unconverted);
2205 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002206 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 else
2208 {
2209 restlen -= unconverted;
2210 mch_memmove(rest, rest + unconverted, restlen);
2211 }
2212 inbufcount += unconverted;
2213 }
2214 else
2215 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216
2217 len = 0; /* to avoid gcc warning */
2218 for (try = 0; try < 100; ++try)
2219 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002220 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002221 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002222# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002223 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002224# else
2225 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002227
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 if (len > 0 || got_int)
2229 break;
2230 /*
2231 * If reading stdin results in an error, continue reading stderr.
2232 * This helps when using "foo | xargs vim".
2233 */
2234 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2235 {
2236 int m = cur_tmode;
2237
2238 /* We probably set the wrong file descriptor to raw mode. Switch
2239 * back to cooked mode, use another descriptor and set the mode to
2240 * what it was. */
2241 settmode(TMODE_COOK);
2242#ifdef HAVE_DUP
2243 /* Use stderr for stdin, also works for shell commands. */
2244 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002245 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246#else
2247 read_cmd_fd = 2; /* read from stderr instead of stdin */
2248#endif
2249 settmode(m);
2250 }
2251 if (!exit_on_error)
2252 return;
2253 }
2254# endif
2255 if (len <= 0 && !got_int)
2256 read_error_exit();
2257 if (len > 0)
2258 did_read_something = TRUE;
2259 if (got_int)
2260 {
2261 /* Interrupted, pretend a CTRL-C was typed. */
2262 inbuf[0] = 3;
2263 inbufcount = 1;
2264 }
2265 else
2266 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 /*
2268 * May perform conversion on the input characters.
2269 * Include the unconverted rest of the previous call.
2270 * If there is an incomplete char at the end it is kept for the next
2271 * time, reading more bytes should make conversion possible.
2272 * Don't do this in the unlikely event that the input buffer is too
2273 * small ("rest" still contains more bytes).
2274 */
2275 if (input_conv.vc_type != CONV_NONE)
2276 {
2277 inbufcount -= unconverted;
2278 len = convert_input_safe(inbuf + inbufcount,
2279 len + unconverted, INBUFLEN - inbufcount,
2280 rest == NULL ? &rest : NULL, &restlen);
2281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 while (len-- > 0)
2283 {
2284 /*
2285 * if a CTRL-C was typed, remove it from the buffer and set got_int
2286 */
2287 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2288 {
2289 /* remove everything typed before the CTRL-C */
2290 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2291 inbufcount = 0;
2292 got_int = TRUE;
2293 }
2294 ++inbufcount;
2295 }
2296 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002297#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002299#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300
2301/*
2302 * Exit because of an input read error.
2303 */
2304 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002305read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
2307 if (silent_mode) /* Normal way to exit for "ex -s" */
2308 getout(0);
2309 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2310 preserve_exit();
2311}
2312
2313#if defined(CURSOR_SHAPE) || defined(PROTO)
2314/*
2315 * May update the shape of the cursor.
2316 */
2317 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002318ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319{
2320# ifdef FEAT_GUI
2321 if (gui.in_use)
2322 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002323 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002325 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002326
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327# ifdef MCH_CURSOR_SHAPE
2328 mch_update_cursor();
2329# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002330
2331# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002332 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002335
2336 void
2337ui_cursor_shape(void)
2338{
2339 ui_cursor_shape_forced(FALSE);
2340}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341#endif
2342
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343/*
2344 * Check bounds for column number
2345 */
2346 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002347check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348{
2349 if (col < 0)
2350 return 0;
2351 if (col >= (int)screen_Columns)
2352 return (int)screen_Columns - 1;
2353 return col;
2354}
2355
2356/*
2357 * Check bounds for row number
2358 */
2359 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002360check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362 if (row < 0)
2363 return 0;
2364 if (row >= (int)screen_Rows)
2365 return (int)screen_Rows - 1;
2366 return row;
2367}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368
2369/*
2370 * Stuff for the X clipboard. Shared between VMS and Unix.
2371 */
2372
2373#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2374# include <X11/Xatom.h>
2375# include <X11/Intrinsic.h>
2376
2377/*
2378 * Open the application context (if it hasn't been opened yet).
2379 * Used for Motif and Athena GUI and the xterm clipboard.
2380 */
2381 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002382open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383{
2384 if (app_context == NULL)
2385 {
2386 XtToolkitInitialize();
2387 app_context = XtCreateApplicationContext();
2388 }
2389}
2390
2391static Atom vim_atom; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002393static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394static Atom compound_text_atom;
2395static Atom text_atom;
2396static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002397static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398
2399 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002400x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002404 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2406 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002407 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002409 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2410 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411}
2412
2413/*
2414 * X Selection stuff, for cutting and pasting text to other windows.
2415 */
2416
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002417static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2418static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2419static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002420
2421/*
2422 * Property callback to get a timestamp for XtOwnSelection.
2423 */
2424 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002425clip_x11_timestamp_cb(
2426 Widget w,
2427 XtPointer n UNUSED,
2428 XEvent *event,
2429 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002430{
2431 Atom actual_type;
2432 int format;
2433 unsigned long nitems, bytes_after;
2434 unsigned char *prop=NULL;
2435 XPropertyEvent *xproperty=&event->xproperty;
2436
2437 /* Must be a property notify, state can't be Delete (True), has to be
2438 * one of the supported selection types. */
2439 if (event->type != PropertyNotify || xproperty->state
2440 || (xproperty->atom != clip_star.sel_atom
2441 && xproperty->atom != clip_plus.sel_atom))
2442 return;
2443
2444 if (XGetWindowProperty(xproperty->display, xproperty->window,
2445 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2446 &nitems, &bytes_after, &prop))
2447 return;
2448
2449 if (prop)
2450 XFree(prop);
2451
2452 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2453 if (actual_type != timestamp_atom || format != 32)
2454 return;
2455
2456 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002457 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2458 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002459 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002460 {
2461 /* Set the "owned" flag now, there may have been a call to
2462 * lose_ownership_cb in between. */
2463 if (xproperty->atom == clip_plus.sel_atom)
2464 clip_plus.owned = TRUE;
2465 else
2466 clip_star.owned = TRUE;
2467 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002468}
2469
2470 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002471x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002472{
2473 XtAddEventHandler(w, PropertyChangeMask, False,
2474 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2475}
2476
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002478clip_x11_request_selection_cb(
2479 Widget w UNUSED,
2480 XtPointer success,
2481 Atom *sel_atom,
2482 Atom *type,
2483 XtPointer value,
2484 long_u *length,
2485 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002487 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 long_u len;
2489 char_u *p;
2490 char **text_list = NULL;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002491 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493
2494 if (*sel_atom == clip_plus.sel_atom)
2495 cbd = &clip_plus;
2496 else
2497 cbd = &clip_star;
2498
2499 if (value == NULL || *length == 0)
2500 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002501 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 *(int *)success = FALSE;
2503 return;
2504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 p = (char_u *)value;
2506 len = *length;
2507 if (*type == vim_atom)
2508 {
2509 motion_type = *p++;
2510 len--;
2511 }
2512
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 else if (*type == vimenc_atom)
2514 {
2515 char_u *enc;
2516 vimconv_T conv;
2517 int convlen;
2518
2519 motion_type = *p++;
2520 --len;
2521
2522 enc = p;
2523 p += STRLEN(p) + 1;
2524 len -= p - enc;
2525
2526 /* If the encoding of the text is different from 'encoding', attempt
2527 * converting it. */
2528 conv.vc_type = CONV_NONE;
2529 convert_setup(&conv, enc, p_enc);
2530 if (conv.vc_type != CONV_NONE)
2531 {
2532 convlen = len; /* Need to use an int here. */
2533 tmpbuf = string_convert(&conv, p, &convlen);
2534 len = convlen;
2535 if (tmpbuf != NULL)
2536 p = tmpbuf;
2537 convert_setup(&conv, NULL, NULL);
2538 }
2539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002541 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002542 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002543 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 {
2545 XTextProperty text_prop;
2546 int n_text = 0;
2547 int status;
2548
2549 text_prop.value = (unsigned char *)value;
2550 text_prop.encoding = *type;
2551 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002552 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002553#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002554 if (*type == utf8_atom)
2555 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2556 &text_list, &n_text);
2557 else
2558#endif
2559 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 &text_list, &n_text);
2561 if (status != Success || n_text < 1)
2562 {
2563 *(int *)success = FALSE;
2564 return;
2565 }
2566 p = (char_u *)text_list[0];
2567 len = STRLEN(p);
2568 }
2569 clip_yank_selection(motion_type, p, (long)len, cbd);
2570
2571 if (text_list != NULL)
2572 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 XtFree((char *)value);
2575 *(int *)success = TRUE;
2576}
2577
2578 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002579clip_x11_request_selection(
2580 Widget myShell,
2581 Display *dpy,
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002582 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583{
2584 XEvent event;
2585 Atom type;
2586 static int success;
2587 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002588 time_t start_time;
2589 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002591 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 {
2593 switch (i)
2594 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002597 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002598 case 3: type = compound_text_atom; break;
2599 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 default: type = XA_STRING;
2601 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002602 if (type == utf8_atom
2603# if defined(X_HAVE_UTF8_STRING)
2604 && !enc_utf8
2605# endif
2606 )
2607 /* Only request utf-8 when 'encoding' is utf8 and
2608 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002609 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002610 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2612 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2613
2614 /* Make sure the request for the selection goes out before waiting for
2615 * a response. */
2616 XFlush(dpy);
2617
2618 /*
2619 * Wait for result of selection request, otherwise if we type more
2620 * characters, then they will appear before the one that requested the
2621 * paste! Don't worry, we will catch up with any other events later.
2622 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002623 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002624 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002626 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2627 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2628 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002629 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002630 /* This is where clip_x11_request_selection_cb() should be
2631 * called. It may actually happen a bit later, so we loop
2632 * until "success" changes.
2633 * We may get a SelectionRequest here and if we don't handle
2634 * it we hang. KDE klipper does this, for example.
2635 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002636 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002637 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639
Bram Moolenaar89417b92008-09-07 19:48:53 +00002640 /* Time out after 2 to 3 seconds to avoid that we hang when the
2641 * other process doesn't respond. Note that the SelectionNotify
2642 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002643 * to life and the text gets inserted unexpectedly. Don't know
2644 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002645 if (time(NULL) > start_time + 2)
2646 {
2647 timed_out = TRUE;
2648 break;
2649 }
2650
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 /* Do we need this? Probably not. */
2652 XSync(dpy, False);
2653
Bram Moolenaar89417b92008-09-07 19:48:53 +00002654 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2655 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 }
2657
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002658 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002660
2661 /* don't do a retry with another type after timing out, otherwise we
2662 * hang for 15 seconds. */
2663 if (timed_out)
2664 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 }
2666
2667 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002668 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669}
2670
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002672clip_x11_convert_selection_cb(
2673 Widget w UNUSED,
2674 Atom *sel_atom,
2675 Atom *target,
2676 Atom *type,
2677 XtPointer *value,
2678 long_u *length,
2679 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002681 static char_u *save_result = NULL;
2682 static long_u save_length = 0;
2683 char_u *string;
2684 int motion_type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002685 Clipboard_T *cbd;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002686 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688 if (*sel_atom == clip_plus.sel_atom)
2689 cbd = &clip_plus;
2690 else
2691 cbd = &clip_star;
2692
2693 if (!cbd->owned)
2694 return False; /* Shouldn't ever happen */
2695
2696 /* requestor wants to know what target types we support */
2697 if (*target == targets_atom)
2698 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002699 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 *value = (XtPointer)array;
2702 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002706 if (enc_utf8)
2707 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002708 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 array[i++] = text_atom;
2710 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002711
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 *type = XA_ATOM;
2713 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2714 * crashes on 64 bit machines. (Peter Derr) */
2715 *format = 32;
2716 *length = i;
2717 return True;
2718 }
2719
2720 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002722 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 && *target != vim_atom
2724 && *target != text_atom
2725 && *target != compound_text_atom)
2726 return False;
2727
2728 clip_get_selection(cbd);
2729 motion_type = clip_convert_selection(&string, length, cbd);
2730 if (motion_type < 0)
2731 return False;
2732
2733 /* For our own format, the first byte contains the motion type */
2734 if (*target == vim_atom)
2735 (*length)++;
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 /* Our own format with encoding: motion 'encoding' NUL text */
2738 if (*target == vimenc_atom)
2739 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002741 if (save_length < *length || save_length / 2 >= *length)
2742 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2743 else
2744 *value = save_result;
2745 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 {
2747 vim_free(string);
2748 return False;
2749 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002750 save_result = (char_u *)*value;
2751 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002753 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002755 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002756 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002758 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 {
2760 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002761 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002762 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763
2764 /* create NUL terminated string which XmbTextListToTextProperty wants */
2765 mch_memmove(string_nt, string, (size_t)*length);
2766 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002767 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2768 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002769 if (conv_result != Success)
2770 {
2771 vim_free(string);
2772 return False;
2773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 *value = (XtPointer)(text_prop.value); /* from plain text */
2775 *length = text_prop.nitems;
2776 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002777 XtFree((char *)save_result);
2778 save_result = (char_u *)*value;
2779 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 else if (*target == vimenc_atom)
2782 {
2783 int l = STRLEN(p_enc);
2784
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002785 save_result[0] = motion_type;
2786 STRCPY(save_result + 1, p_enc);
2787 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 *type = vimenc_atom;
2789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 else
2791 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002792 save_result[0] = motion_type;
2793 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 *type = vim_atom;
2795 }
2796 *format = 8; /* 8 bits per char */
2797 vim_free(string);
2798 return True;
2799}
2800
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002802clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803{
2804 if (*sel_atom == clip_plus.sel_atom)
2805 clip_lose_selection(&clip_plus);
2806 else
2807 clip_lose_selection(&clip_star);
2808}
2809
2810 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002811clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002813 XtDisownSelection(myShell, cbd->sel_atom,
2814 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815}
2816
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002817 static void
2818clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2819{
2820 /* To prevent automatically freeing the selection value. */
2821}
2822
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002824clip_x11_own_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002826 /* When using the GUI we have proper timestamps, use the one of the last
2827 * event. When in the console we don't get events (the terminal gets
2828 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2829 * be called with the current timestamp. */
2830#ifdef FEAT_GUI
2831 if (gui.in_use)
2832 {
2833 if (XtOwnSelection(myShell, cbd->sel_atom,
2834 XtLastTimestampProcessed(XtDisplay(myShell)),
2835 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002836 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002837 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002838 }
2839 else
2840#endif
2841 {
2842 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2843 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002844 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002845 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002846 /* Flush is required in a terminal as nothing else is doing it. */
2847 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 return OK;
2849}
2850
2851/*
2852 * Send the current selection to the clipboard. Do nothing for X because we
2853 * will fill in the selection only when requested by another app.
2854 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002856clip_x11_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857{
2858}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002859
Bram Moolenaar113e1072019-01-20 15:30:40 +01002860#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2861 || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002862 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002863clip_x11_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002864{
2865 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2866}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002870#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2871 || defined(FEAT_GUI_GTK) || defined(PROTO)
2872/*
2873 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2874 */
2875 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002876yank_cut_buffer0(Display *dpy, Clipboard_T *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002877{
2878 int nbytes = 0;
2879 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2880
2881 if (nbytes > 0)
2882 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002883 int done = FALSE;
2884
2885 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2886 * using a multi-byte encoding. Conversion between two 8-bit
2887 * character sets usually fails and the text might actually be in
2888 * 'enc' anyway. */
2889 if (has_mbyte)
2890 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002891 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002892 vimconv_T vc;
2893
2894 vc.vc_type = CONV_NONE;
2895 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2896 {
2897 conv_buf = string_convert(&vc, buffer, &nbytes);
2898 if (conv_buf != NULL)
2899 {
2900 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2901 vim_free(conv_buf);
2902 done = TRUE;
2903 }
2904 convert_setup(&vc, NULL, NULL);
2905 }
2906 }
2907 if (!done) /* use the text without conversion */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002908 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2909 XFree((void *)buffer);
2910 if (p_verbose > 0)
2911 {
2912 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002913 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002914 verbose_leave();
2915 }
2916 }
2917}
2918#endif
2919
Bram Moolenaar4f974752019-02-17 17:44:42 +01002920#if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921/*
2922 * Called when focus changed. Used for the GUI or for systems where this can
2923 * be done in the console (Win32).
2924 */
2925 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002926ui_focus_change(
2927 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928{
2929 static time_t last_time = (time_t)0;
2930 int need_redraw = FALSE;
2931
2932 /* When activated: Check if any file was modified outside of Vim.
2933 * Only do this when not done within the last two seconds (could get
2934 * several events in a row). */
2935 if (in_focus && last_time + 2 < time(NULL))
2936 {
2937 need_redraw = check_timestamps(
2938# ifdef FEAT_GUI
2939 gui.in_use
2940# else
2941 FALSE
2942# endif
2943 );
2944 last_time = time(NULL);
2945 }
2946
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 /*
2948 * Fire the focus gained/lost autocommand.
2949 */
2950 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
2951 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952
2953 if (need_redraw)
2954 {
2955 /* Something was executed, make sure the cursor is put back where it
2956 * belongs. */
2957 need_wait_return = FALSE;
2958
2959 if (State & CMDLINE)
2960 redrawcmdline();
2961 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
2962 || State == EXTERNCMD || State == CONFIRM || exmode_active)
2963 repeat_message();
2964 else if ((State & NORMAL) || (State & INSERT))
2965 {
2966 if (must_redraw != 0)
2967 update_screen(0);
2968 setcursor();
2969 }
2970 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01002971 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972# ifdef FEAT_GUI
2973 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975# endif
2976 }
2977#ifdef FEAT_TITLE
2978 /* File may have been changed from 'readonly' to 'noreadonly' */
2979 if (need_maketitle)
2980 maketitle();
2981#endif
2982}
2983#endif
2984
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002985#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986/*
2987 * Save current Input Method status to specified place.
2988 */
2989 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002990im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
2993 * disabled then (but might start later).
2994 * Also don't save when inside a mapping, vgetc_im_active has not been set
2995 * then.
2996 * And don't save when the keys were stuffed (e.g., for a "." command).
2997 * And don't save when the GUI is running but our window doesn't have
2998 * input focus (e.g., when a find dialog is open). */
2999 if (!p_imdisable && KeyTyped && !KeyStuffed
3000# ifdef FEAT_XIM
3001 && xic != NULL
3002# endif
3003# ifdef FEAT_GUI
3004 && (!gui.in_use || gui.in_focus)
3005# endif
3006 )
3007 {
3008 /* Do save when IM is on, or IM is off and saved status is on. */
3009 if (vgetc_im_active)
3010 *psave = B_IMODE_IM;
3011 else if (*psave == B_IMODE_IM)
3012 *psave = B_IMODE_NONE;
3013 }
3014}
3015#endif