blob: be5d8c50fbd263aa8046a60683394ce9eda20105 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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)
35 gui_wait_for_chars(p_wd);
36 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);
133 vim_free(ta_str);
134 ta_str = NULL;
135 return ta_len;
136 }
137 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
138 ta_off += maxlen;
139 return maxlen;
140 }
141#endif
142
Bram Moolenaar05159a02005-02-26 23:04:13 +0000143#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000144 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000145 prof_inchar_enter();
146#endif
147
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#ifdef NO_CONSOLE_INPUT
149 /* Don't wait for character input when the window hasn't been opened yet.
150 * Do try reading, this works when redirecting stdin from a file.
151 * Must return something, otherwise we'll loop forever. If we run into
152 * this very often we probably got stuck, exit Vim. */
153 if (no_console_input())
154 {
155 static int count = 0;
156
157# ifndef NO_CONSOLE
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000158 retval = mch_inchar(buf, maxlen, (wtime >= 0 && wtime < 10)
159 ? 10L : wtime, tb_change_cnt);
160 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000161 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162# endif
163 if (wtime == -1 && ++count == 1000)
164 read_error_exit();
165 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000166 retval = 1;
167 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 }
169#endif
170
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000171 /* If we are going to wait for some time or block... */
172 if (wtime == -1 || wtime > 100L)
173 {
174 /* ... allow signals to kill us. */
175 (void)vim_handle_signal(SIGNAL_UNBLOCK);
176
177 /* ... there is no need for CTRL-C to interrupt something, don't let
178 * it set got_int when it was mapped. */
Bram Moolenaar50008692015-01-14 16:08:32 +0100179 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state())
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000180 ctrl_c_interrupts = FALSE;
181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183#ifdef FEAT_GUI
184 if (gui.in_use)
185 {
186 if (gui_wait_for_chars(wtime) && !typebuf_changed(tb_change_cnt))
187 retval = read_from_input_buf(buf, (long)maxlen);
188 }
189#endif
190#ifndef NO_CONSOLE
191# ifdef FEAT_GUI
192 else
193# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000194 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197#endif
198
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000199 if (wtime == -1 || wtime > 100L)
200 /* block SIGHUP et al. */
201 (void)vim_handle_signal(SIGNAL_BLOCK);
202
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 ctrl_c_interrupts = TRUE;
204
Bram Moolenaar05159a02005-02-26 23:04:13 +0000205#ifdef NO_CONSOLE_INPUT
206theend:
207#endif
208#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000209 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000210 prof_inchar_exit();
211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 return retval;
213}
214
215/*
216 * return non-zero if a character is available
217 */
218 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100219ui_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220{
221#ifdef FEAT_GUI
222 if (gui.in_use)
223 {
224 gui_mch_update();
225 return input_available();
226 }
227#endif
228#ifndef NO_CONSOLE
229# ifdef NO_CONSOLE_INPUT
230 if (no_console_input())
231 return 0;
232# endif
233 return mch_char_avail();
234#else
235 return 0;
236#endif
237}
238
239/*
240 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
241 * cancel the delay if a key is hit.
242 */
243 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100244ui_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245{
246#ifdef FEAT_GUI
247 if (gui.in_use && !ignoreinput)
248 gui_wait_for_chars(msec);
249 else
250#endif
251 mch_delay(msec, ignoreinput);
252}
253
254/*
255 * If the machine has job control, use it to suspend the program,
256 * otherwise fake it by starting a new shell.
257 * When running the GUI iconify the window.
258 */
259 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100260ui_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261{
262#ifdef FEAT_GUI
263 if (gui.in_use)
264 {
265 gui_mch_iconify();
266 return;
267 }
268#endif
269 mch_suspend();
270}
271
272#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
273/*
274 * When the OS can't really suspend, call this function to start a shell.
275 * This is never called in the GUI.
276 */
277 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100278suspend_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279{
280 if (*p_sh == NUL)
281 EMSG(_(e_shellempty));
282 else
283 {
284 MSG_PUTS(_("new shell started\n"));
285 do_shell(NULL, 0);
286 }
287}
288#endif
289
290/*
291 * Try to get the current Vim shell size. Put the result in Rows and Columns.
292 * Use the new sizes as defaults for 'columns' and 'lines'.
293 * Return OK when size could be determined, FAIL otherwise.
294 */
295 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100296ui_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297{
298 int retval;
299
300#ifdef FEAT_GUI
301 if (gui.in_use)
302 retval = gui_get_shellsize();
303 else
304#endif
305 retval = mch_get_shellsize();
306
307 check_shellsize();
308
309 /* adjust the default for 'lines' and 'columns' */
310 if (retval == OK)
311 {
312 set_number_default("lines", Rows);
313 set_number_default("columns", Columns);
314 }
315 return retval;
316}
317
318/*
319 * Set the size of the Vim shell according to Rows and Columns, if possible.
320 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
321 * new size. If this is not possible, it will adjust Rows and Columns.
322 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100324ui_set_shellsize(
325 int mustset UNUSED) /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326{
327#ifdef FEAT_GUI
328 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200329 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 else
331#endif
332 mch_set_shellsize();
333}
334
335/*
336 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
337 * region.
338 */
339 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100340ui_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341{
342 if (full_screen && !exiting)
343 {
344#ifdef FEAT_GUI
345 if (gui.in_use)
346 gui_new_shellsize();
347 else
348#endif
349 mch_new_shellsize();
350 }
351}
352
353 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100354ui_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355{
356#ifdef FEAT_GUI
357 if (gui.in_use)
358 gui_mch_update();
359 else
360#endif
361 mch_breakcheck();
362}
363
364/*****************************************************************************
365 * Functions for copying and pasting text between applications.
366 * This is always included in a GUI version, but may also be included when the
367 * clipboard and mouse is available to a terminal version such as xterm.
368 * Note: there are some more functions in ops.c that handle selection stuff.
369 *
370 * Also note that the majority of functions here deal with the X 'primary'
371 * (visible - for Visual mode use) selection, and only that. There are no
372 * versions of these for the 'clipboard' selection, as Visual mode has no use
373 * for them.
374 */
375
376#if defined(FEAT_CLIPBOARD) || defined(PROTO)
377
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100378static void clip_copy_selection(VimClipboard *clip);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200379
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380/*
381 * Selection stuff using Visual mode, for cutting and pasting text to other
382 * windows.
383 */
384
385/*
386 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
387 * is included, but the clipboard can not be used, or TRUE if the clipboard can
388 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
389 * the GUI starts.
390 */
391 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100392clip_init(int can_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393{
394 VimClipboard *cb;
395
396 cb = &clip_star;
397 for (;;)
398 {
399 cb->available = can_use;
400 cb->owned = FALSE;
401 cb->start.lnum = 0;
402 cb->start.col = 0;
403 cb->end.lnum = 0;
404 cb->end.col = 0;
405 cb->state = SELECT_CLEARED;
406
407 if (cb == &clip_plus)
408 break;
409 cb = &clip_plus;
410 }
411}
412
413/*
414 * Check whether the VIsual area has changed, and if so try to become the owner
415 * of the selection, and free any old converted selection we may still have
416 * lying around. If the VIsual mode has ended, make a copy of what was
417 * selected so we can still give it to others. Will probably have to make sure
418 * this is called whenever VIsual mode is ended.
419 */
420 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100421clip_update_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200423 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424
425 /* If visual mode is only due to a redo command ("."), then ignore it */
426 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
427 {
428 if (lt(VIsual, curwin->w_cursor))
429 {
430 start = VIsual;
431 end = curwin->w_cursor;
432#ifdef FEAT_MBYTE
433 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000434 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435#endif
436 }
437 else
438 {
439 start = curwin->w_cursor;
440 end = VIsual;
441 }
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200442 if (!equalpos(clip->start, start)
443 || !equalpos(clip->end, end)
444 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200446 clip_clear_selection(clip);
447 clip->start = start;
448 clip->end = end;
449 clip->vmode = VIsual_mode;
450 clip_free_selection(clip);
451 clip_own_selection(clip);
452 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 }
454 }
455}
456
457 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100458clip_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459{
460 /*
461 * Also want to check somehow that we are reading from the keyboard rather
462 * than a mapping etc.
463 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200465 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200466 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200467 if (cbd->available)
468 {
469 int was_owned = cbd->owned;
470
471 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200472 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000474 /* May have to show a different kind of highlighting for the
475 * selected area. There is no specific redraw command for this,
476 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000478 && (get_real_state() == VISUAL
479 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200480 && (cbd == &clip_star ? clip_isautosel_star()
481 : clip_isautosel_plus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
483 redraw_curbuf_later(INVERTED_ALL);
484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200486#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200487 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200488 if (!cbd->owned && cbd->available)
489 cbd->owned = (clip_gen_own_selection(cbd) == OK);
490#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491}
492
493 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100494clip_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495{
496#ifdef FEAT_X11
497 int was_owned = cbd->owned;
498#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200499 int visual_selection = FALSE;
500
501 if (cbd == &clip_star || cbd == &clip_plus)
502 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503
504 clip_free_selection(cbd);
505 cbd->owned = FALSE;
506 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200507 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 clip_gen_lose_selection(cbd);
509#ifdef FEAT_X11
510 if (visual_selection)
511 {
512 /* May have to show a different kind of highlighting for the selected
513 * area. There is no specific redraw command for this, just redraw all
514 * windows on the current buffer. */
515 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000516 && (get_real_state() == VISUAL
517 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200518 && (cbd == &clip_star ?
519 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
521 {
522 update_curbuf(INVERTED_ALL);
523 setcursor();
524 cursor_on();
525 out_flush();
526# ifdef FEAT_GUI
527 if (gui.in_use)
528 gui_update_cursor(TRUE, FALSE);
529# endif
530 }
531 }
532#endif
533}
534
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200535 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100536clip_copy_selection(VimClipboard *clip)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200538 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200540 clip_update_selection(clip);
541 clip_free_selection(clip);
542 clip_own_selection(clip);
543 if (clip->owned)
544 clip_get_selection(clip);
545 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 }
547}
548
549/*
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200550 * Save and restore clip_unnamed before doing possibly many changes. This
551 * prevents accessing the clipboard very often which might slow down Vim
552 * considerably.
553 */
Bram Moolenaar73a156b2015-01-27 21:39:05 +0100554static int global_change_count = 0; /* if set, inside a start_global_changes */
555static int clipboard_needs_update; /* clipboard needs to be updated */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200556
557/*
558 * Save clip_unnamed and reset it.
559 */
560 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100561start_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200562{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100563 if (++global_change_count > 1)
564 return;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200565 clip_unnamed_saved = clip_unnamed;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100566 clipboard_needs_update = FALSE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200567
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100568 if (clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200569 {
570 clip_unnamed = FALSE;
571 clip_did_set_selection = FALSE;
572 }
573}
574
575/*
576 * Restore clip_unnamed and set the selection when needed.
577 */
578 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100579end_global_changes(void)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200580{
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100581 if (--global_change_count > 0)
582 /* recursive */
583 return;
584 if (!clip_did_set_selection)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200585 {
586 clip_did_set_selection = TRUE;
587 clip_unnamed = clip_unnamed_saved;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100588 clip_unnamed_saved = FALSE;
589 if (clipboard_needs_update)
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200590 {
Bram Moolenaar5c27fd12015-01-27 14:09:37 +0100591 /* only store something in the clipboard,
592 * if we have yanked anything to it */
593 if (clip_unnamed & CLIP_UNNAMED)
594 {
595 clip_own_selection(&clip_star);
596 clip_gen_set_selection(&clip_star);
597 }
598 if (clip_unnamed & CLIP_UNNAMED_PLUS)
599 {
600 clip_own_selection(&clip_plus);
601 clip_gen_set_selection(&clip_plus);
602 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200603 }
604 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200605}
606
607/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 * Called when Visual mode is ended: update the selection.
609 */
610 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100611clip_auto_select(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200613 if (clip_isautosel_star())
614 clip_copy_selection(&clip_star);
615 if (clip_isautosel_plus())
616 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617}
618
619/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200620 * Return TRUE if automatic selection of Visual area is desired for the *
621 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 */
623 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100624clip_isautosel_star(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625{
626 return (
627#ifdef FEAT_GUI
628 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
629#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200630 clip_autoselect_star);
631}
632
633/*
634 * Return TRUE if automatic selection of Visual area is desired for the +
635 * register.
636 */
637 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100638clip_isautosel_plus(void)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200639{
640 return (
641#ifdef FEAT_GUI
642 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
643#endif
644 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645}
646
647
648/*
649 * Stuff for general mouse selection, without using Visual mode.
650 */
651
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100652static int clip_compare_pos(int row1, int col1, int row2, int col2);
653static void clip_invert_area(int, int, int, int, int how);
654static void clip_invert_rectangle(int row, int col, int height, int width, int invert);
655static void clip_get_word_boundaries(VimClipboard *, int, int);
656static int clip_get_line_end(int);
657static void clip_update_modeless_selection(VimClipboard *, int, int,
658 int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659
660/* flags for clip_invert_area() */
661#define CLIP_CLEAR 1
662#define CLIP_SET 2
663#define CLIP_TOGGLE 3
664
665/*
666 * Start, continue or end a modeless selection. Used when editing the
667 * command-line and in the cmdline window.
668 */
669 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100670clip_modeless(int button, int is_click, int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671{
672 int repeat;
673
674 repeat = ((clip_star.mode == SELECT_MODE_CHAR
675 || clip_star.mode == SELECT_MODE_LINE)
676 && (mod_mask & MOD_MASK_2CLICK))
677 || (clip_star.mode == SELECT_MODE_WORD
678 && (mod_mask & MOD_MASK_3CLICK));
679 if (is_click && button == MOUSE_RIGHT)
680 {
681 /* Right mouse button: If there was no selection, start one.
682 * Otherwise extend the existing selection. */
683 if (clip_star.state == SELECT_CLEARED)
684 clip_start_selection(mouse_col, mouse_row, FALSE);
685 clip_process_selection(button, mouse_col, mouse_row, repeat);
686 }
687 else if (is_click)
688 clip_start_selection(mouse_col, mouse_row, repeat);
689 else if (is_drag)
690 {
691 /* Don't try extending a selection if there isn't one. Happens when
692 * button-down is in the cmdline and them moving mouse upwards. */
693 if (clip_star.state != SELECT_CLEARED)
694 clip_process_selection(button, mouse_col, mouse_row, repeat);
695 }
696 else /* release */
697 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
698}
699
700/*
701 * Compare two screen positions ala strcmp()
702 */
703 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100704clip_compare_pos(
705 int row1,
706 int col1,
707 int row2,
708 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709{
710 if (row1 > row2) return(1);
711 if (row1 < row2) return(-1);
712 if (col1 > col2) return(1);
713 if (col1 < col2) return(-1);
Bram Moolenaar9e341102016-02-23 23:04:36 +0100714 return(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715}
716
717/*
718 * Start the selection
719 */
720 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100721clip_start_selection(int col, int row, int repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722{
723 VimClipboard *cb = &clip_star;
724
725 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200726 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727
728 row = check_row(row);
729 col = check_col(col);
730#ifdef FEAT_MBYTE
731 col = mb_fix_col(col, row);
732#endif
733
734 cb->start.lnum = row;
735 cb->start.col = col;
736 cb->end = cb->start;
737 cb->origin_row = (short_u)cb->start.lnum;
738 cb->state = SELECT_IN_PROGRESS;
739
740 if (repeated_click)
741 {
742 if (++cb->mode > SELECT_MODE_LINE)
743 cb->mode = SELECT_MODE_CHAR;
744 }
745 else
746 cb->mode = SELECT_MODE_CHAR;
747
748#ifdef FEAT_GUI
749 /* clear the cursor until the selection is made */
750 if (gui.in_use)
751 gui_undraw_cursor();
752#endif
753
754 switch (cb->mode)
755 {
756 case SELECT_MODE_CHAR:
757 cb->origin_start_col = cb->start.col;
758 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
759 break;
760
761 case SELECT_MODE_WORD:
762 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
763 cb->origin_start_col = cb->word_start_col;
764 cb->origin_end_col = cb->word_end_col;
765
766 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
767 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
768 cb->start.col = cb->word_start_col;
769 cb->end.col = cb->word_end_col;
770 break;
771
772 case SELECT_MODE_LINE:
773 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
774 (int)Columns, CLIP_SET);
775 cb->start.col = 0;
776 cb->end.col = Columns;
777 break;
778 }
779
780 cb->prev = cb->start;
781
782#ifdef DEBUG_SELECTION
783 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
784#endif
785}
786
787/*
788 * Continue processing the selection
789 */
790 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100791clip_process_selection(
792 int button,
793 int col,
794 int row,
795 int_u repeated_click)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796{
797 VimClipboard *cb = &clip_star;
798 int diff;
799 int slen = 1; /* cursor shape width */
800
801 if (button == MOUSE_RELEASE)
802 {
803 /* Check to make sure we have something selected */
804 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
805 {
806#ifdef FEAT_GUI
807 if (gui.in_use)
808 gui_update_cursor(FALSE, FALSE);
809#endif
810 cb->state = SELECT_CLEARED;
811 return;
812 }
813
814#ifdef DEBUG_SELECTION
815 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
816 cb->start.col, cb->end.lnum, cb->end.col);
817#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200818 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 || (
820#ifdef FEAT_GUI
821 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
822#endif
823 clip_autoselectml))
824 clip_copy_modeless_selection(FALSE);
825#ifdef FEAT_GUI
826 if (gui.in_use)
827 gui_update_cursor(FALSE, FALSE);
828#endif
829
830 cb->state = SELECT_DONE;
831 return;
832 }
833
834 row = check_row(row);
835 col = check_col(col);
836#ifdef FEAT_MBYTE
837 col = mb_fix_col(col, row);
838#endif
839
840 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
841 return;
842
843 /*
844 * When extending the selection with the right mouse button, swap the
845 * start and end if the position is before half the selection
846 */
847 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
848 {
849 /*
850 * If the click is before the start, or the click is inside the
851 * selection and the start is the closest side, set the origin to the
852 * end of the selection.
853 */
854 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
855 || (clip_compare_pos(row, col,
856 (int)cb->end.lnum, cb->end.col) < 0
857 && (((cb->start.lnum == cb->end.lnum
858 && cb->end.col - col > col - cb->start.col))
859 || ((diff = (cb->end.lnum - row) -
860 (row - cb->start.lnum)) > 0
861 || (diff == 0 && col < (int)(cb->start.col +
862 cb->end.col) / 2)))))
863 {
864 cb->origin_row = (short_u)cb->end.lnum;
865 cb->origin_start_col = cb->end.col - 1;
866 cb->origin_end_col = cb->end.col;
867 }
868 else
869 {
870 cb->origin_row = (short_u)cb->start.lnum;
871 cb->origin_start_col = cb->start.col;
872 cb->origin_end_col = cb->start.col;
873 }
874 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
875 cb->mode = SELECT_MODE_CHAR;
876 }
877
878 /* set state, for when using the right mouse button */
879 cb->state = SELECT_IN_PROGRESS;
880
881#ifdef DEBUG_SELECTION
882 printf("Selection extending to (%d,%d)\n", row, col);
883#endif
884
885 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
886 cb->mode = SELECT_MODE_CHAR;
887
888 switch (cb->mode)
889 {
890 case SELECT_MODE_CHAR:
891 /* If we're on a different line, find where the line ends */
892 if (row != cb->prev.lnum)
893 cb->word_end_col = clip_get_line_end(row);
894
895 /* See if we are before or after the origin of the selection */
896 if (clip_compare_pos(row, col, cb->origin_row,
897 cb->origin_start_col) >= 0)
898 {
899 if (col >= (int)cb->word_end_col)
900 clip_update_modeless_selection(cb, cb->origin_row,
901 cb->origin_start_col, row, (int)Columns);
902 else
903 {
904#ifdef FEAT_MBYTE
905 if (has_mbyte && mb_lefthalve(row, col))
906 slen = 2;
907#endif
908 clip_update_modeless_selection(cb, cb->origin_row,
909 cb->origin_start_col, row, col + slen);
910 }
911 }
912 else
913 {
914#ifdef FEAT_MBYTE
915 if (has_mbyte
916 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
917 slen = 2;
918#endif
919 if (col >= (int)cb->word_end_col)
920 clip_update_modeless_selection(cb, row, cb->word_end_col,
921 cb->origin_row, cb->origin_start_col + slen);
922 else
923 clip_update_modeless_selection(cb, row, col,
924 cb->origin_row, cb->origin_start_col + slen);
925 }
926 break;
927
928 case SELECT_MODE_WORD:
929 /* If we are still within the same word, do nothing */
930 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
931 && col < (int)cb->word_end_col && !repeated_click)
932 return;
933
934 /* Get new word boundaries */
935 clip_get_word_boundaries(cb, row, col);
936
937 /* Handle being after the origin point of selection */
938 if (clip_compare_pos(row, col, cb->origin_row,
939 cb->origin_start_col) >= 0)
940 clip_update_modeless_selection(cb, cb->origin_row,
941 cb->origin_start_col, row, cb->word_end_col);
942 else
943 clip_update_modeless_selection(cb, row, cb->word_start_col,
944 cb->origin_row, cb->origin_end_col);
945 break;
946
947 case SELECT_MODE_LINE:
948 if (row == cb->prev.lnum && !repeated_click)
949 return;
950
951 if (clip_compare_pos(row, col, cb->origin_row,
952 cb->origin_start_col) >= 0)
953 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
954 (int)Columns);
955 else
956 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
957 (int)Columns);
958 break;
959 }
960
961 cb->prev.lnum = row;
962 cb->prev.col = col;
963
964#ifdef DEBUG_SELECTION
965 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
966 cb->start.col, cb->end.lnum, cb->end.col);
967#endif
968}
969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970# if defined(FEAT_GUI) || defined(PROTO)
971/*
972 * Redraw part of the selection if character at "row,col" is inside of it.
973 * Only used for the GUI.
974 */
975 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100976clip_may_redraw_selection(int row, int col, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977{
978 int start = col;
979 int end = col + len;
980
981 if (clip_star.state != SELECT_CLEARED
982 && row >= clip_star.start.lnum
983 && row <= clip_star.end.lnum)
984 {
985 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
986 start = clip_star.start.col;
987 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
988 end = clip_star.end.col;
989 if (end > start)
990 clip_invert_area(row, start, row, end, 0);
991 }
992}
993# endif
994
995/*
996 * Called from outside to clear selected region from the display
997 */
998 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100999clip_clear_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001002 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 return;
1004
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001005 clip_invert_area((int)cbd->start.lnum, cbd->start.col, (int)cbd->end.lnum,
1006 cbd->end.col, CLIP_CLEAR);
1007 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008}
1009
1010/*
1011 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1012 */
1013 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001014clip_may_clear_selection(int row1, int row2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015{
1016 if (clip_star.state == SELECT_DONE
1017 && row2 >= clip_star.start.lnum
1018 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02001019 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020}
1021
1022/*
1023 * Called before the screen is scrolled up or down. Adjusts the line numbers
1024 * of the selection. Call with big number when clearing the screen.
1025 */
1026 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001027clip_scroll_selection(
1028 int rows) /* negative for scroll down */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029{
1030 int lnum;
1031
1032 if (clip_star.state == SELECT_CLEARED)
1033 return;
1034
1035 lnum = clip_star.start.lnum - rows;
1036 if (lnum <= 0)
1037 clip_star.start.lnum = 0;
1038 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1039 clip_star.state = SELECT_CLEARED;
1040 else
1041 clip_star.start.lnum = lnum;
1042
1043 lnum = clip_star.end.lnum - rows;
1044 if (lnum < 0) /* scrolled off of the screen */
1045 clip_star.state = SELECT_CLEARED;
1046 else if (lnum >= screen_Rows)
1047 clip_star.end.lnum = screen_Rows - 1;
1048 else
1049 clip_star.end.lnum = lnum;
1050}
1051
1052/*
1053 * Invert a region of the display between a starting and ending row and column
1054 * Values for "how":
1055 * CLIP_CLEAR: undo inversion
1056 * CLIP_SET: set inversion
1057 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1058 * 0: invert (GUI only).
1059 */
1060 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001061clip_invert_area(
1062 int row1,
1063 int col1,
1064 int row2,
1065 int col2,
1066 int how)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067{
1068 int invert = FALSE;
1069
1070 if (how == CLIP_SET)
1071 invert = TRUE;
1072
1073 /* Swap the from and to positions so the from is always before */
1074 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1075 {
1076 int tmp_row, tmp_col;
1077
1078 tmp_row = row1;
1079 tmp_col = col1;
1080 row1 = row2;
1081 col1 = col2;
1082 row2 = tmp_row;
1083 col2 = tmp_col;
1084 }
1085 else if (how == CLIP_TOGGLE)
1086 invert = TRUE;
1087
1088 /* If all on the same line, do it the easy way */
1089 if (row1 == row2)
1090 {
1091 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1092 }
1093 else
1094 {
1095 /* Handle a piece of the first line */
1096 if (col1 > 0)
1097 {
1098 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1099 row1++;
1100 }
1101
1102 /* Handle a piece of the last line */
1103 if (col2 < Columns - 1)
1104 {
1105 clip_invert_rectangle(row2, 0, 1, col2, invert);
1106 row2--;
1107 }
1108
1109 /* Handle the rectangle thats left */
1110 if (row2 >= row1)
1111 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1112 invert);
1113 }
1114}
1115
1116/*
1117 * Invert or un-invert a rectangle of the screen.
1118 * "invert" is true if the result is inverted.
1119 */
1120 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001121clip_invert_rectangle(
1122 int row,
1123 int col,
1124 int height,
1125 int width,
1126 int invert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127{
1128#ifdef FEAT_GUI
1129 if (gui.in_use)
1130 gui_mch_invert_rectangle(row, col, height, width);
1131 else
1132#endif
1133 screen_draw_rectangle(row, col, height, width, invert);
1134}
1135
1136/*
1137 * Copy the currently selected area into the '*' register so it will be
1138 * available for pasting.
1139 * When "both" is TRUE also copy to the '+' register.
1140 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001142clip_copy_modeless_selection(int both UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143{
1144 char_u *buffer;
1145 char_u *bufp;
1146 int row;
1147 int start_col;
1148 int end_col;
1149 int line_end_col;
1150 int add_newline_flag = FALSE;
1151 int len;
1152#ifdef FEAT_MBYTE
1153 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154#endif
1155 int row1 = clip_star.start.lnum;
1156 int col1 = clip_star.start.col;
1157 int row2 = clip_star.end.lnum;
1158 int col2 = clip_star.end.col;
1159
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001160 /* Can't use ScreenLines unless initialized */
1161 if (ScreenLines == NULL)
1162 return;
1163
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 /*
1165 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1166 */
1167 if (row1 > row2)
1168 {
1169 row = row1; row1 = row2; row2 = row;
1170 row = col1; col1 = col2; col2 = row;
1171 }
1172 else if (row1 == row2 && col1 > col2)
1173 {
1174 row = col1; col1 = col2; col2 = row;
1175 }
1176#ifdef FEAT_MBYTE
1177 /* correct starting point for being on right halve of double-wide char */
1178 p = ScreenLines + LineOffset[row1];
1179 if (enc_dbcs != 0)
1180 col1 -= (*mb_head_off)(p, p + col1);
1181 else if (enc_utf8 && p[col1] == 0)
1182 --col1;
1183#endif
1184
1185 /* Create a temporary buffer for storing the text */
1186 len = (row2 - row1 + 1) * Columns + 1;
1187#ifdef FEAT_MBYTE
1188 if (enc_dbcs != 0)
1189 len *= 2; /* max. 2 bytes per display cell */
1190 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001191 len *= MB_MAXBYTES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192#endif
1193 buffer = lalloc((long_u)len, TRUE);
1194 if (buffer == NULL) /* out of memory */
1195 return;
1196
1197 /* Process each row in the selection */
1198 for (bufp = buffer, row = row1; row <= row2; row++)
1199 {
1200 if (row == row1)
1201 start_col = col1;
1202 else
1203 start_col = 0;
1204
1205 if (row == row2)
1206 end_col = col2;
1207 else
1208 end_col = Columns;
1209
1210 line_end_col = clip_get_line_end(row);
1211
1212 /* See if we need to nuke some trailing whitespace */
1213 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1214 {
1215 /* Get rid of trailing whitespace */
1216 end_col = line_end_col;
1217 if (end_col < start_col)
1218 end_col = start_col;
1219
1220 /* If the last line extended to the end, add an extra newline */
1221 if (row == row2)
1222 add_newline_flag = TRUE;
1223 }
1224
1225 /* If after the first row, we need to always add a newline */
1226 if (row > row1 && !LineWraps[row - 1])
1227 *bufp++ = NL;
1228
1229 if (row < screen_Rows && end_col <= screen_Columns)
1230 {
1231#ifdef FEAT_MBYTE
1232 if (enc_dbcs != 0)
1233 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001234 int i;
1235
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 p = ScreenLines + LineOffset[row];
1237 for (i = start_col; i < end_col; ++i)
1238 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1239 {
1240 /* single-width double-byte char */
1241 *bufp++ = 0x8e;
1242 *bufp++ = ScreenLines2[LineOffset[row] + i];
1243 }
1244 else
1245 {
1246 *bufp++ = p[i];
1247 if (MB_BYTE2LEN(p[i]) == 2)
1248 *bufp++ = p[++i];
1249 }
1250 }
1251 else if (enc_utf8)
1252 {
1253 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001254 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001255 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256
1257 off = LineOffset[row];
1258 for (i = start_col; i < end_col; ++i)
1259 {
1260 /* The base character is either in ScreenLinesUC[] or
1261 * ScreenLines[]. */
1262 if (ScreenLinesUC[off + i] == 0)
1263 *bufp++ = ScreenLines[off + i];
1264 else
1265 {
1266 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001267 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001269 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001270 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001271 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001272 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 }
1275 }
1276 /* Skip right halve of double-wide character. */
1277 if (ScreenLines[off + i + 1] == 0)
1278 ++i;
1279 }
1280 }
1281 else
1282#endif
1283 {
1284 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1285 end_col - start_col);
1286 bufp += end_col - start_col;
1287 }
1288 }
1289 }
1290
1291 /* Add a newline at the end if the selection ended there */
1292 if (add_newline_flag)
1293 *bufp++ = NL;
1294
1295 /* First cleanup any old selection and become the owner. */
1296 clip_free_selection(&clip_star);
1297 clip_own_selection(&clip_star);
1298
1299 /* Yank the text into the '*' register. */
1300 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1301
1302 /* Make the register contents available to the outside world. */
1303 clip_gen_set_selection(&clip_star);
1304
1305#ifdef FEAT_X11
1306 if (both)
1307 {
1308 /* Do the same for the '+' register. */
1309 clip_free_selection(&clip_plus);
1310 clip_own_selection(&clip_plus);
1311 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1312 clip_gen_set_selection(&clip_plus);
1313 }
1314#endif
1315 vim_free(buffer);
1316}
1317
1318/*
1319 * Find the starting and ending positions of the word at the given row and
1320 * column. Only white-separated words are recognized here.
1321 */
1322#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1323
1324 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001325clip_get_word_boundaries(VimClipboard *cb, int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326{
1327 int start_class;
1328 int temp_col;
1329 char_u *p;
1330#ifdef FEAT_MBYTE
1331 int mboff;
1332#endif
1333
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001334 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 return;
1336
1337 p = ScreenLines + LineOffset[row];
1338#ifdef FEAT_MBYTE
1339 /* Correct for starting in the right halve of a double-wide char */
1340 if (enc_dbcs != 0)
1341 col -= dbcs_screen_head_off(p, p + col);
1342 else if (enc_utf8 && p[col] == 0)
1343 --col;
1344#endif
1345 start_class = CHAR_CLASS(p[col]);
1346
1347 temp_col = col;
1348 for ( ; temp_col > 0; temp_col--)
1349#ifdef FEAT_MBYTE
1350 if (enc_dbcs != 0
1351 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1352 temp_col -= mboff;
1353 else
1354#endif
1355 if (CHAR_CLASS(p[temp_col - 1]) != start_class
1356#ifdef FEAT_MBYTE
1357 && !(enc_utf8 && p[temp_col - 1] == 0)
1358#endif
1359 )
1360 break;
1361 cb->word_start_col = temp_col;
1362
1363 temp_col = col;
1364 for ( ; temp_col < screen_Columns; temp_col++)
1365#ifdef FEAT_MBYTE
1366 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1367 ++temp_col;
1368 else
1369#endif
1370 if (CHAR_CLASS(p[temp_col]) != start_class
1371#ifdef FEAT_MBYTE
1372 && !(enc_utf8 && p[temp_col] == 0)
1373#endif
1374 )
1375 break;
1376 cb->word_end_col = temp_col;
1377}
1378
1379/*
1380 * Find the column position for the last non-whitespace character on the given
1381 * line.
1382 */
1383 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001384clip_get_line_end(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 int i;
1387
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001388 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 return 0;
1390 for (i = screen_Columns; i > 0; i--)
1391 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1392 break;
1393 return i;
1394}
1395
1396/*
1397 * Update the currently selected region by adding and/or subtracting from the
1398 * beginning or end and inverting the changed area(s).
1399 */
1400 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001401clip_update_modeless_selection(
1402 VimClipboard *cb,
1403 int row1,
1404 int col1,
1405 int row2,
1406 int col2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407{
1408 /* See if we changed at the beginning of the selection */
1409 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1410 {
1411 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1412 CLIP_TOGGLE);
1413 cb->start.lnum = row1;
1414 cb->start.col = col1;
1415 }
1416
1417 /* See if we changed at the end of the selection */
1418 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1419 {
1420 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1421 CLIP_TOGGLE);
1422 cb->end.lnum = row2;
1423 cb->end.col = col2;
1424 }
1425}
1426
1427 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001428clip_gen_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429{
1430#ifdef FEAT_XCLIPBOARD
1431# ifdef FEAT_GUI
1432 if (gui.in_use)
1433 return clip_mch_own_selection(cbd);
1434 else
1435# endif
1436 return clip_xterm_own_selection(cbd);
1437#else
1438 return clip_mch_own_selection(cbd);
1439#endif
1440}
1441
1442 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001443clip_gen_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
1445#ifdef FEAT_XCLIPBOARD
1446# ifdef FEAT_GUI
1447 if (gui.in_use)
1448 clip_mch_lose_selection(cbd);
1449 else
1450# endif
1451 clip_xterm_lose_selection(cbd);
1452#else
1453 clip_mch_lose_selection(cbd);
1454#endif
1455}
1456
1457 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001458clip_gen_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459{
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001460 if (!clip_did_set_selection)
1461 {
1462 /* Updating postponed, so that accessing the system clipboard won't
1463 * hang Vim when accessing it many times (e.g. on a :g comand). */
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001464 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS))
1465 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED)))
1466 {
1467 clipboard_needs_update = TRUE;
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001468 return;
Bram Moolenaar5c27fd12015-01-27 14:09:37 +01001469 }
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471#ifdef FEAT_XCLIPBOARD
1472# ifdef FEAT_GUI
1473 if (gui.in_use)
1474 clip_mch_set_selection(cbd);
1475 else
1476# endif
1477 clip_xterm_set_selection(cbd);
1478#else
1479 clip_mch_set_selection(cbd);
1480#endif
1481}
1482
1483 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001484clip_gen_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485{
1486#ifdef FEAT_XCLIPBOARD
1487# ifdef FEAT_GUI
1488 if (gui.in_use)
1489 clip_mch_request_selection(cbd);
1490 else
1491# endif
1492 clip_xterm_request_selection(cbd);
1493#else
1494 clip_mch_request_selection(cbd);
1495#endif
1496}
1497
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001498 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001499clip_gen_owner_exists(VimClipboard *cbd UNUSED)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001500{
1501#ifdef FEAT_XCLIPBOARD
1502# ifdef FEAT_GUI_GTK
1503 if (gui.in_use)
1504 return clip_gtk_owner_exists(cbd);
1505 else
1506# endif
1507 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001508#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001509 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001510#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001511}
1512
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513#endif /* FEAT_CLIPBOARD */
1514
1515/*****************************************************************************
1516 * Functions that handle the input buffer.
1517 * This is used for any GUI version, and the unix terminal version.
1518 *
1519 * For Unix, the input characters are buffered to be able to check for a
1520 * CTRL-C. This should be done with signals, but I don't know how to do that
1521 * in a portable way for a tty in RAW mode.
1522 *
1523 * For the client-server code in the console the received keys are put in the
1524 * input buffer.
1525 */
1526
1527#if defined(USE_INPUT_BUF) || defined(PROTO)
1528
1529/*
1530 * Internal typeahead buffer. Includes extra space for long key code
1531 * descriptions which would otherwise overflow. The buffer is considered full
1532 * when only this extra space (or part of it) remains.
1533 */
Bram Moolenaare0874f82016-01-24 20:36:41 +01001534#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_CHANNEL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535 || defined(FEAT_CLIENTSERVER)
1536 /*
1537 * Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
1538 * This requires a larger buffer...
1539 * (Madsen) Go with this for remote input as well ...
1540 */
1541# define INBUFLEN 4096
1542#else
1543# define INBUFLEN 250
1544#endif
1545
1546static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1547static int inbufcount = 0; /* number of chars in inbuf[] */
1548
1549/*
1550 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1551 * trash_input_buf() are functions for manipulating the input buffer. These
1552 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1553 */
1554
1555 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001556vim_is_input_buf_full(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557{
1558 return (inbufcount >= INBUFLEN);
1559}
1560
1561 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001562vim_is_input_buf_empty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563{
1564 return (inbufcount == 0);
1565}
1566
1567#if defined(FEAT_OLE) || defined(PROTO)
1568 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001569vim_free_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570{
1571 return (INBUFLEN - inbufcount);
1572}
1573#endif
1574
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001575#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001577vim_used_in_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578{
1579 return inbufcount;
1580}
1581#endif
1582
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583/*
1584 * Return the current contents of the input buffer and make it empty.
1585 * The returned pointer must be passed to set_input_buf() later.
1586 */
1587 char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001588get_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589{
1590 garray_T *gap;
1591
1592 /* We use a growarray to store the data pointer and the length. */
1593 gap = (garray_T *)alloc((unsigned)sizeof(garray_T));
1594 if (gap != NULL)
1595 {
1596 /* Add one to avoid a zero size. */
1597 gap->ga_data = alloc((unsigned)inbufcount + 1);
1598 if (gap->ga_data != NULL)
1599 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1600 gap->ga_len = inbufcount;
1601 }
1602 trash_input_buf();
1603 return (char_u *)gap;
1604}
1605
1606/*
1607 * Restore the input buffer with a pointer returned from get_input_buf().
1608 * The allocated memory is freed, this only works once!
1609 */
1610 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001611set_input_buf(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612{
1613 garray_T *gap = (garray_T *)p;
1614
1615 if (gap != NULL)
1616 {
1617 if (gap->ga_data != NULL)
1618 {
1619 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1620 inbufcount = gap->ga_len;
1621 vim_free(gap->ga_data);
1622 }
1623 vim_free(gap);
1624 }
1625}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
Bram Moolenaar446cb832008-06-24 21:56:24 +00001627#if defined(FEAT_GUI) \
1628 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 || defined(FEAT_XCLIPBOARD) || defined(VMS) \
Bram Moolenaar85b11762016-02-27 18:13:23 +01001630 || defined(FEAT_CLIENTSERVER) \
Bram Moolenaarf52c7252006-02-10 23:23:57 +00001631 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632/*
1633 * Add the given bytes to the input buffer
1634 * Special keys start with CSI. A real CSI must have been translated to
1635 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1636 */
1637 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001638add_to_input_buf(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639{
1640 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1641 return; /* Shouldn't ever happen! */
1642
1643#ifdef FEAT_HANGULIN
1644 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1645 if ((len = hangul_input_process(s, len)) == 0)
1646 return;
1647#endif
1648
1649 while (len--)
1650 inbuf[inbufcount++] = *s++;
1651}
1652#endif
1653
Bram Moolenaar70c2a632007-08-15 18:08:50 +00001654#if ((defined(FEAT_XIM) || defined(FEAT_DND)) && defined(FEAT_GUI_GTK)) \
1655 || defined(FEAT_GUI_MSWIN) \
1656 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 || (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \
Bram Moolenaarf52c7252006-02-10 23:23:57 +00001658 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
1659 || defined(FEAT_MENU))) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 || defined(PROTO)
1661/*
1662 * Add "str[len]" to the input buffer while escaping CSI bytes.
1663 */
1664 void
1665add_to_input_buf_csi(char_u *str, int len)
1666{
1667 int i;
1668 char_u buf[2];
1669
1670 for (i = 0; i < len; ++i)
1671 {
1672 add_to_input_buf(str + i, 1);
1673 if (str[i] == CSI)
1674 {
1675 /* Turn CSI into K_CSI. */
1676 buf[0] = KS_EXTRA;
1677 buf[1] = (int)KE_CSI;
1678 add_to_input_buf(buf, 2);
1679 }
1680 }
1681}
1682#endif
1683
1684#if defined(FEAT_HANGULIN) || defined(PROTO)
1685 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001686push_raw_key(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687{
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001688 char_u *tmpbuf;
1689
1690 tmpbuf = hangul_string_convert(s, &len);
1691 if (tmpbuf != NULL)
1692 s = tmpbuf;
1693
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 while (len--)
1695 inbuf[inbufcount++] = *s++;
Bram Moolenaar72f4cc42015-11-10 14:35:18 +01001696
1697 if (tmpbuf != NULL)
1698 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699}
1700#endif
1701
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702/* Remove everything from the input buffer. Called when ^C is found */
1703 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001704trash_input_buf(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705{
1706 inbufcount = 0;
1707}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
1709/*
1710 * Read as much data from the input buffer as possible up to maxlen, and store
1711 * it in buf.
1712 * Note: this function used to be Read() in unix.c
1713 */
1714 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001715read_from_input_buf(char_u *buf, long maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716{
1717 if (inbufcount == 0) /* if the buffer is empty, fill it */
1718 fill_input_buf(TRUE);
1719 if (maxlen > inbufcount)
1720 maxlen = inbufcount;
1721 mch_memmove(buf, inbuf, (size_t)maxlen);
1722 inbufcount -= maxlen;
1723 if (inbufcount)
1724 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
1725 return (int)maxlen;
1726}
1727
1728 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001729fill_input_buf(int exit_on_error UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730{
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001731#if defined(UNIX) || defined(VMS) || defined(MACOS_X_UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 int len;
1733 int try;
1734 static int did_read_something = FALSE;
1735# ifdef FEAT_MBYTE
1736 static char_u *rest = NULL; /* unconverted rest of previous read */
1737 static int restlen = 0;
1738 int unconverted;
1739# endif
1740#endif
1741
1742#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001743 if (gui.in_use
1744# ifdef NO_CONSOLE_INPUT
1745 /* Don't use the GUI input when the window hasn't been opened yet.
1746 * We get here from ui_inchar() when we should try reading from stdin. */
1747 && !no_console_input()
1748# endif
1749 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 {
1751 gui_mch_update();
1752 return;
1753 }
1754#endif
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001755#if defined(UNIX) || defined(VMS) || defined(MACOS_X_UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 if (vim_is_input_buf_full())
1757 return;
1758 /*
1759 * Fill_input_buf() is only called when we really need a character.
1760 * If we can't get any, but there is some in the buffer, just return.
1761 * If we can't get any, and there isn't any in the buffer, we give up and
1762 * exit Vim.
1763 */
1764# ifdef __BEOS__
1765 /*
1766 * On the BeBox version (for now), all input is secretly performed within
1767 * beos_select() which is called from RealWaitForChar().
1768 */
1769 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
1770 ;
1771 len = inbufcount;
1772 inbufcount = 0;
1773# else
1774
Bram Moolenaar85b11762016-02-27 18:13:23 +01001775# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 if (rest != NULL)
1777 {
1778 /* Use remainder of previous call, starts with an invalid character
1779 * that may become valid when reading more. */
1780 if (restlen > INBUFLEN - inbufcount)
1781 unconverted = INBUFLEN - inbufcount;
1782 else
1783 unconverted = restlen;
1784 mch_memmove(inbuf + inbufcount, rest, unconverted);
1785 if (unconverted == restlen)
1786 {
1787 vim_free(rest);
1788 rest = NULL;
1789 }
1790 else
1791 {
1792 restlen -= unconverted;
1793 mch_memmove(rest, rest + unconverted, restlen);
1794 }
1795 inbufcount += unconverted;
1796 }
1797 else
1798 unconverted = 0;
Bram Moolenaar85b11762016-02-27 18:13:23 +01001799# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
1801 len = 0; /* to avoid gcc warning */
1802 for (try = 0; try < 100; ++try)
1803 {
1804# ifdef VMS
1805 len = vms_read(
1806# else
1807 len = read(read_cmd_fd,
1808# endif
1809 (char *)inbuf + inbufcount, (size_t)((INBUFLEN - inbufcount)
1810# ifdef FEAT_MBYTE
1811 / input_conv.vc_factor
1812# endif
1813 ));
1814# if 0
1815 ) /* avoid syntax highlight error */
1816# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001817
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (len > 0 || got_int)
1819 break;
1820 /*
1821 * If reading stdin results in an error, continue reading stderr.
1822 * This helps when using "foo | xargs vim".
1823 */
1824 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
1825 {
1826 int m = cur_tmode;
1827
1828 /* We probably set the wrong file descriptor to raw mode. Switch
1829 * back to cooked mode, use another descriptor and set the mode to
1830 * what it was. */
1831 settmode(TMODE_COOK);
1832#ifdef HAVE_DUP
1833 /* Use stderr for stdin, also works for shell commands. */
1834 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001835 ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#else
1837 read_cmd_fd = 2; /* read from stderr instead of stdin */
1838#endif
1839 settmode(m);
1840 }
1841 if (!exit_on_error)
1842 return;
1843 }
1844# endif
1845 if (len <= 0 && !got_int)
1846 read_error_exit();
1847 if (len > 0)
1848 did_read_something = TRUE;
1849 if (got_int)
1850 {
1851 /* Interrupted, pretend a CTRL-C was typed. */
1852 inbuf[0] = 3;
1853 inbufcount = 1;
1854 }
1855 else
1856 {
1857# ifdef FEAT_MBYTE
1858 /*
1859 * May perform conversion on the input characters.
1860 * Include the unconverted rest of the previous call.
1861 * If there is an incomplete char at the end it is kept for the next
1862 * time, reading more bytes should make conversion possible.
1863 * Don't do this in the unlikely event that the input buffer is too
1864 * small ("rest" still contains more bytes).
1865 */
1866 if (input_conv.vc_type != CONV_NONE)
1867 {
1868 inbufcount -= unconverted;
1869 len = convert_input_safe(inbuf + inbufcount,
1870 len + unconverted, INBUFLEN - inbufcount,
1871 rest == NULL ? &rest : NULL, &restlen);
1872 }
1873# endif
1874 while (len-- > 0)
1875 {
1876 /*
1877 * if a CTRL-C was typed, remove it from the buffer and set got_int
1878 */
1879 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
1880 {
1881 /* remove everything typed before the CTRL-C */
1882 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
1883 inbufcount = 0;
1884 got_int = TRUE;
1885 }
1886 ++inbufcount;
1887 }
1888 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001889#endif /* UNIX or VMS*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890}
Bram Moolenaare7fedb62015-12-31 19:07:19 +01001891#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892
1893/*
1894 * Exit because of an input read error.
1895 */
1896 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001897read_error_exit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898{
1899 if (silent_mode) /* Normal way to exit for "ex -s" */
1900 getout(0);
1901 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
1902 preserve_exit();
1903}
1904
1905#if defined(CURSOR_SHAPE) || defined(PROTO)
1906/*
1907 * May update the shape of the cursor.
1908 */
1909 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001910ui_cursor_shape(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
1912# ifdef FEAT_GUI
1913 if (gui.in_use)
1914 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001915 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001917 term_cursor_shape();
1918
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919# ifdef MCH_CURSOR_SHAPE
1920 mch_update_cursor();
1921# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001922
1923# ifdef FEAT_CONCEAL
Bram Moolenaar8e469272010-07-28 19:38:16 +02001924 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001925# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926}
1927#endif
1928
1929#if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
Bram Moolenaaraf51e662008-07-14 19:48:05 +00001930 || defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931/*
1932 * Check bounds for column number
1933 */
1934 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001935check_col(int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936{
1937 if (col < 0)
1938 return 0;
1939 if (col >= (int)screen_Columns)
1940 return (int)screen_Columns - 1;
1941 return col;
1942}
1943
1944/*
1945 * Check bounds for row number
1946 */
1947 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001948check_row(int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949{
1950 if (row < 0)
1951 return 0;
1952 if (row >= (int)screen_Rows)
1953 return (int)screen_Rows - 1;
1954 return row;
1955}
1956#endif
1957
1958/*
1959 * Stuff for the X clipboard. Shared between VMS and Unix.
1960 */
1961
1962#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
1963# include <X11/Xatom.h>
1964# include <X11/Intrinsic.h>
1965
1966/*
1967 * Open the application context (if it hasn't been opened yet).
1968 * Used for Motif and Athena GUI and the xterm clipboard.
1969 */
1970 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001971open_app_context(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972{
1973 if (app_context == NULL)
1974 {
1975 XtToolkitInitialize();
1976 app_context = XtCreateApplicationContext();
1977 }
1978}
1979
1980static Atom vim_atom; /* Vim's own special selection format */
1981#ifdef FEAT_MBYTE
1982static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01001983static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984#endif
1985static Atom compound_text_atom;
1986static Atom text_atom;
1987static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001988static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989
1990 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001991x11_setup_atoms(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992{
1993 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
1994#ifdef FEAT_MBYTE
1995 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01001996 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997#endif
1998 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
1999 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002000 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002002 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2003 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004}
2005
2006/*
2007 * X Selection stuff, for cutting and pasting text to other windows.
2008 */
2009
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002010static Boolean clip_x11_convert_selection_cb(Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *);
2011static void clip_x11_lose_ownership_cb(Widget, Atom *);
2012static void clip_x11_timestamp_cb(Widget w, XtPointer n, XEvent *event, Boolean *cont);
2013static void clip_x11_request_selection_cb(Widget, XtPointer, Atom *, Atom *, XtPointer, long_u *, int *);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002014
2015/*
2016 * Property callback to get a timestamp for XtOwnSelection.
2017 */
2018 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002019clip_x11_timestamp_cb(
2020 Widget w,
2021 XtPointer n UNUSED,
2022 XEvent *event,
2023 Boolean *cont UNUSED)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002024{
2025 Atom actual_type;
2026 int format;
2027 unsigned long nitems, bytes_after;
2028 unsigned char *prop=NULL;
2029 XPropertyEvent *xproperty=&event->xproperty;
2030
2031 /* Must be a property notify, state can't be Delete (True), has to be
2032 * one of the supported selection types. */
2033 if (event->type != PropertyNotify || xproperty->state
2034 || (xproperty->atom != clip_star.sel_atom
2035 && xproperty->atom != clip_plus.sel_atom))
2036 return;
2037
2038 if (XGetWindowProperty(xproperty->display, xproperty->window,
2039 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2040 &nitems, &bytes_after, &prop))
2041 return;
2042
2043 if (prop)
2044 XFree(prop);
2045
2046 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2047 if (actual_type != timestamp_atom || format != 32)
2048 return;
2049
2050 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002051 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2052 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
2053 NULL) == OK)
2054 {
2055 /* Set the "owned" flag now, there may have been a call to
2056 * lose_ownership_cb in between. */
2057 if (xproperty->atom == clip_plus.sel_atom)
2058 clip_plus.owned = TRUE;
2059 else
2060 clip_star.owned = TRUE;
2061 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002062}
2063
2064 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002065x11_setup_selection(Widget w)
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002066{
2067 XtAddEventHandler(w, PropertyChangeMask, False,
2068 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2069}
2070
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002072clip_x11_request_selection_cb(
2073 Widget w UNUSED,
2074 XtPointer success,
2075 Atom *sel_atom,
2076 Atom *type,
2077 XtPointer value,
2078 long_u *length,
2079 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002081 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 long_u len;
2083 char_u *p;
2084 char **text_list = NULL;
2085 VimClipboard *cbd;
2086#ifdef FEAT_MBYTE
2087 char_u *tmpbuf = NULL;
2088#endif
2089
2090 if (*sel_atom == clip_plus.sel_atom)
2091 cbd = &clip_plus;
2092 else
2093 cbd = &clip_star;
2094
2095 if (value == NULL || *length == 0)
2096 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002097 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 *(int *)success = FALSE;
2099 return;
2100 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 p = (char_u *)value;
2102 len = *length;
2103 if (*type == vim_atom)
2104 {
2105 motion_type = *p++;
2106 len--;
2107 }
2108
2109#ifdef FEAT_MBYTE
2110 else if (*type == vimenc_atom)
2111 {
2112 char_u *enc;
2113 vimconv_T conv;
2114 int convlen;
2115
2116 motion_type = *p++;
2117 --len;
2118
2119 enc = p;
2120 p += STRLEN(p) + 1;
2121 len -= p - enc;
2122
2123 /* If the encoding of the text is different from 'encoding', attempt
2124 * converting it. */
2125 conv.vc_type = CONV_NONE;
2126 convert_setup(&conv, enc, p_enc);
2127 if (conv.vc_type != CONV_NONE)
2128 {
2129 convlen = len; /* Need to use an int here. */
2130 tmpbuf = string_convert(&conv, p, &convlen);
2131 len = convlen;
2132 if (tmpbuf != NULL)
2133 p = tmpbuf;
2134 convert_setup(&conv, NULL, NULL);
2135 }
2136 }
2137#endif
2138
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002139 else if (*type == compound_text_atom
2140#ifdef FEAT_MBYTE
2141 || *type == utf8_atom
2142#endif
2143 || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144#ifdef FEAT_MBYTE
2145 enc_dbcs != 0 &&
2146#endif
2147 *type == text_atom))
2148 {
2149 XTextProperty text_prop;
2150 int n_text = 0;
2151 int status;
2152
2153 text_prop.value = (unsigned char *)value;
2154 text_prop.encoding = *type;
2155 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002156 text_prop.nitems = len;
Bram Moolenaar81851112013-04-12 12:27:30 +02002157#if defined(FEAT_MBYTE) && defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002158 if (*type == utf8_atom)
2159 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2160 &text_list, &n_text);
2161 else
2162#endif
2163 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 &text_list, &n_text);
2165 if (status != Success || n_text < 1)
2166 {
2167 *(int *)success = FALSE;
2168 return;
2169 }
2170 p = (char_u *)text_list[0];
2171 len = STRLEN(p);
2172 }
2173 clip_yank_selection(motion_type, p, (long)len, cbd);
2174
2175 if (text_list != NULL)
2176 XFreeStringList(text_list);
2177#ifdef FEAT_MBYTE
2178 vim_free(tmpbuf);
2179#endif
2180 XtFree((char *)value);
2181 *(int *)success = TRUE;
2182}
2183
2184 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002185clip_x11_request_selection(
2186 Widget myShell,
2187 Display *dpy,
2188 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
2190 XEvent event;
2191 Atom type;
2192 static int success;
2193 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002194 time_t start_time;
2195 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196
2197 for (i =
2198#ifdef FEAT_MBYTE
2199 0
2200#else
2201 1
2202#endif
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002203 ; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 {
2205 switch (i)
2206 {
2207#ifdef FEAT_MBYTE
2208 case 0: type = vimenc_atom; break;
2209#endif
2210 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002211#ifdef FEAT_MBYTE
2212 case 2: type = utf8_atom; break;
2213#endif
2214 case 3: type = compound_text_atom; break;
2215 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 default: type = XA_STRING;
2217 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002218#ifdef FEAT_MBYTE
Bram Moolenaar81851112013-04-12 12:27:30 +02002219 if (type == utf8_atom
2220# if defined(X_HAVE_UTF8_STRING)
2221 && !enc_utf8
2222# endif
2223 )
2224 /* Only request utf-8 when 'encoding' is utf8 and
2225 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002226 continue;
2227#endif
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002228 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2230 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2231
2232 /* Make sure the request for the selection goes out before waiting for
2233 * a response. */
2234 XFlush(dpy);
2235
2236 /*
2237 * Wait for result of selection request, otherwise if we type more
2238 * characters, then they will appear before the one that requested the
2239 * paste! Don't worry, we will catch up with any other events later.
2240 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002241 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002242 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002244 if (XCheckTypedEvent(dpy, SelectionNotify, &event)
2245 || XCheckTypedEvent(dpy, SelectionRequest, &event)
2246 || XCheckTypedEvent(dpy, PropertyNotify, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002247 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002248 /* This is where clip_x11_request_selection_cb() should be
2249 * called. It may actually happen a bit later, so we loop
2250 * until "success" changes.
2251 * We may get a SelectionRequest here and if we don't handle
2252 * it we hang. KDE klipper does this, for example.
2253 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002254 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002255 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
Bram Moolenaar89417b92008-09-07 19:48:53 +00002258 /* Time out after 2 to 3 seconds to avoid that we hang when the
2259 * other process doesn't respond. Note that the SelectionNotify
2260 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002261 * to life and the text gets inserted unexpectedly. Don't know
2262 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002263 if (time(NULL) > start_time + 2)
2264 {
2265 timed_out = TRUE;
2266 break;
2267 }
2268
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 /* Do we need this? Probably not. */
2270 XSync(dpy, False);
2271
Bram Moolenaar89417b92008-09-07 19:48:53 +00002272 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2273 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 }
2275
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002276 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002278
2279 /* don't do a retry with another type after timing out, otherwise we
2280 * hang for 15 seconds. */
2281 if (timed_out)
2282 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 }
2284
2285 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002286 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287}
2288
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 static Boolean
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002290clip_x11_convert_selection_cb(
2291 Widget w UNUSED,
2292 Atom *sel_atom,
2293 Atom *target,
2294 Atom *type,
2295 XtPointer *value,
2296 long_u *length,
2297 int *format)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298{
2299 char_u *string;
2300 char_u *result;
2301 int motion_type;
2302 VimClipboard *cbd;
2303 int i;
2304
2305 if (*sel_atom == clip_plus.sel_atom)
2306 cbd = &clip_plus;
2307 else
2308 cbd = &clip_star;
2309
2310 if (!cbd->owned)
2311 return False; /* Shouldn't ever happen */
2312
2313 /* requestor wants to know what target types we support */
2314 if (*target == targets_atom)
2315 {
2316 Atom *array;
2317
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002318 if ((array = (Atom *)XtMalloc((unsigned)(sizeof(Atom) * 7))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 return False;
2320 *value = (XtPointer)array;
2321 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 array[i++] = targets_atom;
2323#ifdef FEAT_MBYTE
2324 array[i++] = vimenc_atom;
2325#endif
2326 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002327#ifdef FEAT_MBYTE
2328 if (enc_utf8)
2329 array[i++] = utf8_atom;
2330#endif
2331 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 array[i++] = text_atom;
2333 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002334
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 *type = XA_ATOM;
2336 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2337 * crashes on 64 bit machines. (Peter Derr) */
2338 *format = 32;
2339 *length = i;
2340 return True;
2341 }
2342
2343 if ( *target != XA_STRING
2344#ifdef FEAT_MBYTE
2345 && *target != vimenc_atom
Bram Moolenaar980e58f2014-06-12 13:28:30 +02002346 && (*target != utf8_atom || !enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347#endif
2348 && *target != vim_atom
2349 && *target != text_atom
2350 && *target != compound_text_atom)
2351 return False;
2352
2353 clip_get_selection(cbd);
2354 motion_type = clip_convert_selection(&string, length, cbd);
2355 if (motion_type < 0)
2356 return False;
2357
2358 /* For our own format, the first byte contains the motion type */
2359 if (*target == vim_atom)
2360 (*length)++;
2361
2362#ifdef FEAT_MBYTE
2363 /* Our own format with encoding: motion 'encoding' NUL text */
2364 if (*target == vimenc_atom)
2365 *length += STRLEN(p_enc) + 2;
2366#endif
2367
2368 *value = XtMalloc((Cardinal)*length);
2369 result = (char_u *)*value;
2370 if (result == NULL)
2371 {
2372 vim_free(string);
2373 return False;
2374 }
2375
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002376 if (*target == XA_STRING
2377#ifdef FEAT_MBYTE
2378 || (*target == utf8_atom && enc_utf8)
2379#endif
2380 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 {
2382 mch_memmove(result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002383 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002385 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 {
2387 XTextProperty text_prop;
2388 char *string_nt = (char *)alloc((unsigned)*length + 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002389 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
2391 /* create NUL terminated string which XmbTextListToTextProperty wants */
2392 mch_memmove(string_nt, string, (size_t)*length);
2393 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002394 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2395 1, XCompoundTextStyle, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 vim_free(string_nt);
2397 XtFree(*value); /* replace with COMPOUND text */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002398 if (conv_result != Success)
2399 {
2400 vim_free(string);
2401 return False;
2402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 *value = (XtPointer)(text_prop.value); /* from plain text */
2404 *length = text_prop.nitems;
2405 *type = compound_text_atom;
2406 }
2407
2408#ifdef FEAT_MBYTE
2409 else if (*target == vimenc_atom)
2410 {
2411 int l = STRLEN(p_enc);
2412
2413 result[0] = motion_type;
2414 STRCPY(result + 1, p_enc);
2415 mch_memmove(result + l + 2, string, (size_t)(*length - l - 2));
2416 *type = vimenc_atom;
2417 }
2418#endif
2419
2420 else
2421 {
2422 result[0] = motion_type;
2423 mch_memmove(result + 1, string, (size_t)(*length - 1));
2424 *type = vim_atom;
2425 }
2426 *format = 8; /* 8 bits per char */
2427 vim_free(string);
2428 return True;
2429}
2430
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002432clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433{
2434 if (*sel_atom == clip_plus.sel_atom)
2435 clip_lose_selection(&clip_plus);
2436 else
2437 clip_lose_selection(&clip_star);
2438}
2439
2440 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002441clip_x11_lose_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002443 XtDisownSelection(myShell, cbd->sel_atom,
2444 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445}
2446
2447 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002448clip_x11_own_selection(Widget myShell, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002450 /* When using the GUI we have proper timestamps, use the one of the last
2451 * event. When in the console we don't get events (the terminal gets
2452 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2453 * be called with the current timestamp. */
2454#ifdef FEAT_GUI
2455 if (gui.in_use)
2456 {
2457 if (XtOwnSelection(myShell, cbd->sel_atom,
2458 XtLastTimestampProcessed(XtDisplay(myShell)),
2459 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
2460 NULL) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002461 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002462 }
2463 else
2464#endif
2465 {
2466 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2467 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002468 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002469 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002470 /* Flush is required in a terminal as nothing else is doing it. */
2471 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 return OK;
2473}
2474
2475/*
2476 * Send the current selection to the clipboard. Do nothing for X because we
2477 * will fill in the selection only when requested by another app.
2478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002480clip_x11_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481{
2482}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002483
2484 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002485clip_x11_owner_exists(VimClipboard *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002486{
2487 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2488}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489#endif
2490
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002491#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2492 || defined(FEAT_GUI_GTK) || defined(PROTO)
2493/*
2494 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2495 */
2496 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002497yank_cut_buffer0(Display *dpy, VimClipboard *cbd)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002498{
2499 int nbytes = 0;
2500 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2501
2502 if (nbytes > 0)
2503 {
2504#ifdef FEAT_MBYTE
2505 int done = FALSE;
2506
2507 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2508 * using a multi-byte encoding. Conversion between two 8-bit
2509 * character sets usually fails and the text might actually be in
2510 * 'enc' anyway. */
2511 if (has_mbyte)
2512 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002513 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002514 vimconv_T vc;
2515
2516 vc.vc_type = CONV_NONE;
2517 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2518 {
2519 conv_buf = string_convert(&vc, buffer, &nbytes);
2520 if (conv_buf != NULL)
2521 {
2522 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2523 vim_free(conv_buf);
2524 done = TRUE;
2525 }
2526 convert_setup(&vc, NULL, NULL);
2527 }
2528 }
2529 if (!done) /* use the text without conversion */
2530#endif
2531 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2532 XFree((void *)buffer);
2533 if (p_verbose > 0)
2534 {
2535 verbose_enter();
2536 verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
2537 verbose_leave();
2538 }
2539 }
2540}
2541#endif
2542
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543#if defined(FEAT_MOUSE) || defined(PROTO)
2544
2545/*
2546 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002547 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2549 *
2550 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2551 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2552 *
2553 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2554 * if the mouse is outside the window then the text will scroll, or if the
2555 * mouse was previously on a status line, then the status line may be dragged.
2556 *
2557 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2558 * cursor is moved unless the cursor was on a status line.
2559 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2560 * IN_SEP_LINE depending on where the cursor was clicked.
2561 *
2562 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2563 * the mouse is on the status line of the same window.
2564 *
2565 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2566 * the last call.
2567 *
2568 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2569 * remembered.
2570 */
2571 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002572jump_to_mouse(
2573 int flags,
2574 int *inclusive, /* used for inclusive operator, can be NULL */
2575 int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 static int on_status_line = 0; /* #lines below bottom of window */
2578#ifdef FEAT_VERTSPLIT
2579 static int on_sep_line = 0; /* on separator right of window */
2580#endif
2581 static int prev_row = -1;
2582 static int prev_col = -1;
2583 static win_T *dragwin = NULL; /* window being dragged */
2584 static int did_drag = FALSE; /* drag was noticed */
2585
2586 win_T *wp, *old_curwin;
2587 pos_T old_cursor;
2588 int count;
2589 int first;
2590 int row = mouse_row;
2591 int col = mouse_col;
2592#ifdef FEAT_FOLDING
2593 int mouse_char;
2594#endif
2595
2596 mouse_past_bottom = FALSE;
2597 mouse_past_eol = FALSE;
2598
2599 if (flags & MOUSE_RELEASED)
2600 {
2601 /* On button release we may change window focus if positioned on a
2602 * status line and no dragging happened. */
2603 if (dragwin != NULL && !did_drag)
2604 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2605 dragwin = NULL;
2606 did_drag = FALSE;
2607 }
2608
2609 if ((flags & MOUSE_DID_MOVE)
2610 && prev_row == mouse_row
2611 && prev_col == mouse_col)
2612 {
2613retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002614 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 * line, stop Visual mode */
2616 if (on_status_line)
2617 return IN_STATUS_LINE;
2618#ifdef FEAT_VERTSPLIT
2619 if (on_sep_line)
2620 return IN_SEP_LINE;
2621#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 if (flags & MOUSE_MAY_STOP_VIS)
2623 {
2624 end_visual_mode();
2625 redraw_curbuf_later(INVERTED); /* delete the inversion */
2626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2628 /* Continue a modeless selection in another window. */
2629 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2630 return IN_OTHER_WIN;
2631#endif
2632 return IN_BUFFER;
2633 }
2634
2635 prev_row = mouse_row;
2636 prev_col = mouse_col;
2637
2638 if (flags & MOUSE_SETPOS)
2639 goto retnomove; /* ugly goto... */
2640
2641#ifdef FEAT_FOLDING
2642 /* Remember the character under the mouse, it might be a '-' or '+' in the
2643 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002644 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2645 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 mouse_char = ScreenLines[LineOffset[row] + col];
2647 else
2648 mouse_char = ' ';
2649#endif
2650
2651 old_curwin = curwin;
2652 old_cursor = curwin->w_cursor;
2653
2654 if (!(flags & MOUSE_FOCUS))
2655 {
2656 if (row < 0 || col < 0) /* check if it makes sense */
2657 return IN_UNKNOWN;
2658
2659#ifdef FEAT_WINDOWS
2660 /* find the window where the row is in */
2661 wp = mouse_find_win(&row, &col);
2662#else
2663 wp = firstwin;
2664#endif
2665 dragwin = NULL;
2666 /*
2667 * winpos and height may change in win_enter()!
2668 */
2669 if (row >= wp->w_height) /* In (or below) status line */
2670 {
2671 on_status_line = row - wp->w_height + 1;
2672 dragwin = wp;
2673 }
2674 else
2675 on_status_line = 0;
2676#ifdef FEAT_VERTSPLIT
2677 if (col >= wp->w_width) /* In separator line */
2678 {
2679 on_sep_line = col - wp->w_width + 1;
2680 dragwin = wp;
2681 }
2682 else
2683 on_sep_line = 0;
2684
2685 /* The rightmost character of the status line might be a vertical
2686 * separator character if there is no connecting window to the right. */
2687 if (on_status_line && on_sep_line)
2688 {
2689 if (stl_connected(wp))
2690 on_sep_line = 0;
2691 else
2692 on_status_line = 0;
2693 }
2694#endif
2695
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 /* Before jumping to another buffer, or moving the cursor for a left
2697 * click, stop Visual mode. */
2698 if (VIsual_active
2699 && (wp->w_buffer != curwin->w_buffer
2700 || (!on_status_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002701#ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002703#endif
2704#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002706# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 wp->w_p_rl ? col < W_WIDTH(wp) - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002709 col >= wp->w_p_fdc
2710# ifdef FEAT_CMDWIN
2711 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
2712# endif
2713 )
2714#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 && (flags & MOUSE_MAY_STOP_VIS))))
2716 {
2717 end_visual_mode();
2718 redraw_curbuf_later(INVERTED); /* delete the inversion */
2719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720#ifdef FEAT_CMDWIN
2721 if (cmdwin_type != 0 && wp != curwin)
2722 {
2723 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01002724 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725# ifdef FEAT_VERTSPLIT
2726 on_sep_line = 0;
2727# endif
2728# ifdef FEAT_CLIPBOARD
2729 if (on_status_line)
2730 return IN_STATUS_LINE;
2731 return IN_OTHER_WIN;
2732# else
2733 row = 0;
2734 col += wp->w_wincol;
2735 wp = curwin;
2736# endif
2737 }
2738#endif
2739#ifdef FEAT_WINDOWS
2740 /* Only change window focus when not clicking on or dragging the
2741 * status line. Do change focus when releasing the mouse button
2742 * (MOUSE_FOCUS was set above if we dragged first). */
2743 if (dragwin == NULL || (flags & MOUSE_RELEASED))
2744 win_enter(wp, TRUE); /* can make wp invalid! */
2745# ifdef CHECK_DOUBLE_CLICK
2746 /* set topline, to be able to check for double click ourselves */
2747 if (curwin != old_curwin)
2748 set_mouse_topline(curwin);
2749# endif
2750#endif
2751 if (on_status_line) /* In (or below) status line */
2752 {
2753 /* Don't use start_arrow() if we're in the same window */
2754 if (curwin == old_curwin)
2755 return IN_STATUS_LINE;
2756 else
2757 return IN_STATUS_LINE | CURSOR_MOVED;
2758 }
2759#ifdef FEAT_VERTSPLIT
2760 if (on_sep_line) /* In (or below) status line */
2761 {
2762 /* Don't use start_arrow() if we're in the same window */
2763 if (curwin == old_curwin)
2764 return IN_SEP_LINE;
2765 else
2766 return IN_SEP_LINE | CURSOR_MOVED;
2767 }
2768#endif
2769
2770 curwin->w_cursor.lnum = curwin->w_topline;
2771#ifdef FEAT_GUI
2772 /* remember topline, needed for double click */
2773 gui_prev_topline = curwin->w_topline;
2774# ifdef FEAT_DIFF
2775 gui_prev_topfill = curwin->w_topfill;
2776# endif
2777#endif
2778 }
2779 else if (on_status_line && which_button == MOUSE_LEFT)
2780 {
2781#ifdef FEAT_WINDOWS
2782 if (dragwin != NULL)
2783 {
2784 /* Drag the status line */
2785 count = row - dragwin->w_winrow - dragwin->w_height + 1
2786 - on_status_line;
2787 win_drag_status_line(dragwin, count);
2788 did_drag |= count;
2789 }
2790#endif
2791 return IN_STATUS_LINE; /* Cursor didn't move */
2792 }
2793#ifdef FEAT_VERTSPLIT
2794 else if (on_sep_line && which_button == MOUSE_LEFT)
2795 {
2796 if (dragwin != NULL)
2797 {
2798 /* Drag the separator column */
2799 count = col - dragwin->w_wincol - dragwin->w_width + 1
2800 - on_sep_line;
2801 win_drag_vsep_line(dragwin, count);
2802 did_drag |= count;
2803 }
2804 return IN_SEP_LINE; /* Cursor didn't move */
2805 }
2806#endif
2807 else /* keep_window_focus must be TRUE */
2808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 /* before moving the cursor for a left click, stop Visual mode */
2810 if (flags & MOUSE_MAY_STOP_VIS)
2811 {
2812 end_visual_mode();
2813 redraw_curbuf_later(INVERTED); /* delete the inversion */
2814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815
2816#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2817 /* Continue a modeless selection in another window. */
2818 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2819 return IN_OTHER_WIN;
2820#endif
2821
2822 row -= W_WINROW(curwin);
2823#ifdef FEAT_VERTSPLIT
2824 col -= W_WINCOL(curwin);
2825#endif
2826
2827 /*
2828 * When clicking beyond the end of the window, scroll the screen.
2829 * Scroll by however many rows outside the window we are.
2830 */
2831 if (row < 0)
2832 {
2833 count = 0;
2834 for (first = TRUE; curwin->w_topline > 1; )
2835 {
2836#ifdef FEAT_DIFF
2837 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2838 ++count;
2839 else
2840#endif
2841 count += plines(curwin->w_topline - 1);
2842 if (!first && count > -row)
2843 break;
2844 first = FALSE;
2845#ifdef FEAT_FOLDING
Bram Moolenaarcde88542015-08-11 19:14:00 +02002846 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847#endif
2848#ifdef FEAT_DIFF
2849 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2850 ++curwin->w_topfill;
2851 else
2852#endif
2853 {
2854 --curwin->w_topline;
2855#ifdef FEAT_DIFF
2856 curwin->w_topfill = 0;
2857#endif
2858 }
2859 }
2860#ifdef FEAT_DIFF
2861 check_topfill(curwin, FALSE);
2862#endif
2863 curwin->w_valid &=
2864 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2865 redraw_later(VALID);
2866 row = 0;
2867 }
2868 else if (row >= curwin->w_height)
2869 {
2870 count = 0;
2871 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
2872 {
2873#ifdef FEAT_DIFF
2874 if (curwin->w_topfill > 0)
2875 ++count;
2876 else
2877#endif
2878 count += plines(curwin->w_topline);
2879 if (!first && count > row - curwin->w_height + 1)
2880 break;
2881 first = FALSE;
2882#ifdef FEAT_FOLDING
2883 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
2884 && curwin->w_topline == curbuf->b_ml.ml_line_count)
2885 break;
2886#endif
2887#ifdef FEAT_DIFF
2888 if (curwin->w_topfill > 0)
2889 --curwin->w_topfill;
2890 else
2891#endif
2892 {
2893 ++curwin->w_topline;
2894#ifdef FEAT_DIFF
2895 curwin->w_topfill =
2896 diff_check_fill(curwin, curwin->w_topline);
2897#endif
2898 }
2899 }
2900#ifdef FEAT_DIFF
2901 check_topfill(curwin, FALSE);
2902#endif
2903 redraw_later(VALID);
2904 curwin->w_valid &=
2905 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2906 row = curwin->w_height - 1;
2907 }
2908 else if (row == 0)
2909 {
2910 /* When dragging the mouse, while the text has been scrolled up as
2911 * far as it goes, moving the mouse in the top line should scroll
2912 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00002913 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 && curwin->w_cursor.lnum
2915 == curwin->w_buffer->b_ml.ml_line_count
2916 && curwin->w_cursor.lnum == curwin->w_topline)
2917 curwin->w_valid &= ~(VALID_TOPLINE);
2918 }
2919 }
2920
2921#ifdef FEAT_FOLDING
2922 /* Check for position outside of the fold column. */
2923 if (
2924# ifdef FEAT_RIGHTLEFT
2925 curwin->w_p_rl ? col < W_WIDTH(curwin) - curwin->w_p_fdc :
2926# endif
2927 col >= curwin->w_p_fdc
2928# ifdef FEAT_CMDWIN
2929 + (cmdwin_type == 0 ? 0 : 1)
2930# endif
2931 )
2932 mouse_char = ' ';
2933#endif
2934
2935 /* compute the position in the buffer line from the posn on the screen */
2936 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
2937 mouse_past_bottom = TRUE;
2938
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
2940 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
2941 {
2942 check_visual_highlight();
2943 VIsual = old_cursor;
2944 VIsual_active = TRUE;
2945 VIsual_reselect = TRUE;
2946 /* if 'selectmode' contains "mouse", start Select mode */
2947 may_start_select('o');
2948 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00002949 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 redraw_cmdline = TRUE; /* show visual mode later */
2951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952
2953 curwin->w_curswant = col;
2954 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
2955 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
2956 {
2957 if (inclusive != NULL)
2958 *inclusive = TRUE;
2959 mouse_past_eol = TRUE;
2960 }
2961 else if (inclusive != NULL)
2962 *inclusive = FALSE;
2963
2964 count = IN_BUFFER;
2965 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
2966 || curwin->w_cursor.col != old_cursor.col)
2967 count |= CURSOR_MOVED; /* Cursor has moved */
2968
2969#ifdef FEAT_FOLDING
2970 if (mouse_char == '+')
2971 count |= MOUSE_FOLD_OPEN;
2972 else if (mouse_char != ' ')
2973 count |= MOUSE_FOLD_CLOSE;
2974#endif
2975
2976 return count;
2977}
2978
2979/*
2980 * Compute the position in the buffer line from the posn on the screen in
2981 * window "win".
2982 * Returns TRUE if the position is below the last line.
2983 */
2984 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002985mouse_comp_pos(
2986 win_T *win,
2987 int *rowp,
2988 int *colp,
2989 linenr_T *lnump)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990{
2991 int col = *colp;
2992 int row = *rowp;
2993 linenr_T lnum;
2994 int retval = FALSE;
2995 int off;
2996 int count;
2997
2998#ifdef FEAT_RIGHTLEFT
2999 if (win->w_p_rl)
3000 col = W_WIDTH(win) - 1 - col;
3001#endif
3002
3003 lnum = win->w_topline;
3004
3005 while (row > 0)
3006 {
3007#ifdef FEAT_DIFF
3008 /* Don't include filler lines in "count" */
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003009 if (win->w_p_diff
3010# ifdef FEAT_FOLDING
3011 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3012# endif
3013 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 {
3015 if (lnum == win->w_topline)
3016 row -= win->w_topfill;
3017 else
3018 row -= diff_check_fill(win, lnum);
3019 count = plines_win_nofill(win, lnum, TRUE);
3020 }
3021 else
3022#endif
3023 count = plines_win(win, lnum, TRUE);
3024 if (count > row)
3025 break; /* Position is in this buffer line. */
3026#ifdef FEAT_FOLDING
3027 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3028#endif
3029 if (lnum == win->w_buffer->b_ml.ml_line_count)
3030 {
3031 retval = TRUE;
3032 break; /* past end of file */
3033 }
3034 row -= count;
3035 ++lnum;
3036 }
3037
3038 if (!retval)
3039 {
3040 /* Compute the column without wrapping. */
3041 off = win_col_off(win) - win_col_off2(win);
3042 if (col < off)
3043 col = off;
3044 col += row * (W_WIDTH(win) - off);
3045 /* add skip column (for long wrapping line) */
3046 col += win->w_skipcol;
3047 }
3048
3049 if (!win->w_p_wrap)
3050 col += win->w_leftcol;
3051
3052 /* skip line number and fold column in front of the line */
3053 col -= win_col_off(win);
3054 if (col < 0)
3055 {
3056#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003057 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058#endif
3059 col = 0;
3060 }
3061
3062 *colp = col;
3063 *rowp = row;
3064 *lnump = lnum;
3065 return retval;
3066}
3067
3068#if defined(FEAT_WINDOWS) || defined(PROTO)
3069/*
3070 * Find the window at screen position "*rowp" and "*colp". The positions are
3071 * updated to become relative to the top-left of the window.
3072 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 win_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003074mouse_find_win(int *rowp, int *colp UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 frame_T *fp;
3077
3078 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003079 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 for (;;)
3081 {
3082 if (fp->fr_layout == FR_LEAF)
3083 break;
3084#ifdef FEAT_VERTSPLIT
3085 if (fp->fr_layout == FR_ROW)
3086 {
3087 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3088 {
3089 if (*colp < fp->fr_width)
3090 break;
3091 *colp -= fp->fr_width;
3092 }
3093 }
3094#endif
3095 else /* fr_layout == FR_COL */
3096 {
3097 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3098 {
3099 if (*rowp < fp->fr_height)
3100 break;
3101 *rowp -= fp->fr_height;
3102 }
3103 }
3104 }
3105 return fp->fr_win;
3106}
3107#endif
3108
Bram Moolenaar860cae12010-06-05 23:22:07 +02003109#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
3111 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
3112/*
3113 * Translate window coordinates to buffer position without any side effects
3114 */
3115 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003116get_fpos_of_mouse(pos_T *mpos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117{
3118 win_T *wp;
3119 int row = mouse_row;
3120 int col = mouse_col;
3121
3122 if (row < 0 || col < 0) /* check if it makes sense */
3123 return IN_UNKNOWN;
3124
3125#ifdef FEAT_WINDOWS
3126 /* find the window where the row is in */
3127 wp = mouse_find_win(&row, &col);
3128#else
3129 wp = firstwin;
3130#endif
3131 /*
3132 * winpos and height may change in win_enter()!
3133 */
3134 if (row >= wp->w_height) /* In (or below) status line */
3135 return IN_STATUS_LINE;
3136#ifdef FEAT_VERTSPLIT
3137 if (col >= wp->w_width) /* In vertical separator line */
3138 return IN_SEP_LINE;
3139#endif
3140
3141 if (wp != curwin)
3142 return IN_UNKNOWN;
3143
3144 /* compute the position in the buffer line from the posn on the screen */
3145 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3146 return IN_STATUS_LINE; /* past bottom */
3147
3148 mpos->col = vcol2col(wp, mpos->lnum, col);
3149
3150 if (mpos->col > 0)
3151 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003152#ifdef FEAT_VIRTUALEDIT
3153 mpos->coladd = 0;
3154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 return IN_BUFFER;
3156}
3157
3158/*
3159 * Convert a virtual (screen) column to a character column.
3160 * The first column is one.
3161 */
3162 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003163vcol2col(win_T *wp, linenr_T lnum, int vcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
3165 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 int count = 0;
3167 char_u *ptr;
Bram Moolenaar597a4222014-06-25 14:39:50 +02003168 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169
Bram Moolenaar597a4222014-06-25 14:39:50 +02003170 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003171 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 {
Bram Moolenaar597a4222014-06-25 14:39:50 +02003173 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003174 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 }
Bram Moolenaar597a4222014-06-25 14:39:50 +02003176 return (int)(ptr - line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177}
3178#endif
3179
3180#endif /* FEAT_MOUSE */
3181
3182#if defined(FEAT_GUI) || defined(WIN3264) || defined(PROTO)
3183/*
3184 * Called when focus changed. Used for the GUI or for systems where this can
3185 * be done in the console (Win32).
3186 */
3187 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003188ui_focus_change(
3189 int in_focus) /* TRUE if focus gained. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191 static time_t last_time = (time_t)0;
3192 int need_redraw = FALSE;
3193
3194 /* When activated: Check if any file was modified outside of Vim.
3195 * Only do this when not done within the last two seconds (could get
3196 * several events in a row). */
3197 if (in_focus && last_time + 2 < time(NULL))
3198 {
3199 need_redraw = check_timestamps(
3200# ifdef FEAT_GUI
3201 gui.in_use
3202# else
3203 FALSE
3204# endif
3205 );
3206 last_time = time(NULL);
3207 }
3208
3209#ifdef FEAT_AUTOCMD
3210 /*
3211 * Fire the focus gained/lost autocommand.
3212 */
3213 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3214 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
3215#endif
3216
3217 if (need_redraw)
3218 {
3219 /* Something was executed, make sure the cursor is put back where it
3220 * belongs. */
3221 need_wait_return = FALSE;
3222
3223 if (State & CMDLINE)
3224 redrawcmdline();
3225 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3226 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3227 repeat_message();
3228 else if ((State & NORMAL) || (State & INSERT))
3229 {
3230 if (must_redraw != 0)
3231 update_screen(0);
3232 setcursor();
3233 }
3234 cursor_on(); /* redrawing may have switched it off */
3235 out_flush();
3236# ifdef FEAT_GUI
3237 if (gui.in_use)
3238 {
3239 gui_update_cursor(FALSE, TRUE);
3240 gui_update_scrollbars(FALSE);
3241 }
3242# endif
3243 }
3244#ifdef FEAT_TITLE
3245 /* File may have been changed from 'readonly' to 'noreadonly' */
3246 if (need_maketitle)
3247 maketitle();
3248#endif
3249}
3250#endif
3251
3252#if defined(USE_IM_CONTROL) || defined(PROTO)
3253/*
3254 * Save current Input Method status to specified place.
3255 */
3256 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003257im_save_status(long *psave)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3260 * disabled then (but might start later).
3261 * Also don't save when inside a mapping, vgetc_im_active has not been set
3262 * then.
3263 * And don't save when the keys were stuffed (e.g., for a "." command).
3264 * And don't save when the GUI is running but our window doesn't have
3265 * input focus (e.g., when a find dialog is open). */
3266 if (!p_imdisable && KeyTyped && !KeyStuffed
3267# ifdef FEAT_XIM
3268 && xic != NULL
3269# endif
3270# ifdef FEAT_GUI
3271 && (!gui.in_use || gui.in_focus)
3272# endif
3273 )
3274 {
3275 /* Do save when IM is on, or IM is off and saved status is on. */
3276 if (vgetc_im_active)
3277 *psave = B_IMODE_IM;
3278 else if (*psave == B_IMODE_IM)
3279 *psave = B_IMODE_NONE;
3280 }
3281}
3282#endif