blob: a1f584e3f91d663d1507d4d7478e2587acb77ef4 [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 Moolenaarac360bf2015-09-01 20:31:20 +020043#if defined(FEAT_MBYTE) && !defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 char_u *tofree = NULL;
45
46 if (output_conv.vc_type != CONV_NONE)
47 {
48 /* Convert characters from 'encoding' to 'termencoding'. */
49 tofree = string_convert(&output_conv, s, &len);
50 if (tofree != NULL)
51 s = tofree;
52 }
53#endif
54
55 mch_write(s, len);
56
Bram Moolenaarac360bf2015-09-01 20:31:20 +020057#if defined(FEAT_MBYTE) && !defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 if (output_conv.vc_type != CONV_NONE)
59 vim_free(tofree);
60#endif
61 }
62#endif
63}
64
Bram Moolenaar4b9669f2011-07-07 16:20:52 +020065#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When executing an external program, there may be some typed characters that
68 * are not consumed by it. Give them back to ui_inchar() and they are stored
69 * here for the next call.
70 */
71static char_u *ta_str = NULL;
72static int ta_off; /* offset for next char to use when ta_str != NULL */
73static int ta_len; /* length of ta_str when it's not NULL*/
74
75 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +010076ui_inchar_undo(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000077{
78 char_u *new;
79 int newlen;
80
81 newlen = len;
82 if (ta_str != NULL)
83 newlen += ta_len - ta_off;
84 new = alloc(newlen);
85 if (new != NULL)
86 {
87 if (ta_str != NULL)
88 {
89 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
90 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
91 vim_free(ta_str);
92 }
93 else
94 mch_memmove(new, s, (size_t)len);
95 ta_str = new;
96 ta_len = newlen;
97 ta_off = 0;
98 }
99}
100#endif
101
102/*
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200103 * ui_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 * Get characters from the keyboard.
105 * Return the number of characters that are available.
106 * If "wtime" == 0 do not wait for characters.
107 * If "wtime" == -1 wait forever for characters.
108 * If "wtime" > 0 wait "wtime" milliseconds for a character.
109 *
110 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
111 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
112 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
113 * otherwise.
114 */
115 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100116ui_inchar(
117 char_u *buf,
118 int maxlen,
119 long wtime, /* don't use "time", MIPS cannot handle it */
120 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121{
122 int retval = 0;
123
124#if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
125 /*
126 * Use the typeahead if there is any.
127 */
128 if (ta_str != NULL)
129 {
130 if (maxlen >= ta_len - ta_off)
131 {
132 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
Bram Moolenaard23a8232018-02-10 18:45:26 +0100133 VIM_CLEAR(ta_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 return ta_len;
135 }
136 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
137 ta_off += maxlen;
138 return maxlen;
139 }
140#endif
141
Bram Moolenaar05159a02005-02-26 23:04:13 +0000142#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000143 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000144 prof_inchar_enter();
145#endif
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#ifdef NO_CONSOLE_INPUT
148 /* Don't wait for character input when the window hasn't been opened yet.
149 * Do try reading, this works when redirecting stdin from a file.
150 * Must return something, otherwise we'll loop forever. If we run into
151 * this very often we probably got stuck, exit Vim. */
152 if (no_console_input())
153 {
154 static int count = 0;
155
156# ifndef NO_CONSOLE
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000157 retval = mch_inchar(buf, maxlen, (wtime >= 0 && wtime < 10)
158 ? 10L : wtime, tb_change_cnt);
159 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000160 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161# endif
162 if (wtime == -1 && ++count == 1000)
163 read_error_exit();
164 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000165 retval = 1;
166 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167 }
168#endif
169
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000170 /* If we are going to wait for some time or block... */
171 if (wtime == -1 || wtime > 100L)
172 {
173 /* ... allow signals to kill us. */
174 (void)vim_handle_signal(SIGNAL_UNBLOCK);
175
176 /* ... there is no need for CTRL-C to interrupt something, don't let
177 * it set got_int when it was mapped. */
Bram Moolenaar50008692015-01-14 16:08:32 +0100178 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state())
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000179 ctrl_c_interrupts = FALSE;
180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182#ifdef FEAT_GUI
183 if (gui.in_use)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100184 retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185#endif
186#ifndef NO_CONSOLE
187# ifdef FEAT_GUI
188 else
189# endif
190 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
191#endif
192
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000193 if (wtime == -1 || wtime > 100L)
194 /* block SIGHUP et al. */
195 (void)vim_handle_signal(SIGNAL_BLOCK);
196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 ctrl_c_interrupts = TRUE;
198
Bram Moolenaar05159a02005-02-26 23:04:13 +0000199#ifdef NO_CONSOLE_INPUT
200theend:
201#endif
202#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000203 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000204 prof_inchar_exit();
205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 return retval;
207}
208
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100209#if defined(FEAT_TIMERS) || defined(PROT)
210/*
211 * Wait for a timer to fire or "wait_func" to return non-zero.
212 * Returns OK when something was read.
213 * Returns FAIL when it timed out or was interrupted.
214 */
215 int
216ui_wait_for_chars_or_timer(
217 long wtime,
218 int (*wait_func)(long wtime, int *interrupted, int ignore_input),
219 int *interrupted,
220 int ignore_input)
221{
222 int due_time;
223 long remaining = wtime;
224 int tb_change_cnt = typebuf.tb_change_cnt;
225
226 /* When waiting very briefly don't trigger timers. */
227 if (wtime >= 0 && wtime < 10L)
228 return wait_func(wtime, NULL, ignore_input);
229
230 while (wtime < 0 || remaining > 0)
231 {
232 /* Trigger timers and then get the time in wtime until the next one is
233 * due. Wait up to that time. */
234 due_time = check_due_timer();
235 if (typebuf.tb_change_cnt != tb_change_cnt)
236 {
237 /* timer may have used feedkeys() */
238 return FAIL;
239 }
240 if (due_time <= 0 || (wtime > 0 && due_time > remaining))
241 due_time = remaining;
242 if (wait_func(due_time, interrupted, ignore_input))
243 return OK;
244 if (interrupted != NULL && *interrupted)
245 /* Nothing available, but need to return so that side effects get
246 * handled, such as handling a message on a channel. */
Bram Moolenaara338adc2018-01-31 20:51:47 +0100247 return FAIL;
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100248 if (wtime > 0)
249 remaining -= due_time;
250 }
251 return FAIL;
252}
253#endif
254
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255/*
256 * return non-zero if a character is available
257 */
258 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100259ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260{
261#ifdef FEAT_GUI
262 if (gui.in_use)
263 {
264 gui_mch_update();
265 return input_available();
266 }
267#endif
268#ifndef NO_CONSOLE
269# ifdef NO_CONSOLE_INPUT
270 if (no_console_input())
271 return 0;
272# endif
273 return mch_char_avail();
274#else
275 return 0;
276#endif
277}
278
279/*
280 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
281 * cancel the delay if a key is hit.
282 */
283 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100284ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285{
286#ifdef FEAT_GUI
287 if (gui.in_use && !ignoreinput)
Bram Moolenaarc9e649a2017-12-18 18:14:47 +0100288 gui_wait_for_chars(msec, typebuf.tb_change_cnt);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 else
290#endif
291 mch_delay(msec, ignoreinput);
292}
293
294/*
295 * If the machine has job control, use it to suspend the program,
296 * otherwise fake it by starting a new shell.
297 * When running the GUI iconify the window.
298 */
299 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100300ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301{
302#ifdef FEAT_GUI
303 if (gui.in_use)
304 {
305 gui_mch_iconify();
306 return;
307 }
308#endif
309 mch_suspend();
310}
311
312#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
313/*
314 * When the OS can't really suspend, call this function to start a shell.
315 * This is never called in the GUI.
316 */
317 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100318suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319{
320 if (*p_sh == NUL)
321 EMSG(_(e_shellempty));
322 else
323 {
324 MSG_PUTS(_("new shell started\n"));
325 do_shell(NULL, 0);
326 }
327}
328#endif
329
330/*
331 * Try to get the current Vim shell size. Put the result in Rows and Columns.
332 * Use the new sizes as defaults for 'columns' and 'lines'.
333 * Return OK when size could be determined, FAIL otherwise.
334 */
335 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100336ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337{
338 int retval;
339
340#ifdef FEAT_GUI
341 if (gui.in_use)
342 retval = gui_get_shellsize();
343 else
344#endif
345 retval = mch_get_shellsize();
346
347 check_shellsize();
348
349 /* adjust the default for 'lines' and 'columns' */
350 if (retval == OK)
351 {
352 set_number_default("lines", Rows);
353 set_number_default("columns", Columns);
354 }
355 return retval;
356}
357
358/*
359 * Set the size of the Vim shell according to Rows and Columns, if possible.
360 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
361 * new size. If this is not possible, it will adjust Rows and Columns.
362 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100364ui_set_shellsize(
365 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366{
367#ifdef FEAT_GUI
368 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200369 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 else
371#endif
372 mch_set_shellsize();
373}
374
375/*
376 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
377 * region.
378 */
379 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100380ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381{
382 if (full_screen && !exiting)
383 {
384#ifdef FEAT_GUI
385 if (gui.in_use)
386 gui_new_shellsize();
387 else
388#endif
389 mch_new_shellsize();
390 }
391}
392
393 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100394ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200396 ui_breakcheck_force(FALSE);
397}
398
399/*
400 * When "force" is true also check when the terminal is not in raw mode.
401 * This is useful to read input on channels.
402 */
403 void
404ui_breakcheck_force(int force)
405{
Bram Moolenaar42335f52018-09-13 15:33:43 +0200406 int save_updating_screen = updating_screen;
Bram Moolenaare3caa112017-01-31 22:07:42 +0100407
408 /* We do not want gui_resize_shell() to redraw the screen here. */
409 ++updating_screen;
410
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411#ifdef FEAT_GUI
412 if (gui.in_use)
413 gui_mch_update();
414 else
415#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +0200416 mch_breakcheck(force);
Bram Moolenaare3caa112017-01-31 22:07:42 +0100417
Bram Moolenaar42335f52018-09-13 15:33:43 +0200418 if (save_updating_screen)
419 updating_screen = TRUE;
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +0200420 else
421 reset_updating_screen(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422}
423
424/*****************************************************************************
425 * Functions for copying and pasting text between applications.
426 * This is always included in a GUI version, but may also be included when the
427 * clipboard and mouse is available to a terminal version such as xterm.
428 * Note: there are some more functions in ops.c that handle selection stuff.
429 *
430 * Also note that the majority of functions here deal with the X 'primary'
431 * (visible - for Visual mode use) selection, and only that. There are no
432 * versions of these for the 'clipboard' selection, as Visual mode has no use
433 * for them.
434 */
435
436#if defined(FEAT_CLIPBOARD) || defined(PROTO)
437
438/*
439 * Selection stuff using Visual mode, for cutting and pasting text to other
440 * windows.
441 */
442
443/*
444 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
445 * is included, but the clipboard can not be used, or TRUE if the clipboard can
446 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
447 * the GUI starts.
448 */
449 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100450clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451{
452 VimClipboard *cb;
453
454 cb = &clip_star;
455 for (;;)
456 {
457 cb->available = can_use;
458 cb->owned = FALSE;
459 cb->start.lnum = 0;
460 cb->start.col = 0;
461 cb->end.lnum = 0;
462 cb->end.col = 0;
463 cb->state = SELECT_CLEARED;
464
465 if (cb == &clip_plus)
466 break;
467 cb = &clip_plus;
468 }
469}
470
471/*
472 * Check whether the VIsual area has changed, and if so try to become the owner
473 * of the selection, and free any old converted selection we may still have
474 * lying around. If the VIsual mode has ended, make a copy of what was
475 * selected so we can still give it to others. Will probably have to make sure
476 * this is called whenever VIsual mode is ended.
477 */
478 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100479clip_update_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200481 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482
483 /* If visual mode is only due to a redo command ("."), then ignore it */
484 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
485 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100486 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487 {
488 start = VIsual;
489 end = curwin->w_cursor;
490#ifdef FEAT_MBYTE
491 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000492 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493#endif
494 }
495 else
496 {
497 start = curwin->w_cursor;
498 end = VIsual;
499 }
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100500 if (!EQUAL_POS(clip->start, start)
501 || !EQUAL_POS(clip->end, end)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200502 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200504 clip_clear_selection(clip);
505 clip->start = start;
506 clip->end = end;
507 clip->vmode = VIsual_mode;
508 clip_free_selection(clip);
509 clip_own_selection(clip);
510 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 }
512 }
513}
514
515 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100516clip_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517{
518 /*
519 * Also want to check somehow that we are reading from the keyboard rather
520 * than a mapping etc.
521 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200523 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200524 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200525 if (cbd->available)
526 {
527 int was_owned = cbd->owned;
528
529 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200530 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000532 /* May have to show a different kind of highlighting for the
533 * selected area. There is no specific redraw command for this,
534 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000536 && (get_real_state() == VISUAL
537 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200538 && (cbd == &clip_star ? clip_isautosel_star()
539 : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100540 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 redraw_curbuf_later(INVERTED_ALL);
542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200544#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200545 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200546 if (!cbd->owned && cbd->available)
547 cbd->owned = (clip_gen_own_selection(cbd) == OK);
548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549}
550
551 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100552clip_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553{
554#ifdef FEAT_X11
555 int was_owned = cbd->owned;
556#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200557 int visual_selection = FALSE;
558
559 if (cbd == &clip_star || cbd == &clip_plus)
560 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561
562 clip_free_selection(cbd);
563 cbd->owned = FALSE;
564 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200565 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 clip_gen_lose_selection(cbd);
567#ifdef FEAT_X11
568 if (visual_selection)
569 {
570 /* May have to show a different kind of highlighting for the selected
571 * area. There is no specific redraw command for this, just redraw all
572 * windows on the current buffer. */
573 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000574 && (get_real_state() == VISUAL
575 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200576 && (cbd == &clip_star ?
577 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar8820b482017-03-16 17:23:31 +0100578 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 {
580 update_curbuf(INVERTED_ALL);
581 setcursor();
582 cursor_on();
Bram Moolenaara338adc2018-01-31 20:51:47 +0100583 out_flush_cursor(TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 }
585 }
586#endif
587}
588
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200589 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100590clip_copy_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200592 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200594 clip_update_selection(clip);
595 clip_free_selection(clip);
596 clip_own_selection(clip);
597 if (clip->owned)
598 clip_get_selection(clip);
599 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 }
601}
602
603/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200604 * Save and restore clip_unnamed before doing possibly many changes. This
605 * prevents accessing the clipboard very often which might slow down Vim
606 * considerably.
607 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100608static int global_change_count = 0; /* if set, inside a start_global_changes */
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200609static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */
610static int clip_did_set_selection = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200611
612/*
613 * Save clip_unnamed and reset it.
614 */
615 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100616start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200617{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100618 if (++global_change_count > 1)
619 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200620 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100621 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200622
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100623 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200624 {
625 clip_unnamed = FALSE;
626 clip_did_set_selection = FALSE;
627 }
628}
629
630/*
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200631 * Return TRUE if setting the clipboard was postponed, it already contains the
632 * right text.
633 */
634 int
635is_clipboard_needs_update()
636{
637 return clipboard_needs_update;
638}
639
640/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200641 * Restore clip_unnamed and set the selection when needed.
642 */
643 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100644end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200645{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100646 if (--global_change_count > 0)
647 /* recursive */
648 return;
649 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200650 {
651 clip_did_set_selection = TRUE;
652 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100653 clip_unnamed_saved = FALSE;
654 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200655 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100656 /* only store something in the clipboard,
657 * if we have yanked anything to it */
658 if (clip_unnamed & CLIP_UNNAMED)
659 {
660 clip_own_selection(&clip_star);
661 clip_gen_set_selection(&clip_star);
662 }
663 if (clip_unnamed & CLIP_UNNAMED_PLUS)
664 {
665 clip_own_selection(&clip_plus);
666 clip_gen_set_selection(&clip_plus);
667 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200668 }
669 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +0200670 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200671}
672
673/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 * Called when Visual mode is ended: update the selection.
675 */
676 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100677clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200679 if (clip_isautosel_star())
680 clip_copy_selection(&clip_star);
681 if (clip_isautosel_plus())
682 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683}
684
685/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200686 * Return TRUE if automatic selection of Visual area is desired for the *
687 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 */
689 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100690clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691{
692 return (
693#ifdef FEAT_GUI
694 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
695#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200696 clip_autoselect_star);
697}
698
699/*
700 * Return TRUE if automatic selection of Visual area is desired for the +
701 * register.
702 */
703 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100704clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200705{
706 return (
707#ifdef FEAT_GUI
708 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
709#endif
710 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711}
712
713
714/*
715 * Stuff for general mouse selection, without using Visual mode.
716 */
717
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100718static void clip_invert_area(int, int, int, int, int how);
719static void clip_invert_rectangle(int row, int col, int height, int width, int invert);
720static void clip_get_word_boundaries(VimClipboard *, int, int);
721static int clip_get_line_end(int);
722static void clip_update_modeless_selection(VimClipboard *, int, int,
723 int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724
725/* flags for clip_invert_area() */
726#define CLIP_CLEAR 1
727#define CLIP_SET 2
728#define CLIP_TOGGLE 3
729
730/*
731 * Start, continue or end a modeless selection. Used when editing the
732 * command-line and in the cmdline window.
733 */
734 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100735clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736{
737 int repeat;
738
739 repeat = ((clip_star.mode == SELECT_MODE_CHAR
740 || clip_star.mode == SELECT_MODE_LINE)
741 && (mod_mask & MOD_MASK_2CLICK))
742 || (clip_star.mode == SELECT_MODE_WORD
743 && (mod_mask & MOD_MASK_3CLICK));
744 if (is_click && button == MOUSE_RIGHT)
745 {
746 /* Right mouse button: If there was no selection, start one.
747 * Otherwise extend the existing selection. */
748 if (clip_star.state == SELECT_CLEARED)
749 clip_start_selection(mouse_col, mouse_row, FALSE);
750 clip_process_selection(button, mouse_col, mouse_row, repeat);
751 }
752 else if (is_click)
753 clip_start_selection(mouse_col, mouse_row, repeat);
754 else if (is_drag)
755 {
756 /* Don't try extending a selection if there isn't one. Happens when
757 * button-down is in the cmdline and them moving mouse upwards. */
758 if (clip_star.state != SELECT_CLEARED)
759 clip_process_selection(button, mouse_col, mouse_row, repeat);
760 }
761 else /* release */
762 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
763}
764
765/*
766 * Compare two screen positions ala strcmp()
767 */
768 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100769clip_compare_pos(
770 int row1,
771 int col1,
772 int row2,
773 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774{
775 if (row1 > row2) return(1);
776 if (row1 < row2) return(-1);
777 if (col1 > col2) return(1);
778 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +0100779 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780}
781
782/*
783 * Start the selection
784 */
785 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100786clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
788 VimClipboard *cb = &clip_star;
789
790 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200791 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792
793 row = check_row(row);
794 col = check_col(col);
795#ifdef FEAT_MBYTE
796 col = mb_fix_col(col, row);
797#endif
798
799 cb->start.lnum = row;
800 cb->start.col = col;
801 cb->end = cb->start;
802 cb->origin_row = (short_u)cb->start.lnum;
803 cb->state = SELECT_IN_PROGRESS;
804
805 if (repeated_click)
806 {
807 if (++cb->mode > SELECT_MODE_LINE)
808 cb->mode = SELECT_MODE_CHAR;
809 }
810 else
811 cb->mode = SELECT_MODE_CHAR;
812
813#ifdef FEAT_GUI
814 /* clear the cursor until the selection is made */
815 if (gui.in_use)
816 gui_undraw_cursor();
817#endif
818
819 switch (cb->mode)
820 {
821 case SELECT_MODE_CHAR:
822 cb->origin_start_col = cb->start.col;
823 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
824 break;
825
826 case SELECT_MODE_WORD:
827 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
828 cb->origin_start_col = cb->word_start_col;
829 cb->origin_end_col = cb->word_end_col;
830
831 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
832 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
833 cb->start.col = cb->word_start_col;
834 cb->end.col = cb->word_end_col;
835 break;
836
837 case SELECT_MODE_LINE:
838 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
839 (int)Columns, CLIP_SET);
840 cb->start.col = 0;
841 cb->end.col = Columns;
842 break;
843 }
844
845 cb->prev = cb->start;
846
847#ifdef DEBUG_SELECTION
848 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
849#endif
850}
851
852/*
853 * Continue processing the selection
854 */
855 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100856clip_process_selection(
857 int button,
858 int col,
859 int row,
860 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861{
862 VimClipboard *cb = &clip_star;
863 int diff;
864 int slen = 1; /* cursor shape width */
865
866 if (button == MOUSE_RELEASE)
867 {
868 /* Check to make sure we have something selected */
869 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
870 {
871#ifdef FEAT_GUI
872 if (gui.in_use)
873 gui_update_cursor(FALSE, FALSE);
874#endif
875 cb->state = SELECT_CLEARED;
876 return;
877 }
878
879#ifdef DEBUG_SELECTION
880 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
881 cb->start.col, cb->end.lnum, cb->end.col);
882#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200883 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 || (
885#ifdef FEAT_GUI
886 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
887#endif
888 clip_autoselectml))
889 clip_copy_modeless_selection(FALSE);
890#ifdef FEAT_GUI
891 if (gui.in_use)
892 gui_update_cursor(FALSE, FALSE);
893#endif
894
895 cb->state = SELECT_DONE;
896 return;
897 }
898
899 row = check_row(row);
900 col = check_col(col);
901#ifdef FEAT_MBYTE
902 col = mb_fix_col(col, row);
903#endif
904
905 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
906 return;
907
908 /*
909 * When extending the selection with the right mouse button, swap the
910 * start and end if the position is before half the selection
911 */
912 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
913 {
914 /*
915 * If the click is before the start, or the click is inside the
916 * selection and the start is the closest side, set the origin to the
917 * end of the selection.
918 */
919 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
920 || (clip_compare_pos(row, col,
921 (int)cb->end.lnum, cb->end.col) < 0
922 && (((cb->start.lnum == cb->end.lnum
923 && cb->end.col - col > col - cb->start.col))
924 || ((diff = (cb->end.lnum - row) -
925 (row - cb->start.lnum)) > 0
926 || (diff == 0 && col < (int)(cb->start.col +
927 cb->end.col) / 2)))))
928 {
929 cb->origin_row = (short_u)cb->end.lnum;
930 cb->origin_start_col = cb->end.col - 1;
931 cb->origin_end_col = cb->end.col;
932 }
933 else
934 {
935 cb->origin_row = (short_u)cb->start.lnum;
936 cb->origin_start_col = cb->start.col;
937 cb->origin_end_col = cb->start.col;
938 }
939 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
940 cb->mode = SELECT_MODE_CHAR;
941 }
942
943 /* set state, for when using the right mouse button */
944 cb->state = SELECT_IN_PROGRESS;
945
946#ifdef DEBUG_SELECTION
947 printf("Selection extending to (%d,%d)\n", row, col);
948#endif
949
950 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
951 cb->mode = SELECT_MODE_CHAR;
952
953 switch (cb->mode)
954 {
955 case SELECT_MODE_CHAR:
956 /* If we're on a different line, find where the line ends */
957 if (row != cb->prev.lnum)
958 cb->word_end_col = clip_get_line_end(row);
959
960 /* See if we are before or after the origin of the selection */
961 if (clip_compare_pos(row, col, cb->origin_row,
962 cb->origin_start_col) >= 0)
963 {
964 if (col >= (int)cb->word_end_col)
965 clip_update_modeless_selection(cb, cb->origin_row,
966 cb->origin_start_col, row, (int)Columns);
967 else
968 {
969#ifdef FEAT_MBYTE
970 if (has_mbyte && mb_lefthalve(row, col))
971 slen = 2;
972#endif
973 clip_update_modeless_selection(cb, cb->origin_row,
974 cb->origin_start_col, row, col + slen);
975 }
976 }
977 else
978 {
979#ifdef FEAT_MBYTE
980 if (has_mbyte
981 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
982 slen = 2;
983#endif
984 if (col >= (int)cb->word_end_col)
985 clip_update_modeless_selection(cb, row, cb->word_end_col,
986 cb->origin_row, cb->origin_start_col + slen);
987 else
988 clip_update_modeless_selection(cb, row, col,
989 cb->origin_row, cb->origin_start_col + slen);
990 }
991 break;
992
993 case SELECT_MODE_WORD:
994 /* If we are still within the same word, do nothing */
995 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
996 && col < (int)cb->word_end_col && !repeated_click)
997 return;
998
999 /* Get new word boundaries */
1000 clip_get_word_boundaries(cb, row, col);
1001
1002 /* Handle being after the origin point of selection */
1003 if (clip_compare_pos(row, col, cb->origin_row,
1004 cb->origin_start_col) >= 0)
1005 clip_update_modeless_selection(cb, cb->origin_row,
1006 cb->origin_start_col, row, cb->word_end_col);
1007 else
1008 clip_update_modeless_selection(cb, row, cb->word_start_col,
1009 cb->origin_row, cb->origin_end_col);
1010 break;
1011
1012 case SELECT_MODE_LINE:
1013 if (row == cb->prev.lnum && !repeated_click)
1014 return;
1015
1016 if (clip_compare_pos(row, col, cb->origin_row,
1017 cb->origin_start_col) >= 0)
1018 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
1019 (int)Columns);
1020 else
1021 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
1022 (int)Columns);
1023 break;
1024 }
1025
1026 cb->prev.lnum = row;
1027 cb->prev.col = col;
1028
1029#ifdef DEBUG_SELECTION
1030 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
1031 cb->start.col, cb->end.lnum, cb->end.col);
1032#endif
1033}
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035# if defined(FEAT_GUI) || defined(PROTO)
1036/*
1037 * Redraw part of the selection if character at "row,col" is inside of it.
1038 * Only used for the GUI.
1039 */
1040 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001041clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042{
1043 int start = col;
1044 int end = col + len;
1045
1046 if (clip_star.state != SELECT_CLEARED
1047 && row >= clip_star.start.lnum
1048 && row <= clip_star.end.lnum)
1049 {
1050 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
1051 start = clip_star.start.col;
1052 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
1053 end = clip_star.end.col;
1054 if (end > start)
1055 clip_invert_area(row, start, row, end, 0);
1056 }
1057}
1058# endif
1059
1060/*
1061 * Called from outside to clear selected region from the display
1062 */
1063 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001064clip_clear_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001067 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 return;
1069
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001070 clip_invert_area((int)cbd->start.lnum, cbd->start.col, (int)cbd->end.lnum,
1071 cbd->end.col, CLIP_CLEAR);
1072 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073}
1074
1075/*
1076 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1077 */
1078 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001079clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
1081 if (clip_star.state == SELECT_DONE
1082 && row2 >= clip_star.start.lnum
1083 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001084 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085}
1086
1087/*
1088 * Called before the screen is scrolled up or down. Adjusts the line numbers
1089 * of the selection. Call with big number when clearing the screen.
1090 */
1091 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001092clip_scroll_selection(
1093 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094{
1095 int lnum;
1096
1097 if (clip_star.state == SELECT_CLEARED)
1098 return;
1099
1100 lnum = clip_star.start.lnum - rows;
1101 if (lnum <= 0)
1102 clip_star.start.lnum = 0;
1103 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1104 clip_star.state = SELECT_CLEARED;
1105 else
1106 clip_star.start.lnum = lnum;
1107
1108 lnum = clip_star.end.lnum - rows;
1109 if (lnum < 0) /* scrolled off of the screen */
1110 clip_star.state = SELECT_CLEARED;
1111 else if (lnum >= screen_Rows)
1112 clip_star.end.lnum = screen_Rows - 1;
1113 else
1114 clip_star.end.lnum = lnum;
1115}
1116
1117/*
1118 * Invert a region of the display between a starting and ending row and column
1119 * Values for "how":
1120 * CLIP_CLEAR: undo inversion
1121 * CLIP_SET: set inversion
1122 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1123 * 0: invert (GUI only).
1124 */
1125 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001126clip_invert_area(
1127 int row1,
1128 int col1,
1129 int row2,
1130 int col2,
1131 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132{
1133 int invert = FALSE;
1134
1135 if (how == CLIP_SET)
1136 invert = TRUE;
1137
1138 /* Swap the from and to positions so the from is always before */
1139 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1140 {
1141 int tmp_row, tmp_col;
1142
1143 tmp_row = row1;
1144 tmp_col = col1;
1145 row1 = row2;
1146 col1 = col2;
1147 row2 = tmp_row;
1148 col2 = tmp_col;
1149 }
1150 else if (how == CLIP_TOGGLE)
1151 invert = TRUE;
1152
1153 /* If all on the same line, do it the easy way */
1154 if (row1 == row2)
1155 {
1156 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1157 }
1158 else
1159 {
1160 /* Handle a piece of the first line */
1161 if (col1 > 0)
1162 {
1163 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1164 row1++;
1165 }
1166
1167 /* Handle a piece of the last line */
1168 if (col2 < Columns - 1)
1169 {
1170 clip_invert_rectangle(row2, 0, 1, col2, invert);
1171 row2--;
1172 }
1173
1174 /* Handle the rectangle thats left */
1175 if (row2 >= row1)
1176 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1177 invert);
1178 }
1179}
1180
1181/*
1182 * Invert or un-invert a rectangle of the screen.
1183 * "invert" is true if the result is inverted.
1184 */
1185 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001186clip_invert_rectangle(
1187 int row,
1188 int col,
1189 int height,
1190 int width,
1191 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192{
1193#ifdef FEAT_GUI
1194 if (gui.in_use)
1195 gui_mch_invert_rectangle(row, col, height, width);
1196 else
1197#endif
1198 screen_draw_rectangle(row, col, height, width, invert);
1199}
1200
1201/*
1202 * Copy the currently selected area into the '*' register so it will be
1203 * available for pasting.
1204 * When "both" is TRUE also copy to the '+' register.
1205 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001207clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208{
1209 char_u *buffer;
1210 char_u *bufp;
1211 int row;
1212 int start_col;
1213 int end_col;
1214 int line_end_col;
1215 int add_newline_flag = FALSE;
1216 int len;
1217#ifdef FEAT_MBYTE
1218 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219#endif
1220 int row1 = clip_star.start.lnum;
1221 int col1 = clip_star.start.col;
1222 int row2 = clip_star.end.lnum;
1223 int col2 = clip_star.end.col;
1224
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001225 /* Can't use ScreenLines unless initialized */
1226 if (ScreenLines == NULL)
1227 return;
1228
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 /*
1230 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1231 */
1232 if (row1 > row2)
1233 {
1234 row = row1; row1 = row2; row2 = row;
1235 row = col1; col1 = col2; col2 = row;
1236 }
1237 else if (row1 == row2 && col1 > col2)
1238 {
1239 row = col1; col1 = col2; col2 = row;
1240 }
1241#ifdef FEAT_MBYTE
1242 /* correct starting point for being on right halve of double-wide char */
1243 p = ScreenLines + LineOffset[row1];
1244 if (enc_dbcs != 0)
1245 col1 -= (*mb_head_off)(p, p + col1);
1246 else if (enc_utf8 && p[col1] == 0)
1247 --col1;
1248#endif
1249
1250 /* Create a temporary buffer for storing the text */
1251 len = (row2 - row1 + 1) * Columns + 1;
1252#ifdef FEAT_MBYTE
1253 if (enc_dbcs != 0)
1254 len *= 2; /* max. 2 bytes per display cell */
1255 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001256 len *= MB_MAXBYTES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257#endif
1258 buffer = lalloc((long_u)len, TRUE);
1259 if (buffer == NULL) /* out of memory */
1260 return;
1261
1262 /* Process each row in the selection */
1263 for (bufp = buffer, row = row1; row <= row2; row++)
1264 {
1265 if (row == row1)
1266 start_col = col1;
1267 else
1268 start_col = 0;
1269
1270 if (row == row2)
1271 end_col = col2;
1272 else
1273 end_col = Columns;
1274
1275 line_end_col = clip_get_line_end(row);
1276
1277 /* See if we need to nuke some trailing whitespace */
1278 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1279 {
1280 /* Get rid of trailing whitespace */
1281 end_col = line_end_col;
1282 if (end_col < start_col)
1283 end_col = start_col;
1284
1285 /* If the last line extended to the end, add an extra newline */
1286 if (row == row2)
1287 add_newline_flag = TRUE;
1288 }
1289
1290 /* If after the first row, we need to always add a newline */
1291 if (row > row1 && !LineWraps[row - 1])
1292 *bufp++ = NL;
1293
1294 if (row < screen_Rows && end_col <= screen_Columns)
1295 {
1296#ifdef FEAT_MBYTE
1297 if (enc_dbcs != 0)
1298 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001299 int i;
1300
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 p = ScreenLines + LineOffset[row];
1302 for (i = start_col; i < end_col; ++i)
1303 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1304 {
1305 /* single-width double-byte char */
1306 *bufp++ = 0x8e;
1307 *bufp++ = ScreenLines2[LineOffset[row] + i];
1308 }
1309 else
1310 {
1311 *bufp++ = p[i];
1312 if (MB_BYTE2LEN(p[i]) == 2)
1313 *bufp++ = p[++i];
1314 }
1315 }
1316 else if (enc_utf8)
1317 {
1318 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001319 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001320 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321
1322 off = LineOffset[row];
1323 for (i = start_col; i < end_col; ++i)
1324 {
1325 /* The base character is either in ScreenLinesUC[] or
1326 * ScreenLines[]. */
1327 if (ScreenLinesUC[off + i] == 0)
1328 *bufp++ = ScreenLines[off + i];
1329 else
1330 {
1331 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001332 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001334 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001335 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001336 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001337 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 }
1340 }
1341 /* Skip right halve of double-wide character. */
1342 if (ScreenLines[off + i + 1] == 0)
1343 ++i;
1344 }
1345 }
1346 else
1347#endif
1348 {
1349 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1350 end_col - start_col);
1351 bufp += end_col - start_col;
1352 }
1353 }
1354 }
1355
1356 /* Add a newline at the end if the selection ended there */
1357 if (add_newline_flag)
1358 *bufp++ = NL;
1359
1360 /* First cleanup any old selection and become the owner. */
1361 clip_free_selection(&clip_star);
1362 clip_own_selection(&clip_star);
1363
1364 /* Yank the text into the '*' register. */
1365 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1366
1367 /* Make the register contents available to the outside world. */
1368 clip_gen_set_selection(&clip_star);
1369
1370#ifdef FEAT_X11
1371 if (both)
1372 {
1373 /* Do the same for the '+' register. */
1374 clip_free_selection(&clip_plus);
1375 clip_own_selection(&clip_plus);
1376 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1377 clip_gen_set_selection(&clip_plus);
1378 }
1379#endif
1380 vim_free(buffer);
1381}
1382
1383/*
1384 * Find the starting and ending positions of the word at the given row and
1385 * column. Only white-separated words are recognized here.
1386 */
1387#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1388
1389 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001390clip_get_word_boundaries(VimClipboard *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391{
1392 int start_class;
1393 int temp_col;
1394 char_u *p;
1395#ifdef FEAT_MBYTE
1396 int mboff;
1397#endif
1398
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001399 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 return;
1401
1402 p = ScreenLines + LineOffset[row];
1403#ifdef FEAT_MBYTE
1404 /* Correct for starting in the right halve of a double-wide char */
1405 if (enc_dbcs != 0)
1406 col -= dbcs_screen_head_off(p, p + col);
1407 else if (enc_utf8 && p[col] == 0)
1408 --col;
1409#endif
1410 start_class = CHAR_CLASS(p[col]);
1411
1412 temp_col = col;
1413 for ( ; temp_col > 0; temp_col--)
1414#ifdef FEAT_MBYTE
1415 if (enc_dbcs != 0
1416 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1417 temp_col -= mboff;
1418 else
1419#endif
1420 if (CHAR_CLASS(p[temp_col - 1]) != start_class
1421#ifdef FEAT_MBYTE
1422 && !(enc_utf8 && p[temp_col - 1] == 0)
1423#endif
1424 )
1425 break;
1426 cb->word_start_col = temp_col;
1427
1428 temp_col = col;
1429 for ( ; temp_col < screen_Columns; temp_col++)
1430#ifdef FEAT_MBYTE
1431 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1432 ++temp_col;
1433 else
1434#endif
1435 if (CHAR_CLASS(p[temp_col]) != start_class
1436#ifdef FEAT_MBYTE
1437 && !(enc_utf8 && p[temp_col] == 0)
1438#endif
1439 )
1440 break;
1441 cb->word_end_col = temp_col;
1442}
1443
1444/*
1445 * Find the column position for the last non-whitespace character on the given
1446 * line.
1447 */
1448 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001449clip_get_line_end(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450{
1451 int i;
1452
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001453 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 return 0;
1455 for (i = screen_Columns; i > 0; i--)
1456 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1457 break;
1458 return i;
1459}
1460
1461/*
1462 * Update the currently selected region by adding and/or subtracting from the
1463 * beginning or end and inverting the changed area(s).
1464 */
1465 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001466clip_update_modeless_selection(
1467 VimClipboard *cb,
1468 int row1,
1469 int col1,
1470 int row2,
1471 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472{
1473 /* See if we changed at the beginning of the selection */
1474 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1475 {
1476 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1477 CLIP_TOGGLE);
1478 cb->start.lnum = row1;
1479 cb->start.col = col1;
1480 }
1481
1482 /* See if we changed at the end of the selection */
1483 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1484 {
1485 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1486 CLIP_TOGGLE);
1487 cb->end.lnum = row2;
1488 cb->end.col = col2;
1489 }
1490}
1491
1492 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001493clip_gen_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494{
1495#ifdef FEAT_XCLIPBOARD
1496# ifdef FEAT_GUI
1497 if (gui.in_use)
1498 return clip_mch_own_selection(cbd);
1499 else
1500# endif
1501 return clip_xterm_own_selection(cbd);
1502#else
1503 return clip_mch_own_selection(cbd);
1504#endif
1505}
1506
1507 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001508clip_gen_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509{
1510#ifdef FEAT_XCLIPBOARD
1511# ifdef FEAT_GUI
1512 if (gui.in_use)
1513 clip_mch_lose_selection(cbd);
1514 else
1515# endif
1516 clip_xterm_lose_selection(cbd);
1517#else
1518 clip_mch_lose_selection(cbd);
1519#endif
1520}
1521
1522 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001523clip_gen_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001525 if (!clip_did_set_selection)
1526 {
1527 /* Updating postponed, so that accessing the system clipboard won't
1528 * hang Vim when accessing it many times (e.g. on a :g comand). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001529 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1530 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1531 {
1532 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001533 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001534 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536#ifdef FEAT_XCLIPBOARD
1537# ifdef FEAT_GUI
1538 if (gui.in_use)
1539 clip_mch_set_selection(cbd);
1540 else
1541# endif
1542 clip_xterm_set_selection(cbd);
1543#else
1544 clip_mch_set_selection(cbd);
1545#endif
1546}
1547
1548 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001549clip_gen_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550{
1551#ifdef FEAT_XCLIPBOARD
1552# ifdef FEAT_GUI
1553 if (gui.in_use)
1554 clip_mch_request_selection(cbd);
1555 else
1556# endif
1557 clip_xterm_request_selection(cbd);
1558#else
1559 clip_mch_request_selection(cbd);
1560#endif
1561}
1562
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001563 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001564clip_gen_owner_exists(VimClipboard *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001565{
1566#ifdef FEAT_XCLIPBOARD
1567# ifdef FEAT_GUI_GTK
1568 if (gui.in_use)
1569 return clip_gtk_owner_exists(cbd);
1570 else
1571# endif
1572 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001573#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001574 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001575#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001576}
1577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578#endif /* FEAT_CLIPBOARD */
1579
1580/*****************************************************************************
1581 * Functions that handle the input buffer.
1582 * This is used for any GUI version, and the unix terminal version.
1583 *
1584 * For Unix, the input characters are buffered to be able to check for a
1585 * CTRL-C. This should be done with signals, but I don't know how to do that
1586 * in a portable way for a tty in RAW mode.
1587 *
1588 * For the client-server code in the console the received keys are put in the
1589 * input buffer.
1590 */
1591
1592#if defined(USE_INPUT_BUF) || defined(PROTO)
1593
1594/*
1595 * Internal typeahead buffer. Includes extra space for long key code
1596 * descriptions which would otherwise overflow. The buffer is considered full
1597 * when only this extra space (or part of it) remains.
1598 */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001599#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_JOB_CHANNEL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 || defined(FEAT_CLIENTSERVER)
1601 /*
1602 * Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
1603 * This requires a larger buffer...
1604 * (Madsen) Go with this for remote input as well ...
1605 */
1606# define INBUFLEN 4096
1607#else
1608# define INBUFLEN 250
1609#endif
1610
1611static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1612static int inbufcount = 0; /* number of chars in inbuf[] */
1613
1614/*
1615 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1616 * trash_input_buf() are functions for manipulating the input buffer. These
1617 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1618 */
1619
1620 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001621vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622{
1623 return (inbufcount >= INBUFLEN);
1624}
1625
1626 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001627vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628{
1629 return (inbufcount == 0);
1630}
1631
1632#if defined(FEAT_OLE) || defined(PROTO)
1633 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001634vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635{
1636 return (INBUFLEN - inbufcount);
1637}
1638#endif
1639
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001640#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001642vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643{
1644 return inbufcount;
1645}
1646#endif
1647
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648/*
1649 * Return the current contents of the input buffer and make it empty.
1650 * The returned pointer must be passed to set_input_buf() later.
1651 */
1652 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001653get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
1655 garray_T *gap;
1656
1657 /* We use a growarray to store the data pointer and the length. */
1658 gap = (garray_T *)alloc((unsigned)sizeof(garray_T));
1659 if (gap != NULL)
1660 {
1661 /* Add one to avoid a zero size. */
1662 gap->ga_data = alloc((unsigned)inbufcount + 1);
1663 if (gap->ga_data != NULL)
1664 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1665 gap->ga_len = inbufcount;
1666 }
1667 trash_input_buf();
1668 return (char_u *)gap;
1669}
1670
1671/*
1672 * Restore the input buffer with a pointer returned from get_input_buf().
1673 * The allocated memory is freed, this only works once!
1674 */
1675 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001676set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677{
1678 garray_T *gap = (garray_T *)p;
1679
1680 if (gap != NULL)
1681 {
1682 if (gap->ga_data != NULL)
1683 {
1684 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1685 inbufcount = gap->ga_len;
1686 vim_free(gap->ga_data);
1687 }
1688 vim_free(gap);
1689 }
1690}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692/*
1693 * Add the given bytes to the input buffer
1694 * Special keys start with CSI. A real CSI must have been translated to
1695 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1696 */
1697 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001698add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699{
1700 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1701 return; /* Shouldn't ever happen! */
1702
1703#ifdef FEAT_HANGULIN
1704 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1705 if ((len = hangul_input_process(s, len)) == 0)
1706 return;
1707#endif
1708
1709 while (len--)
1710 inbuf[inbufcount++] = *s++;
1711}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713/*
1714 * Add "str[len]" to the input buffer while escaping CSI bytes.
1715 */
1716 void
1717add_to_input_buf_csi(char_u *str, int len)
1718{
1719 int i;
1720 char_u buf[2];
1721
1722 for (i = 0; i < len; ++i)
1723 {
1724 add_to_input_buf(str + i, 1);
1725 if (str[i] == CSI)
1726 {
1727 /* Turn CSI into K_CSI. */
1728 buf[0] = KS_EXTRA;
1729 buf[1] = (int)KE_CSI;
1730 add_to_input_buf(buf, 2);
1731 }
1732 }
1733}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734
1735#if defined(FEAT_HANGULIN) || defined(PROTO)
1736 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001737push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001739 char_u *tmpbuf;
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001740 char_u *inp = s;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001741
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001742 /* use the conversion result if possible */
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001743 tmpbuf = hangul_string_convert(s, &len);
1744 if (tmpbuf != NULL)
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001745 inp = tmpbuf;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001746
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001747 for (; len--; inp++)
1748 {
1749 inbuf[inbufcount++] = *inp;
1750 if (*inp == CSI)
Bram Moolenaar00ded432016-03-03 11:45:15 +01001751 {
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001752 /* Turn CSI into K_CSI. */
1753 inbuf[inbufcount++] = KS_EXTRA;
1754 inbuf[inbufcount++] = (int)KE_CSI;
Bram Moolenaar00ded432016-03-03 11:45:15 +01001755 }
Bram Moolenaar00ded432016-03-03 11:45:15 +01001756 }
Bram Moolenaar179f1b92016-03-04 22:52:34 +01001757 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758}
1759#endif
1760
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761/* Remove everything from the input buffer. Called when ^C is found */
1762 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001763trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764{
1765 inbufcount = 0;
1766}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768/*
1769 * Read as much data from the input buffer as possible up to maxlen, and store
1770 * it in buf.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 */
1772 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001773read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
1775 if (inbufcount == 0) /* if the buffer is empty, fill it */
1776 fill_input_buf(TRUE);
1777 if (maxlen > inbufcount)
1778 maxlen = inbufcount;
1779 mch_memmove(buf, inbuf, (size_t)maxlen);
1780 inbufcount -= maxlen;
1781 if (inbufcount)
1782 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
1783 return (int)maxlen;
1784}
1785
1786 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001787fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
Bram Moolenaard0573012017-10-28 21:11:06 +02001789#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 int len;
1791 int try;
1792 static int did_read_something = FALSE;
1793# ifdef FEAT_MBYTE
1794 static char_u *rest = NULL; /* unconverted rest of previous read */
1795 static int restlen = 0;
1796 int unconverted;
1797# endif
1798#endif
1799
1800#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001801 if (gui.in_use
1802# ifdef NO_CONSOLE_INPUT
1803 /* Don't use the GUI input when the window hasn't been opened yet.
1804 * We get here from ui_inchar() when we should try reading from stdin. */
1805 && !no_console_input()
1806# endif
1807 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 {
1809 gui_mch_update();
1810 return;
1811 }
1812#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02001813#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 if (vim_is_input_buf_full())
1815 return;
1816 /*
1817 * Fill_input_buf() is only called when we really need a character.
1818 * If we can't get any, but there is some in the buffer, just return.
1819 * If we can't get any, and there isn't any in the buffer, we give up and
1820 * exit Vim.
1821 */
1822# ifdef __BEOS__
1823 /*
1824 * On the BeBox version (for now), all input is secretly performed within
1825 * beos_select() which is called from RealWaitForChar().
1826 */
1827 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
1828 ;
1829 len = inbufcount;
1830 inbufcount = 0;
1831# else
1832
Bram Moolenaar85b11762016-02-27 18:13:23 +01001833# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 if (rest != NULL)
1835 {
1836 /* Use remainder of previous call, starts with an invalid character
1837 * that may become valid when reading more. */
1838 if (restlen > INBUFLEN - inbufcount)
1839 unconverted = INBUFLEN - inbufcount;
1840 else
1841 unconverted = restlen;
1842 mch_memmove(inbuf + inbufcount, rest, unconverted);
1843 if (unconverted == restlen)
Bram Moolenaard23a8232018-02-10 18:45:26 +01001844 VIM_CLEAR(rest);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 else
1846 {
1847 restlen -= unconverted;
1848 mch_memmove(rest, rest + unconverted, restlen);
1849 }
1850 inbufcount += unconverted;
1851 }
1852 else
1853 unconverted = 0;
Bram Moolenaar85b11762016-02-27 18:13:23 +01001854# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
1856 len = 0; /* to avoid gcc warning */
1857 for (try = 0; try < 100; ++try)
1858 {
Bram Moolenaar4e601e32018-04-24 13:29:51 +02001859 size_t readlen = (size_t)((INBUFLEN - inbufcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860# ifdef FEAT_MBYTE
Bram Moolenaar4e601e32018-04-24 13:29:51 +02001861 / input_conv.vc_factor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862# endif
Bram Moolenaar4e601e32018-04-24 13:29:51 +02001863 );
1864# ifdef VMS
Bram Moolenaar49943732018-04-24 20:27:26 +02001865 len = vms_read((char *)inbuf + inbufcount, readlen);
Bram Moolenaar4e601e32018-04-24 13:29:51 +02001866# else
1867 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001869
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 if (len > 0 || got_int)
1871 break;
1872 /*
1873 * If reading stdin results in an error, continue reading stderr.
1874 * This helps when using "foo | xargs vim".
1875 */
1876 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
1877 {
1878 int m = cur_tmode;
1879
1880 /* We probably set the wrong file descriptor to raw mode. Switch
1881 * back to cooked mode, use another descriptor and set the mode to
1882 * what it was. */
1883 settmode(TMODE_COOK);
1884#ifdef HAVE_DUP
1885 /* Use stderr for stdin, also works for shell commands. */
1886 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02001887 vim_ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888#else
1889 read_cmd_fd = 2; /* read from stderr instead of stdin */
1890#endif
1891 settmode(m);
1892 }
1893 if (!exit_on_error)
1894 return;
1895 }
1896# endif
1897 if (len <= 0 && !got_int)
1898 read_error_exit();
1899 if (len > 0)
1900 did_read_something = TRUE;
1901 if (got_int)
1902 {
1903 /* Interrupted, pretend a CTRL-C was typed. */
1904 inbuf[0] = 3;
1905 inbufcount = 1;
1906 }
1907 else
1908 {
1909# ifdef FEAT_MBYTE
1910 /*
1911 * May perform conversion on the input characters.
1912 * Include the unconverted rest of the previous call.
1913 * If there is an incomplete char at the end it is kept for the next
1914 * time, reading more bytes should make conversion possible.
1915 * Don't do this in the unlikely event that the input buffer is too
1916 * small ("rest" still contains more bytes).
1917 */
1918 if (input_conv.vc_type != CONV_NONE)
1919 {
1920 inbufcount -= unconverted;
1921 len = convert_input_safe(inbuf + inbufcount,
1922 len + unconverted, INBUFLEN - inbufcount,
1923 rest == NULL ? &rest : NULL, &restlen);
1924 }
1925# endif
1926 while (len-- > 0)
1927 {
1928 /*
1929 * if a CTRL-C was typed, remove it from the buffer and set got_int
1930 */
1931 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
1932 {
1933 /* remove everything typed before the CTRL-C */
1934 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
1935 inbufcount = 0;
1936 got_int = TRUE;
1937 }
1938 ++inbufcount;
1939 }
1940 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001941#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001943#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944
1945/*
1946 * Exit because of an input read error.
1947 */
1948 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001949read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950{
1951 if (silent_mode) /* Normal way to exit for "ex -s" */
1952 getout(0);
1953 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
1954 preserve_exit();
1955}
1956
1957#if defined(CURSOR_SHAPE) || defined(PROTO)
1958/*
1959 * May update the shape of the cursor.
1960 */
1961 void
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001962ui_cursor_shape_forced(int forced)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963{
1964# ifdef FEAT_GUI
1965 if (gui.in_use)
1966 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001967 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968# endif
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001969 term_cursor_mode(forced);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001970
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971# ifdef MCH_CURSOR_SHAPE
1972 mch_update_cursor();
1973# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001974
1975# ifdef FEAT_CONCEAL
Bram Moolenaarb9464822018-05-10 15:09:49 +02001976 conceal_check_cursor_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978}
Bram Moolenaar3cd43cc2017-08-12 19:51:41 +02001979
1980 void
1981ui_cursor_shape(void)
1982{
1983 ui_cursor_shape_forced(FALSE);
1984}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985#endif
1986
1987#if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
Bram Moolenaaraf51e662008-07-14 19:48:05 +00001988 || defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989/*
1990 * Check bounds for column number
1991 */
1992 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001993check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994{
1995 if (col < 0)
1996 return 0;
1997 if (col >= (int)screen_Columns)
1998 return (int)screen_Columns - 1;
1999 return col;
2000}
2001
2002/*
2003 * Check bounds for row number
2004 */
2005 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002006check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007{
2008 if (row < 0)
2009 return 0;
2010 if (row >= (int)screen_Rows)
2011 return (int)screen_Rows - 1;
2012 return row;
2013}
2014#endif
2015
2016/*
2017 * Stuff for the X clipboard. Shared between VMS and Unix.
2018 */
2019
2020#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
2021# include <X11/Xatom.h>
2022# include <X11/Intrinsic.h>
2023
2024/*
2025 * Open the application context (if it hasn't been opened yet).
2026 * Used for Motif and Athena GUI and the xterm clipboard.
2027 */
2028 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002029open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030{
2031 if (app_context == NULL)
2032 {
2033 XtToolkitInitialize();
2034 app_context = XtCreateApplicationContext();
2035 }
2036}
2037
2038static Atom vim_atom; /* Vim's own special selection format */
2039#ifdef FEAT_MBYTE
2040static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002041static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042#endif
2043static Atom compound_text_atom;
2044static Atom text_atom;
2045static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002046static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047
2048 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002049x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050{
2051 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
2052#ifdef FEAT_MBYTE
2053 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002054 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055#endif
2056 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
2057 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002058 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002060 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2061 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062}
2063
2064/*
2065 * X Selection stuff, for cutting and pasting text to other windows.
2066 */
2067
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002068static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format);
2069static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom);
2070static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002071
2072/*
2073 * Property callback to get a timestamp for XtOwnSelection.
2074 */
2075 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002076clip_x11_timestamp_cb(
2077 Widget w,
2078 XtPointer n UNUSED,
2079 XEvent *event,
2080 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002081{
2082 Atom actual_type;
2083 int format;
2084 unsigned long nitems, bytes_after;
2085 unsigned char *prop=NULL;
2086 XPropertyEvent *xproperty=&event->xproperty;
2087
2088 /* Must be a property notify, state can't be Delete (True), has to be
2089 * one of the supported selection types. */
2090 if (event->type != PropertyNotify || xproperty->state
2091 || (xproperty->atom != clip_star.sel_atom
2092 && xproperty->atom != clip_plus.sel_atom))
2093 return;
2094
2095 if (XGetWindowProperty(xproperty->display, xproperty->window,
2096 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2097 &nitems, &bytes_after, &prop))
2098 return;
2099
2100 if (prop)
2101 XFree(prop);
2102
2103 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2104 if (actual_type != timestamp_atom || format != 32)
2105 return;
2106
2107 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002108 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2109 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002110 clip_x11_notify_cb) == OK)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002111 {
2112 /* Set the "owned" flag now, there may have been a call to
2113 * lose_ownership_cb in between. */
2114 if (xproperty->atom == clip_plus.sel_atom)
2115 clip_plus.owned = TRUE;
2116 else
2117 clip_star.owned = TRUE;
2118 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002119}
2120
2121 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002122x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002123{
2124 XtAddEventHandler(w, PropertyChangeMask, False,
2125 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2126}
2127
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002129clip_x11_request_selection_cb(
2130 Widget w UNUSED,
2131 XtPointer success,
2132 Atom *sel_atom,
2133 Atom *type,
2134 XtPointer value,
2135 long_u *length,
2136 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002138 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 long_u len;
2140 char_u *p;
2141 char **text_list = NULL;
2142 VimClipboard *cbd;
2143#ifdef FEAT_MBYTE
2144 char_u *tmpbuf = NULL;
2145#endif
2146
2147 if (*sel_atom == clip_plus.sel_atom)
2148 cbd = &clip_plus;
2149 else
2150 cbd = &clip_star;
2151
2152 if (value == NULL || *length == 0)
2153 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002154 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 *(int *)success = FALSE;
2156 return;
2157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 p = (char_u *)value;
2159 len = *length;
2160 if (*type == vim_atom)
2161 {
2162 motion_type = *p++;
2163 len--;
2164 }
2165
2166#ifdef FEAT_MBYTE
2167 else if (*type == vimenc_atom)
2168 {
2169 char_u *enc;
2170 vimconv_T conv;
2171 int convlen;
2172
2173 motion_type = *p++;
2174 --len;
2175
2176 enc = p;
2177 p += STRLEN(p) + 1;
2178 len -= p - enc;
2179
2180 /* If the encoding of the text is different from 'encoding', attempt
2181 * converting it. */
2182 conv.vc_type = CONV_NONE;
2183 convert_setup(&conv, enc, p_enc);
2184 if (conv.vc_type != CONV_NONE)
2185 {
2186 convlen = len; /* Need to use an int here. */
2187 tmpbuf = string_convert(&conv, p, &convlen);
2188 len = convlen;
2189 if (tmpbuf != NULL)
2190 p = tmpbuf;
2191 convert_setup(&conv, NULL, NULL);
2192 }
2193 }
2194#endif
2195
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002196 else if (*type == compound_text_atom
2197#ifdef FEAT_MBYTE
2198 || *type == utf8_atom
2199#endif
2200 || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201#ifdef FEAT_MBYTE
2202 enc_dbcs != 0 &&
2203#endif
2204 *type == text_atom))
2205 {
2206 XTextProperty text_prop;
2207 int n_text = 0;
2208 int status;
2209
2210 text_prop.value = (unsigned char *)value;
2211 text_prop.encoding = *type;
2212 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002213 text_prop.nitems = len;
Bram Moolenaar81851112013-04-12 12:27:30 +02002214#if defined(FEAT_MBYTE) && defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002215 if (*type == utf8_atom)
2216 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2217 &text_list, &n_text);
2218 else
2219#endif
2220 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 &text_list, &n_text);
2222 if (status != Success || n_text < 1)
2223 {
2224 *(int *)success = FALSE;
2225 return;
2226 }
2227 p = (char_u *)text_list[0];
2228 len = STRLEN(p);
2229 }
2230 clip_yank_selection(motion_type, p, (long)len, cbd);
2231
2232 if (text_list != NULL)
2233 XFreeStringList(text_list);
2234#ifdef FEAT_MBYTE
2235 vim_free(tmpbuf);
2236#endif
2237 XtFree((char *)value);
2238 *(int *)success = TRUE;
2239}
2240
2241 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002242clip_x11_request_selection(
2243 Widget myShell,
2244 Display *dpy,
2245 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246{
2247 XEvent event;
2248 Atom type;
2249 static int success;
2250 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002251 time_t start_time;
2252 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254 for (i =
2255#ifdef FEAT_MBYTE
2256 0
2257#else
2258 1
2259#endif
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002260 ; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 {
2262 switch (i)
2263 {
2264#ifdef FEAT_MBYTE
2265 case 0: type = vimenc_atom; break;
2266#endif
2267 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002268#ifdef FEAT_MBYTE
2269 case 2: type = utf8_atom; break;
2270#endif
2271 case 3: type = compound_text_atom; break;
2272 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 default: type = XA_STRING;
2274 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002275#ifdef FEAT_MBYTE
Bram Moolenaar81851112013-04-12 12:27:30 +02002276 if (type == utf8_atom
2277# if defined(X_HAVE_UTF8_STRING)
2278 && !enc_utf8
2279# endif
2280 )
2281 /* Only request utf-8 when 'encoding' is utf8 and
2282 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002283 continue;
2284#endif
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002285 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2287 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2288
2289 /* Make sure the request for the selection goes out before waiting for
2290 * a response. */
2291 XFlush(dpy);
2292
2293 /*
2294 * Wait for result of selection request, otherwise if we type more
2295 * characters, then they will appear before the one that requested the
2296 * paste! Don't worry, we will catch up with any other events later.
2297 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002298 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002299 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002301 if (XCheckTypedEvent(dpy, PropertyNotify, &event)
2302 || XCheckTypedEvent(dpy, SelectionNotify, &event)
2303 || XCheckTypedEvent(dpy, SelectionRequest, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002304 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002305 /* This is where clip_x11_request_selection_cb() should be
2306 * called. It may actually happen a bit later, so we loop
2307 * until "success" changes.
2308 * We may get a SelectionRequest here and if we don't handle
2309 * it we hang. KDE klipper does this, for example.
2310 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002311 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002312 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314
Bram Moolenaar89417b92008-09-07 19:48:53 +00002315 /* Time out after 2 to 3 seconds to avoid that we hang when the
2316 * other process doesn't respond. Note that the SelectionNotify
2317 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002318 * to life and the text gets inserted unexpectedly. Don't know
2319 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002320 if (time(NULL) > start_time + 2)
2321 {
2322 timed_out = TRUE;
2323 break;
2324 }
2325
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 /* Do we need this? Probably not. */
2327 XSync(dpy, False);
2328
Bram Moolenaar89417b92008-09-07 19:48:53 +00002329 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2330 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 }
2332
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002333 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002335
2336 /* don't do a retry with another type after timing out, otherwise we
2337 * hang for 15 seconds. */
2338 if (timed_out)
2339 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 }
2341
2342 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002343 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344}
2345
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002347clip_x11_convert_selection_cb(
2348 Widget w UNUSED,
2349 Atom *sel_atom,
2350 Atom *target,
2351 Atom *type,
2352 XtPointer *value,
2353 long_u *length,
2354 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355{
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002356 static char_u *save_result = NULL;
2357 static long_u save_length = 0;
2358 char_u *string;
2359 int motion_type;
2360 VimClipboard *cbd;
2361 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362
2363 if (*sel_atom == clip_plus.sel_atom)
2364 cbd = &clip_plus;
2365 else
2366 cbd = &clip_star;
2367
2368 if (!cbd->owned)
2369 return False; /* Shouldn't ever happen */
2370
2371 /* requestor wants to know what target types we support */
2372 if (*target == targets_atom)
2373 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002374 static Atom array[7];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 *value = (XtPointer)array;
2377 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 array[i++] = targets_atom;
2379#ifdef FEAT_MBYTE
2380 array[i++] = vimenc_atom;
2381#endif
2382 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002383#ifdef FEAT_MBYTE
2384 if (enc_utf8)
2385 array[i++] = utf8_atom;
2386#endif
2387 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 array[i++] = text_atom;
2389 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002390
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 *type = XA_ATOM;
2392 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2393 * crashes on 64 bit machines. (Peter Derr) */
2394 *format = 32;
2395 *length = i;
2396 return True;
2397 }
2398
2399 if ( *target != XA_STRING
2400#ifdef FEAT_MBYTE
2401 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002402 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403#endif
2404 && *target != vim_atom
2405 && *target != text_atom
2406 && *target != compound_text_atom)
2407 return False;
2408
2409 clip_get_selection(cbd);
2410 motion_type = clip_convert_selection(&string, length, cbd);
2411 if (motion_type < 0)
2412 return False;
2413
2414 /* For our own format, the first byte contains the motion type */
2415 if (*target == vim_atom)
2416 (*length)++;
2417
2418#ifdef FEAT_MBYTE
2419 /* Our own format with encoding: motion 'encoding' NUL text */
2420 if (*target == vimenc_atom)
2421 *length += STRLEN(p_enc) + 2;
2422#endif
2423
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002424 if (save_length < *length || save_length / 2 >= *length)
2425 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1);
2426 else
2427 *value = save_result;
2428 if (*value == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 {
2430 vim_free(string);
2431 return False;
2432 }
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002433 save_result = (char_u *)*value;
2434 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002436 if (*target == XA_STRING
2437#ifdef FEAT_MBYTE
2438 || (*target == utf8_atom && enc_utf8)
2439#endif
2440 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002442 mch_memmove(save_result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002443 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002445 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
2447 XTextProperty text_prop;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002448 char *string_nt = (char *)save_result;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002449 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450
2451 /* create NUL terminated string which XmbTextListToTextProperty wants */
2452 mch_memmove(string_nt, string, (size_t)*length);
2453 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002454 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2455 1, XCompoundTextStyle, &text_prop);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002456 if (conv_result != Success)
2457 {
2458 vim_free(string);
2459 return False;
2460 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 *value = (XtPointer)(text_prop.value); /* from plain text */
2462 *length = text_prop.nitems;
2463 *type = compound_text_atom;
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002464 XtFree((char *)save_result);
2465 save_result = (char_u *)*value;
2466 save_length = *length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468#ifdef FEAT_MBYTE
2469 else if (*target == vimenc_atom)
2470 {
2471 int l = STRLEN(p_enc);
2472
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002473 save_result[0] = motion_type;
2474 STRCPY(save_result + 1, p_enc);
2475 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 *type = vimenc_atom;
2477 }
2478#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 else
2480 {
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002481 save_result[0] = motion_type;
2482 mch_memmove(save_result + 1, string, (size_t)(*length - 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 *type = vim_atom;
2484 }
2485 *format = 8; /* 8 bits per char */
2486 vim_free(string);
2487 return True;
2488}
2489
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002491clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
2493 if (*sel_atom == clip_plus.sel_atom)
2494 clip_lose_selection(&clip_plus);
2495 else
2496 clip_lose_selection(&clip_star);
2497}
2498
2499 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002500clip_x11_lose_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002502 XtDisownSelection(myShell, cbd->sel_atom,
2503 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504}
2505
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002506 static void
2507clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED)
2508{
2509 /* To prevent automatically freeing the selection value. */
2510}
2511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002513clip_x11_own_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002515 /* When using the GUI we have proper timestamps, use the one of the last
2516 * event. When in the console we don't get events (the terminal gets
2517 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2518 * be called with the current timestamp. */
2519#ifdef FEAT_GUI
2520 if (gui.in_use)
2521 {
2522 if (XtOwnSelection(myShell, cbd->sel_atom,
2523 XtLastTimestampProcessed(XtDisplay(myShell)),
2524 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
Bram Moolenaarcdb7e1b2017-07-19 19:55:58 +02002525 clip_x11_notify_cb) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002526 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002527 }
2528 else
2529#endif
2530 {
2531 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2532 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002533 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002534 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002535 /* Flush is required in a terminal as nothing else is doing it. */
2536 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 return OK;
2538}
2539
2540/*
2541 * Send the current selection to the clipboard. Do nothing for X because we
2542 * will fill in the selection only when requested by another app.
2543 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002545clip_x11_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546{
2547}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002548
2549 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002550clip_x11_owner_exists(VimClipboard *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002551{
2552 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2553}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554#endif
2555
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002556#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2557 || defined(FEAT_GUI_GTK) || defined(PROTO)
2558/*
2559 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2560 */
2561 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002562yank_cut_buffer0(Display *dpy, VimClipboard *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002563{
2564 int nbytes = 0;
2565 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2566
2567 if (nbytes > 0)
2568 {
2569#ifdef FEAT_MBYTE
2570 int done = FALSE;
2571
2572 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2573 * using a multi-byte encoding. Conversion between two 8-bit
2574 * character sets usually fails and the text might actually be in
2575 * 'enc' anyway. */
2576 if (has_mbyte)
2577 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002578 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002579 vimconv_T vc;
2580
2581 vc.vc_type = CONV_NONE;
2582 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2583 {
2584 conv_buf = string_convert(&vc, buffer, &nbytes);
2585 if (conv_buf != NULL)
2586 {
2587 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2588 vim_free(conv_buf);
2589 done = TRUE;
2590 }
2591 convert_setup(&vc, NULL, NULL);
2592 }
2593 }
2594 if (!done) /* use the text without conversion */
2595#endif
2596 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2597 XFree((void *)buffer);
2598 if (p_verbose > 0)
2599 {
2600 verbose_enter();
2601 verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
2602 verbose_leave();
2603 }
2604 }
2605}
2606#endif
2607
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608#if defined(FEAT_MOUSE) || defined(PROTO)
2609
2610/*
2611 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002612 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2614 *
2615 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2616 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2617 *
2618 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2619 * if the mouse is outside the window then the text will scroll, or if the
2620 * mouse was previously on a status line, then the status line may be dragged.
2621 *
2622 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2623 * cursor is moved unless the cursor was on a status line.
2624 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2625 * IN_SEP_LINE depending on where the cursor was clicked.
2626 *
2627 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2628 * the mouse is on the status line of the same window.
2629 *
2630 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2631 * the last call.
2632 *
2633 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2634 * remembered.
2635 */
2636 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002637jump_to_mouse(
2638 int flags,
2639 int *inclusive, /* used for inclusive operator, can be NULL */
2640 int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641{
2642 static int on_status_line = 0; /* #lines below bottom of window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 static int on_sep_line = 0; /* on separator right of window */
Bram Moolenaareb163d72017-09-23 15:08:17 +02002644#ifdef FEAT_MENU
2645 static int in_winbar = FALSE;
2646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 static int prev_row = -1;
2648 static int prev_col = -1;
2649 static win_T *dragwin = NULL; /* window being dragged */
2650 static int did_drag = FALSE; /* drag was noticed */
2651
2652 win_T *wp, *old_curwin;
2653 pos_T old_cursor;
2654 int count;
2655 int first;
2656 int row = mouse_row;
2657 int col = mouse_col;
2658#ifdef FEAT_FOLDING
2659 int mouse_char;
2660#endif
2661
2662 mouse_past_bottom = FALSE;
2663 mouse_past_eol = FALSE;
2664
2665 if (flags & MOUSE_RELEASED)
2666 {
2667 /* On button release we may change window focus if positioned on a
2668 * status line and no dragging happened. */
2669 if (dragwin != NULL && !did_drag)
2670 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2671 dragwin = NULL;
2672 did_drag = FALSE;
2673 }
2674
2675 if ((flags & MOUSE_DID_MOVE)
2676 && prev_row == mouse_row
2677 && prev_col == mouse_col)
2678 {
2679retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002680 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 * line, stop Visual mode */
2682 if (on_status_line)
2683 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 if (on_sep_line)
2685 return IN_SEP_LINE;
Bram Moolenaard327b0c2017-11-12 16:56:12 +01002686#ifdef FEAT_MENU
2687 if (in_winbar)
2688 {
2689 /* A quick second click may arrive as a double-click, but we use it
2690 * as a second click in the WinBar. */
2691 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
2692 {
2693 wp = mouse_find_win(&row, &col);
2694 if (wp == NULL)
2695 return IN_UNKNOWN;
2696 winbar_click(wp, col);
2697 }
2698 return IN_OTHER_WIN | MOUSE_WINBAR;
2699 }
2700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 if (flags & MOUSE_MAY_STOP_VIS)
2702 {
2703 end_visual_mode();
2704 redraw_curbuf_later(INVERTED); /* delete the inversion */
2705 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2707 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002708 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 return IN_OTHER_WIN;
2710#endif
2711 return IN_BUFFER;
2712 }
2713
2714 prev_row = mouse_row;
2715 prev_col = mouse_col;
2716
2717 if (flags & MOUSE_SETPOS)
2718 goto retnomove; /* ugly goto... */
2719
2720#ifdef FEAT_FOLDING
2721 /* Remember the character under the mouse, it might be a '-' or '+' in the
2722 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002723 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2724 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 mouse_char = ScreenLines[LineOffset[row] + col];
2726 else
2727 mouse_char = ' ';
2728#endif
2729
2730 old_curwin = curwin;
2731 old_cursor = curwin->w_cursor;
2732
2733 if (!(flags & MOUSE_FOCUS))
2734 {
2735 if (row < 0 || col < 0) /* check if it makes sense */
2736 return IN_UNKNOWN;
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 /* find the window where the row is in */
2739 wp = mouse_find_win(&row, &col);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02002740 if (wp == NULL)
2741 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 dragwin = NULL;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002743
2744#ifdef FEAT_MENU
2745 if (row == -1)
2746 {
2747 /* A click in the window toolbar does not enter another window or
2748 * change Visual highlighting. */
2749 winbar_click(wp, col);
Bram Moolenaareb163d72017-09-23 15:08:17 +02002750 in_winbar = TRUE;
2751 return IN_OTHER_WIN | MOUSE_WINBAR;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002752 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02002753 in_winbar = FALSE;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002754#endif
2755
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 /*
2757 * winpos and height may change in win_enter()!
2758 */
2759 if (row >= wp->w_height) /* In (or below) status line */
2760 {
2761 on_status_line = row - wp->w_height + 1;
2762 dragwin = wp;
2763 }
2764 else
2765 on_status_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 if (col >= wp->w_width) /* In separator line */
2767 {
2768 on_sep_line = col - wp->w_width + 1;
2769 dragwin = wp;
2770 }
2771 else
2772 on_sep_line = 0;
2773
2774 /* The rightmost character of the status line might be a vertical
2775 * separator character if there is no connecting window to the right. */
2776 if (on_status_line && on_sep_line)
2777 {
2778 if (stl_connected(wp))
2779 on_sep_line = 0;
2780 else
2781 on_status_line = 0;
2782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 /* Before jumping to another buffer, or moving the cursor for a left
2785 * click, stop Visual mode. */
2786 if (VIsual_active
2787 && (wp->w_buffer != curwin->w_buffer
Bram Moolenaar4033c552017-09-16 20:54:51 +02002788 || (!on_status_line && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002789#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002791# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02002792 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002794 col >= wp->w_p_fdc
2795# ifdef FEAT_CMDWIN
2796 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
2797# endif
2798 )
2799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 && (flags & MOUSE_MAY_STOP_VIS))))
2801 {
2802 end_visual_mode();
2803 redraw_curbuf_later(INVERTED); /* delete the inversion */
2804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805#ifdef FEAT_CMDWIN
2806 if (cmdwin_type != 0 && wp != curwin)
2807 {
2808 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01002809 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 on_sep_line = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811# ifdef FEAT_CLIPBOARD
2812 if (on_status_line)
2813 return IN_STATUS_LINE;
2814 return IN_OTHER_WIN;
2815# else
2816 row = 0;
2817 col += wp->w_wincol;
2818 wp = curwin;
2819# endif
2820 }
2821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 /* Only change window focus when not clicking on or dragging the
2823 * status line. Do change focus when releasing the mouse button
2824 * (MOUSE_FOCUS was set above if we dragged first). */
2825 if (dragwin == NULL || (flags & MOUSE_RELEASED))
2826 win_enter(wp, TRUE); /* can make wp invalid! */
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002827
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 if (curwin != old_curwin)
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002829 {
2830#ifdef CHECK_DOUBLE_CLICK
2831 /* set topline, to be able to check for double click ourselves */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 set_mouse_topline(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833#endif
Bram Moolenaarc48369c2018-03-11 19:30:45 +01002834#ifdef FEAT_TERMINAL
2835 /* when entering a terminal window may change state */
2836 term_win_entered();
2837#endif
2838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 if (on_status_line) /* In (or below) status line */
2840 {
2841 /* Don't use start_arrow() if we're in the same window */
2842 if (curwin == old_curwin)
2843 return IN_STATUS_LINE;
2844 else
2845 return IN_STATUS_LINE | CURSOR_MOVED;
2846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 if (on_sep_line) /* In (or below) status line */
2848 {
2849 /* Don't use start_arrow() if we're in the same window */
2850 if (curwin == old_curwin)
2851 return IN_SEP_LINE;
2852 else
2853 return IN_SEP_LINE | CURSOR_MOVED;
2854 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855
2856 curwin->w_cursor.lnum = curwin->w_topline;
2857#ifdef FEAT_GUI
2858 /* remember topline, needed for double click */
2859 gui_prev_topline = curwin->w_topline;
2860# ifdef FEAT_DIFF
2861 gui_prev_topfill = curwin->w_topfill;
2862# endif
2863#endif
2864 }
2865 else if (on_status_line && which_button == MOUSE_LEFT)
2866 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 if (dragwin != NULL)
2868 {
2869 /* Drag the status line */
2870 count = row - dragwin->w_winrow - dragwin->w_height + 1
2871 - on_status_line;
2872 win_drag_status_line(dragwin, count);
2873 did_drag |= count;
2874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 return IN_STATUS_LINE; /* Cursor didn't move */
2876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 else if (on_sep_line && which_button == MOUSE_LEFT)
2878 {
2879 if (dragwin != NULL)
2880 {
2881 /* Drag the separator column */
2882 count = col - dragwin->w_wincol - dragwin->w_width + 1
2883 - on_sep_line;
2884 win_drag_vsep_line(dragwin, count);
2885 did_drag |= count;
2886 }
2887 return IN_SEP_LINE; /* Cursor didn't move */
2888 }
Bram Moolenaareb163d72017-09-23 15:08:17 +02002889#ifdef FEAT_MENU
2890 else if (in_winbar)
2891 {
2892 /* After a click on the window toolbar don't start Visual mode. */
2893 return IN_OTHER_WIN | MOUSE_WINBAR;
2894 }
2895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 else /* keep_window_focus must be TRUE */
2897 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 /* before moving the cursor for a left click, stop Visual mode */
2899 if (flags & MOUSE_MAY_STOP_VIS)
2900 {
2901 end_visual_mode();
2902 redraw_curbuf_later(INVERTED); /* delete the inversion */
2903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904
2905#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2906 /* Continue a modeless selection in another window. */
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02002907 if (cmdwin_type != 0 && row < curwin->w_winrow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 return IN_OTHER_WIN;
2909#endif
2910
2911 row -= W_WINROW(curwin);
Bram Moolenaar53f81742017-09-22 14:35:51 +02002912 col -= curwin->w_wincol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913
2914 /*
2915 * When clicking beyond the end of the window, scroll the screen.
2916 * Scroll by however many rows outside the window we are.
2917 */
2918 if (row < 0)
2919 {
2920 count = 0;
2921 for (first = TRUE; curwin->w_topline > 1; )
2922 {
2923#ifdef FEAT_DIFF
2924 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2925 ++count;
2926 else
2927#endif
2928 count += plines(curwin->w_topline - 1);
2929 if (!first && count > -row)
2930 break;
2931 first = FALSE;
2932#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02002933 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934#endif
2935#ifdef FEAT_DIFF
2936 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2937 ++curwin->w_topfill;
2938 else
2939#endif
2940 {
2941 --curwin->w_topline;
2942#ifdef FEAT_DIFF
2943 curwin->w_topfill = 0;
2944#endif
2945 }
2946 }
2947#ifdef FEAT_DIFF
2948 check_topfill(curwin, FALSE);
2949#endif
2950 curwin->w_valid &=
2951 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2952 redraw_later(VALID);
2953 row = 0;
2954 }
2955 else if (row >= curwin->w_height)
2956 {
2957 count = 0;
2958 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
2959 {
2960#ifdef FEAT_DIFF
2961 if (curwin->w_topfill > 0)
2962 ++count;
2963 else
2964#endif
2965 count += plines(curwin->w_topline);
2966 if (!first && count > row - curwin->w_height + 1)
2967 break;
2968 first = FALSE;
2969#ifdef FEAT_FOLDING
2970 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
2971 && curwin->w_topline == curbuf->b_ml.ml_line_count)
2972 break;
2973#endif
2974#ifdef FEAT_DIFF
2975 if (curwin->w_topfill > 0)
2976 --curwin->w_topfill;
2977 else
2978#endif
2979 {
2980 ++curwin->w_topline;
2981#ifdef FEAT_DIFF
2982 curwin->w_topfill =
2983 diff_check_fill(curwin, curwin->w_topline);
2984#endif
2985 }
2986 }
2987#ifdef FEAT_DIFF
2988 check_topfill(curwin, FALSE);
2989#endif
2990 redraw_later(VALID);
2991 curwin->w_valid &=
2992 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2993 row = curwin->w_height - 1;
2994 }
2995 else if (row == 0)
2996 {
2997 /* When dragging the mouse, while the text has been scrolled up as
2998 * far as it goes, moving the mouse in the top line should scroll
2999 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00003000 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 && curwin->w_cursor.lnum
3002 == curwin->w_buffer->b_ml.ml_line_count
3003 && curwin->w_cursor.lnum == curwin->w_topline)
3004 curwin->w_valid &= ~(VALID_TOPLINE);
3005 }
3006 }
3007
3008#ifdef FEAT_FOLDING
3009 /* Check for position outside of the fold column. */
3010 if (
3011# ifdef FEAT_RIGHTLEFT
Bram Moolenaar02631462017-09-22 15:20:32 +02003012 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013# endif
3014 col >= curwin->w_p_fdc
3015# ifdef FEAT_CMDWIN
3016 + (cmdwin_type == 0 ? 0 : 1)
3017# endif
3018 )
3019 mouse_char = ' ';
3020#endif
3021
3022 /* compute the position in the buffer line from the posn on the screen */
3023 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
3024 mouse_past_bottom = TRUE;
3025
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
3027 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
3028 {
3029 check_visual_highlight();
3030 VIsual = old_cursor;
3031 VIsual_active = TRUE;
3032 VIsual_reselect = TRUE;
3033 /* if 'selectmode' contains "mouse", start Select mode */
3034 may_start_select('o');
3035 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00003036 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 redraw_cmdline = TRUE; /* show visual mode later */
3038 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
3040 curwin->w_curswant = col;
3041 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
3042 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
3043 {
3044 if (inclusive != NULL)
3045 *inclusive = TRUE;
3046 mouse_past_eol = TRUE;
3047 }
3048 else if (inclusive != NULL)
3049 *inclusive = FALSE;
3050
3051 count = IN_BUFFER;
3052 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
3053 || curwin->w_cursor.col != old_cursor.col)
3054 count |= CURSOR_MOVED; /* Cursor has moved */
3055
3056#ifdef FEAT_FOLDING
3057 if (mouse_char == '+')
3058 count |= MOUSE_FOLD_OPEN;
3059 else if (mouse_char != ' ')
3060 count |= MOUSE_FOLD_CLOSE;
3061#endif
3062
3063 return count;
3064}
3065
3066/*
3067 * Compute the position in the buffer line from the posn on the screen in
3068 * window "win".
3069 * Returns TRUE if the position is below the last line.
3070 */
3071 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003072mouse_comp_pos(
3073 win_T *win,
3074 int *rowp,
3075 int *colp,
3076 linenr_T *lnump)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077{
3078 int col = *colp;
3079 int row = *rowp;
3080 linenr_T lnum;
3081 int retval = FALSE;
3082 int off;
3083 int count;
3084
3085#ifdef FEAT_RIGHTLEFT
3086 if (win->w_p_rl)
Bram Moolenaar02631462017-09-22 15:20:32 +02003087 col = win->w_width - 1 - col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088#endif
3089
3090 lnum = win->w_topline;
3091
3092 while (row > 0)
3093 {
3094#ifdef FEAT_DIFF
3095 /* Don't include filler lines in "count" */
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003096 if (win->w_p_diff
3097# ifdef FEAT_FOLDING
3098 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3099# endif
3100 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 {
3102 if (lnum == win->w_topline)
3103 row -= win->w_topfill;
3104 else
3105 row -= diff_check_fill(win, lnum);
3106 count = plines_win_nofill(win, lnum, TRUE);
3107 }
3108 else
3109#endif
3110 count = plines_win(win, lnum, TRUE);
3111 if (count > row)
3112 break; /* Position is in this buffer line. */
3113#ifdef FEAT_FOLDING
3114 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3115#endif
3116 if (lnum == win->w_buffer->b_ml.ml_line_count)
3117 {
3118 retval = TRUE;
3119 break; /* past end of file */
3120 }
3121 row -= count;
3122 ++lnum;
3123 }
3124
3125 if (!retval)
3126 {
3127 /* Compute the column without wrapping. */
3128 off = win_col_off(win) - win_col_off2(win);
3129 if (col < off)
3130 col = off;
Bram Moolenaar02631462017-09-22 15:20:32 +02003131 col += row * (win->w_width - off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 /* add skip column (for long wrapping line) */
3133 col += win->w_skipcol;
3134 }
3135
3136 if (!win->w_p_wrap)
3137 col += win->w_leftcol;
3138
3139 /* skip line number and fold column in front of the line */
3140 col -= win_col_off(win);
3141 if (col < 0)
3142 {
3143#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003144 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145#endif
3146 col = 0;
3147 }
3148
3149 *colp = col;
3150 *rowp = row;
3151 *lnump = lnum;
3152 return retval;
3153}
3154
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155/*
3156 * Find the window at screen position "*rowp" and "*colp". The positions are
3157 * updated to become relative to the top-left of the window.
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003158 * Returns NULL when something is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 win_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003161mouse_find_win(int *rowp, int *colp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162{
3163 frame_T *fp;
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003164 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165
3166 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003167 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 for (;;)
3169 {
3170 if (fp->fr_layout == FR_LEAF)
3171 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 if (fp->fr_layout == FR_ROW)
3173 {
3174 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3175 {
3176 if (*colp < fp->fr_width)
3177 break;
3178 *colp -= fp->fr_width;
3179 }
3180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 else /* fr_layout == FR_COL */
3182 {
3183 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3184 {
3185 if (*rowp < fp->fr_height)
3186 break;
3187 *rowp -= fp->fr_height;
3188 }
3189 }
3190 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003191 /* When using a timer that closes a window the window might not actually
3192 * exist. */
3193 FOR_ALL_WINDOWS(wp)
3194 if (wp == fp->fr_win)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003195 {
3196#ifdef FEAT_MENU
3197 *rowp -= wp->w_winbar_height;
3198#endif
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003199 return wp;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02003200 }
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003201 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203
Bram Moolenaar860cae12010-06-05 23:22:07 +02003204#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar658a1542018-03-03 19:29:43 +01003206 || defined(FEAT_GUI_PHOTON) || defined(FEAT_TERM_POPUP_MENU) \
3207 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208/*
3209 * Translate window coordinates to buffer position without any side effects
3210 */
3211 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003212get_fpos_of_mouse(pos_T *mpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213{
3214 win_T *wp;
3215 int row = mouse_row;
3216 int col = mouse_col;
3217
3218 if (row < 0 || col < 0) /* check if it makes sense */
3219 return IN_UNKNOWN;
3220
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 /* find the window where the row is in */
3222 wp = mouse_find_win(&row, &col);
Bram Moolenaar989a70c2017-08-16 22:46:01 +02003223 if (wp == NULL)
3224 return IN_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 /*
3226 * winpos and height may change in win_enter()!
3227 */
3228 if (row >= wp->w_height) /* In (or below) status line */
3229 return IN_STATUS_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 if (col >= wp->w_width) /* In vertical separator line */
3231 return IN_SEP_LINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232
3233 if (wp != curwin)
3234 return IN_UNKNOWN;
3235
3236 /* compute the position in the buffer line from the posn on the screen */
3237 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3238 return IN_STATUS_LINE; /* past bottom */
3239
3240 mpos->col = vcol2col(wp, mpos->lnum, col);
3241
3242 if (mpos->col > 0)
3243 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003244#ifdef FEAT_VIRTUALEDIT
3245 mpos->coladd = 0;
3246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 return IN_BUFFER;
3248}
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003249#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003251#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
3252 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar3767b612018-03-03 19:51:58 +01003253 || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \
3254 || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255/*
3256 * Convert a virtual (screen) column to a character column.
3257 * The first column is one.
3258 */
3259 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003260vcol2col(win_T *wp, linenr_T lnum, int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261{
3262 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 int count = 0;
3264 char_u *ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02003265 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266
Bram Moolenaar597a4222014-06-25 14:39:50 +02003267 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003268 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02003270 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003271 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02003273 return (int)(ptr - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274}
3275#endif
3276
3277#endif /* FEAT_MOUSE */
3278
3279#if defined(FEAT_GUI) || defined(WIN3264) || defined(PROTO)
3280/*
3281 * Called when focus changed. Used for the GUI or for systems where this can
3282 * be done in the console (Win32).
3283 */
3284 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003285ui_focus_change(
3286 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287{
3288 static time_t last_time = (time_t)0;
3289 int need_redraw = FALSE;
3290
3291 /* When activated: Check if any file was modified outside of Vim.
3292 * Only do this when not done within the last two seconds (could get
3293 * several events in a row). */
3294 if (in_focus && last_time + 2 < time(NULL))
3295 {
3296 need_redraw = check_timestamps(
3297# ifdef FEAT_GUI
3298 gui.in_use
3299# else
3300 FALSE
3301# endif
3302 );
3303 last_time = time(NULL);
3304 }
3305
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 /*
3307 * Fire the focus gained/lost autocommand.
3308 */
3309 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3310 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311
3312 if (need_redraw)
3313 {
3314 /* Something was executed, make sure the cursor is put back where it
3315 * belongs. */
3316 need_wait_return = FALSE;
3317
3318 if (State & CMDLINE)
3319 redrawcmdline();
3320 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3321 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3322 repeat_message();
3323 else if ((State & NORMAL) || (State & INSERT))
3324 {
3325 if (must_redraw != 0)
3326 update_screen(0);
3327 setcursor();
3328 }
3329 cursor_on(); /* redrawing may have switched it off */
Bram Moolenaara338adc2018-01-31 20:51:47 +01003330 out_flush_cursor(FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331# ifdef FEAT_GUI
3332 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 gui_update_scrollbars(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334# endif
3335 }
3336#ifdef FEAT_TITLE
3337 /* File may have been changed from 'readonly' to 'noreadonly' */
3338 if (need_maketitle)
3339 maketitle();
3340#endif
3341}
3342#endif
3343
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003344#if defined(HAVE_INPUT_METHOD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345/*
3346 * Save current Input Method status to specified place.
3347 */
3348 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003349im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3352 * disabled then (but might start later).
3353 * Also don't save when inside a mapping, vgetc_im_active has not been set
3354 * then.
3355 * And don't save when the keys were stuffed (e.g., for a "." command).
3356 * And don't save when the GUI is running but our window doesn't have
3357 * input focus (e.g., when a find dialog is open). */
3358 if (!p_imdisable && KeyTyped && !KeyStuffed
3359# ifdef FEAT_XIM
3360 && xic != NULL
3361# endif
3362# ifdef FEAT_GUI
3363 && (!gui.in_use || gui.in_focus)
3364# endif
3365 )
3366 {
3367 /* Do save when IM is on, or IM is off and saved status is on. */
3368 if (vgetc_im_active)
3369 *psave = B_IMODE_IM;
3370 else if (*psave == B_IMODE_IM)
3371 *psave = B_IMODE_NONE;
3372 }
3373}
3374#endif