blob: 393bf91f294c4052e61d0f9403138f6e41a29671 [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
Bram Moolenaare38eab22019-12-05 21:50:01 +010040 // Don't output anything in silent mode ("ex -s") unless 'verbose' set
Bram Moolenaar071d4272004-06-13 20:20:40 +000041 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 {
Bram Moolenaare38eab22019-12-05 21:50:01 +010048 // Convert characters from 'encoding' to 'termencoding'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 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;
Bram Moolenaare38eab22019-12-05 21:50:01 +010072static 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000074
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,
Bram Moolenaare38eab22019-12-05 21:50:01 +0100119 long wtime, // don't use "time", MIPS cannot handle it
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100120 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
Bram Moolenaare38eab22019-12-05 21:50:01 +0100148 // 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.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 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 Moolenaare38eab22019-12-05 21:50:01 +0100169 // If we are going to wait for some time or block...
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000170 if (wtime == -1 || wtime > 100L)
171 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100172 // ... allow signals to kill us.
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000173 (void)vim_handle_signal(SIGNAL_UNBLOCK);
174
Bram Moolenaare38eab22019-12-05 21:50:01 +0100175 // ... 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)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100235 // block SIGHUP et al.
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000236 (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 Moolenaar95f0b6e2019-12-15 12:54:18 +0100250#if defined(UNIX) || defined(VMS) || defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100251/*
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
Bram Moolenaare38eab22019-12-05 21:50:01 +0100285 // repeat until we got a character or waited long enough
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100286 for (;;)
287 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100288 // Check if window changed size while we were busy, perhaps the ":set
289 // columns=99" command was used.
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100290 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 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100457 // timer may have used feedkeys()
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100458 return FAIL;
459 }
460 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
461 due_time = remaining;
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200462# if defined(FEAT_JOB_CHANNEL) || defined(FEAT_SOUND_CANBERRA)
463 if ((due_time < 0 || due_time > 10L) && (
464# if defined(FEAT_JOB_CHANNEL)
465 (
466# if defined(FEAT_GUI)
467 !gui.in_use &&
468# endif
469 (has_pending_job() || channel_any_readahead()))
470# ifdef FEAT_SOUND_CANBERRA
471 ||
472# endif
Bram Moolenaarc46af532019-01-09 22:24:49 +0100473# endif
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200474# ifdef FEAT_SOUND_CANBERRA
475 has_any_sound_callback()
476# endif
477 ))
Bram Moolenaarc46af532019-01-09 22:24:49 +0100478 {
479 // There is a pending job or channel, should return soon in order
480 // to handle them ASAP. Do check for input briefly.
481 due_time = 10L;
Bram Moolenaar6cdce2a2019-09-07 23:25:09 +0200482# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarc46af532019-01-09 22:24:49 +0100483 brief_wait = TRUE;
Bram Moolenaar6cdce2a2019-09-07 23:25:09 +0200484# endif
Bram Moolenaarc46af532019-01-09 22:24:49 +0100485 }
486# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100487 if (wait_func(due_time, interrupted, ignore_input))
488 return OK;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100489 if ((interrupted != NULL && *interrupted)
490# ifdef FEAT_JOB_CHANNEL
491 || brief_wait
492# endif
493 )
494 // Nothing available, but need to return so that side effects get
495 // handled, such as handling a message on a channel.
Bram Moolenaara338adc2018-01-31 20:51:47 +0100496 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100497 if (wtime > 0)
498 remaining -= due_time;
499 }
500 return FAIL;
501}
502#endif
503
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504/*
Bram Moolenaarc46af532019-01-09 22:24:49 +0100505 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 */
507 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100508ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509{
510#ifdef FEAT_GUI
511 if (gui.in_use)
512 {
513 gui_mch_update();
514 return input_available();
515 }
516#endif
517#ifndef NO_CONSOLE
518# ifdef NO_CONSOLE_INPUT
519 if (no_console_input())
520 return 0;
521# endif
522 return mch_char_avail();
523#else
524 return 0;
525#endif
526}
527
528/*
529 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
530 * cancel the delay if a key is hit.
531 */
532 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100533ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534{
Bram Moolenaareda1da02019-11-17 17:06:33 +0100535#ifdef FEAT_JOB_CHANNEL
536 ch_log(NULL, "ui_delay(%ld)", msec);
537#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538#ifdef FEAT_GUI
539 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100540 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 else
542#endif
543 mch_delay(msec, ignoreinput);
544}
545
546/*
547 * If the machine has job control, use it to suspend the program,
548 * otherwise fake it by starting a new shell.
549 * When running the GUI iconify the window.
550 */
551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100552ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553{
554#ifdef FEAT_GUI
555 if (gui.in_use)
556 {
557 gui_mch_iconify();
558 return;
559 }
560#endif
561 mch_suspend();
562}
563
564#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
565/*
566 * When the OS can't really suspend, call this function to start a shell.
567 * This is never called in the GUI.
568 */
569 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100570suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571{
572 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100573 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 else
575 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100576 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 do_shell(NULL, 0);
578 }
579}
580#endif
581
582/*
583 * Try to get the current Vim shell size. Put the result in Rows and Columns.
584 * Use the new sizes as defaults for 'columns' and 'lines'.
585 * Return OK when size could be determined, FAIL otherwise.
586 */
587 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100588ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 int retval;
591
592#ifdef FEAT_GUI
593 if (gui.in_use)
594 retval = gui_get_shellsize();
595 else
596#endif
597 retval = mch_get_shellsize();
598
599 check_shellsize();
600
Bram Moolenaare38eab22019-12-05 21:50:01 +0100601 // adjust the default for 'lines' and 'columns'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 if (retval == OK)
603 {
604 set_number_default("lines", Rows);
605 set_number_default("columns", Columns);
606 }
607 return retval;
608}
609
610/*
611 * Set the size of the Vim shell according to Rows and Columns, if possible.
612 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
613 * new size. If this is not possible, it will adjust Rows and Columns.
614 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100616ui_set_shellsize(
Bram Moolenaare38eab22019-12-05 21:50:01 +0100617 int mustset UNUSED) // set by the user
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618{
619#ifdef FEAT_GUI
620 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200621 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 else
623#endif
624 mch_set_shellsize();
625}
626
627/*
628 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
629 * region.
630 */
631 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100632ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633{
634 if (full_screen && !exiting)
635 {
636#ifdef FEAT_GUI
637 if (gui.in_use)
638 gui_new_shellsize();
639 else
640#endif
641 mch_new_shellsize();
642 }
643}
644
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200645#if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200646 && (defined(FEAT_GUI) \
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200647 || defined(MSWIN) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200648 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200649 || defined(PROTO)
650/*
651 * Get the window position in pixels, if possible.
652 * Return FAIL when not possible.
653 */
654 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200655ui_get_winpos(int *x, int *y, varnumber_T timeout UNUSED)
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200656{
657# ifdef FEAT_GUI
658 if (gui.in_use)
659 return gui_mch_get_winpos(x, y);
660# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200661# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200662 return mch_get_winpos(x, y);
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200663# else
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200664# if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)
665 return term_get_winpos(x, y, timeout);
666# else
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200667 return FAIL;
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200668# endif
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200669# endif
670}
671#endif
672
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100674ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200676 ui_breakcheck_force(FALSE);
677}
678
679/*
680 * When "force" is true also check when the terminal is not in raw mode.
681 * This is useful to read input on channels.
682 */
683 void
684ui_breakcheck_force(int force)
685{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100686 static int recursive = FALSE;
687 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100688
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100689 // We could be called recursively if stderr is redirected, calling
690 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
691 // calls vgetorpeek() which calls ui_breakcheck() again.
692 if (recursive)
693 return;
694 recursive = TRUE;
695
696 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100697 ++updating_screen;
698
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699#ifdef FEAT_GUI
700 if (gui.in_use)
701 gui_mch_update();
702 else
703#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200704 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100705
Bram Moolenaar42335f52018-09-13 15:33:43 +0200706 if (save_updating_screen)
707 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200708 else
Bram Moolenaar68a4b042019-05-29 22:28:29 +0200709 after_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100710
711 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712}
713
Bram Moolenaare38eab22019-12-05 21:50:01 +0100714//////////////////////////////////////////////////////////////////////////////
715// Functions for copying and pasting text between applications.
716// This is always included in a GUI version, but may also be included when the
717// clipboard and mouse is available to a terminal version such as xterm.
718// Note: there are some more functions in ops.c that handle selection stuff.
719//
720// Also note that the majority of functions here deal with the X 'primary'
721// (visible - for Visual mode use) selection, and only that. There are no
722// versions of these for the 'clipboard' selection, as Visual mode has no use
723// for them.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724
725#if defined(FEAT_CLIPBOARD) || defined(PROTO)
726
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200727static void clip_gen_lose_selection(Clipboard_T *cbd);
728static int clip_gen_own_selection(Clipboard_T *cbd);
729#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)
730static int clip_x11_owner_exists(Clipboard_T *cbd);
731#endif
732
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733/*
734 * Selection stuff using Visual mode, for cutting and pasting text to other
735 * windows.
736 */
737
738/*
739 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
740 * is included, but the clipboard can not be used, or TRUE if the clipboard can
741 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
742 * the GUI starts.
743 */
744 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100745clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746{
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200747 Clipboard_T *cb;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748
749 cb = &clip_star;
750 for (;;)
751 {
752 cb->available = can_use;
753 cb->owned = FALSE;
754 cb->start.lnum = 0;
755 cb->start.col = 0;
756 cb->end.lnum = 0;
757 cb->end.col = 0;
758 cb->state = SELECT_CLEARED;
759
760 if (cb == &clip_plus)
761 break;
762 cb = &clip_plus;
763 }
764}
765
766/*
767 * Check whether the VIsual area has changed, and if so try to become the owner
768 * of the selection, and free any old converted selection we may still have
769 * lying around. If the VIsual mode has ended, make a copy of what was
770 * selected so we can still give it to others. Will probably have to make sure
771 * this is called whenever VIsual mode is ended.
772 */
773 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200774clip_update_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200776 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
Bram Moolenaare38eab22019-12-05 21:50:01 +0100778 // If visual mode is only due to a redo command ("."), then ignore it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
780 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100781 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 {
783 start = VIsual;
784 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000786 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 }
788 else
789 {
790 start = curwin->w_cursor;
791 end = VIsual;
792 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100793 if (!EQUAL_POS(clip->start, start)
794 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200795 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200797 clip_clear_selection(clip);
798 clip->start = start;
799 clip->end = end;
800 clip->vmode = VIsual_mode;
801 clip_free_selection(clip);
802 clip_own_selection(clip);
803 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 }
805 }
806}
807
808 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200809clip_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810{
811 /*
812 * Also want to check somehow that we are reading from the keyboard rather
813 * than a mapping etc.
814 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815#ifdef FEAT_X11
Bram Moolenaare38eab22019-12-05 21:50:01 +0100816 // Always own the selection, we might have lost it without being
817 // notified, e.g. during a ":sh" command.
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200818 if (cbd->available)
819 {
820 int was_owned = cbd->owned;
821
822 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200823 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100825 // May have to show a different kind of highlighting for the
826 // selected area. There is no specific redraw command for this,
827 // just redraw all windows on the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000829 && (get_real_state() == VISUAL
830 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200831 && (cbd == &clip_star ? clip_isautosel_star()
832 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100833 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 redraw_curbuf_later(INVERTED_ALL);
835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200837#else
Bram Moolenaare38eab22019-12-05 21:50:01 +0100838 // Only own the clipboard when we didn't own it yet.
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200839 if (!cbd->owned && cbd->available)
840 cbd->owned = (clip_gen_own_selection(cbd) == OK);
841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842}
843
844 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200845clip_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846{
847#ifdef FEAT_X11
848 int was_owned = cbd->owned;
849#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200850 int visual_selection = FALSE;
851
852 if (cbd == &clip_star || cbd == &clip_plus)
853 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854
855 clip_free_selection(cbd);
856 cbd->owned = FALSE;
857 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200858 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 clip_gen_lose_selection(cbd);
860#ifdef FEAT_X11
861 if (visual_selection)
862 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100863 // May have to show a different kind of highlighting for the selected
864 // area. There is no specific redraw command for this, just redraw all
865 // windows on the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000867 && (get_real_state() == VISUAL
868 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200869 && (cbd == &clip_star ?
870 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100871 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 {
873 update_curbuf(INVERTED_ALL);
874 setcursor();
875 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100876 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 }
878 }
879#endif
880}
881
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200882 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200883clip_copy_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200885 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200887 clip_update_selection(clip);
888 clip_free_selection(clip);
889 clip_own_selection(clip);
890 if (clip->owned)
891 clip_get_selection(clip);
892 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 }
894}
895
896/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200897 * Save and restore clip_unnamed before doing possibly many changes. This
898 * prevents accessing the clipboard very often which might slow down Vim
899 * considerably.
900 */
Bram Moolenaare38eab22019-12-05 21:50:01 +0100901static int global_change_count = 0; // if set, inside a start_global_changes
902static int clipboard_needs_update = FALSE; // clipboard needs to be updated
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200903static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200904
905/*
906 * Save clip_unnamed and reset it.
907 */
908 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100909start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200910{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100911 if (++global_change_count > 1)
912 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200913 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100914 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200915
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100916 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200917 {
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100918 clip_unnamed = 0;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200919 clip_did_set_selection = FALSE;
920 }
921}
922
923/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200924 * Return TRUE if setting the clipboard was postponed, it already contains the
925 * right text.
926 */
927 int
928is_clipboard_needs_update()
929{
930 return clipboard_needs_update;
931}
932
933/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200934 * Restore clip_unnamed and set the selection when needed.
935 */
936 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100937end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200938{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100939 if (--global_change_count > 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100940 // recursive
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100941 return;
942 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200943 {
944 clip_did_set_selection = TRUE;
945 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100946 clip_unnamed_saved = 0;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100947 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200948 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100949 // only store something in the clipboard,
950 // if we have yanked anything to it
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100951 if (clip_unnamed & CLIP_UNNAMED)
952 {
953 clip_own_selection(&clip_star);
954 clip_gen_set_selection(&clip_star);
955 }
956 if (clip_unnamed & CLIP_UNNAMED_PLUS)
957 {
958 clip_own_selection(&clip_plus);
959 clip_gen_set_selection(&clip_plus);
960 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200961 }
962 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200963 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200964}
965
966/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 * Called when Visual mode is ended: update the selection.
968 */
969 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100970clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200972 if (clip_isautosel_star())
973 clip_copy_selection(&clip_star);
974 if (clip_isautosel_plus())
975 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976}
977
978/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200979 * Return TRUE if automatic selection of Visual area is desired for the *
980 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 */
982 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100983clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
985 return (
986#ifdef FEAT_GUI
987 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
988#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200989 clip_autoselect_star);
990}
991
992/*
993 * Return TRUE if automatic selection of Visual area is desired for the +
994 * register.
995 */
996 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100997clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200998{
999 return (
1000#ifdef FEAT_GUI
1001 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
1002#endif
1003 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004}
1005
1006
1007/*
1008 * Stuff for general mouse selection, without using Visual mode.
1009 */
1010
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001011static void clip_invert_area(Clipboard_T *, int, int, int, int, int how);
1012static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001013static void clip_get_word_boundaries(Clipboard_T *, int, int);
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001014static int clip_get_line_end(Clipboard_T *, int);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001015static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001017// "how" flags for clip_invert_area()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#define CLIP_CLEAR 1
1019#define CLIP_SET 2
1020#define CLIP_TOGGLE 3
1021
1022/*
1023 * Start, continue or end a modeless selection. Used when editing the
Bram Moolenaarb53fb312019-06-13 23:59:52 +02001024 * command-line, in the cmdline window and when the mouse is in a popup window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 */
1026 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001027clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028{
1029 int repeat;
1030
1031 repeat = ((clip_star.mode == SELECT_MODE_CHAR
1032 || clip_star.mode == SELECT_MODE_LINE)
1033 && (mod_mask & MOD_MASK_2CLICK))
1034 || (clip_star.mode == SELECT_MODE_WORD
1035 && (mod_mask & MOD_MASK_3CLICK));
1036 if (is_click && button == MOUSE_RIGHT)
1037 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001038 // Right mouse button: If there was no selection, start one.
1039 // Otherwise extend the existing selection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 if (clip_star.state == SELECT_CLEARED)
1041 clip_start_selection(mouse_col, mouse_row, FALSE);
1042 clip_process_selection(button, mouse_col, mouse_row, repeat);
1043 }
1044 else if (is_click)
1045 clip_start_selection(mouse_col, mouse_row, repeat);
1046 else if (is_drag)
1047 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001048 // Don't try extending a selection if there isn't one. Happens when
1049 // button-down is in the cmdline and them moving mouse upwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 if (clip_star.state != SELECT_CLEARED)
1051 clip_process_selection(button, mouse_col, mouse_row, repeat);
1052 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001053 else // release
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1055}
1056
1057/*
1058 * Compare two screen positions ala strcmp()
1059 */
1060 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001061clip_compare_pos(
1062 int row1,
1063 int col1,
1064 int row2,
1065 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066{
1067 if (row1 > row2) return(1);
1068 if (row1 < row2) return(-1);
1069 if (col1 > col2) return(1);
1070 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001071 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072}
1073
1074/*
1075 * Start the selection
1076 */
1077 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001078clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001080 Clipboard_T *cb = &clip_star;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001081#ifdef FEAT_PROP_POPUP
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001082 win_T *wp;
1083 int row_cp = row;
1084 int col_cp = col;
1085
1086 wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP);
1087 if (wp != NULL && WIN_IS_POPUP(wp)
1088 && popup_is_in_scrollbar(wp, row_cp, col_cp))
1089 // click or double click in scrollbar does not start a selection
1090 return;
1091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092
1093 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001094 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
1096 row = check_row(row);
1097 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099
1100 cb->start.lnum = row;
1101 cb->start.col = col;
1102 cb->end = cb->start;
1103 cb->origin_row = (short_u)cb->start.lnum;
1104 cb->state = SELECT_IN_PROGRESS;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001105#ifdef FEAT_PROP_POPUP
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001106 if (wp != NULL && WIN_IS_POPUP(wp))
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001107 {
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001108 // Click in a popup window restricts selection to that window,
1109 // excluding the border.
1110 cb->min_col = wp->w_wincol + wp->w_popup_border[3];
Bram Moolenaar4dd751b2019-08-17 19:10:53 +02001111 cb->max_col = wp->w_wincol + popup_width(wp)
1112 - wp->w_popup_border[1] - wp->w_has_scrollbar;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001113 if (cb->max_col > screen_Columns)
1114 cb->max_col = screen_Columns;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001115 cb->min_row = wp->w_winrow + wp->w_popup_border[0];
1116 cb->max_row = wp->w_winrow + popup_height(wp) - 1
1117 - wp->w_popup_border[2];
1118 }
1119 else
1120 {
1121 cb->min_col = 0;
1122 cb->max_col = screen_Columns;
1123 cb->min_row = 0;
1124 cb->max_row = screen_Rows;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001125 }
1126#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 if (repeated_click)
1129 {
1130 if (++cb->mode > SELECT_MODE_LINE)
1131 cb->mode = SELECT_MODE_CHAR;
1132 }
1133 else
1134 cb->mode = SELECT_MODE_CHAR;
1135
1136#ifdef FEAT_GUI
Bram Moolenaare38eab22019-12-05 21:50:01 +01001137 // clear the cursor until the selection is made
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 if (gui.in_use)
1139 gui_undraw_cursor();
1140#endif
1141
1142 switch (cb->mode)
1143 {
1144 case SELECT_MODE_CHAR:
1145 cb->origin_start_col = cb->start.col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001146 cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 break;
1148
1149 case SELECT_MODE_WORD:
1150 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1151 cb->origin_start_col = cb->word_start_col;
1152 cb->origin_end_col = cb->word_end_col;
1153
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001154 clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1156 cb->start.col = cb->word_start_col;
1157 cb->end.col = cb->word_end_col;
1158 break;
1159
1160 case SELECT_MODE_LINE:
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001161 clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 (int)Columns, CLIP_SET);
1163 cb->start.col = 0;
1164 cb->end.col = Columns;
1165 break;
1166 }
1167
1168 cb->prev = cb->start;
1169
1170#ifdef DEBUG_SELECTION
Bram Moolenaarb16ad962020-01-08 22:06:14 +01001171 printf("Selection started at (%ld,%d)\n", cb->start.lnum, cb->start.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172#endif
1173}
1174
1175/*
1176 * Continue processing the selection
1177 */
1178 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001179clip_process_selection(
1180 int button,
1181 int col,
1182 int row,
1183 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001185 Clipboard_T *cb = &clip_star;
1186 int diff;
1187 int slen = 1; // cursor shape width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189 if (button == MOUSE_RELEASE)
1190 {
Bram Moolenaar741ea172019-08-24 14:16:32 +02001191 if (cb->state != SELECT_IN_PROGRESS)
1192 return;
1193
1194 // Check to make sure we have something selected
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1196 {
1197#ifdef FEAT_GUI
1198 if (gui.in_use)
1199 gui_update_cursor(FALSE, FALSE);
1200#endif
1201 cb->state = SELECT_CLEARED;
1202 return;
1203 }
1204
1205#ifdef DEBUG_SELECTION
Bram Moolenaarb16ad962020-01-08 22:06:14 +01001206 printf("Selection ended: (%ld,%d) to (%ld,%d)\n", cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 cb->start.col, cb->end.lnum, cb->end.col);
1208#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001209 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 || (
1211#ifdef FEAT_GUI
1212 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1213#endif
1214 clip_autoselectml))
1215 clip_copy_modeless_selection(FALSE);
1216#ifdef FEAT_GUI
1217 if (gui.in_use)
1218 gui_update_cursor(FALSE, FALSE);
1219#endif
1220
1221 cb->state = SELECT_DONE;
1222 return;
1223 }
1224
1225 row = check_row(row);
1226 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228
1229 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1230 return;
1231
1232 /*
1233 * When extending the selection with the right mouse button, swap the
1234 * start and end if the position is before half the selection
1235 */
1236 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1237 {
1238 /*
1239 * If the click is before the start, or the click is inside the
1240 * selection and the start is the closest side, set the origin to the
1241 * end of the selection.
1242 */
1243 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1244 || (clip_compare_pos(row, col,
1245 (int)cb->end.lnum, cb->end.col) < 0
1246 && (((cb->start.lnum == cb->end.lnum
1247 && cb->end.col - col > col - cb->start.col))
1248 || ((diff = (cb->end.lnum - row) -
1249 (row - cb->start.lnum)) > 0
1250 || (diff == 0 && col < (int)(cb->start.col +
1251 cb->end.col) / 2)))))
1252 {
1253 cb->origin_row = (short_u)cb->end.lnum;
1254 cb->origin_start_col = cb->end.col - 1;
1255 cb->origin_end_col = cb->end.col;
1256 }
1257 else
1258 {
1259 cb->origin_row = (short_u)cb->start.lnum;
1260 cb->origin_start_col = cb->start.col;
1261 cb->origin_end_col = cb->start.col;
1262 }
1263 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1264 cb->mode = SELECT_MODE_CHAR;
1265 }
1266
Bram Moolenaare38eab22019-12-05 21:50:01 +01001267 // set state, for when using the right mouse button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 cb->state = SELECT_IN_PROGRESS;
1269
1270#ifdef DEBUG_SELECTION
1271 printf("Selection extending to (%d,%d)\n", row, col);
1272#endif
1273
1274 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1275 cb->mode = SELECT_MODE_CHAR;
1276
1277 switch (cb->mode)
1278 {
1279 case SELECT_MODE_CHAR:
Bram Moolenaare38eab22019-12-05 21:50:01 +01001280 // If we're on a different line, find where the line ends
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (row != cb->prev.lnum)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001282 cb->word_end_col = clip_get_line_end(cb, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
Bram Moolenaare38eab22019-12-05 21:50:01 +01001284 // See if we are before or after the origin of the selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 if (clip_compare_pos(row, col, cb->origin_row,
1286 cb->origin_start_col) >= 0)
1287 {
1288 if (col >= (int)cb->word_end_col)
1289 clip_update_modeless_selection(cb, cb->origin_row,
1290 cb->origin_start_col, row, (int)Columns);
1291 else
1292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 if (has_mbyte && mb_lefthalve(row, col))
1294 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 clip_update_modeless_selection(cb, cb->origin_row,
1296 cb->origin_start_col, row, col + slen);
1297 }
1298 }
1299 else
1300 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 if (has_mbyte
1302 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1303 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 if (col >= (int)cb->word_end_col)
1305 clip_update_modeless_selection(cb, row, cb->word_end_col,
1306 cb->origin_row, cb->origin_start_col + slen);
1307 else
1308 clip_update_modeless_selection(cb, row, col,
1309 cb->origin_row, cb->origin_start_col + slen);
1310 }
1311 break;
1312
1313 case SELECT_MODE_WORD:
Bram Moolenaare38eab22019-12-05 21:50:01 +01001314 // If we are still within the same word, do nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1316 && col < (int)cb->word_end_col && !repeated_click)
1317 return;
1318
Bram Moolenaare38eab22019-12-05 21:50:01 +01001319 // Get new word boundaries
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 clip_get_word_boundaries(cb, row, col);
1321
Bram Moolenaare38eab22019-12-05 21:50:01 +01001322 // Handle being after the origin point of selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (clip_compare_pos(row, col, cb->origin_row,
1324 cb->origin_start_col) >= 0)
1325 clip_update_modeless_selection(cb, cb->origin_row,
1326 cb->origin_start_col, row, cb->word_end_col);
1327 else
1328 clip_update_modeless_selection(cb, row, cb->word_start_col,
1329 cb->origin_row, cb->origin_end_col);
1330 break;
1331
1332 case SELECT_MODE_LINE:
1333 if (row == cb->prev.lnum && !repeated_click)
1334 return;
1335
1336 if (clip_compare_pos(row, col, cb->origin_row,
1337 cb->origin_start_col) >= 0)
1338 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1339 (int)Columns);
1340 else
1341 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1342 (int)Columns);
1343 break;
1344 }
1345
1346 cb->prev.lnum = row;
1347 cb->prev.col = col;
1348
1349#ifdef DEBUG_SELECTION
Bram Moolenaarb16ad962020-01-08 22:06:14 +01001350 printf("Selection is: (%ld,%d) to (%ld,%d)\n", cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 cb->start.col, cb->end.lnum, cb->end.col);
1352#endif
1353}
1354
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355# if defined(FEAT_GUI) || defined(PROTO)
1356/*
1357 * Redraw part of the selection if character at "row,col" is inside of it.
1358 * Only used for the GUI.
1359 */
1360 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001361clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362{
1363 int start = col;
1364 int end = col + len;
1365
1366 if (clip_star.state != SELECT_CLEARED
1367 && row >= clip_star.start.lnum
1368 && row <= clip_star.end.lnum)
1369 {
1370 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1371 start = clip_star.start.col;
1372 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1373 end = clip_star.end.col;
1374 if (end > start)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001375 clip_invert_area(&clip_star, row, start, row, end, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 }
1377}
1378# endif
1379
1380/*
1381 * Called from outside to clear selected region from the display
1382 */
1383 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001384clip_clear_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001387 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 return;
1389
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001390 clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col,
1391 (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001392 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393}
1394
1395/*
1396 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1397 */
1398 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001399clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
1401 if (clip_star.state == SELECT_DONE
1402 && row2 >= clip_star.start.lnum
1403 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001404 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405}
1406
1407/*
1408 * Called before the screen is scrolled up or down. Adjusts the line numbers
1409 * of the selection. Call with big number when clearing the screen.
1410 */
1411 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001412clip_scroll_selection(
Bram Moolenaare38eab22019-12-05 21:50:01 +01001413 int rows) // negative for scroll down
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414{
1415 int lnum;
1416
1417 if (clip_star.state == SELECT_CLEARED)
1418 return;
1419
1420 lnum = clip_star.start.lnum - rows;
1421 if (lnum <= 0)
1422 clip_star.start.lnum = 0;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001423 else if (lnum >= screen_Rows) // scrolled off of the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 clip_star.state = SELECT_CLEARED;
1425 else
1426 clip_star.start.lnum = lnum;
1427
1428 lnum = clip_star.end.lnum - rows;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001429 if (lnum < 0) // scrolled off of the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 clip_star.state = SELECT_CLEARED;
1431 else if (lnum >= screen_Rows)
1432 clip_star.end.lnum = screen_Rows - 1;
1433 else
1434 clip_star.end.lnum = lnum;
1435}
1436
1437/*
1438 * Invert a region of the display between a starting and ending row and column
1439 * Values for "how":
1440 * CLIP_CLEAR: undo inversion
1441 * CLIP_SET: set inversion
1442 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1443 * 0: invert (GUI only).
1444 */
1445 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001446clip_invert_area(
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001447 Clipboard_T *cbd,
1448 int row1,
1449 int col1,
1450 int row2,
1451 int col2,
1452 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453{
1454 int invert = FALSE;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001455 int max_col;
1456
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001457#ifdef FEAT_PROP_POPUP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001458 max_col = cbd->max_col - 1;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001459#else
1460 max_col = Columns - 1;
1461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462
1463 if (how == CLIP_SET)
1464 invert = TRUE;
1465
Bram Moolenaare38eab22019-12-05 21:50:01 +01001466 // Swap the from and to positions so the from is always before
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1468 {
1469 int tmp_row, tmp_col;
1470
1471 tmp_row = row1;
1472 tmp_col = col1;
1473 row1 = row2;
1474 col1 = col2;
1475 row2 = tmp_row;
1476 col2 = tmp_col;
1477 }
1478 else if (how == CLIP_TOGGLE)
1479 invert = TRUE;
1480
Bram Moolenaare38eab22019-12-05 21:50:01 +01001481 // If all on the same line, do it the easy way
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 if (row1 == row2)
1483 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001484 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
1486 else
1487 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001488 // Handle a piece of the first line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 if (col1 > 0)
1490 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001491 clip_invert_rectangle(cbd, row1, col1, 1,
1492 (int)Columns - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 row1++;
1494 }
1495
Bram Moolenaare38eab22019-12-05 21:50:01 +01001496 // Handle a piece of the last line
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001497 if (col2 < max_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001499 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 row2--;
1501 }
1502
Bram Moolenaar4b96df52020-01-26 22:00:26 +01001503 // Handle the rectangle that's left
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 if (row2 >= row1)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001505 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1,
1506 (int)Columns, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 }
1508}
1509
1510/*
1511 * Invert or un-invert a rectangle of the screen.
1512 * "invert" is true if the result is inverted.
1513 */
1514 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001515clip_invert_rectangle(
Bram Moolenaar405bb422019-06-21 00:12:29 +02001516 Clipboard_T *cbd UNUSED,
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001517 int row_arg,
1518 int col_arg,
1519 int height_arg,
1520 int width_arg,
1521 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522{
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001523 int row = row_arg;
1524 int col = col_arg;
1525 int height = height_arg;
1526 int width = width_arg;
1527
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001528#ifdef FEAT_PROP_POPUP
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001529 // this goes on top of all popup windows
Bram Moolenaarc662ec92019-06-23 00:15:57 +02001530 screen_zindex = CLIP_ZINDEX;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001531
1532 if (col < cbd->min_col)
1533 {
1534 width -= cbd->min_col - col;
1535 col = cbd->min_col;
1536 }
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001537 if (width > cbd->max_col - col)
1538 width = cbd->max_col - col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001539 if (row < cbd->min_row)
1540 {
1541 height -= cbd->min_row - row;
1542 row = cbd->min_row;
1543 }
1544 if (height > cbd->max_row - row + 1)
1545 height = cbd->max_row - row + 1;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547#ifdef FEAT_GUI
1548 if (gui.in_use)
1549 gui_mch_invert_rectangle(row, col, height, width);
1550 else
1551#endif
1552 screen_draw_rectangle(row, col, height, width, invert);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001553#ifdef FEAT_PROP_POPUP
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001554 screen_zindex = 0;
1555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556}
1557
1558/*
1559 * Copy the currently selected area into the '*' register so it will be
1560 * available for pasting.
1561 * When "both" is TRUE also copy to the '+' register.
1562 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001564clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565{
1566 char_u *buffer;
1567 char_u *bufp;
1568 int row;
1569 int start_col;
1570 int end_col;
1571 int line_end_col;
1572 int add_newline_flag = FALSE;
1573 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 int row1 = clip_star.start.lnum;
1576 int col1 = clip_star.start.col;
1577 int row2 = clip_star.end.lnum;
1578 int col2 = clip_star.end.col;
1579
Bram Moolenaare38eab22019-12-05 21:50:01 +01001580 // Can't use ScreenLines unless initialized
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001581 if (ScreenLines == NULL)
1582 return;
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 /*
1585 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1586 */
1587 if (row1 > row2)
1588 {
1589 row = row1; row1 = row2; row2 = row;
1590 row = col1; col1 = col2; col2 = row;
1591 }
1592 else if (row1 == row2 && col1 > col2)
1593 {
1594 row = col1; col1 = col2; col2 = row;
1595 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001596#ifdef FEAT_PROP_POPUP
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001597 if (col1 < clip_star.min_col)
1598 col1 = clip_star.min_col;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001599 if (col2 > clip_star.max_col)
1600 col2 = clip_star.max_col;
Bram Moolenaar741ea172019-08-24 14:16:32 +02001601 if (row1 > clip_star.max_row || row2 < clip_star.min_row)
1602 return;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001603 if (row1 < clip_star.min_row)
1604 row1 = clip_star.min_row;
1605 if (row2 > clip_star.max_row)
1606 row2 = clip_star.max_row;
1607#endif
Bram Moolenaare38eab22019-12-05 21:50:01 +01001608 // correct starting point for being on right halve of double-wide char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 p = ScreenLines + LineOffset[row1];
1610 if (enc_dbcs != 0)
1611 col1 -= (*mb_head_off)(p, p + col1);
1612 else if (enc_utf8 && p[col1] == 0)
1613 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614
Bram Moolenaare38eab22019-12-05 21:50:01 +01001615 // Create a temporary buffer for storing the text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 if (enc_dbcs != 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01001618 len *= 2; // max. 2 bytes per display cell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001620 len *= MB_MAXBYTES;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001621 buffer = alloc(len);
Bram Moolenaare38eab22019-12-05 21:50:01 +01001622 if (buffer == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 return;
1624
Bram Moolenaare38eab22019-12-05 21:50:01 +01001625 // Process each row in the selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 for (bufp = buffer, row = row1; row <= row2; row++)
1627 {
1628 if (row == row1)
1629 start_col = col1;
1630 else
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001631#ifdef FEAT_PROP_POPUP
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001632 start_col = clip_star.min_col;
1633#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 start_col = 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001635#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636
1637 if (row == row2)
1638 end_col = col2;
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001639 else
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001640#ifdef FEAT_PROP_POPUP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001641 end_col = clip_star.max_col;
1642#else
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001643 end_col = Columns;
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001644#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001646 line_end_col = clip_get_line_end(&clip_star, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaare38eab22019-12-05 21:50:01 +01001648 // See if we need to nuke some trailing whitespace
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001649 if (end_col >=
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001650#ifdef FEAT_PROP_POPUP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001651 clip_star.max_col
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001652#else
1653 Columns
1654#endif
1655 && (row < row2 || end_col > line_end_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001657 // Get rid of trailing whitespace
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 end_col = line_end_col;
1659 if (end_col < start_col)
1660 end_col = start_col;
1661
Bram Moolenaare38eab22019-12-05 21:50:01 +01001662 // If the last line extended to the end, add an extra newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 if (row == row2)
1664 add_newline_flag = TRUE;
1665 }
1666
Bram Moolenaare38eab22019-12-05 21:50:01 +01001667 // If after the first row, we need to always add a newline
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if (row > row1 && !LineWraps[row - 1])
1669 *bufp++ = NL;
1670
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001671 // Safetey check for in case resizing went wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 if (row < screen_Rows && end_col <= screen_Columns)
1673 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if (enc_dbcs != 0)
1675 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001676 int i;
1677
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 p = ScreenLines + LineOffset[row];
1679 for (i = start_col; i < end_col; ++i)
1680 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1681 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001682 // single-width double-byte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 *bufp++ = 0x8e;
1684 *bufp++ = ScreenLines2[LineOffset[row] + i];
1685 }
1686 else
1687 {
1688 *bufp++ = p[i];
1689 if (MB_BYTE2LEN(p[i]) == 2)
1690 *bufp++ = p[++i];
1691 }
1692 }
1693 else if (enc_utf8)
1694 {
1695 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001696 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001697 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698
1699 off = LineOffset[row];
1700 for (i = start_col; i < end_col; ++i)
1701 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001702 // The base character is either in ScreenLinesUC[] or
1703 // ScreenLines[].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 if (ScreenLinesUC[off + i] == 0)
1705 *bufp++ = ScreenLines[off + i];
1706 else
1707 {
1708 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001709 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001711 // Add a composing character.
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001712 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001713 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001714 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 }
1717 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001718 // Skip right halve of double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 if (ScreenLines[off + i + 1] == 0)
1720 ++i;
1721 }
1722 }
1723 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 {
1725 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1726 end_col - start_col);
1727 bufp += end_col - start_col;
1728 }
1729 }
1730 }
1731
Bram Moolenaare38eab22019-12-05 21:50:01 +01001732 // Add a newline at the end if the selection ended there
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 if (add_newline_flag)
1734 *bufp++ = NL;
1735
Bram Moolenaare38eab22019-12-05 21:50:01 +01001736 // First cleanup any old selection and become the owner.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 clip_free_selection(&clip_star);
1738 clip_own_selection(&clip_star);
1739
Bram Moolenaare38eab22019-12-05 21:50:01 +01001740 // Yank the text into the '*' register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1742
Bram Moolenaare38eab22019-12-05 21:50:01 +01001743 // Make the register contents available to the outside world.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 clip_gen_set_selection(&clip_star);
1745
1746#ifdef FEAT_X11
1747 if (both)
1748 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001749 // Do the same for the '+' register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 clip_free_selection(&clip_plus);
1751 clip_own_selection(&clip_plus);
1752 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1753 clip_gen_set_selection(&clip_plus);
1754 }
1755#endif
1756 vim_free(buffer);
1757}
1758
1759/*
1760 * Find the starting and ending positions of the word at the given row and
1761 * column. Only white-separated words are recognized here.
1762 */
1763#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1764
1765 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001766clip_get_word_boundaries(Clipboard_T *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767{
1768 int start_class;
1769 int temp_col;
1770 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001773 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 return;
1775
1776 p = ScreenLines + LineOffset[row];
Bram Moolenaare38eab22019-12-05 21:50:01 +01001777 // Correct for starting in the right halve of a double-wide char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 if (enc_dbcs != 0)
1779 col -= dbcs_screen_head_off(p, p + col);
1780 else if (enc_utf8 && p[col] == 0)
1781 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 start_class = CHAR_CLASS(p[col]);
1783
1784 temp_col = col;
1785 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (enc_dbcs != 0
1787 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1788 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001789 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1790 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 break;
1792 cb->word_start_col = temp_col;
1793
1794 temp_col = col;
1795 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1797 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001798 else if (CHAR_CLASS(p[temp_col]) != start_class
1799 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 break;
1801 cb->word_end_col = temp_col;
1802}
1803
1804/*
1805 * Find the column position for the last non-whitespace character on the given
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001806 * line at or before start_col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 */
1808 static int
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001809clip_get_line_end(Clipboard_T *cbd UNUSED, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810{
1811 int i;
1812
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001813 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 return 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001815 for (i =
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001816#ifdef FEAT_PROP_POPUP
Bram Moolenaarff9f27c2019-08-17 16:15:53 +02001817 cbd->max_col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001818#else
1819 screen_Columns;
1820#endif
1821 i > 0; i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1823 break;
1824 return i;
1825}
1826
1827/*
1828 * Update the currently selected region by adding and/or subtracting from the
1829 * beginning or end and inverting the changed area(s).
1830 */
1831 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001832clip_update_modeless_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001833 Clipboard_T *cb,
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001834 int row1,
1835 int col1,
1836 int row2,
1837 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838{
Bram Moolenaare38eab22019-12-05 21:50:01 +01001839 // See if we changed at the beginning of the selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1841 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001842 clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 CLIP_TOGGLE);
1844 cb->start.lnum = row1;
1845 cb->start.col = col1;
1846 }
1847
Bram Moolenaare38eab22019-12-05 21:50:01 +01001848 // See if we changed at the end of the selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1850 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001851 clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 CLIP_TOGGLE);
1853 cb->end.lnum = row2;
1854 cb->end.col = col2;
1855 }
1856}
1857
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001858 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001859clip_gen_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860{
1861#ifdef FEAT_XCLIPBOARD
1862# ifdef FEAT_GUI
1863 if (gui.in_use)
1864 return clip_mch_own_selection(cbd);
1865 else
1866# endif
1867 return clip_xterm_own_selection(cbd);
1868#else
1869 return clip_mch_own_selection(cbd);
1870#endif
1871}
1872
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02001873 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001874clip_gen_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875{
1876#ifdef FEAT_XCLIPBOARD
1877# ifdef FEAT_GUI
1878 if (gui.in_use)
1879 clip_mch_lose_selection(cbd);
1880 else
1881# endif
1882 clip_xterm_lose_selection(cbd);
1883#else
1884 clip_mch_lose_selection(cbd);
1885#endif
1886}
1887
1888 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001889clip_gen_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001891 if (!clip_did_set_selection)
1892 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001893 // Updating postponed, so that accessing the system clipboard won't
1894 // hang Vim when accessing it many times (e.g. on a :g command).
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001895 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1896 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1897 {
1898 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001899 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001900 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902#ifdef FEAT_XCLIPBOARD
1903# ifdef FEAT_GUI
1904 if (gui.in_use)
1905 clip_mch_set_selection(cbd);
1906 else
1907# endif
1908 clip_xterm_set_selection(cbd);
1909#else
1910 clip_mch_set_selection(cbd);
1911#endif
1912}
1913
1914 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001915clip_gen_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917#ifdef FEAT_XCLIPBOARD
1918# ifdef FEAT_GUI
1919 if (gui.in_use)
1920 clip_mch_request_selection(cbd);
1921 else
1922# endif
1923 clip_xterm_request_selection(cbd);
1924#else
1925 clip_mch_request_selection(cbd);
1926#endif
1927}
1928
Bram Moolenaar113e1072019-01-20 15:30:40 +01001929#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001930 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001931clip_gen_owner_exists(Clipboard_T *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001932{
1933#ifdef FEAT_XCLIPBOARD
1934# ifdef FEAT_GUI_GTK
1935 if (gui.in_use)
1936 return clip_gtk_owner_exists(cbd);
1937 else
1938# endif
1939 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001940#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001941 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001942#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001943}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001944#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001945
Bram Moolenaar7bae0b12019-11-21 22:14:18 +01001946/*
1947 * Extract the items in the 'clipboard' option and set global values.
1948 * Return an error message or NULL for success.
1949 */
1950 char *
1951check_clipboard_option(void)
1952{
1953 int new_unnamed = 0;
1954 int new_autoselect_star = FALSE;
1955 int new_autoselect_plus = FALSE;
1956 int new_autoselectml = FALSE;
1957 int new_html = FALSE;
1958 regprog_T *new_exclude_prog = NULL;
1959 char *errmsg = NULL;
1960 char_u *p;
1961
1962 for (p = p_cb; *p != NUL; )
1963 {
1964 if (STRNCMP(p, "unnamed", 7) == 0 && (p[7] == ',' || p[7] == NUL))
1965 {
1966 new_unnamed |= CLIP_UNNAMED;
1967 p += 7;
1968 }
1969 else if (STRNCMP(p, "unnamedplus", 11) == 0
1970 && (p[11] == ',' || p[11] == NUL))
1971 {
1972 new_unnamed |= CLIP_UNNAMED_PLUS;
1973 p += 11;
1974 }
1975 else if (STRNCMP(p, "autoselect", 10) == 0
1976 && (p[10] == ',' || p[10] == NUL))
1977 {
1978 new_autoselect_star = TRUE;
1979 p += 10;
1980 }
1981 else if (STRNCMP(p, "autoselectplus", 14) == 0
1982 && (p[14] == ',' || p[14] == NUL))
1983 {
1984 new_autoselect_plus = TRUE;
1985 p += 14;
1986 }
1987 else if (STRNCMP(p, "autoselectml", 12) == 0
1988 && (p[12] == ',' || p[12] == NUL))
1989 {
1990 new_autoselectml = TRUE;
1991 p += 12;
1992 }
1993 else if (STRNCMP(p, "html", 4) == 0 && (p[4] == ',' || p[4] == NUL))
1994 {
1995 new_html = TRUE;
1996 p += 4;
1997 }
1998 else if (STRNCMP(p, "exclude:", 8) == 0 && new_exclude_prog == NULL)
1999 {
2000 p += 8;
2001 new_exclude_prog = vim_regcomp(p, RE_MAGIC);
2002 if (new_exclude_prog == NULL)
2003 errmsg = e_invarg;
2004 break;
2005 }
2006 else
2007 {
2008 errmsg = e_invarg;
2009 break;
2010 }
2011 if (*p == ',')
2012 ++p;
2013 }
2014 if (errmsg == NULL)
2015 {
2016 clip_unnamed = new_unnamed;
2017 clip_autoselect_star = new_autoselect_star;
2018 clip_autoselect_plus = new_autoselect_plus;
2019 clip_autoselectml = new_autoselectml;
2020 clip_html = new_html;
2021 vim_regfree(clip_exclude_prog);
2022 clip_exclude_prog = new_exclude_prog;
2023#ifdef FEAT_GUI_GTK
2024 if (gui.in_use)
2025 {
2026 gui_gtk_set_selection_targets();
2027 gui_gtk_set_dnd_targets();
2028 }
2029#endif
2030 }
2031 else
2032 vim_regfree(new_exclude_prog);
2033
2034 return errmsg;
2035}
2036
2037#endif // FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038
Bram Moolenaare38eab22019-12-05 21:50:01 +01002039//////////////////////////////////////////////////////////////////////////////
2040// Functions that handle the input buffer.
2041// This is used for any GUI version, and the unix terminal version.
2042//
2043// For Unix, the input characters are buffered to be able to check for a
2044// CTRL-C. This should be done with signals, but I don't know how to do that
2045// in a portable way for a tty in RAW mode.
2046//
2047// For the client-server code in the console the received keys are put in the
2048// input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049
2050#if defined(USE_INPUT_BUF) || defined(PROTO)
2051
2052/*
2053 * Internal typeahead buffer. Includes extra space for long key code
2054 * descriptions which would otherwise overflow. The buffer is considered full
2055 * when only this extra space (or part of it) remains.
2056 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01002057#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01002059 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 * This requires a larger buffer...
2061 * (Madsen) Go with this for remote input as well ...
2062 */
2063# define INBUFLEN 4096
2064#else
2065# define INBUFLEN 250
2066#endif
2067
2068static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
Bram Moolenaare38eab22019-12-05 21:50:01 +01002069static int inbufcount = 0; // number of chars in inbuf[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070
2071/*
2072 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
2073 * trash_input_buf() are functions for manipulating the input buffer. These
2074 * are used by the gui_* calls when a GUI is used to handle keyboard input.
2075 */
2076
2077 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002078vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079{
2080 return (inbufcount >= INBUFLEN);
2081}
2082
2083 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002084vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085{
2086 return (inbufcount == 0);
2087}
2088
2089#if defined(FEAT_OLE) || defined(PROTO)
2090 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002091vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092{
2093 return (INBUFLEN - inbufcount);
2094}
2095#endif
2096
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00002097#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002099vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100{
2101 return inbufcount;
2102}
2103#endif
2104
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105/*
2106 * Return the current contents of the input buffer and make it empty.
2107 * The returned pointer must be passed to set_input_buf() later.
2108 */
2109 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002110get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111{
2112 garray_T *gap;
2113
Bram Moolenaare38eab22019-12-05 21:50:01 +01002114 // We use a growarray to store the data pointer and the length.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002115 gap = ALLOC_ONE(garray_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 if (gap != NULL)
2117 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002118 // Add one to avoid a zero size.
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02002119 gap->ga_data = alloc(inbufcount + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 if (gap->ga_data != NULL)
2121 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
2122 gap->ga_len = inbufcount;
2123 }
2124 trash_input_buf();
2125 return (char_u *)gap;
2126}
2127
2128/*
2129 * Restore the input buffer with a pointer returned from get_input_buf().
2130 * The allocated memory is freed, this only works once!
2131 */
2132 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002133set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134{
2135 garray_T *gap = (garray_T *)p;
2136
2137 if (gap != NULL)
2138 {
2139 if (gap->ga_data != NULL)
2140 {
2141 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
2142 inbufcount = gap->ga_len;
2143 vim_free(gap->ga_data);
2144 }
2145 vim_free(gap);
2146 }
2147}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149/*
2150 * Add the given bytes to the input buffer
2151 * Special keys start with CSI. A real CSI must have been translated to
2152 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
2153 */
2154 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002155add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
2157 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002158 return; // Shouldn't ever happen!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 while (len--)
2161 inbuf[inbufcount++] = *s++;
2162}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164/*
2165 * Add "str[len]" to the input buffer while escaping CSI bytes.
2166 */
2167 void
2168add_to_input_buf_csi(char_u *str, int len)
2169{
2170 int i;
2171 char_u buf[2];
2172
2173 for (i = 0; i < len; ++i)
2174 {
2175 add_to_input_buf(str + i, 1);
2176 if (str[i] == CSI)
2177 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002178 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 buf[0] = KS_EXTRA;
2180 buf[1] = (int)KE_CSI;
2181 add_to_input_buf(buf, 2);
2182 }
2183 }
2184}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
Bram Moolenaare38eab22019-12-05 21:50:01 +01002186/*
2187 * Remove everything from the input buffer. Called when ^C is found.
2188 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002190trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
2192 inbufcount = 0;
2193}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194
2195/*
2196 * Read as much data from the input buffer as possible up to maxlen, and store
2197 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 */
2199 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002200read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201{
Bram Moolenaare38eab22019-12-05 21:50:01 +01002202 if (inbufcount == 0) // if the buffer is empty, fill it
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 fill_input_buf(TRUE);
2204 if (maxlen > inbufcount)
2205 maxlen = inbufcount;
2206 mch_memmove(buf, inbuf, (size_t)maxlen);
2207 inbufcount -= maxlen;
2208 if (inbufcount)
2209 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
2210 return (int)maxlen;
2211}
2212
2213 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002214fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215{
Bram Moolenaard0573012017-10-28 21:11:06 +02002216#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 int len;
2218 int try;
2219 static int did_read_something = FALSE;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002220 static char_u *rest = NULL; // unconverted rest of previous read
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 static int restlen = 0;
2222 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223#endif
2224
2225#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002226 if (gui.in_use
2227# ifdef NO_CONSOLE_INPUT
Bram Moolenaare38eab22019-12-05 21:50:01 +01002228 // Don't use the GUI input when the window hasn't been opened yet.
2229 // We get here from ui_inchar() when we should try reading from stdin.
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002230 && !no_console_input()
2231# endif
2232 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 {
2234 gui_mch_update();
2235 return;
2236 }
2237#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002238#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (vim_is_input_buf_full())
2240 return;
2241 /*
2242 * Fill_input_buf() is only called when we really need a character.
2243 * If we can't get any, but there is some in the buffer, just return.
2244 * If we can't get any, and there isn't any in the buffer, we give up and
2245 * exit Vim.
2246 */
2247# ifdef __BEOS__
2248 /*
2249 * On the BeBox version (for now), all input is secretly performed within
2250 * beos_select() which is called from RealWaitForChar().
2251 */
2252 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2253 ;
2254 len = inbufcount;
2255 inbufcount = 0;
2256# else
2257
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 if (rest != NULL)
2259 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002260 // Use remainder of previous call, starts with an invalid character
2261 // that may become valid when reading more.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 if (restlen > INBUFLEN - inbufcount)
2263 unconverted = INBUFLEN - inbufcount;
2264 else
2265 unconverted = restlen;
2266 mch_memmove(inbuf + inbufcount, rest, unconverted);
2267 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002268 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 else
2270 {
2271 restlen -= unconverted;
2272 mch_memmove(rest, rest + unconverted, restlen);
2273 }
2274 inbufcount += unconverted;
2275 }
2276 else
2277 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
Bram Moolenaare38eab22019-12-05 21:50:01 +01002279 len = 0; // to avoid gcc warning
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 for (try = 0; try < 100; ++try)
2281 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002282 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002283 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002284# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002285 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002286# else
2287 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002289
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 if (len > 0 || got_int)
2291 break;
2292 /*
2293 * If reading stdin results in an error, continue reading stderr.
2294 * This helps when using "foo | xargs vim".
2295 */
2296 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2297 {
2298 int m = cur_tmode;
2299
Bram Moolenaare38eab22019-12-05 21:50:01 +01002300 // We probably set the wrong file descriptor to raw mode. Switch
2301 // back to cooked mode, use another descriptor and set the mode to
2302 // what it was.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 settmode(TMODE_COOK);
2304#ifdef HAVE_DUP
Bram Moolenaare38eab22019-12-05 21:50:01 +01002305 // Use stderr for stdin, also works for shell commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002307 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308#else
Bram Moolenaare38eab22019-12-05 21:50:01 +01002309 read_cmd_fd = 2; // read from stderr instead of stdin
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310#endif
2311 settmode(m);
2312 }
2313 if (!exit_on_error)
2314 return;
2315 }
2316# endif
2317 if (len <= 0 && !got_int)
2318 read_error_exit();
2319 if (len > 0)
2320 did_read_something = TRUE;
2321 if (got_int)
2322 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002323 // Interrupted, pretend a CTRL-C was typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 inbuf[0] = 3;
2325 inbufcount = 1;
2326 }
2327 else
2328 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 /*
2330 * May perform conversion on the input characters.
2331 * Include the unconverted rest of the previous call.
2332 * If there is an incomplete char at the end it is kept for the next
2333 * time, reading more bytes should make conversion possible.
2334 * Don't do this in the unlikely event that the input buffer is too
2335 * small ("rest" still contains more bytes).
2336 */
2337 if (input_conv.vc_type != CONV_NONE)
2338 {
2339 inbufcount -= unconverted;
2340 len = convert_input_safe(inbuf + inbufcount,
2341 len + unconverted, INBUFLEN - inbufcount,
2342 rest == NULL ? &rest : NULL, &restlen);
2343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 while (len-- > 0)
2345 {
2346 /*
2347 * if a CTRL-C was typed, remove it from the buffer and set got_int
2348 */
2349 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2350 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002351 // remove everything typed before the CTRL-C
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2353 inbufcount = 0;
2354 got_int = TRUE;
2355 }
2356 ++inbufcount;
2357 }
2358 }
Bram Moolenaar74ee5e22019-12-13 18:13:22 +01002359#endif // UNIX || VMS || MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360}
Bram Moolenaar74ee5e22019-12-13 18:13:22 +01002361#endif // USE_INPUT_BUF
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362
2363/*
2364 * Exit because of an input read error.
2365 */
2366 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002367read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
Bram Moolenaare38eab22019-12-05 21:50:01 +01002369 if (silent_mode) // Normal way to exit for "ex -s"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 getout(0);
2371 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2372 preserve_exit();
2373}
2374
2375#if defined(CURSOR_SHAPE) || defined(PROTO)
2376/*
2377 * May update the shape of the cursor.
2378 */
2379 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002380ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381{
2382# ifdef FEAT_GUI
2383 if (gui.in_use)
2384 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002385 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002387 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002388
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389# ifdef MCH_CURSOR_SHAPE
2390 mch_update_cursor();
2391# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002392
2393# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002394 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002395# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002397
2398 void
2399ui_cursor_shape(void)
2400{
2401 ui_cursor_shape_forced(FALSE);
2402}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403#endif
2404
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405/*
2406 * Check bounds for column number
2407 */
2408 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002409check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 if (col < 0)
2412 return 0;
2413 if (col >= (int)screen_Columns)
2414 return (int)screen_Columns - 1;
2415 return col;
2416}
2417
2418/*
2419 * Check bounds for row number
2420 */
2421 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002422check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
2424 if (row < 0)
2425 return 0;
2426 if (row >= (int)screen_Rows)
2427 return (int)screen_Rows - 1;
2428 return row;
2429}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430
2431/*
2432 * Stuff for the X clipboard. Shared between VMS and Unix.
2433 */
2434
2435#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2436# include <X11/Xatom.h>
2437# include <X11/Intrinsic.h>
2438
2439/*
2440 * Open the application context (if it hasn't been opened yet).
2441 * Used for Motif and Athena GUI and the xterm clipboard.
2442 */
2443 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002444open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445{
2446 if (app_context == NULL)
2447 {
2448 XtToolkitInitialize();
2449 app_context = XtCreateApplicationContext();
2450 }
2451}
2452
Bram Moolenaare38eab22019-12-05 21:50:01 +01002453static Atom vim_atom; // Vim's own special selection format
2454static Atom vimenc_atom; // Vim's extended selection format
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002455static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456static Atom compound_text_atom;
2457static Atom text_atom;
2458static Atom targets_atom;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002459static Atom timestamp_atom; // Used to get a timestamp
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460
2461 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002462x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463{
2464 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002466 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2468 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002469 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002471 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2472 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473}
2474
2475/*
2476 * X Selection stuff, for cutting and pasting text to other windows.
2477 */
2478
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002479static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2480static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2481static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002482
2483/*
2484 * Property callback to get a timestamp for XtOwnSelection.
2485 */
2486 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002487clip_x11_timestamp_cb(
2488 Widget w,
2489 XtPointer n UNUSED,
2490 XEvent *event,
2491 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002492{
2493 Atom actual_type;
2494 int format;
2495 unsigned long nitems, bytes_after;
2496 unsigned char *prop=NULL;
2497 XPropertyEvent *xproperty=&event->xproperty;
2498
Bram Moolenaare38eab22019-12-05 21:50:01 +01002499 // Must be a property notify, state can't be Delete (True), has to be
2500 // one of the supported selection types.
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002501 if (event->type != PropertyNotify || xproperty->state
2502 || (xproperty->atom != clip_star.sel_atom
2503 && xproperty->atom != clip_plus.sel_atom))
2504 return;
2505
2506 if (XGetWindowProperty(xproperty->display, xproperty->window,
2507 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2508 &nitems, &bytes_after, &prop))
2509 return;
2510
2511 if (prop)
2512 XFree(prop);
2513
Bram Moolenaare38eab22019-12-05 21:50:01 +01002514 // Make sure the property type is "TIMESTAMP" and it's 32 bits.
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002515 if (actual_type != timestamp_atom || format != 32)
2516 return;
2517
Bram Moolenaare38eab22019-12-05 21:50:01 +01002518 // Get the selection, using the event timestamp.
Bram Moolenaar62b42182010-09-21 22:09:37 +02002519 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2520 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002521 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002522 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002523 // Set the "owned" flag now, there may have been a call to
2524 // lose_ownership_cb in between.
Bram Moolenaar62b42182010-09-21 22:09:37 +02002525 if (xproperty->atom == clip_plus.sel_atom)
2526 clip_plus.owned = TRUE;
2527 else
2528 clip_star.owned = TRUE;
2529 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002530}
2531
2532 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002533x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002534{
2535 XtAddEventHandler(w, PropertyChangeMask, False,
2536 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2537}
2538
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002540clip_x11_request_selection_cb(
2541 Widget w UNUSED,
2542 XtPointer success,
2543 Atom *sel_atom,
2544 Atom *type,
2545 XtPointer value,
2546 long_u *length,
2547 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002549 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 long_u len;
2551 char_u *p;
2552 char **text_list = NULL;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002553 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555
2556 if (*sel_atom == clip_plus.sel_atom)
2557 cbd = &clip_plus;
2558 else
2559 cbd = &clip_star;
2560
2561 if (value == NULL || *length == 0)
2562 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002563 clip_free_selection(cbd); // nothing received, clear register
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 *(int *)success = FALSE;
2565 return;
2566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 p = (char_u *)value;
2568 len = *length;
2569 if (*type == vim_atom)
2570 {
2571 motion_type = *p++;
2572 len--;
2573 }
2574
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 else if (*type == vimenc_atom)
2576 {
2577 char_u *enc;
2578 vimconv_T conv;
2579 int convlen;
2580
2581 motion_type = *p++;
2582 --len;
2583
2584 enc = p;
2585 p += STRLEN(p) + 1;
2586 len -= p - enc;
2587
Bram Moolenaare38eab22019-12-05 21:50:01 +01002588 // If the encoding of the text is different from 'encoding', attempt
2589 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 conv.vc_type = CONV_NONE;
2591 convert_setup(&conv, enc, p_enc);
2592 if (conv.vc_type != CONV_NONE)
2593 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002594 convlen = len; // Need to use an int here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 tmpbuf = string_convert(&conv, p, &convlen);
2596 len = convlen;
2597 if (tmpbuf != NULL)
2598 p = tmpbuf;
2599 convert_setup(&conv, NULL, NULL);
2600 }
2601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002603 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002604 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002605 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 {
2607 XTextProperty text_prop;
2608 int n_text = 0;
2609 int status;
2610
2611 text_prop.value = (unsigned char *)value;
2612 text_prop.encoding = *type;
2613 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002614 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002615#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002616 if (*type == utf8_atom)
2617 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2618 &text_list, &n_text);
2619 else
2620#endif
2621 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 &text_list, &n_text);
2623 if (status != Success || n_text < 1)
2624 {
2625 *(int *)success = FALSE;
2626 return;
2627 }
2628 p = (char_u *)text_list[0];
2629 len = STRLEN(p);
2630 }
2631 clip_yank_selection(motion_type, p, (long)len, cbd);
2632
2633 if (text_list != NULL)
2634 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 XtFree((char *)value);
2637 *(int *)success = TRUE;
2638}
2639
2640 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002641clip_x11_request_selection(
2642 Widget myShell,
2643 Display *dpy,
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002644 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645{
2646 XEvent event;
2647 Atom type;
2648 static int success;
2649 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002650 time_t start_time;
2651 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002653 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 {
2655 switch (i)
2656 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002659 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002660 case 3: type = compound_text_atom; break;
2661 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 default: type = XA_STRING;
2663 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002664 if (type == utf8_atom
2665# if defined(X_HAVE_UTF8_STRING)
2666 && !enc_utf8
2667# endif
2668 )
Bram Moolenaare38eab22019-12-05 21:50:01 +01002669 // Only request utf-8 when 'encoding' is utf8 and
2670 // Xutf8TextPropertyToTextList is available.
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002671 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002672 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2674 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2675
Bram Moolenaare38eab22019-12-05 21:50:01 +01002676 // Make sure the request for the selection goes out before waiting for
2677 // a response.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 XFlush(dpy);
2679
2680 /*
2681 * Wait for result of selection request, otherwise if we type more
2682 * characters, then they will appear before the one that requested the
2683 * paste! Don't worry, we will catch up with any other events later.
2684 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002685 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002686 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002688 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2689 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2690 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002691 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002692 // This is where clip_x11_request_selection_cb() should be
2693 // called. It may actually happen a bit later, so we loop
2694 // until "success" changes.
2695 // We may get a SelectionRequest here and if we don't handle
2696 // it we hang. KDE klipper does this, for example.
2697 // We need to handle a PropertyNotify for large selections.
Bram Moolenaar89417b92008-09-07 19:48:53 +00002698 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002699 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002700 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701
Bram Moolenaare38eab22019-12-05 21:50:01 +01002702 // Time out after 2 to 3 seconds to avoid that we hang when the
2703 // other process doesn't respond. Note that the SelectionNotify
2704 // event may still come later when the selection owner comes back
2705 // to life and the text gets inserted unexpectedly. Don't know
2706 // why that happens or how to avoid that :-(.
Bram Moolenaar89417b92008-09-07 19:48:53 +00002707 if (time(NULL) > start_time + 2)
2708 {
2709 timed_out = TRUE;
2710 break;
2711 }
2712
Bram Moolenaare38eab22019-12-05 21:50:01 +01002713 // Do we need this? Probably not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 XSync(dpy, False);
2715
Bram Moolenaare38eab22019-12-05 21:50:01 +01002716 // Wait for 1 msec to avoid that we eat up all CPU time.
Bram Moolenaar89417b92008-09-07 19:48:53 +00002717 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 }
2719
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002720 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002722
Bram Moolenaare38eab22019-12-05 21:50:01 +01002723 // don't do a retry with another type after timing out, otherwise we
2724 // hang for 15 seconds.
Bram Moolenaar89417b92008-09-07 19:48:53 +00002725 if (timed_out)
2726 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 }
2728
Bram Moolenaare38eab22019-12-05 21:50:01 +01002729 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002730 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731}
2732
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002734clip_x11_convert_selection_cb(
2735 Widget w UNUSED,
2736 Atom *sel_atom,
2737 Atom *target,
2738 Atom *type,
2739 XtPointer *value,
2740 long_u *length,
2741 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002743 static char_u *save_result = NULL;
2744 static long_u save_length = 0;
2745 char_u *string;
2746 int motion_type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002747 Clipboard_T *cbd;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002748 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
2750 if (*sel_atom == clip_plus.sel_atom)
2751 cbd = &clip_plus;
2752 else
2753 cbd = &clip_star;
2754
2755 if (!cbd->owned)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002756 return False; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757
Bram Moolenaare38eab22019-12-05 21:50:01 +01002758 // requestor wants to know what target types we support
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (*target == targets_atom)
2760 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002761 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 *value = (XtPointer)array;
2764 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002768 if (enc_utf8)
2769 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002770 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 array[i++] = text_atom;
2772 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002773
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 *type = XA_ATOM;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002775 // This used to be: *format = sizeof(Atom) * 8; but that caused
2776 // crashes on 64 bit machines. (Peter Derr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 *format = 32;
2778 *length = i;
2779 return True;
2780 }
2781
2782 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002784 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 && *target != vim_atom
2786 && *target != text_atom
2787 && *target != compound_text_atom)
2788 return False;
2789
2790 clip_get_selection(cbd);
2791 motion_type = clip_convert_selection(&string, length, cbd);
2792 if (motion_type < 0)
2793 return False;
2794
Bram Moolenaare38eab22019-12-05 21:50:01 +01002795 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 if (*target == vim_atom)
2797 (*length)++;
2798
Bram Moolenaare38eab22019-12-05 21:50:01 +01002799 // Our own format with encoding: motion 'encoding' NUL text
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 if (*target == vimenc_atom)
2801 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002803 if (save_length < *length || save_length / 2 >= *length)
2804 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2805 else
2806 *value = save_result;
2807 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 {
2809 vim_free(string);
2810 return False;
2811 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002812 save_result = (char_u *)*value;
2813 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002815 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002817 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002818 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002820 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 {
2822 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002823 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002824 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825
Bram Moolenaare38eab22019-12-05 21:50:01 +01002826 // create NUL terminated string which XmbTextListToTextProperty wants
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 mch_memmove(string_nt, string, (size_t)*length);
2828 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002829 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2830 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002831 if (conv_result != Success)
2832 {
2833 vim_free(string);
2834 return False;
2835 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002836 *value = (XtPointer)(text_prop.value); // from plain text
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 *length = text_prop.nitems;
2838 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002839 XtFree((char *)save_result);
2840 save_result = (char_u *)*value;
2841 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 else if (*target == vimenc_atom)
2844 {
2845 int l = STRLEN(p_enc);
2846
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002847 save_result[0] = motion_type;
2848 STRCPY(save_result + 1, p_enc);
2849 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 *type = vimenc_atom;
2851 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 else
2853 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002854 save_result[0] = motion_type;
2855 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 *type = vim_atom;
2857 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002858 *format = 8; // 8 bits per char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 vim_free(string);
2860 return True;
2861}
2862
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002864clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865{
2866 if (*sel_atom == clip_plus.sel_atom)
2867 clip_lose_selection(&clip_plus);
2868 else
2869 clip_lose_selection(&clip_star);
2870}
2871
2872 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002873clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002875 XtDisownSelection(myShell, cbd->sel_atom,
2876 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877}
2878
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002879 static void
2880clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2881{
Bram Moolenaare38eab22019-12-05 21:50:01 +01002882 // To prevent automatically freeing the selection value.
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002883}
2884
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002886clip_x11_own_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887{
Bram Moolenaare38eab22019-12-05 21:50:01 +01002888 // When using the GUI we have proper timestamps, use the one of the last
2889 // event. When in the console we don't get events (the terminal gets
2890 // them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2891 // be called with the current timestamp.
Bram Moolenaar62b42182010-09-21 22:09:37 +02002892#ifdef FEAT_GUI
2893 if (gui.in_use)
2894 {
2895 if (XtOwnSelection(myShell, cbd->sel_atom,
2896 XtLastTimestampProcessed(XtDisplay(myShell)),
2897 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002898 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002899 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002900 }
2901 else
2902#endif
2903 {
2904 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2905 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002906 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002907 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002908 // Flush is required in a terminal as nothing else is doing it.
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002909 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 return OK;
2911}
2912
2913/*
2914 * Send the current selection to the clipboard. Do nothing for X because we
2915 * will fill in the selection only when requested by another app.
2916 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002918clip_x11_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919{
2920}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002921
Bram Moolenaar113e1072019-01-20 15:30:40 +01002922#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2923 || defined(PROTO)
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02002924 static int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002925clip_x11_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002926{
2927 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2928}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002932#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2933 || defined(FEAT_GUI_GTK) || defined(PROTO)
2934/*
2935 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2936 */
2937 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002938yank_cut_buffer0(Display *dpy, Clipboard_T *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002939{
2940 int nbytes = 0;
2941 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2942
2943 if (nbytes > 0)
2944 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002945 int done = FALSE;
2946
Bram Moolenaare38eab22019-12-05 21:50:01 +01002947 // CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2948 // using a multi-byte encoding. Conversion between two 8-bit
2949 // character sets usually fails and the text might actually be in
2950 // 'enc' anyway.
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002951 if (has_mbyte)
2952 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002953 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002954 vimconv_T vc;
2955
2956 vc.vc_type = CONV_NONE;
2957 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2958 {
2959 conv_buf = string_convert(&vc, buffer, &nbytes);
2960 if (conv_buf != NULL)
2961 {
2962 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2963 vim_free(conv_buf);
2964 done = TRUE;
2965 }
2966 convert_setup(&vc, NULL, NULL);
2967 }
2968 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002969 if (!done) // use the text without conversion
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002970 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2971 XFree((void *)buffer);
2972 if (p_verbose > 0)
2973 {
2974 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002975 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002976 verbose_leave();
2977 }
2978 }
2979}
2980#endif
2981
Bram Moolenaar4f974752019-02-17 17:44:42 +01002982#if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983/*
2984 * Called when focus changed. Used for the GUI or for systems where this can
2985 * be done in the console (Win32).
2986 */
2987 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002988ui_focus_change(
Bram Moolenaare38eab22019-12-05 21:50:01 +01002989 int in_focus) // TRUE if focus gained.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990{
2991 static time_t last_time = (time_t)0;
2992 int need_redraw = FALSE;
2993
Bram Moolenaare38eab22019-12-05 21:50:01 +01002994 // When activated: Check if any file was modified outside of Vim.
2995 // Only do this when not done within the last two seconds (could get
2996 // several events in a row).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 if (in_focus && last_time + 2 < time(NULL))
2998 {
2999 need_redraw = check_timestamps(
3000# ifdef FEAT_GUI
3001 gui.in_use
3002# else
3003 FALSE
3004# endif
3005 );
3006 last_time = time(NULL);
3007 }
3008
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 /*
3010 * Fire the focus gained/lost autocommand.
3011 */
3012 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3013 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
3015 if (need_redraw)
3016 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003017 // Something was executed, make sure the cursor is put back where it
3018 // belongs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 need_wait_return = FALSE;
3020
3021 if (State & CMDLINE)
3022 redrawcmdline();
3023 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3024 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3025 repeat_message();
3026 else if ((State & NORMAL) || (State & INSERT))
3027 {
3028 if (must_redraw != 0)
3029 update_screen(0);
3030 setcursor();
3031 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01003032 cursor_on(); // redrawing may have switched it off
Bram Moolenaara338adc2018-01-31 20:51:47 +01003033 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034# ifdef FEAT_GUI
3035 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037# endif
3038 }
3039#ifdef FEAT_TITLE
Bram Moolenaare38eab22019-12-05 21:50:01 +01003040 // File may have been changed from 'readonly' to 'noreadonly'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 if (need_maketitle)
3042 maketitle();
3043#endif
3044}
3045#endif
3046
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003047#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048/*
3049 * Save current Input Method status to specified place.
3050 */
3051 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003052im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
Bram Moolenaare38eab22019-12-05 21:50:01 +01003054 // Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3055 // disabled then (but might start later).
3056 // Also don't save when inside a mapping, vgetc_im_active has not been set
3057 // then.
3058 // And don't save when the keys were stuffed (e.g., for a "." command).
3059 // And don't save when the GUI is running but our window doesn't have
3060 // input focus (e.g., when a find dialog is open).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 if (!p_imdisable && KeyTyped && !KeyStuffed
3062# ifdef FEAT_XIM
3063 && xic != NULL
3064# endif
3065# ifdef FEAT_GUI
3066 && (!gui.in_use || gui.in_focus)
3067# endif
3068 )
3069 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003070 // Do save when IM is on, or IM is off and saved status is on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 if (vgetc_im_active)
3072 *psave = B_IMODE_IM;
3073 else if (*psave == B_IMODE_IM)
3074 *psave = B_IMODE_NONE;
3075 }
3076}
3077#endif