blob: 3f52db1ba9ef2e83ef7fbbaff9d980fcde722fb9 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ui.c: functions that handle the user interface.
12 * 1. Keyboard input stuff, and a bit of windowing stuff. These are called
13 * before the machine specific stuff (mch_*) so that we can call the GUI
14 * stuff instead if the GUI is running.
15 * 2. Clipboard stuff.
16 * 3. Input buffer stuff.
17 */
18
19#include "vim.h"
20
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +020021#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
22# define WIN32_LEAN_AND_MEAN
23# include <windows.h>
24# include "winclip.pro"
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010028ui_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029{
30#ifdef FEAT_GUI
31 if (gui.in_use && !gui.dying && !gui.starting)
32 {
33 gui_write(s, len);
34 if (p_wd)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +010035 gui_wait_for_chars(p_wd, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 return;
37 }
38#endif
39#ifndef NO_CONSOLE
40 /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */
41 if (!(silent_mode && p_verbose == 0))
42 {
Bram Moolenaar4f974752019-02-17 17:44:42 +010043#if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 char_u *tofree = NULL;
45
46 if (output_conv.vc_type != CONV_NONE)
47 {
48 /* Convert characters from 'encoding' to 'termencoding'. */
49 tofree = string_convert(&output_conv, s, &len);
50 if (tofree != NULL)
51 s = tofree;
52 }
53#endif
54
55 mch_write(s, len);
56
Bram Moolenaar4f974752019-02-17 17:44:42 +010057# if !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 if (output_conv.vc_type != CONV_NONE)
59 vim_free(tofree);
Bram Moolenaar264b74f2019-01-24 17:18:42 +010060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 }
62#endif
63}
64
Bram Moolenaar4f974752019-02-17 17:44:42 +010065#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When executing an external program, there may be some typed characters that
68 * are not consumed by it. Give them back to ui_inchar() and they are stored
69 * here for the next call.
70 */
71static char_u *ta_str = NULL;
72static int ta_off; /* offset for next char to use when ta_str != NULL */
73static int ta_len; /* length of ta_str when it's not NULL*/
74
75 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010076ui_inchar_undo(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 char_u *new;
79 int newlen;
80
81 newlen = len;
82 if (ta_str != NULL)
83 newlen += ta_len - ta_off;
84 new = alloc(newlen);
85 if (new != NULL)
86 {
87 if (ta_str != NULL)
88 {
89 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
90 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
91 vim_free(ta_str);
92 }
93 else
94 mch_memmove(new, s, (size_t)len);
95 ta_str = new;
96 ta_len = newlen;
97 ta_off = 0;
98 }
99}
100#endif
101
102/*
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200103 * ui_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * Get characters from the keyboard.
105 * Return the number of characters that are available.
106 * If "wtime" == 0 do not wait for characters.
107 * If "wtime" == -1 wait forever for characters.
108 * If "wtime" > 0 wait "wtime" milliseconds for a character.
109 *
110 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
111 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
112 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
113 * otherwise.
114 */
115 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100116ui_inchar(
117 char_u *buf,
118 int maxlen,
119 long wtime, /* don't use "time", MIPS cannot handle it */
120 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121{
122 int retval = 0;
123
124#if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
125 /*
126 * Use the typeahead if there is any.
127 */
128 if (ta_str != NULL)
129 {
130 if (maxlen >= ta_len - ta_off)
131 {
132 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
Bram Moolenaard23a8232018-02-10 18:45:26 +0100133 VIM_CLEAR(ta_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 return ta_len;
135 }
136 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
137 ta_off += maxlen;
138 return maxlen;
139 }
140#endif
141
Bram Moolenaar05159a02005-02-26 23:04:13 +0000142#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000143 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000144 prof_inchar_enter();
145#endif
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#ifdef NO_CONSOLE_INPUT
148 /* Don't wait for character input when the window hasn't been opened yet.
149 * Do try reading, this works when redirecting stdin from a file.
150 * Must return something, otherwise we'll loop forever. If we run into
151 * this very often we probably got stuck, exit Vim. */
152 if (no_console_input())
153 {
154 static int count = 0;
155
156# ifndef NO_CONSOLE
Bram Moolenaar13410242018-11-26 21:19:11 +0100157 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000158 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000159 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160# endif
161 if (wtime == -1 && ++count == 1000)
162 read_error_exit();
163 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000164 retval = 1;
165 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 }
167#endif
168
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000169 /* If we are going to wait for some time or block... */
170 if (wtime == -1 || wtime > 100L)
171 {
172 /* ... allow signals to kill us. */
173 (void)vim_handle_signal(SIGNAL_UNBLOCK);
174
175 /* ... there is no need for CTRL-C to interrupt something, don't let
176 * it set got_int when it was mapped. */
Bram Moolenaar50008692015-01-14 16:08:32 +0100177 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state())
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000178 ctrl_c_interrupts = FALSE;
179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100181 /*
182 * Here we call gui_inchar() or mch_inchar(), the GUI or machine-dependent
183 * input function. The functionality they implement is like this:
184 *
185 * while (not timed out)
186 * {
187 * handle-resize;
188 * parse-queued-messages;
189 * if (waited for 'updatetime')
190 * trigger-cursorhold;
191 * ui_wait_for_chars_or_timer()
192 * if (character available)
193 * break;
194 * }
195 *
196 * ui_wait_for_chars_or_timer() does:
197 *
198 * while (not timed out)
199 * {
200 * if (any-timer-triggered)
201 * invoke-timer-callback;
202 * wait-for-character();
203 * if (character available)
204 * break;
205 * }
206 *
207 * wait-for-character() does:
208 * while (not timed out)
209 * {
210 * Wait for event;
211 * if (something on channel)
212 * read/write channel;
213 * else if (resized)
214 * handle_resize();
215 * else if (system event)
216 * deal-with-system-event;
217 * else if (character available)
218 * break;
219 * }
220 *
221 */
222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223#ifdef FEAT_GUI
224 if (gui.in_use)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100225 retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226#endif
227#ifndef NO_CONSOLE
228# ifdef FEAT_GUI
229 else
230# endif
231 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
232#endif
233
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000234 if (wtime == -1 || wtime > 100L)
235 /* block SIGHUP et al. */
236 (void)vim_handle_signal(SIGNAL_BLOCK);
237
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 ctrl_c_interrupts = TRUE;
239
Bram Moolenaar05159a02005-02-26 23:04:13 +0000240#ifdef NO_CONSOLE_INPUT
241theend:
242#endif
243#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000244 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000245 prof_inchar_exit();
246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 return retval;
248}
249
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100250#if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO)
251/*
252 * Common code for mch_inchar() and gui_inchar(): Wait for a while or
253 * indefinitely until characters are available, dealing with timers and
254 * messages on channels.
255 *
256 * "buf" may be NULL if the available characters are not to be returned, only
257 * check if they are available.
258 *
259 * Return the number of characters that are available.
260 * If "wtime" == 0 do not wait for characters.
261 * If "wtime" == n wait a short time for characters.
262 * If "wtime" == -1 wait forever for characters.
263 */
264 int
265inchar_loop(
266 char_u *buf,
267 int maxlen,
268 long wtime, // don't use "time", MIPS cannot handle it
269 int tb_change_cnt,
270 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
271 int (*resize_func)(int check_only))
272{
273 int len;
274 int interrupted = FALSE;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100275 int did_call_wait_func = FALSE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100276 int did_start_blocking = FALSE;
277 long wait_time;
278 long elapsed_time = 0;
279#ifdef ELAPSED_FUNC
280 elapsed_T start_tv;
281
282 ELAPSED_INIT(start_tv);
283#endif
284
285 /* repeat until we got a character or waited long enough */
286 for (;;)
287 {
288 /* Check if window changed size while we were busy, perhaps the ":set
289 * columns=99" command was used. */
290 if (resize_func != NULL)
291 resize_func(FALSE);
292
293#ifdef MESSAGE_QUEUE
294 // Only process messages when waiting.
295 if (wtime != 0)
296 {
297 parse_queued_messages();
298 // If input was put directly in typeahead buffer bail out here.
299 if (typebuf_changed(tb_change_cnt))
300 return 0;
301 }
302#endif
303 if (wtime < 0 && did_start_blocking)
304 // blocking and already waited for p_ut
305 wait_time = -1;
306 else
307 {
308 if (wtime >= 0)
309 wait_time = wtime;
310 else
311 // going to block after p_ut
312 wait_time = p_ut;
313#ifdef ELAPSED_FUNC
314 elapsed_time = ELAPSED_FUNC(start_tv);
315#endif
316 wait_time -= elapsed_time;
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100317
318 // If the waiting time is now zero or less, we timed out. However,
319 // loop at least once to check for characters and events. Matters
320 // when "wtime" is zero.
321 if (wait_time <= 0 && did_call_wait_func)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100322 {
323 if (wtime >= 0)
324 // no character available within "wtime"
325 return 0;
326
327 // No character available within 'updatetime'.
328 did_start_blocking = TRUE;
329 if (trigger_cursorhold() && maxlen >= 3
330 && !typebuf_changed(tb_change_cnt))
331 {
332 // Put K_CURSORHOLD in the input buffer or return it.
333 if (buf == NULL)
334 {
335 char_u ibuf[3];
336
337 ibuf[0] = CSI;
338 ibuf[1] = KS_EXTRA;
339 ibuf[2] = (int)KE_CURSORHOLD;
340 add_to_input_buf(ibuf, 3);
341 }
342 else
343 {
344 buf[0] = K_SPECIAL;
345 buf[1] = KS_EXTRA;
346 buf[2] = (int)KE_CURSORHOLD;
347 }
348 return 3;
349 }
350
351 // There is no character available within 'updatetime' seconds:
352 // flush all the swap files to disk. Also done when
353 // interrupted by SIGWINCH.
354 before_blocking();
355 continue;
356 }
357 }
358
359#ifdef FEAT_JOB_CHANNEL
360 if (wait_time < 0 || wait_time > 100L)
361 {
362 // Checking if a job ended requires polling. Do this at least
363 // every 100 msec.
364 if (has_pending_job())
365 wait_time = 100L;
366
367 // If there is readahead then parse_queued_messages() timed out and
368 // we should call it again soon.
369 if (channel_any_readahead())
370 wait_time = 10L;
371 }
372#endif
373#ifdef FEAT_BEVAL_GUI
374 if (p_beval && wait_time > 100L)
375 // The 'balloonexpr' may indirectly invoke a callback while waiting
376 // for a character, need to check often.
377 wait_time = 100L;
378#endif
379
380 // Wait for a character to be typed or another event, such as the winch
381 // signal or an event on the monitored file descriptors.
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +0100382 did_call_wait_func = TRUE;
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100383 if (wait_func(wait_time, &interrupted, FALSE))
384 {
385 // If input was put directly in typeahead buffer bail out here.
386 if (typebuf_changed(tb_change_cnt))
387 return 0;
388
389 // We might have something to return now.
390 if (buf == NULL)
391 // "buf" is NULL, we were just waiting, not actually getting
392 // input.
393 return input_available();
394
395 len = read_from_input_buf(buf, (long)maxlen);
396 if (len > 0)
397 return len;
398 continue;
399 }
400 // Timed out or interrupted with no character available.
401
402#ifndef ELAPSED_FUNC
403 // estimate the elapsed time
404 elapsed_time += wait_time;
405#endif
406
407 if ((resize_func != NULL && resize_func(TRUE))
Bram Moolenaar3e9d4d82019-01-27 17:08:40 +0100408#if defined(FEAT_CLIENTSERVER) && defined(UNIX)
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100409 || server_waiting()
410#endif
411#ifdef MESSAGE_QUEUE
412 || interrupted
413#endif
414 || wait_time > 0
415 || (wtime < 0 && !did_start_blocking))
416 // no character available, but something to be done, keep going
417 continue;
418
419 // no character available or interrupted, return zero
420 break;
421 }
422 return 0;
423}
424#endif
425
Bram Moolenaarc46af532019-01-09 22:24:49 +0100426#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100427/*
428 * Wait for a timer to fire or "wait_func" to return non-zero.
429 * Returns OK when something was read.
430 * Returns FAIL when it timed out or was interrupted.
431 */
432 int
433ui_wait_for_chars_or_timer(
434 long wtime,
435 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
436 int *interrupted,
437 int ignore_input)
438{
439 int due_time;
440 long remaining = wtime;
441 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100442# ifdef FEAT_JOB_CHANNEL
Bram Moolenaare299bbd2019-01-17 14:12:02 +0100443 int brief_wait = FALSE;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100444# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100445
Bram Moolenaarc46af532019-01-09 22:24:49 +0100446 // When waiting very briefly don't trigger timers.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100447 if (wtime >= 0 && wtime < 10L)
448 return wait_func(wtime, NULL, ignore_input);
449
450 while (wtime < 0 || remaining > 0)
451 {
Bram Moolenaarc46af532019-01-09 22:24:49 +0100452 // Trigger timers and then get the time in wtime until the next one is
453 // due. Wait up to that time.
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100454 due_time = check_due_timer();
455 if (typebuf.tb_change_cnt != tb_change_cnt)
456 {
457 /* timer may have used feedkeys() */
458 return FAIL;
459 }
460 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
461 due_time = remaining;
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200462# if defined(FEAT_JOB_CHANNEL) || defined(FEAT_SOUND_CANBERRA)
463 if ((due_time < 0 || due_time > 10L) && (
464# if defined(FEAT_JOB_CHANNEL)
465 (
466# if defined(FEAT_GUI)
467 !gui.in_use &&
468# endif
469 (has_pending_job() || channel_any_readahead()))
470# ifdef FEAT_SOUND_CANBERRA
471 ||
472# endif
Bram Moolenaarc46af532019-01-09 22:24:49 +0100473# endif
Bram Moolenaar28e67e02019-08-15 23:05:49 +0200474# ifdef FEAT_SOUND_CANBERRA
475 has_any_sound_callback()
476# endif
477 ))
Bram Moolenaarc46af532019-01-09 22:24:49 +0100478 {
479 // There is a pending job or channel, should return soon in order
480 // to handle them ASAP. Do check for input briefly.
481 due_time = 10L;
482 brief_wait = TRUE;
483 }
484# endif
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100485 if (wait_func(due_time, interrupted, ignore_input))
486 return OK;
Bram Moolenaarc46af532019-01-09 22:24:49 +0100487 if ((interrupted != NULL && *interrupted)
488# ifdef FEAT_JOB_CHANNEL
489 || brief_wait
490# endif
491 )
492 // Nothing available, but need to return so that side effects get
493 // handled, such as handling a message on a channel.
Bram Moolenaara338adc2018-01-31 20:51:47 +0100494 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100495 if (wtime > 0)
496 remaining -= due_time;
497 }
498 return FAIL;
499}
500#endif
501
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502/*
Bram Moolenaarc46af532019-01-09 22:24:49 +0100503 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 */
505 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100506ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507{
508#ifdef FEAT_GUI
509 if (gui.in_use)
510 {
511 gui_mch_update();
512 return input_available();
513 }
514#endif
515#ifndef NO_CONSOLE
516# ifdef NO_CONSOLE_INPUT
517 if (no_console_input())
518 return 0;
519# endif
520 return mch_char_avail();
521#else
522 return 0;
523#endif
524}
525
526/*
527 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
528 * cancel the delay if a key is hit.
529 */
530 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100531ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532{
533#ifdef FEAT_GUI
534 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100535 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 else
537#endif
538 mch_delay(msec, ignoreinput);
539}
540
541/*
542 * If the machine has job control, use it to suspend the program,
543 * otherwise fake it by starting a new shell.
544 * When running the GUI iconify the window.
545 */
546 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100547ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548{
549#ifdef FEAT_GUI
550 if (gui.in_use)
551 {
552 gui_mch_iconify();
553 return;
554 }
555#endif
556 mch_suspend();
557}
558
559#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
560/*
561 * When the OS can't really suspend, call this function to start a shell.
562 * This is never called in the GUI.
563 */
564 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100565suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566{
567 if (*p_sh == NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100568 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 else
570 {
Bram Moolenaar32526b32019-01-19 17:43:09 +0100571 msg_puts(_("new shell started\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 do_shell(NULL, 0);
573 }
574}
575#endif
576
577/*
578 * Try to get the current Vim shell size. Put the result in Rows and Columns.
579 * Use the new sizes as defaults for 'columns' and 'lines'.
580 * Return OK when size could be determined, FAIL otherwise.
581 */
582 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100583ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584{
585 int retval;
586
587#ifdef FEAT_GUI
588 if (gui.in_use)
589 retval = gui_get_shellsize();
590 else
591#endif
592 retval = mch_get_shellsize();
593
594 check_shellsize();
595
596 /* adjust the default for 'lines' and 'columns' */
597 if (retval == OK)
598 {
599 set_number_default("lines", Rows);
600 set_number_default("columns", Columns);
601 }
602 return retval;
603}
604
605/*
606 * Set the size of the Vim shell according to Rows and Columns, if possible.
607 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
608 * new size. If this is not possible, it will adjust Rows and Columns.
609 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100611ui_set_shellsize(
612 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613{
614#ifdef FEAT_GUI
615 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200616 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 else
618#endif
619 mch_set_shellsize();
620}
621
622/*
623 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
624 * region.
625 */
626 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100627ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628{
629 if (full_screen && !exiting)
630 {
631#ifdef FEAT_GUI
632 if (gui.in_use)
633 gui_new_shellsize();
634 else
635#endif
636 mch_new_shellsize();
637 }
638}
639
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200640#if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200641 && (defined(FEAT_GUI) \
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200642 || defined(MSWIN) \
Bram Moolenaar3d3f2172019-04-06 17:56:05 +0200643 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200644 || defined(PROTO)
645/*
646 * Get the window position in pixels, if possible.
647 * Return FAIL when not possible.
648 */
649 int
650ui_get_winpos(int *x, int *y, varnumber_T timeout)
651{
652# ifdef FEAT_GUI
653 if (gui.in_use)
654 return gui_mch_get_winpos(x, y);
655# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200656# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200657 return mch_get_winpos(x, y);
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200658# else
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200659# if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)
660 return term_get_winpos(x, y, timeout);
661# else
Bram Moolenaar6bc93052019-04-06 20:00:19 +0200662 return FAIL;
Bram Moolenaar16c34c32019-04-06 22:01:24 +0200663# endif
Bram Moolenaarfa1e90c2019-04-06 17:47:40 +0200664# endif
665}
666#endif
667
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100669ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200671 ui_breakcheck_force(FALSE);
672}
673
674/*
675 * When "force" is true also check when the terminal is not in raw mode.
676 * This is useful to read input on channels.
677 */
678 void
679ui_breakcheck_force(int force)
680{
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100681 static int recursive = FALSE;
682 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100683
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100684 // We could be called recursively if stderr is redirected, calling
685 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode()
686 // calls vgetorpeek() which calls ui_breakcheck() again.
687 if (recursive)
688 return;
689 recursive = TRUE;
690
691 // We do not want gui_resize_shell() to redraw the screen here.
Bram Moolenaare3caa112017-01-31 22:07:42 +0100692 ++updating_screen;
693
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694#ifdef FEAT_GUI
695 if (gui.in_use)
696 gui_mch_update();
697 else
698#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200699 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100700
Bram Moolenaar42335f52018-09-13 15:33:43 +0200701 if (save_updating_screen)
702 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200703 else
Bram Moolenaar68a4b042019-05-29 22:28:29 +0200704 after_updating_screen(FALSE);
Bram Moolenaar48d23bb2018-11-20 02:42:43 +0100705
706 recursive = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707}
708
709/*****************************************************************************
710 * Functions for copying and pasting text between applications.
711 * This is always included in a GUI version, but may also be included when the
712 * clipboard and mouse is available to a terminal version such as xterm.
713 * Note: there are some more functions in ops.c that handle selection stuff.
714 *
715 * Also note that the majority of functions here deal with the X 'primary'
716 * (visible - for Visual mode use) selection, and only that. There are no
717 * versions of these for the 'clipboard' selection, as Visual mode has no use
718 * for them.
719 */
720
721#if defined(FEAT_CLIPBOARD) || defined(PROTO)
722
723/*
724 * Selection stuff using Visual mode, for cutting and pasting text to other
725 * windows.
726 */
727
728/*
729 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
730 * is included, but the clipboard can not be used, or TRUE if the clipboard can
731 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
732 * the GUI starts.
733 */
734 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100735clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736{
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200737 Clipboard_T *cb;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738
739 cb = &clip_star;
740 for (;;)
741 {
742 cb->available = can_use;
743 cb->owned = FALSE;
744 cb->start.lnum = 0;
745 cb->start.col = 0;
746 cb->end.lnum = 0;
747 cb->end.col = 0;
748 cb->state = SELECT_CLEARED;
749
750 if (cb == &clip_plus)
751 break;
752 cb = &clip_plus;
753 }
754}
755
756/*
757 * Check whether the VIsual area has changed, and if so try to become the owner
758 * of the selection, and free any old converted selection we may still have
759 * lying around. If the VIsual mode has ended, make a copy of what was
760 * selected so we can still give it to others. Will probably have to make sure
761 * this is called whenever VIsual mode is ended.
762 */
763 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200764clip_update_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200766 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767
768 /* If visual mode is only due to a redo command ("."), then ignore it */
769 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
770 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100771 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 {
773 start = VIsual;
774 end = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000776 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 }
778 else
779 {
780 start = curwin->w_cursor;
781 end = VIsual;
782 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100783 if (!EQUAL_POS(clip->start, start)
784 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200785 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200787 clip_clear_selection(clip);
788 clip->start = start;
789 clip->end = end;
790 clip->vmode = VIsual_mode;
791 clip_free_selection(clip);
792 clip_own_selection(clip);
793 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 }
795 }
796}
797
798 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200799clip_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800{
801 /*
802 * Also want to check somehow that we are reading from the keyboard rather
803 * than a mapping etc.
804 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200806 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200807 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200808 if (cbd->available)
809 {
810 int was_owned = cbd->owned;
811
812 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200813 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000815 /* May have to show a different kind of highlighting for the
816 * selected area. There is no specific redraw command for this,
817 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000819 && (get_real_state() == VISUAL
820 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200821 && (cbd == &clip_star ? clip_isautosel_star()
822 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100823 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 redraw_curbuf_later(INVERTED_ALL);
825 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200827#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200828 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200829 if (!cbd->owned && cbd->available)
830 cbd->owned = (clip_gen_own_selection(cbd) == OK);
831#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832}
833
834 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200835clip_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
837#ifdef FEAT_X11
838 int was_owned = cbd->owned;
839#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200840 int visual_selection = FALSE;
841
842 if (cbd == &clip_star || cbd == &clip_plus)
843 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844
845 clip_free_selection(cbd);
846 cbd->owned = FALSE;
847 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200848 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 clip_gen_lose_selection(cbd);
850#ifdef FEAT_X11
851 if (visual_selection)
852 {
853 /* May have to show a different kind of highlighting for the selected
854 * area. There is no specific redraw command for this, just redraw all
855 * windows on the current buffer. */
856 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000857 && (get_real_state() == VISUAL
858 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200859 && (cbd == &clip_star ?
860 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100861 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 {
863 update_curbuf(INVERTED_ALL);
864 setcursor();
865 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100866 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 }
868 }
869#endif
870}
871
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200872 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200873clip_copy_selection(Clipboard_T *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200875 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200877 clip_update_selection(clip);
878 clip_free_selection(clip);
879 clip_own_selection(clip);
880 if (clip->owned)
881 clip_get_selection(clip);
882 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 }
884}
885
886/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200887 * Save and restore clip_unnamed before doing possibly many changes. This
888 * prevents accessing the clipboard very often which might slow down Vim
889 * considerably.
890 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100891static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200892static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
893static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200894
895/*
896 * Save clip_unnamed and reset it.
897 */
898 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100899start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200900{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100901 if (++global_change_count > 1)
902 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200903 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100904 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200905
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100906 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200907 {
908 clip_unnamed = FALSE;
909 clip_did_set_selection = FALSE;
910 }
911}
912
913/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200914 * Return TRUE if setting the clipboard was postponed, it already contains the
915 * right text.
916 */
917 int
918is_clipboard_needs_update()
919{
920 return clipboard_needs_update;
921}
922
923/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200924 * Restore clip_unnamed and set the selection when needed.
925 */
926 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100927end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200928{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100929 if (--global_change_count > 0)
930 /* recursive */
931 return;
932 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200933 {
934 clip_did_set_selection = TRUE;
935 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100936 clip_unnamed_saved = FALSE;
937 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200938 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100939 /* only store something in the clipboard,
940 * if we have yanked anything to it */
941 if (clip_unnamed & CLIP_UNNAMED)
942 {
943 clip_own_selection(&clip_star);
944 clip_gen_set_selection(&clip_star);
945 }
946 if (clip_unnamed & CLIP_UNNAMED_PLUS)
947 {
948 clip_own_selection(&clip_plus);
949 clip_gen_set_selection(&clip_plus);
950 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200951 }
952 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200953 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200954}
955
956/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 * Called when Visual mode is ended: update the selection.
958 */
959 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100960clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200962 if (clip_isautosel_star())
963 clip_copy_selection(&clip_star);
964 if (clip_isautosel_plus())
965 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966}
967
968/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200969 * Return TRUE if automatic selection of Visual area is desired for the *
970 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 */
972 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100973clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 return (
976#ifdef FEAT_GUI
977 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
978#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200979 clip_autoselect_star);
980}
981
982/*
983 * Return TRUE if automatic selection of Visual area is desired for the +
984 * register.
985 */
986 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100987clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200988{
989 return (
990#ifdef FEAT_GUI
991 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
992#endif
993 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994}
995
996
997/*
998 * Stuff for general mouse selection, without using Visual mode.
999 */
1000
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001001static void clip_invert_area(Clipboard_T *, int, int, int, int, int how);
1002static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001003static void clip_get_word_boundaries(Clipboard_T *, int, int);
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001004static int clip_get_line_end(Clipboard_T *, int);
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001005static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001007// "how" flags for clip_invert_area()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008#define CLIP_CLEAR 1
1009#define CLIP_SET 2
1010#define CLIP_TOGGLE 3
1011
1012/*
1013 * Start, continue or end a modeless selection. Used when editing the
Bram Moolenaarb53fb312019-06-13 23:59:52 +02001014 * command-line, in the cmdline window and when the mouse is in a popup window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 */
1016 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001017clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018{
1019 int repeat;
1020
1021 repeat = ((clip_star.mode == SELECT_MODE_CHAR
1022 || clip_star.mode == SELECT_MODE_LINE)
1023 && (mod_mask & MOD_MASK_2CLICK))
1024 || (clip_star.mode == SELECT_MODE_WORD
1025 && (mod_mask & MOD_MASK_3CLICK));
1026 if (is_click && button == MOUSE_RIGHT)
1027 {
1028 /* Right mouse button: If there was no selection, start one.
1029 * Otherwise extend the existing selection. */
1030 if (clip_star.state == SELECT_CLEARED)
1031 clip_start_selection(mouse_col, mouse_row, FALSE);
1032 clip_process_selection(button, mouse_col, mouse_row, repeat);
1033 }
1034 else if (is_click)
1035 clip_start_selection(mouse_col, mouse_row, repeat);
1036 else if (is_drag)
1037 {
1038 /* Don't try extending a selection if there isn't one. Happens when
1039 * button-down is in the cmdline and them moving mouse upwards. */
1040 if (clip_star.state != SELECT_CLEARED)
1041 clip_process_selection(button, mouse_col, mouse_row, repeat);
1042 }
1043 else /* release */
1044 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
1045}
1046
1047/*
1048 * Compare two screen positions ala strcmp()
1049 */
1050 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001051clip_compare_pos(
1052 int row1,
1053 int col1,
1054 int row2,
1055 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056{
1057 if (row1 > row2) return(1);
1058 if (row1 < row2) return(-1);
1059 if (col1 > col2) return(1);
1060 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +01001061 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062}
1063
1064/*
1065 * Start the selection
1066 */
1067 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001068clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001070 Clipboard_T *cb = &clip_star;
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001071#ifdef FEAT_TEXT_PROP
1072 win_T *wp;
1073 int row_cp = row;
1074 int col_cp = col;
1075
1076 wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP);
1077 if (wp != NULL && WIN_IS_POPUP(wp)
1078 && popup_is_in_scrollbar(wp, row_cp, col_cp))
1079 // click or double click in scrollbar does not start a selection
1080 return;
1081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082
1083 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001084 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085
1086 row = check_row(row);
1087 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
1090 cb->start.lnum = row;
1091 cb->start.col = col;
1092 cb->end = cb->start;
1093 cb->origin_row = (short_u)cb->start.lnum;
1094 cb->state = SELECT_IN_PROGRESS;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001095#ifdef FEAT_TEXT_PROP
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001096 if (wp != NULL && WIN_IS_POPUP(wp))
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001097 {
Bram Moolenaar13b11ed2019-08-01 15:52:45 +02001098 // Click in a popup window restricts selection to that window,
1099 // excluding the border.
1100 cb->min_col = wp->w_wincol + wp->w_popup_border[3];
1101 cb->max_col = wp->w_wincol + popup_width(wp) - 1
1102 - wp->w_popup_border[1];
1103 cb->min_row = wp->w_winrow + wp->w_popup_border[0];
1104 cb->max_row = wp->w_winrow + popup_height(wp) - 1
1105 - wp->w_popup_border[2];
1106 }
1107 else
1108 {
1109 cb->min_col = 0;
1110 cb->max_col = screen_Columns;
1111 cb->min_row = 0;
1112 cb->max_row = screen_Rows;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001113 }
1114#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115
1116 if (repeated_click)
1117 {
1118 if (++cb->mode > SELECT_MODE_LINE)
1119 cb->mode = SELECT_MODE_CHAR;
1120 }
1121 else
1122 cb->mode = SELECT_MODE_CHAR;
1123
1124#ifdef FEAT_GUI
1125 /* clear the cursor until the selection is made */
1126 if (gui.in_use)
1127 gui_undraw_cursor();
1128#endif
1129
1130 switch (cb->mode)
1131 {
1132 case SELECT_MODE_CHAR:
1133 cb->origin_start_col = cb->start.col;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001134 cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 break;
1136
1137 case SELECT_MODE_WORD:
1138 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
1139 cb->origin_start_col = cb->word_start_col;
1140 cb->origin_end_col = cb->word_end_col;
1141
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001142 clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
1144 cb->start.col = cb->word_start_col;
1145 cb->end.col = cb->word_end_col;
1146 break;
1147
1148 case SELECT_MODE_LINE:
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001149 clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 (int)Columns, CLIP_SET);
1151 cb->start.col = 0;
1152 cb->end.col = Columns;
1153 break;
1154 }
1155
1156 cb->prev = cb->start;
1157
1158#ifdef DEBUG_SELECTION
1159 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
1160#endif
1161}
1162
1163/*
1164 * Continue processing the selection
1165 */
1166 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001167clip_process_selection(
1168 int button,
1169 int col,
1170 int row,
1171 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001173 Clipboard_T *cb = &clip_star;
1174 int diff;
1175 int slen = 1; // cursor shape width
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176
1177 if (button == MOUSE_RELEASE)
1178 {
1179 /* Check to make sure we have something selected */
1180 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
1181 {
1182#ifdef FEAT_GUI
1183 if (gui.in_use)
1184 gui_update_cursor(FALSE, FALSE);
1185#endif
1186 cb->state = SELECT_CLEARED;
1187 return;
1188 }
1189
1190#ifdef DEBUG_SELECTION
1191 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1192 cb->start.col, cb->end.lnum, cb->end.col);
1193#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001194 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 || (
1196#ifdef FEAT_GUI
1197 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
1198#endif
1199 clip_autoselectml))
1200 clip_copy_modeless_selection(FALSE);
1201#ifdef FEAT_GUI
1202 if (gui.in_use)
1203 gui_update_cursor(FALSE, FALSE);
1204#endif
1205
1206 cb->state = SELECT_DONE;
1207 return;
1208 }
1209
1210 row = check_row(row);
1211 col = check_col(col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 col = mb_fix_col(col, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213
1214 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
1215 return;
1216
1217 /*
1218 * When extending the selection with the right mouse button, swap the
1219 * start and end if the position is before half the selection
1220 */
1221 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
1222 {
1223 /*
1224 * If the click is before the start, or the click is inside the
1225 * selection and the start is the closest side, set the origin to the
1226 * end of the selection.
1227 */
1228 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
1229 || (clip_compare_pos(row, col,
1230 (int)cb->end.lnum, cb->end.col) < 0
1231 && (((cb->start.lnum == cb->end.lnum
1232 && cb->end.col - col > col - cb->start.col))
1233 || ((diff = (cb->end.lnum - row) -
1234 (row - cb->start.lnum)) > 0
1235 || (diff == 0 && col < (int)(cb->start.col +
1236 cb->end.col) / 2)))))
1237 {
1238 cb->origin_row = (short_u)cb->end.lnum;
1239 cb->origin_start_col = cb->end.col - 1;
1240 cb->origin_end_col = cb->end.col;
1241 }
1242 else
1243 {
1244 cb->origin_row = (short_u)cb->start.lnum;
1245 cb->origin_start_col = cb->start.col;
1246 cb->origin_end_col = cb->start.col;
1247 }
1248 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
1249 cb->mode = SELECT_MODE_CHAR;
1250 }
1251
1252 /* set state, for when using the right mouse button */
1253 cb->state = SELECT_IN_PROGRESS;
1254
1255#ifdef DEBUG_SELECTION
1256 printf("Selection extending to (%d,%d)\n", row, col);
1257#endif
1258
1259 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
1260 cb->mode = SELECT_MODE_CHAR;
1261
1262 switch (cb->mode)
1263 {
1264 case SELECT_MODE_CHAR:
1265 /* If we're on a different line, find where the line ends */
1266 if (row != cb->prev.lnum)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001267 cb->word_end_col = clip_get_line_end(cb, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269 /* See if we are before or after the origin of the selection */
1270 if (clip_compare_pos(row, col, cb->origin_row,
1271 cb->origin_start_col) >= 0)
1272 {
1273 if (col >= (int)cb->word_end_col)
1274 clip_update_modeless_selection(cb, cb->origin_row,
1275 cb->origin_start_col, row, (int)Columns);
1276 else
1277 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (has_mbyte && mb_lefthalve(row, col))
1279 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 clip_update_modeless_selection(cb, cb->origin_row,
1281 cb->origin_start_col, row, col + slen);
1282 }
1283 }
1284 else
1285 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 if (has_mbyte
1287 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
1288 slen = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (col >= (int)cb->word_end_col)
1290 clip_update_modeless_selection(cb, row, cb->word_end_col,
1291 cb->origin_row, cb->origin_start_col + slen);
1292 else
1293 clip_update_modeless_selection(cb, row, col,
1294 cb->origin_row, cb->origin_start_col + slen);
1295 }
1296 break;
1297
1298 case SELECT_MODE_WORD:
1299 /* If we are still within the same word, do nothing */
1300 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
1301 && col < (int)cb->word_end_col && !repeated_click)
1302 return;
1303
1304 /* Get new word boundaries */
1305 clip_get_word_boundaries(cb, row, col);
1306
1307 /* Handle being after the origin point of selection */
1308 if (clip_compare_pos(row, col, cb->origin_row,
1309 cb->origin_start_col) >= 0)
1310 clip_update_modeless_selection(cb, cb->origin_row,
1311 cb->origin_start_col, row, cb->word_end_col);
1312 else
1313 clip_update_modeless_selection(cb, row, cb->word_start_col,
1314 cb->origin_row, cb->origin_end_col);
1315 break;
1316
1317 case SELECT_MODE_LINE:
1318 if (row == cb->prev.lnum && !repeated_click)
1319 return;
1320
1321 if (clip_compare_pos(row, col, cb->origin_row,
1322 cb->origin_start_col) >= 0)
1323 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1324 (int)Columns);
1325 else
1326 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1327 (int)Columns);
1328 break;
1329 }
1330
1331 cb->prev.lnum = row;
1332 cb->prev.col = col;
1333
1334#ifdef DEBUG_SELECTION
1335 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1336 cb->start.col, cb->end.lnum, cb->end.col);
1337#endif
1338}
1339
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340# if defined(FEAT_GUI) || defined(PROTO)
1341/*
1342 * Redraw part of the selection if character at "row,col" is inside of it.
1343 * Only used for the GUI.
1344 */
1345 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001346clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
1348 int start = col;
1349 int end = col + len;
1350
1351 if (clip_star.state != SELECT_CLEARED
1352 && row >= clip_star.start.lnum
1353 && row <= clip_star.end.lnum)
1354 {
1355 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1356 start = clip_star.start.col;
1357 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1358 end = clip_star.end.col;
1359 if (end > start)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001360 clip_invert_area(&clip_star, row, start, row, end, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 }
1362}
1363# endif
1364
1365/*
1366 * Called from outside to clear selected region from the display
1367 */
1368 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001369clip_clear_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001372 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 return;
1374
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001375 clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col,
1376 (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001377 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378}
1379
1380/*
1381 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1382 */
1383 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001384clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 if (clip_star.state == SELECT_DONE
1387 && row2 >= clip_star.start.lnum
1388 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001389 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390}
1391
1392/*
1393 * Called before the screen is scrolled up or down. Adjusts the line numbers
1394 * of the selection. Call with big number when clearing the screen.
1395 */
1396 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001397clip_scroll_selection(
1398 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399{
1400 int lnum;
1401
1402 if (clip_star.state == SELECT_CLEARED)
1403 return;
1404
1405 lnum = clip_star.start.lnum - rows;
1406 if (lnum <= 0)
1407 clip_star.start.lnum = 0;
1408 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1409 clip_star.state = SELECT_CLEARED;
1410 else
1411 clip_star.start.lnum = lnum;
1412
1413 lnum = clip_star.end.lnum - rows;
1414 if (lnum < 0) /* scrolled off of the screen */
1415 clip_star.state = SELECT_CLEARED;
1416 else if (lnum >= screen_Rows)
1417 clip_star.end.lnum = screen_Rows - 1;
1418 else
1419 clip_star.end.lnum = lnum;
1420}
1421
1422/*
1423 * Invert a region of the display between a starting and ending row and column
1424 * Values for "how":
1425 * CLIP_CLEAR: undo inversion
1426 * CLIP_SET: set inversion
1427 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1428 * 0: invert (GUI only).
1429 */
1430 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001431clip_invert_area(
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001432 Clipboard_T *cbd,
1433 int row1,
1434 int col1,
1435 int row2,
1436 int col2,
1437 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438{
1439 int invert = FALSE;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001440 int max_col;
1441
1442#ifdef FEAT_TEXT_PROP
1443 max_col = cbd->max_col;
1444#else
1445 max_col = Columns - 1;
1446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447
1448 if (how == CLIP_SET)
1449 invert = TRUE;
1450
1451 /* Swap the from and to positions so the from is always before */
1452 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1453 {
1454 int tmp_row, tmp_col;
1455
1456 tmp_row = row1;
1457 tmp_col = col1;
1458 row1 = row2;
1459 col1 = col2;
1460 row2 = tmp_row;
1461 col2 = tmp_col;
1462 }
1463 else if (how == CLIP_TOGGLE)
1464 invert = TRUE;
1465
1466 /* If all on the same line, do it the easy way */
1467 if (row1 == row2)
1468 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001469 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470 }
1471 else
1472 {
1473 /* Handle a piece of the first line */
1474 if (col1 > 0)
1475 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001476 clip_invert_rectangle(cbd, row1, col1, 1,
1477 (int)Columns - col1, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 row1++;
1479 }
1480
1481 /* Handle a piece of the last line */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001482 if (col2 < max_col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001484 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 row2--;
1486 }
1487
1488 /* Handle the rectangle thats left */
1489 if (row2 >= row1)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001490 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1,
1491 (int)Columns, invert);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 }
1493}
1494
1495/*
1496 * Invert or un-invert a rectangle of the screen.
1497 * "invert" is true if the result is inverted.
1498 */
1499 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001500clip_invert_rectangle(
Bram Moolenaar405bb422019-06-21 00:12:29 +02001501 Clipboard_T *cbd UNUSED,
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001502 int row_arg,
1503 int col_arg,
1504 int height_arg,
1505 int width_arg,
1506 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507{
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001508 int row = row_arg;
1509 int col = col_arg;
1510 int height = height_arg;
1511 int width = width_arg;
1512
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001513#ifdef FEAT_TEXT_PROP
1514 // this goes on top of all popup windows
Bram Moolenaarc662ec92019-06-23 00:15:57 +02001515 screen_zindex = CLIP_ZINDEX;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001516
1517 if (col < cbd->min_col)
1518 {
1519 width -= cbd->min_col - col;
1520 col = cbd->min_col;
1521 }
1522 if (width > cbd->max_col - col + 1)
1523 width = cbd->max_col - col + 1;
1524 if (row < cbd->min_row)
1525 {
1526 height -= cbd->min_row - row;
1527 row = cbd->min_row;
1528 }
1529 if (height > cbd->max_row - row + 1)
1530 height = cbd->max_row - row + 1;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532#ifdef FEAT_GUI
1533 if (gui.in_use)
1534 gui_mch_invert_rectangle(row, col, height, width);
1535 else
1536#endif
1537 screen_draw_rectangle(row, col, height, width, invert);
Bram Moolenaar451d4b52019-06-12 20:22:27 +02001538#ifdef FEAT_TEXT_PROP
1539 screen_zindex = 0;
1540#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541}
1542
1543/*
1544 * Copy the currently selected area into the '*' register so it will be
1545 * available for pasting.
1546 * When "both" is TRUE also copy to the '+' register.
1547 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001549clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550{
1551 char_u *buffer;
1552 char_u *bufp;
1553 int row;
1554 int start_col;
1555 int end_col;
1556 int line_end_col;
1557 int add_newline_flag = FALSE;
1558 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 int row1 = clip_star.start.lnum;
1561 int col1 = clip_star.start.col;
1562 int row2 = clip_star.end.lnum;
1563 int col2 = clip_star.end.col;
1564
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001565 /* Can't use ScreenLines unless initialized */
1566 if (ScreenLines == NULL)
1567 return;
1568
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 /*
1570 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1571 */
1572 if (row1 > row2)
1573 {
1574 row = row1; row1 = row2; row2 = row;
1575 row = col1; col1 = col2; col2 = row;
1576 }
1577 else if (row1 == row2 && col1 > col2)
1578 {
1579 row = col1; col1 = col2; col2 = row;
1580 }
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001581#ifdef FEAT_TEXT_PROP
1582 if (col1 < clip_star.min_col)
1583 col1 = clip_star.min_col;
1584 if (col2 > clip_star.max_col + 1)
1585 col2 = clip_star.max_col + 1;
1586 if (row1 < clip_star.min_row)
1587 row1 = clip_star.min_row;
1588 if (row2 > clip_star.max_row)
1589 row2 = clip_star.max_row;
1590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 /* correct starting point for being on right halve of double-wide char */
1592 p = ScreenLines + LineOffset[row1];
1593 if (enc_dbcs != 0)
1594 col1 -= (*mb_head_off)(p, p + col1);
1595 else if (enc_utf8 && p[col1] == 0)
1596 --col1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597
1598 /* Create a temporary buffer for storing the text */
1599 len = (row2 - row1 + 1) * Columns + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 if (enc_dbcs != 0)
1601 len *= 2; /* max. 2 bytes per display cell */
1602 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001603 len *= MB_MAXBYTES;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001604 buffer = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 if (buffer == NULL) /* out of memory */
1606 return;
1607
1608 /* Process each row in the selection */
1609 for (bufp = buffer, row = row1; row <= row2; row++)
1610 {
1611 if (row == row1)
1612 start_col = col1;
1613 else
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001614#ifdef FEAT_TEXT_PROP
1615 start_col = clip_star.min_col;
1616#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 start_col = 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619
1620 if (row == row2)
1621 end_col = col2;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001622#ifdef FEAT_TEXT_PROP
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001623 else if (clip_star.max_col < Columns)
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001624 end_col = clip_star.max_col + 1;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001625#endif
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001626 else
1627 end_col = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001629 line_end_col = clip_get_line_end(&clip_star, row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630
1631 /* See if we need to nuke some trailing whitespace */
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001632 if (end_col >=
1633#ifdef FEAT_TEXT_PROP
1634 clip_star.max_col + 1
1635#else
1636 Columns
1637#endif
1638 && (row < row2 || end_col > line_end_col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 {
1640 /* Get rid of trailing whitespace */
1641 end_col = line_end_col;
1642 if (end_col < start_col)
1643 end_col = start_col;
1644
1645 /* If the last line extended to the end, add an extra newline */
1646 if (row == row2)
1647 add_newline_flag = TRUE;
1648 }
1649
1650 /* If after the first row, we need to always add a newline */
1651 if (row > row1 && !LineWraps[row - 1])
1652 *bufp++ = NL;
1653
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001654 // Safetey check for in case resizing went wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 if (row < screen_Rows && end_col <= screen_Columns)
1656 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 if (enc_dbcs != 0)
1658 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001659 int i;
1660
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 p = ScreenLines + LineOffset[row];
1662 for (i = start_col; i < end_col; ++i)
1663 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1664 {
1665 /* single-width double-byte char */
1666 *bufp++ = 0x8e;
1667 *bufp++ = ScreenLines2[LineOffset[row] + i];
1668 }
1669 else
1670 {
1671 *bufp++ = p[i];
1672 if (MB_BYTE2LEN(p[i]) == 2)
1673 *bufp++ = p[++i];
1674 }
1675 }
1676 else if (enc_utf8)
1677 {
1678 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001679 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001680 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681
1682 off = LineOffset[row];
1683 for (i = start_col; i < end_col; ++i)
1684 {
1685 /* The base character is either in ScreenLinesUC[] or
1686 * ScreenLines[]. */
1687 if (ScreenLinesUC[off + i] == 0)
1688 *bufp++ = ScreenLines[off + i];
1689 else
1690 {
1691 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001692 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001694 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001695 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001696 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001697 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 }
1700 }
1701 /* Skip right halve of double-wide character. */
1702 if (ScreenLines[off + i + 1] == 0)
1703 ++i;
1704 }
1705 }
1706 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 {
1708 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1709 end_col - start_col);
1710 bufp += end_col - start_col;
1711 }
1712 }
1713 }
1714
1715 /* Add a newline at the end if the selection ended there */
1716 if (add_newline_flag)
1717 *bufp++ = NL;
1718
1719 /* First cleanup any old selection and become the owner. */
1720 clip_free_selection(&clip_star);
1721 clip_own_selection(&clip_star);
1722
1723 /* Yank the text into the '*' register. */
1724 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1725
1726 /* Make the register contents available to the outside world. */
1727 clip_gen_set_selection(&clip_star);
1728
1729#ifdef FEAT_X11
1730 if (both)
1731 {
1732 /* Do the same for the '+' register. */
1733 clip_free_selection(&clip_plus);
1734 clip_own_selection(&clip_plus);
1735 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1736 clip_gen_set_selection(&clip_plus);
1737 }
1738#endif
1739 vim_free(buffer);
1740}
1741
1742/*
1743 * Find the starting and ending positions of the word at the given row and
1744 * column. Only white-separated words are recognized here.
1745 */
1746#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1747
1748 static void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001749clip_get_word_boundaries(Clipboard_T *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750{
1751 int start_class;
1752 int temp_col;
1753 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 int mboff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001756 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 return;
1758
1759 p = ScreenLines + LineOffset[row];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 /* Correct for starting in the right halve of a double-wide char */
1761 if (enc_dbcs != 0)
1762 col -= dbcs_screen_head_off(p, p + col);
1763 else if (enc_utf8 && p[col] == 0)
1764 --col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 start_class = CHAR_CLASS(p[col]);
1766
1767 temp_col = col;
1768 for ( ; temp_col > 0; temp_col--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 if (enc_dbcs != 0
1770 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1771 temp_col -= mboff;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001772 else if (CHAR_CLASS(p[temp_col - 1]) != start_class
1773 && !(enc_utf8 && p[temp_col - 1] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 break;
1775 cb->word_start_col = temp_col;
1776
1777 temp_col = col;
1778 for ( ; temp_col < screen_Columns; temp_col++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1780 ++temp_col;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001781 else if (CHAR_CLASS(p[temp_col]) != start_class
1782 && !(enc_utf8 && p[temp_col] == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 break;
1784 cb->word_end_col = temp_col;
1785}
1786
1787/*
1788 * Find the column position for the last non-whitespace character on the given
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001789 * line at or before start_col.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 */
1791 static int
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001792clip_get_line_end(Clipboard_T *cbd UNUSED, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793{
1794 int i;
1795
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001796 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 return 0;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001798 for (i =
1799#ifdef FEAT_TEXT_PROP
Bram Moolenaard5cf8982019-08-16 23:09:11 +02001800 cbd->max_col >= screen_Columns ? screen_Columns : cbd->max_col + 1;
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001801#else
1802 screen_Columns;
1803#endif
1804 i > 0; i--)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1806 break;
1807 return i;
1808}
1809
1810/*
1811 * Update the currently selected region by adding and/or subtracting from the
1812 * beginning or end and inverting the changed area(s).
1813 */
1814 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001815clip_update_modeless_selection(
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001816 Clipboard_T *cb,
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001817 int row1,
1818 int col1,
1819 int row2,
1820 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821{
1822 /* See if we changed at the beginning of the selection */
1823 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1824 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001825 clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 CLIP_TOGGLE);
1827 cb->start.lnum = row1;
1828 cb->start.col = col1;
1829 }
1830
1831 /* See if we changed at the end of the selection */
1832 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1833 {
Bram Moolenaarbd75b532019-06-14 23:41:55 +02001834 clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 CLIP_TOGGLE);
1836 cb->end.lnum = row2;
1837 cb->end.col = col2;
1838 }
1839}
1840
1841 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001842clip_gen_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843{
1844#ifdef FEAT_XCLIPBOARD
1845# ifdef FEAT_GUI
1846 if (gui.in_use)
1847 return clip_mch_own_selection(cbd);
1848 else
1849# endif
1850 return clip_xterm_own_selection(cbd);
1851#else
1852 return clip_mch_own_selection(cbd);
1853#endif
1854}
1855
1856 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001857clip_gen_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858{
1859#ifdef FEAT_XCLIPBOARD
1860# ifdef FEAT_GUI
1861 if (gui.in_use)
1862 clip_mch_lose_selection(cbd);
1863 else
1864# endif
1865 clip_xterm_lose_selection(cbd);
1866#else
1867 clip_mch_lose_selection(cbd);
1868#endif
1869}
1870
1871 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001872clip_gen_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001874 if (!clip_did_set_selection)
1875 {
1876 /* Updating postponed, so that accessing the system clipboard won't
Bram Moolenaarbdace832019-03-02 10:13:42 +01001877 * hang Vim when accessing it many times (e.g. on a :g command). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001878 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1879 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1880 {
1881 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001882 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001883 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#ifdef FEAT_XCLIPBOARD
1886# ifdef FEAT_GUI
1887 if (gui.in_use)
1888 clip_mch_set_selection(cbd);
1889 else
1890# endif
1891 clip_xterm_set_selection(cbd);
1892#else
1893 clip_mch_set_selection(cbd);
1894#endif
1895}
1896
1897 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001898clip_gen_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899{
1900#ifdef FEAT_XCLIPBOARD
1901# ifdef FEAT_GUI
1902 if (gui.in_use)
1903 clip_mch_request_selection(cbd);
1904 else
1905# endif
1906 clip_xterm_request_selection(cbd);
1907#else
1908 clip_mch_request_selection(cbd);
1909#endif
1910}
1911
Bram Moolenaar113e1072019-01-20 15:30:40 +01001912#if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001913 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001914clip_gen_owner_exists(Clipboard_T *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001915{
1916#ifdef FEAT_XCLIPBOARD
1917# ifdef FEAT_GUI_GTK
1918 if (gui.in_use)
1919 return clip_gtk_owner_exists(cbd);
1920 else
1921# endif
1922 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001923#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001924 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001925#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001926}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001927#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001928
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929#endif /* FEAT_CLIPBOARD */
1930
1931/*****************************************************************************
1932 * Functions that handle the input buffer.
1933 * This is used for any GUI version, and the unix terminal version.
1934 *
1935 * For Unix, the input characters are buffered to be able to check for a
1936 * CTRL-C. This should be done with signals, but I don't know how to do that
1937 * in a portable way for a tty in RAW mode.
1938 *
1939 * For the client-server code in the console the received keys are put in the
1940 * input buffer.
1941 */
1942
1943#if defined(USE_INPUT_BUF) || defined(PROTO)
1944
1945/*
1946 * Internal typeahead buffer. Includes extra space for long key code
1947 * descriptions which would otherwise overflow. The buffer is considered full
1948 * when only this extra space (or part of it) remains.
1949 */
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001950#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 /*
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001952 * NetBeans stuffs debugger commands into the input buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * This requires a larger buffer...
1954 * (Madsen) Go with this for remote input as well ...
1955 */
1956# define INBUFLEN 4096
1957#else
1958# define INBUFLEN 250
1959#endif
1960
1961static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1962static int inbufcount = 0; /* number of chars in inbuf[] */
1963
1964/*
1965 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1966 * trash_input_buf() are functions for manipulating the input buffer. These
1967 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1968 */
1969
1970 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001971vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972{
1973 return (inbufcount >= INBUFLEN);
1974}
1975
1976 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001977vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978{
1979 return (inbufcount == 0);
1980}
1981
1982#if defined(FEAT_OLE) || defined(PROTO)
1983 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001984vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985{
1986 return (INBUFLEN - inbufcount);
1987}
1988#endif
1989
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001990#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001992vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993{
1994 return inbufcount;
1995}
1996#endif
1997
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998/*
1999 * Return the current contents of the input buffer and make it empty.
2000 * The returned pointer must be passed to set_input_buf() later.
2001 */
2002 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002003get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004{
2005 garray_T *gap;
2006
2007 /* We use a growarray to store the data pointer and the length. */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002008 gap = ALLOC_ONE(garray_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 if (gap != NULL)
2010 {
2011 /* Add one to avoid a zero size. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02002012 gap->ga_data = alloc(inbufcount + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 if (gap->ga_data != NULL)
2014 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
2015 gap->ga_len = inbufcount;
2016 }
2017 trash_input_buf();
2018 return (char_u *)gap;
2019}
2020
2021/*
2022 * Restore the input buffer with a pointer returned from get_input_buf().
2023 * The allocated memory is freed, this only works once!
2024 */
2025 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002026set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027{
2028 garray_T *gap = (garray_T *)p;
2029
2030 if (gap != NULL)
2031 {
2032 if (gap->ga_data != NULL)
2033 {
2034 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
2035 inbufcount = gap->ga_len;
2036 vim_free(gap->ga_data);
2037 }
2038 vim_free(gap);
2039 }
2040}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042/*
2043 * Add the given bytes to the input buffer
2044 * Special keys start with CSI. A real CSI must have been translated to
2045 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
2046 */
2047 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002048add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049{
2050 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
2051 return; /* Shouldn't ever happen! */
2052
2053#ifdef FEAT_HANGULIN
2054 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
2055 if ((len = hangul_input_process(s, len)) == 0)
2056 return;
2057#endif
2058
2059 while (len--)
2060 inbuf[inbufcount++] = *s++;
2061}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063/*
2064 * Add "str[len]" to the input buffer while escaping CSI bytes.
2065 */
2066 void
2067add_to_input_buf_csi(char_u *str, int len)
2068{
2069 int i;
2070 char_u buf[2];
2071
2072 for (i = 0; i < len; ++i)
2073 {
2074 add_to_input_buf(str + i, 1);
2075 if (str[i] == CSI)
2076 {
2077 /* Turn CSI into K_CSI. */
2078 buf[0] = KS_EXTRA;
2079 buf[1] = (int)KE_CSI;
2080 add_to_input_buf(buf, 2);
2081 }
2082 }
2083}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084
2085#if defined(FEAT_HANGULIN) || defined(PROTO)
2086 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002087push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002089 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002090 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002091
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002092 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002093 tmpbuf = hangul_string_convert(s, &len);
2094 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002095 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01002096
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002097 for (; len--; inp++)
2098 {
2099 inbuf[inbufcount++] = *inp;
2100 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01002101 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002102 /* Turn CSI into K_CSI. */
2103 inbuf[inbufcount++] = KS_EXTRA;
2104 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01002105 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01002106 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01002107 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108}
2109#endif
2110
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111/* Remove everything from the input buffer. Called when ^C is found */
2112 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002113trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114{
2115 inbufcount = 0;
2116}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
2118/*
2119 * Read as much data from the input buffer as possible up to maxlen, and store
2120 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 */
2122 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002123read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 if (inbufcount == 0) /* if the buffer is empty, fill it */
2126 fill_input_buf(TRUE);
2127 if (maxlen > inbufcount)
2128 maxlen = inbufcount;
2129 mch_memmove(buf, inbuf, (size_t)maxlen);
2130 inbufcount -= maxlen;
2131 if (inbufcount)
2132 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
2133 return (int)maxlen;
2134}
2135
2136 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002137fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138{
Bram Moolenaard0573012017-10-28 21:11:06 +02002139#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 int len;
2141 int try;
2142 static int did_read_something = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 static char_u *rest = NULL; /* unconverted rest of previous read */
2144 static int restlen = 0;
2145 int unconverted;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146#endif
2147
2148#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002149 if (gui.in_use
2150# ifdef NO_CONSOLE_INPUT
2151 /* Don't use the GUI input when the window hasn't been opened yet.
2152 * We get here from ui_inchar() when we should try reading from stdin. */
2153 && !no_console_input()
2154# endif
2155 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 {
2157 gui_mch_update();
2158 return;
2159 }
2160#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02002161#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 if (vim_is_input_buf_full())
2163 return;
2164 /*
2165 * Fill_input_buf() is only called when we really need a character.
2166 * If we can't get any, but there is some in the buffer, just return.
2167 * If we can't get any, and there isn't any in the buffer, we give up and
2168 * exit Vim.
2169 */
2170# ifdef __BEOS__
2171 /*
2172 * On the BeBox version (for now), all input is secretly performed within
2173 * beos_select() which is called from RealWaitForChar().
2174 */
2175 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
2176 ;
2177 len = inbufcount;
2178 inbufcount = 0;
2179# else
2180
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 if (rest != NULL)
2182 {
2183 /* Use remainder of previous call, starts with an invalid character
2184 * that may become valid when reading more. */
2185 if (restlen > INBUFLEN - inbufcount)
2186 unconverted = INBUFLEN - inbufcount;
2187 else
2188 unconverted = restlen;
2189 mch_memmove(inbuf + inbufcount, rest, unconverted);
2190 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01002191 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 else
2193 {
2194 restlen -= unconverted;
2195 mch_memmove(rest, rest + unconverted, restlen);
2196 }
2197 inbufcount += unconverted;
2198 }
2199 else
2200 unconverted = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
2202 len = 0; /* to avoid gcc warning */
2203 for (try = 0; try < 100; ++try)
2204 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002205 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002206 / input_conv.vc_factor);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002207# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02002208 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02002209# else
2210 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002212
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 if (len > 0 || got_int)
2214 break;
2215 /*
2216 * If reading stdin results in an error, continue reading stderr.
2217 * This helps when using "foo | xargs vim".
2218 */
2219 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
2220 {
2221 int m = cur_tmode;
2222
2223 /* We probably set the wrong file descriptor to raw mode. Switch
2224 * back to cooked mode, use another descriptor and set the mode to
2225 * what it was. */
2226 settmode(TMODE_COOK);
2227#ifdef HAVE_DUP
2228 /* Use stderr for stdin, also works for shell commands. */
2229 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02002230 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231#else
2232 read_cmd_fd = 2; /* read from stderr instead of stdin */
2233#endif
2234 settmode(m);
2235 }
2236 if (!exit_on_error)
2237 return;
2238 }
2239# endif
2240 if (len <= 0 && !got_int)
2241 read_error_exit();
2242 if (len > 0)
2243 did_read_something = TRUE;
2244 if (got_int)
2245 {
2246 /* Interrupted, pretend a CTRL-C was typed. */
2247 inbuf[0] = 3;
2248 inbufcount = 1;
2249 }
2250 else
2251 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 /*
2253 * May perform conversion on the input characters.
2254 * Include the unconverted rest of the previous call.
2255 * If there is an incomplete char at the end it is kept for the next
2256 * time, reading more bytes should make conversion possible.
2257 * Don't do this in the unlikely event that the input buffer is too
2258 * small ("rest" still contains more bytes).
2259 */
2260 if (input_conv.vc_type != CONV_NONE)
2261 {
2262 inbufcount -= unconverted;
2263 len = convert_input_safe(inbuf + inbufcount,
2264 len + unconverted, INBUFLEN - inbufcount,
2265 rest == NULL ? &rest : NULL, &restlen);
2266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 while (len-- > 0)
2268 {
2269 /*
2270 * if a CTRL-C was typed, remove it from the buffer and set got_int
2271 */
2272 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
2273 {
2274 /* remove everything typed before the CTRL-C */
2275 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
2276 inbufcount = 0;
2277 got_int = TRUE;
2278 }
2279 ++inbufcount;
2280 }
2281 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002282#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01002284#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
2286/*
2287 * Exit because of an input read error.
2288 */
2289 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002290read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291{
2292 if (silent_mode) /* Normal way to exit for "ex -s" */
2293 getout(0);
2294 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
2295 preserve_exit();
2296}
2297
2298#if defined(CURSOR_SHAPE) || defined(PROTO)
2299/*
2300 * May update the shape of the cursor.
2301 */
2302 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002303ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304{
2305# ifdef FEAT_GUI
2306 if (gui.in_use)
2307 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002308 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002310 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002311
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312# ifdef MCH_CURSOR_SHAPE
2313 mch_update_cursor();
2314# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002315
2316# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02002317 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02002318# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02002320
2321 void
2322ui_cursor_shape(void)
2323{
2324 ui_cursor_shape_forced(FALSE);
2325}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326#endif
2327
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328/*
2329 * Check bounds for column number
2330 */
2331 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002332check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333{
2334 if (col < 0)
2335 return 0;
2336 if (col >= (int)screen_Columns)
2337 return (int)screen_Columns - 1;
2338 return col;
2339}
2340
2341/*
2342 * Check bounds for row number
2343 */
2344 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002345check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346{
2347 if (row < 0)
2348 return 0;
2349 if (row >= (int)screen_Rows)
2350 return (int)screen_Rows - 1;
2351 return row;
2352}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353
2354/*
2355 * Stuff for the X clipboard. Shared between VMS and Unix.
2356 */
2357
2358#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2359# include <X11/Xatom.h>
2360# include <X11/Intrinsic.h>
2361
2362/*
2363 * Open the application context (if it hasn't been opened yet).
2364 * Used for Motif and Athena GUI and the xterm clipboard.
2365 */
2366 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002367open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369 if (app_context == NULL)
2370 {
2371 XtToolkitInitialize();
2372 app_context = XtCreateApplicationContext();
2373 }
2374}
2375
2376static Atom vim_atom; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002378static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379static Atom compound_text_atom;
2380static Atom text_atom;
2381static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002382static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
2384 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002385x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386{
2387 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002389 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2391 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002392 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002394 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2395 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396}
2397
2398/*
2399 * X Selection stuff, for cutting and pasting text to other windows.
2400 */
2401
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002402static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2403static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2404static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002405
2406/*
2407 * Property callback to get a timestamp for XtOwnSelection.
2408 */
2409 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002410clip_x11_timestamp_cb(
2411 Widget w,
2412 XtPointer n UNUSED,
2413 XEvent *event,
2414 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002415{
2416 Atom actual_type;
2417 int format;
2418 unsigned long nitems, bytes_after;
2419 unsigned char *prop=NULL;
2420 XPropertyEvent *xproperty=&event->xproperty;
2421
2422 /* Must be a property notify, state can't be Delete (True), has to be
2423 * one of the supported selection types. */
2424 if (event->type != PropertyNotify || xproperty->state
2425 || (xproperty->atom != clip_star.sel_atom
2426 && xproperty->atom != clip_plus.sel_atom))
2427 return;
2428
2429 if (XGetWindowProperty(xproperty->display, xproperty->window,
2430 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2431 &nitems, &bytes_after, &prop))
2432 return;
2433
2434 if (prop)
2435 XFree(prop);
2436
2437 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2438 if (actual_type != timestamp_atom || format != 32)
2439 return;
2440
2441 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002442 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2443 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002444 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002445 {
2446 /* Set the "owned" flag now, there may have been a call to
2447 * lose_ownership_cb in between. */
2448 if (xproperty->atom == clip_plus.sel_atom)
2449 clip_plus.owned = TRUE;
2450 else
2451 clip_star.owned = TRUE;
2452 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002453}
2454
2455 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002456x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002457{
2458 XtAddEventHandler(w, PropertyChangeMask, False,
2459 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2460}
2461
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002463clip_x11_request_selection_cb(
2464 Widget w UNUSED,
2465 XtPointer success,
2466 Atom *sel_atom,
2467 Atom *type,
2468 XtPointer value,
2469 long_u *length,
2470 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002472 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 long_u len;
2474 char_u *p;
2475 char **text_list = NULL;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002476 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478
2479 if (*sel_atom == clip_plus.sel_atom)
2480 cbd = &clip_plus;
2481 else
2482 cbd = &clip_star;
2483
2484 if (value == NULL || *length == 0)
2485 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002486 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 *(int *)success = FALSE;
2488 return;
2489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 p = (char_u *)value;
2491 len = *length;
2492 if (*type == vim_atom)
2493 {
2494 motion_type = *p++;
2495 len--;
2496 }
2497
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 else if (*type == vimenc_atom)
2499 {
2500 char_u *enc;
2501 vimconv_T conv;
2502 int convlen;
2503
2504 motion_type = *p++;
2505 --len;
2506
2507 enc = p;
2508 p += STRLEN(p) + 1;
2509 len -= p - enc;
2510
2511 /* If the encoding of the text is different from 'encoding', attempt
2512 * converting it. */
2513 conv.vc_type = CONV_NONE;
2514 convert_setup(&conv, enc, p_enc);
2515 if (conv.vc_type != CONV_NONE)
2516 {
2517 convlen = len; /* Need to use an int here. */
2518 tmpbuf = string_convert(&conv, p, &convlen);
2519 len = convlen;
2520 if (tmpbuf != NULL)
2521 p = tmpbuf;
2522 convert_setup(&conv, NULL, NULL);
2523 }
2524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002526 else if (*type == compound_text_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002527 || *type == utf8_atom
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002528 || (enc_dbcs != 0 && *type == text_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 {
2530 XTextProperty text_prop;
2531 int n_text = 0;
2532 int status;
2533
2534 text_prop.value = (unsigned char *)value;
2535 text_prop.encoding = *type;
2536 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002537 text_prop.nitems = len;
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002538#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002539 if (*type == utf8_atom)
2540 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2541 &text_list, &n_text);
2542 else
2543#endif
2544 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 &text_list, &n_text);
2546 if (status != Success || n_text < 1)
2547 {
2548 *(int *)success = FALSE;
2549 return;
2550 }
2551 p = (char_u *)text_list[0];
2552 len = STRLEN(p);
2553 }
2554 clip_yank_selection(motion_type, p, (long)len, cbd);
2555
2556 if (text_list != NULL)
2557 XFreeStringList(text_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 XtFree((char *)value);
2560 *(int *)success = TRUE;
2561}
2562
2563 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002564clip_x11_request_selection(
2565 Widget myShell,
2566 Display *dpy,
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002567 Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568{
2569 XEvent event;
2570 Atom type;
2571 static int success;
2572 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002573 time_t start_time;
2574 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002576 for (i = 0; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 {
2578 switch (i)
2579 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 case 0: type = vimenc_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002582 case 2: type = utf8_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002583 case 3: type = compound_text_atom; break;
2584 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 default: type = XA_STRING;
2586 }
Bram Moolenaar81851112013-04-12 12:27:30 +02002587 if (type == utf8_atom
2588# if defined(X_HAVE_UTF8_STRING)
2589 && !enc_utf8
2590# endif
2591 )
2592 /* Only request utf-8 when 'encoding' is utf8 and
2593 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002594 continue;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002595 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2597 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2598
2599 /* Make sure the request for the selection goes out before waiting for
2600 * a response. */
2601 XFlush(dpy);
2602
2603 /*
2604 * Wait for result of selection request, otherwise if we type more
2605 * characters, then they will appear before the one that requested the
2606 * paste! Don't worry, we will catch up with any other events later.
2607 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002608 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002609 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002611 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2612 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2613 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002614 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002615 /* This is where clip_x11_request_selection_cb() should be
2616 * called. It may actually happen a bit later, so we loop
2617 * until "success" changes.
2618 * We may get a SelectionRequest here and if we don't handle
2619 * it we hang. KDE klipper does this, for example.
2620 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002621 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002622 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624
Bram Moolenaar89417b92008-09-07 19:48:53 +00002625 /* Time out after 2 to 3 seconds to avoid that we hang when the
2626 * other process doesn't respond. Note that the SelectionNotify
2627 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002628 * to life and the text gets inserted unexpectedly. Don't know
2629 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002630 if (time(NULL) > start_time + 2)
2631 {
2632 timed_out = TRUE;
2633 break;
2634 }
2635
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 /* Do we need this? Probably not. */
2637 XSync(dpy, False);
2638
Bram Moolenaar89417b92008-09-07 19:48:53 +00002639 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2640 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 }
2642
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002643 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002645
2646 /* don't do a retry with another type after timing out, otherwise we
2647 * hang for 15 seconds. */
2648 if (timed_out)
2649 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 }
2651
2652 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002653 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654}
2655
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002657clip_x11_convert_selection_cb(
2658 Widget w UNUSED,
2659 Atom *sel_atom,
2660 Atom *target,
2661 Atom *type,
2662 XtPointer *value,
2663 long_u *length,
2664 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002666 static char_u *save_result = NULL;
2667 static long_u save_length = 0;
2668 char_u *string;
2669 int motion_type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002670 Clipboard_T *cbd;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002671 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
2673 if (*sel_atom == clip_plus.sel_atom)
2674 cbd = &clip_plus;
2675 else
2676 cbd = &clip_star;
2677
2678 if (!cbd->owned)
2679 return False; /* Shouldn't ever happen */
2680
2681 /* requestor wants to know what target types we support */
2682 if (*target == targets_atom)
2683 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002684 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686 *value = (XtPointer)array;
2687 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 array[i++] = targets_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 array[i++] = vimenc_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002691 if (enc_utf8)
2692 array[i++] = utf8_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002693 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 array[i++] = text_atom;
2695 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002696
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 *type = XA_ATOM;
2698 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2699 * crashes on 64 bit machines. (Peter Derr) */
2700 *format = 32;
2701 *length = i;
2702 return True;
2703 }
2704
2705 if ( *target != XA_STRING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002707 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 && *target != vim_atom
2709 && *target != text_atom
2710 && *target != compound_text_atom)
2711 return False;
2712
2713 clip_get_selection(cbd);
2714 motion_type = clip_convert_selection(&string, length, cbd);
2715 if (motion_type < 0)
2716 return False;
2717
2718 /* For our own format, the first byte contains the motion type */
2719 if (*target == vim_atom)
2720 (*length)++;
2721
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 /* Our own format with encoding: motion 'encoding' NUL text */
2723 if (*target == vimenc_atom)
2724 *length += STRLEN(p_enc) + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002726 if (save_length < *length || save_length / 2 >= *length)
2727 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2728 else
2729 *value = save_result;
2730 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 {
2732 vim_free(string);
2733 return False;
2734 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002735 save_result = (char_u *)*value;
2736 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002738 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002740 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002741 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002743 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 {
2745 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002746 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002747 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
2749 /* create NUL terminated string which XmbTextListToTextProperty wants */
2750 mch_memmove(string_nt, string, (size_t)*length);
2751 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002752 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2753 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002754 if (conv_result != Success)
2755 {
2756 vim_free(string);
2757 return False;
2758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 *value = (XtPointer)(text_prop.value); /* from plain text */
2760 *length = text_prop.nitems;
2761 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002762 XtFree((char *)save_result);
2763 save_result = (char_u *)*value;
2764 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 else if (*target == vimenc_atom)
2767 {
2768 int l = STRLEN(p_enc);
2769
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002770 save_result[0] = motion_type;
2771 STRCPY(save_result + 1, p_enc);
2772 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 *type = vimenc_atom;
2774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 else
2776 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002777 save_result[0] = motion_type;
2778 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 *type = vim_atom;
2780 }
2781 *format = 8; /* 8 bits per char */
2782 vim_free(string);
2783 return True;
2784}
2785
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002787clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 if (*sel_atom == clip_plus.sel_atom)
2790 clip_lose_selection(&clip_plus);
2791 else
2792 clip_lose_selection(&clip_star);
2793}
2794
2795 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002796clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002798 XtDisownSelection(myShell, cbd->sel_atom,
2799 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800}
2801
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002802 static void
2803clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2804{
2805 /* To prevent automatically freeing the selection value. */
2806}
2807
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002809clip_x11_own_selection(Widget myShell, Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002811 /* When using the GUI we have proper timestamps, use the one of the last
2812 * event. When in the console we don't get events (the terminal gets
2813 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2814 * be called with the current timestamp. */
2815#ifdef FEAT_GUI
2816 if (gui.in_use)
2817 {
2818 if (XtOwnSelection(myShell, cbd->sel_atom,
2819 XtLastTimestampProcessed(XtDisplay(myShell)),
2820 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002821 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002822 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002823 }
2824 else
2825#endif
2826 {
2827 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2828 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002829 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002830 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002831 /* Flush is required in a terminal as nothing else is doing it. */
2832 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 return OK;
2834}
2835
2836/*
2837 * Send the current selection to the clipboard. Do nothing for X because we
2838 * will fill in the selection only when requested by another app.
2839 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002841clip_x11_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842{
2843}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002844
Bram Moolenaar113e1072019-01-20 15:30:40 +01002845#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \
2846 || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002847 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002848clip_x11_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002849{
2850 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2851}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852#endif
Bram Moolenaar113e1072019-01-20 15:30:40 +01002853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002855#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2856 || defined(FEAT_GUI_GTK) || defined(PROTO)
2857/*
2858 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2859 */
2860 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02002861yank_cut_buffer0(Display *dpy, Clipboard_T *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002862{
2863 int nbytes = 0;
2864 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2865
2866 if (nbytes > 0)
2867 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002868 int done = FALSE;
2869
2870 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2871 * using a multi-byte encoding. Conversion between two 8-bit
2872 * character sets usually fails and the text might actually be in
2873 * 'enc' anyway. */
2874 if (has_mbyte)
2875 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002876 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002877 vimconv_T vc;
2878
2879 vc.vc_type = CONV_NONE;
2880 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2881 {
2882 conv_buf = string_convert(&vc, buffer, &nbytes);
2883 if (conv_buf != NULL)
2884 {
2885 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2886 vim_free(conv_buf);
2887 done = TRUE;
2888 }
2889 convert_setup(&vc, NULL, NULL);
2890 }
2891 }
2892 if (!done) /* use the text without conversion */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002893 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2894 XFree((void *)buffer);
2895 if (p_verbose > 0)
2896 {
2897 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002898 verb_msg(_("Used CUT_BUFFER0 instead of empty selection"));
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002899 verbose_leave();
2900 }
2901 }
2902}
2903#endif
2904
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905#if defined(FEAT_MOUSE) || defined(PROTO)
2906
2907/*
2908 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002909 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2911 *
2912 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2913 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2914 *
2915 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2916 * if the mouse is outside the window then the text will scroll, or if the
2917 * mouse was previously on a status line, then the status line may be dragged.
2918 *
2919 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2920 * cursor is moved unless the cursor was on a status line.
2921 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2922 * IN_SEP_LINE depending on where the cursor was clicked.
2923 *
2924 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2925 * the mouse is on the status line of the same window.
2926 *
2927 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2928 * the last call.
2929 *
2930 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2931 * remembered.
2932 */
2933 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002934jump_to_mouse(
2935 int flags,
2936 int *inclusive, /* used for inclusive operator, can be NULL */
2937 int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938{
2939 static int on_status_line = 0; /* #lines below bottom of window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 static int on_sep_line = 0; /* on separator right of window */
Bram Moolenaareb163d72017-09-23 15:08:17 +02002941#ifdef FEAT_MENU
2942 static int in_winbar = FALSE;
2943#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002944#ifdef FEAT_TEXT_PROP
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002945 static int in_popup_win = FALSE;
Bram Moolenaar2e62b562019-06-30 18:07:00 +02002946 static win_T *click_in_popup_win = NULL;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02002947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 static int prev_row = -1;
2949 static int prev_col = -1;
2950 static win_T *dragwin = NULL; /* window being dragged */
2951 static int did_drag = FALSE; /* drag was noticed */
2952
2953 win_T *wp, *old_curwin;
2954 pos_T old_cursor;
2955 int count;
2956 int first;
2957 int row = mouse_row;
2958 int col = mouse_col;
2959#ifdef FEAT_FOLDING
2960 int mouse_char;
2961#endif
2962
2963 mouse_past_bottom = FALSE;
2964 mouse_past_eol = FALSE;
2965
2966 if (flags & MOUSE_RELEASED)
2967 {
2968 /* On button release we may change window focus if positioned on a
2969 * status line and no dragging happened. */
2970 if (dragwin != NULL && !did_drag)
2971 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2972 dragwin = NULL;
2973 did_drag = FALSE;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002974#ifdef FEAT_TEXT_PROP
Bram Moolenaar2e62b562019-06-30 18:07:00 +02002975 if (click_in_popup_win != NULL && popup_dragwin == NULL)
2976 popup_close_for_mouse_click(click_in_popup_win);
2977
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002978 popup_dragwin = NULL;
Bram Moolenaar2e62b562019-06-30 18:07:00 +02002979 click_in_popup_win = NULL;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02002980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 }
2982
2983 if ((flags & MOUSE_DID_MOVE)
2984 && prev_row == mouse_row
2985 && prev_col == mouse_col)
2986 {
2987retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002988 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 * line, stop Visual mode */
2990 if (on_status_line)
2991 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 if (on_sep_line)
2993 return IN_SEP_LINE;
Bram Moolenaard327b0c2017-11-12 16:56:12 +01002994#ifdef FEAT_MENU
2995 if (in_winbar)
2996 {
2997 /* A quick second click may arrive as a double-click, but we use it
2998 * as a second click in the WinBar. */
2999 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
3000 {
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003001 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaard327b0c2017-11-12 16:56:12 +01003002 if (wp == NULL)
3003 return IN_UNKNOWN;
3004 winbar_click(wp, col);
3005 }
3006 return IN_OTHER_WIN | MOUSE_WINBAR;
3007 }
3008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 if (flags & MOUSE_MAY_STOP_VIS)
3010 {
3011 end_visual_mode();
3012 redraw_curbuf_later(INVERTED); /* delete the inversion */
3013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003015 // Continue a modeless selection in another window.
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003016 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 return IN_OTHER_WIN;
3018#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003019#ifdef FEAT_TEXT_PROP
Bram Moolenaarf9c85f52019-06-29 07:41:35 +02003020 // Continue a modeless selection in a popup window or dragging it.
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003021 if (in_popup_win)
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003022 {
Bram Moolenaar2e62b562019-06-30 18:07:00 +02003023 click_in_popup_win = NULL; // don't close it on release
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003024 if (popup_dragwin != NULL)
3025 {
3026 // dragging a popup window
3027 popup_drag(popup_dragwin);
3028 return IN_UNKNOWN;
3029 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003030 return IN_OTHER_WIN;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003031 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 return IN_BUFFER;
3034 }
3035
3036 prev_row = mouse_row;
3037 prev_col = mouse_col;
3038
3039 if (flags & MOUSE_SETPOS)
3040 goto retnomove; /* ugly goto... */
3041
3042#ifdef FEAT_FOLDING
3043 /* Remember the character under the mouse, it might be a '-' or '+' in the
3044 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003045 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
3046 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 mouse_char = ScreenLines[LineOffset[row] + col];
3048 else
3049 mouse_char = ' ';
3050#endif
3051
3052 old_curwin = curwin;
3053 old_cursor = curwin->w_cursor;
3054
3055 if (!(flags & MOUSE_FOCUS))
3056 {
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003057 if (row < 0 || col < 0) // check if it makes sense
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 return IN_UNKNOWN;
3059
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003060 // find the window where the row is in
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003061 wp = mouse_find_win(&row, &col, FIND_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003062 if (wp == NULL)
3063 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 dragwin = NULL;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003065
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003066#ifdef FEAT_TEXT_PROP
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003067 // Click in a popup window may start dragging or modeless selection,
3068 // but not much else.
Bram Moolenaar5b8cfed2019-06-30 22:16:10 +02003069 if (WIN_IS_POPUP(wp))
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003070 {
3071 on_sep_line = 0;
3072 in_popup_win = TRUE;
Bram Moolenaar2e62b562019-06-30 18:07:00 +02003073 if (wp->w_popup_close == POPCLOSE_BUTTON
3074 && which_button == MOUSE_LEFT
3075 && popup_on_X_button(wp, row, col))
3076 {
3077 popup_close_for_mouse_click(wp);
3078 return IN_UNKNOWN;
3079 }
Bram Moolenaar9bcb70c2019-08-01 21:11:05 +02003080 else if ((wp->w_popup_flags & (POPF_DRAG | POPF_RESIZE))
3081 && popup_on_border(wp, row, col))
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003082 {
3083 popup_dragwin = wp;
Bram Moolenaar9bcb70c2019-08-01 21:11:05 +02003084 popup_start_drag(wp, row, col);
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003085 return IN_UNKNOWN;
3086 }
Bram Moolenaar2e62b562019-06-30 18:07:00 +02003087 // Only close on release, otherwise it's not possible to drag or do
3088 // modeless selection.
3089 else if (wp->w_popup_close == POPCLOSE_CLICK
3090 && which_button == MOUSE_LEFT)
3091 {
3092 click_in_popup_win = wp;
3093 }
3094 else if (which_button == MOUSE_LEFT)
Bram Moolenaarf9c85f52019-06-29 07:41:35 +02003095 // If the click is in the scrollbar, may scroll up/down.
3096 popup_handle_scrollbar_click(wp, row, col);
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003097# ifdef FEAT_CLIPBOARD
3098 return IN_OTHER_WIN;
3099# else
3100 return IN_UNKNOWN;
3101# endif
3102 }
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003103 in_popup_win = FALSE;
3104 popup_dragwin = NULL;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003105#endif
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003106#ifdef FEAT_MENU
3107 if (row == -1)
3108 {
3109 /* A click in the window toolbar does not enter another window or
3110 * change Visual highlighting. */
3111 winbar_click(wp, col);
Bram Moolenaareb163d72017-09-23 15:08:17 +02003112 in_winbar = TRUE;
3113 return IN_OTHER_WIN | MOUSE_WINBAR;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003114 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02003115 in_winbar = FALSE;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003116#endif
3117
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 /*
3119 * winpos and height may change in win_enter()!
3120 */
3121 if (row >= wp->w_height) /* In (or below) status line */
3122 {
3123 on_status_line = row - wp->w_height + 1;
3124 dragwin = wp;
3125 }
3126 else
3127 on_status_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 if (col >= wp->w_width) /* In separator line */
3129 {
3130 on_sep_line = col - wp->w_width + 1;
3131 dragwin = wp;
3132 }
3133 else
3134 on_sep_line = 0;
3135
3136 /* The rightmost character of the status line might be a vertical
3137 * separator character if there is no connecting window to the right. */
3138 if (on_status_line && on_sep_line)
3139 {
3140 if (stl_connected(wp))
3141 on_sep_line = 0;
3142 else
3143 on_status_line = 0;
3144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 /* Before jumping to another buffer, or moving the cursor for a left
3147 * click, stop Visual mode. */
3148 if (VIsual_active
3149 && (wp->w_buffer != curwin->w_buffer
Bram Moolenaar4033c552017-09-16 20:54:51 +02003150 || (!on_status_line && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003151#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003153# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003154 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003156 col >= wp->w_p_fdc
3157# ifdef FEAT_CMDWIN
3158 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
3159# endif
3160 )
3161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 && (flags & MOUSE_MAY_STOP_VIS))))
3163 {
3164 end_visual_mode();
3165 redraw_curbuf_later(INVERTED); /* delete the inversion */
3166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167#ifdef FEAT_CMDWIN
3168 if (cmdwin_type != 0 && wp != curwin)
3169 {
3170 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01003171 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 on_sep_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173# ifdef FEAT_CLIPBOARD
3174 if (on_status_line)
3175 return IN_STATUS_LINE;
3176 return IN_OTHER_WIN;
3177# else
3178 row = 0;
3179 col += wp->w_wincol;
3180 wp = curwin;
3181# endif
3182 }
3183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 /* Only change window focus when not clicking on or dragging the
3185 * status line. Do change focus when releasing the mouse button
3186 * (MOUSE_FOCUS was set above if we dragged first). */
3187 if (dragwin == NULL || (flags & MOUSE_RELEASED))
3188 win_enter(wp, TRUE); /* can make wp invalid! */
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003189
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 if (curwin != old_curwin)
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003191 {
3192#ifdef CHECK_DOUBLE_CLICK
3193 /* set topline, to be able to check for double click ourselves */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 set_mouse_topline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195#endif
Bram Moolenaarc48369c2018-03-11 19:30:45 +01003196#ifdef FEAT_TERMINAL
3197 /* when entering a terminal window may change state */
3198 term_win_entered();
3199#endif
3200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if (on_status_line) /* In (or below) status line */
3202 {
3203 /* Don't use start_arrow() if we're in the same window */
3204 if (curwin == old_curwin)
3205 return IN_STATUS_LINE;
3206 else
3207 return IN_STATUS_LINE | CURSOR_MOVED;
3208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 if (on_sep_line) /* In (or below) status line */
3210 {
3211 /* Don't use start_arrow() if we're in the same window */
3212 if (curwin == old_curwin)
3213 return IN_SEP_LINE;
3214 else
3215 return IN_SEP_LINE | CURSOR_MOVED;
3216 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218 curwin->w_cursor.lnum = curwin->w_topline;
3219#ifdef FEAT_GUI
3220 /* remember topline, needed for double click */
3221 gui_prev_topline = curwin->w_topline;
3222# ifdef FEAT_DIFF
3223 gui_prev_topfill = curwin->w_topfill;
3224# endif
3225#endif
3226 }
3227 else if (on_status_line && which_button == MOUSE_LEFT)
3228 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 if (dragwin != NULL)
3230 {
3231 /* Drag the status line */
3232 count = row - dragwin->w_winrow - dragwin->w_height + 1
3233 - on_status_line;
3234 win_drag_status_line(dragwin, count);
3235 did_drag |= count;
3236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 return IN_STATUS_LINE; /* Cursor didn't move */
3238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 else if (on_sep_line && which_button == MOUSE_LEFT)
3240 {
3241 if (dragwin != NULL)
3242 {
3243 /* Drag the separator column */
3244 count = col - dragwin->w_wincol - dragwin->w_width + 1
3245 - on_sep_line;
3246 win_drag_vsep_line(dragwin, count);
3247 did_drag |= count;
3248 }
3249 return IN_SEP_LINE; /* Cursor didn't move */
3250 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02003251#ifdef FEAT_MENU
3252 else if (in_winbar)
3253 {
3254 /* After a click on the window toolbar don't start Visual mode. */
3255 return IN_OTHER_WIN | MOUSE_WINBAR;
3256 }
3257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 else /* keep_window_focus must be TRUE */
3259 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 /* before moving the cursor for a left click, stop Visual mode */
3261 if (flags & MOUSE_MAY_STOP_VIS)
3262 {
3263 end_visual_mode();
3264 redraw_curbuf_later(INVERTED); /* delete the inversion */
3265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266
3267#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
3268 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003269 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 return IN_OTHER_WIN;
3271#endif
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003272#ifdef FEAT_TEXT_PROP
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003273 if (in_popup_win)
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003274 {
3275 if (popup_dragwin != NULL)
3276 {
3277 // dragging a popup window
3278 popup_drag(popup_dragwin);
3279 return IN_UNKNOWN;
3280 }
3281 // continue a modeless selection in a popup window
Bram Moolenaar2e62b562019-06-30 18:07:00 +02003282 click_in_popup_win = NULL;
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003283 return IN_OTHER_WIN;
Bram Moolenaarb53fb312019-06-13 23:59:52 +02003284 }
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286
3287 row -= W_WINROW(curwin);
Bram Moolenaar53f81742017-09-22 14:35:51 +02003288 col -= curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289
3290 /*
3291 * When clicking beyond the end of the window, scroll the screen.
3292 * Scroll by however many rows outside the window we are.
3293 */
3294 if (row < 0)
3295 {
3296 count = 0;
3297 for (first = TRUE; curwin->w_topline > 1; )
3298 {
3299#ifdef FEAT_DIFF
3300 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3301 ++count;
3302 else
3303#endif
3304 count += plines(curwin->w_topline - 1);
3305 if (!first && count > -row)
3306 break;
3307 first = FALSE;
3308#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02003309 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310#endif
3311#ifdef FEAT_DIFF
3312 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
3313 ++curwin->w_topfill;
3314 else
3315#endif
3316 {
3317 --curwin->w_topline;
3318#ifdef FEAT_DIFF
3319 curwin->w_topfill = 0;
3320#endif
3321 }
3322 }
3323#ifdef FEAT_DIFF
3324 check_topfill(curwin, FALSE);
3325#endif
3326 curwin->w_valid &=
3327 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3328 redraw_later(VALID);
3329 row = 0;
3330 }
3331 else if (row >= curwin->w_height)
3332 {
3333 count = 0;
3334 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
3335 {
3336#ifdef FEAT_DIFF
3337 if (curwin->w_topfill > 0)
3338 ++count;
3339 else
3340#endif
3341 count += plines(curwin->w_topline);
3342 if (!first && count > row - curwin->w_height + 1)
3343 break;
3344 first = FALSE;
3345#ifdef FEAT_FOLDING
3346 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
3347 && curwin->w_topline == curbuf->b_ml.ml_line_count)
3348 break;
3349#endif
3350#ifdef FEAT_DIFF
3351 if (curwin->w_topfill > 0)
3352 --curwin->w_topfill;
3353 else
3354#endif
3355 {
3356 ++curwin->w_topline;
3357#ifdef FEAT_DIFF
3358 curwin->w_topfill =
3359 diff_check_fill(curwin, curwin->w_topline);
3360#endif
3361 }
3362 }
3363#ifdef FEAT_DIFF
3364 check_topfill(curwin, FALSE);
3365#endif
3366 redraw_later(VALID);
3367 curwin->w_valid &=
3368 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
3369 row = curwin->w_height - 1;
3370 }
3371 else if (row == 0)
3372 {
3373 /* When dragging the mouse, while the text has been scrolled up as
3374 * far as it goes, moving the mouse in the top line should scroll
3375 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003376 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 && curwin->w_cursor.lnum
3378 == curwin->w_buffer->b_ml.ml_line_count
3379 && curwin->w_cursor.lnum == curwin->w_topline)
3380 curwin->w_valid &= ~(VALID_TOPLINE);
3381 }
3382 }
3383
3384#ifdef FEAT_FOLDING
3385 /* Check for position outside of the fold column. */
3386 if (
3387# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003388 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389# endif
3390 col >= curwin->w_p_fdc
3391# ifdef FEAT_CMDWIN
3392 + (cmdwin_type == 0 ? 0 : 1)
3393# endif
3394 )
3395 mouse_char = ' ';
3396#endif
3397
3398 /* compute the position in the buffer line from the posn on the screen */
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003399 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 mouse_past_bottom = TRUE;
3401
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
3403 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
3404 {
3405 check_visual_highlight();
3406 VIsual = old_cursor;
3407 VIsual_active = TRUE;
3408 VIsual_reselect = TRUE;
3409 /* if 'selectmode' contains "mouse", start Select mode */
3410 may_start_select('o');
3411 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00003412 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 redraw_cmdline = TRUE; /* show visual mode later */
3414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415
3416 curwin->w_curswant = col;
3417 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
3418 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
3419 {
3420 if (inclusive != NULL)
3421 *inclusive = TRUE;
3422 mouse_past_eol = TRUE;
3423 }
3424 else if (inclusive != NULL)
3425 *inclusive = FALSE;
3426
3427 count = IN_BUFFER;
3428 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
3429 || curwin->w_cursor.col != old_cursor.col)
3430 count |= CURSOR_MOVED; /* Cursor has moved */
3431
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003432# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 if (mouse_char == '+')
3434 count |= MOUSE_FOLD_OPEN;
3435 else if (mouse_char != ' ')
3436 count |= MOUSE_FOLD_CLOSE;
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003437# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438
3439 return count;
3440}
Bram Moolenaar4c063a02019-06-10 21:24:12 +02003441#endif
3442
3443// Functions also used for popup windows.
3444#if defined(FEAT_MOUSE) || defined(FEAT_TEXT_PROP) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445
3446/*
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003447 * Compute the buffer line position from the screen position "rowp" / "colp" in
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 * window "win".
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003449 * "plines_cache" can be NULL (no cache) or an array with "win->w_height"
3450 * entries that caches the plines_win() result from a previous call. Entry is
3451 * zero if not computed yet. There must be no text or setting changes since
3452 * the entry is put in the cache.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 * Returns TRUE if the position is below the last line.
3454 */
3455 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003456mouse_comp_pos(
3457 win_T *win,
3458 int *rowp,
3459 int *colp,
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003460 linenr_T *lnump,
3461 int *plines_cache)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462{
3463 int col = *colp;
3464 int row = *rowp;
3465 linenr_T lnum;
3466 int retval = FALSE;
3467 int off;
3468 int count;
3469
3470#ifdef FEAT_RIGHTLEFT
3471 if (win->w_p_rl)
Bram Moolenaar02631462017-09-22 15:20:32 +02003472 col = win->w_width - 1 - col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473#endif
3474
3475 lnum = win->w_topline;
3476
3477 while (row > 0)
3478 {
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003479 int cache_idx = lnum - win->w_topline;
3480
3481 if (plines_cache != NULL && plines_cache[cache_idx] > 0)
3482 count = plines_cache[cache_idx];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 else
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003484 {
3485#ifdef FEAT_DIFF
3486 /* Don't include filler lines in "count" */
3487 if (win->w_p_diff
3488# ifdef FEAT_FOLDING
3489 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3490# endif
3491 )
3492 {
3493 if (lnum == win->w_topline)
3494 row -= win->w_topfill;
3495 else
3496 row -= diff_check_fill(win, lnum);
3497 count = plines_win_nofill(win, lnum, TRUE);
3498 }
3499 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003500#endif
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003501 count = plines_win(win, lnum, TRUE);
3502 if (plines_cache != NULL)
3503 plines_cache[cache_idx] = count;
3504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 if (count > row)
3506 break; /* Position is in this buffer line. */
3507#ifdef FEAT_FOLDING
3508 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3509#endif
3510 if (lnum == win->w_buffer->b_ml.ml_line_count)
3511 {
3512 retval = TRUE;
3513 break; /* past end of file */
3514 }
3515 row -= count;
3516 ++lnum;
3517 }
3518
3519 if (!retval)
3520 {
3521 /* Compute the column without wrapping. */
3522 off = win_col_off(win) - win_col_off2(win);
3523 if (col < off)
3524 col = off;
Bram Moolenaar02631462017-09-22 15:20:32 +02003525 col += row * (win->w_width - off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 /* add skip column (for long wrapping line) */
3527 col += win->w_skipcol;
3528 }
3529
3530 if (!win->w_p_wrap)
3531 col += win->w_leftcol;
3532
3533 /* skip line number and fold column in front of the line */
3534 col -= win_col_off(win);
3535 if (col < 0)
3536 {
3537#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003538 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539#endif
3540 col = 0;
3541 }
3542
3543 *colp = col;
3544 *rowp = row;
3545 *lnump = lnum;
3546 return retval;
3547}
3548
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549/*
3550 * Find the window at screen position "*rowp" and "*colp". The positions are
3551 * updated to become relative to the top-left of the window.
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003552 * When "popup" is FAIL_POPUP and the position is in a popup window then NULL
3553 * is returned. When "popup" is IGNORE_POPUP then do not even check popup
3554 * windows.
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003555 * Returns NULL when something is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 win_T *
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003558mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559{
3560 frame_T *fp;
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003561 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003563#ifdef FEAT_TEXT_PROP
3564 win_T *pwp = NULL;
3565
3566 if (popup != IGNORE_POPUP)
3567 {
3568 popup_reset_handled();
3569 while ((wp = find_next_popup(TRUE)) != NULL)
3570 {
3571 if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp)
3572 && *colp >= wp->w_wincol
Bram Moolenaarf9c85f52019-06-29 07:41:35 +02003573 && *colp < wp->w_wincol + popup_width(wp))
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003574 pwp = wp;
3575 }
3576 if (pwp != NULL)
3577 {
3578 if (popup == FAIL_POPUP)
3579 return NULL;
3580 *rowp -= pwp->w_winrow;
3581 *colp -= pwp->w_wincol;
3582 return pwp;
3583 }
3584 }
3585#endif
3586
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003588 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 for (;;)
3590 {
3591 if (fp->fr_layout == FR_LEAF)
3592 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 if (fp->fr_layout == FR_ROW)
3594 {
3595 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3596 {
3597 if (*colp < fp->fr_width)
3598 break;
3599 *colp -= fp->fr_width;
3600 }
3601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 else /* fr_layout == FR_COL */
3603 {
3604 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3605 {
3606 if (*rowp < fp->fr_height)
3607 break;
3608 *rowp -= fp->fr_height;
3609 }
3610 }
3611 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003612 /* When using a timer that closes a window the window might not actually
3613 * exist. */
3614 FOR_ALL_WINDOWS(wp)
3615 if (wp == fp->fr_win)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003616 {
3617#ifdef FEAT_MENU
3618 *rowp -= wp->w_winbar_height;
3619#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003620 return wp;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003621 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003622 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
Bram Moolenaar860cae12010-06-05 23:22:07 +02003625#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar658a1542018-03-03 19:29:43 +01003627 || defined(FEAT_GUI_PHOTON) || defined(FEAT_TERM_POPUP_MENU) \
3628 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629/*
3630 * Translate window coordinates to buffer position without any side effects
3631 */
3632 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003633get_fpos_of_mouse(pos_T *mpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634{
3635 win_T *wp;
3636 int row = mouse_row;
3637 int col = mouse_col;
3638
3639 if (row < 0 || col < 0) /* check if it makes sense */
3640 return IN_UNKNOWN;
3641
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 /* find the window where the row is in */
Bram Moolenaar451d4b52019-06-12 20:22:27 +02003643 wp = mouse_find_win(&row, &col, FAIL_POPUP);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003644 if (wp == NULL)
3645 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 /*
3647 * winpos and height may change in win_enter()!
3648 */
3649 if (row >= wp->w_height) /* In (or below) status line */
3650 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 if (col >= wp->w_width) /* In vertical separator line */
3652 return IN_SEP_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653
3654 if (wp != curwin)
3655 return IN_UNKNOWN;
3656
3657 /* compute the position in the buffer line from the posn on the screen */
Bram Moolenaar9d5ffce2019-07-26 21:01:29 +02003658 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 return IN_STATUS_LINE; /* past bottom */
3660
3661 mpos->col = vcol2col(wp, mpos->lnum, col);
3662
3663 if (mpos->col > 0)
3664 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003665 mpos->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 return IN_BUFFER;
3667}
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003670#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
3671 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar3767b612018-03-03 19:51:58 +01003672 || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \
3673 || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674/*
3675 * Convert a virtual (screen) column to a character column.
3676 * The first column is one.
3677 */
3678 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003679vcol2col(win_T *wp, linenr_T lnum, int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680{
3681 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 int count = 0;
3683 char_u *ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02003684 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685
Bram Moolenaar597a4222014-06-25 14:39:50 +02003686 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003687 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02003689 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003690 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02003692 return (int)(ptr - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693}
3694#endif
3695
3696#endif /* FEAT_MOUSE */
3697
Bram Moolenaar4f974752019-02-17 17:44:42 +01003698#if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699/*
3700 * Called when focus changed. Used for the GUI or for systems where this can
3701 * be done in the console (Win32).
3702 */
3703 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003704ui_focus_change(
3705 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706{
3707 static time_t last_time = (time_t)0;
3708 int need_redraw = FALSE;
3709
3710 /* When activated: Check if any file was modified outside of Vim.
3711 * Only do this when not done within the last two seconds (could get
3712 * several events in a row). */
3713 if (in_focus && last_time + 2 < time(NULL))
3714 {
3715 need_redraw = check_timestamps(
3716# ifdef FEAT_GUI
3717 gui.in_use
3718# else
3719 FALSE
3720# endif
3721 );
3722 last_time = time(NULL);
3723 }
3724
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 /*
3726 * Fire the focus gained/lost autocommand.
3727 */
3728 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3729 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730
3731 if (need_redraw)
3732 {
3733 /* Something was executed, make sure the cursor is put back where it
3734 * belongs. */
3735 need_wait_return = FALSE;
3736
3737 if (State & CMDLINE)
3738 redrawcmdline();
3739 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3740 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3741 repeat_message();
3742 else if ((State & NORMAL) || (State & INSERT))
3743 {
3744 if (must_redraw != 0)
3745 update_screen(0);
3746 setcursor();
3747 }
3748 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01003749 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750# ifdef FEAT_GUI
3751 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753# endif
3754 }
3755#ifdef FEAT_TITLE
3756 /* File may have been changed from 'readonly' to 'noreadonly' */
3757 if (need_maketitle)
3758 maketitle();
3759#endif
3760}
3761#endif
3762
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003763#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764/*
3765 * Save current Input Method status to specified place.
3766 */
3767 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003768im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769{
3770 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3771 * disabled then (but might start later).
3772 * Also don't save when inside a mapping, vgetc_im_active has not been set
3773 * then.
3774 * And don't save when the keys were stuffed (e.g., for a "." command).
3775 * And don't save when the GUI is running but our window doesn't have
3776 * input focus (e.g., when a find dialog is open). */
3777 if (!p_imdisable && KeyTyped && !KeyStuffed
3778# ifdef FEAT_XIM
3779 && xic != NULL
3780# endif
3781# ifdef FEAT_GUI
3782 && (!gui.in_use || gui.in_focus)
3783# endif
3784 )
3785 {
3786 /* Do save when IM is on, or IM is off and saved status is on. */
3787 if (vgetc_im_active)
3788 *psave = B_IMODE_IM;
3789 else if (*psave == B_IMODE_IM)
3790 *psave = B_IMODE_NONE;
3791 }
3792}
3793#endif