blob: fc91de65557a44118dea6f2a46d4fd1f6300c855 [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
28ui_write(s, len)
29 char_u *s;
30 int len;
31{
32#ifdef FEAT_GUI
33 if (gui.in_use && !gui.dying && !gui.starting)
34 {
35 gui_write(s, len);
36 if (p_wd)
37 gui_wait_for_chars(p_wd);
38 return;
39 }
40#endif
41#ifndef NO_CONSOLE
42 /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */
43 if (!(silent_mode && p_verbose == 0))
44 {
45#ifdef FEAT_MBYTE
46 char_u *tofree = NULL;
47
48 if (output_conv.vc_type != CONV_NONE)
49 {
50 /* Convert characters from 'encoding' to 'termencoding'. */
51 tofree = string_convert(&output_conv, s, &len);
52 if (tofree != NULL)
53 s = tofree;
54 }
55#endif
56
57 mch_write(s, len);
58
59#ifdef FEAT_MBYTE
60 if (output_conv.vc_type != CONV_NONE)
61 vim_free(tofree);
62#endif
63 }
64#endif
65}
66
Bram Moolenaar4b9669f2011-07-07 16:20:52 +020067#if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +000068/*
69 * When executing an external program, there may be some typed characters that
70 * are not consumed by it. Give them back to ui_inchar() and they are stored
71 * here for the next call.
72 */
73static char_u *ta_str = NULL;
74static int ta_off; /* offset for next char to use when ta_str != NULL */
75static int ta_len; /* length of ta_str when it's not NULL*/
76
77 void
78ui_inchar_undo(s, len)
79 char_u *s;
80 int len;
81{
82 char_u *new;
83 int newlen;
84
85 newlen = len;
86 if (ta_str != NULL)
87 newlen += ta_len - ta_off;
88 new = alloc(newlen);
89 if (new != NULL)
90 {
91 if (ta_str != NULL)
92 {
93 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
94 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
95 vim_free(ta_str);
96 }
97 else
98 mch_memmove(new, s, (size_t)len);
99 ta_str = new;
100 ta_len = newlen;
101 ta_off = 0;
102 }
103}
104#endif
105
106/*
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200107 * ui_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108 * Get characters from the keyboard.
109 * Return the number of characters that are available.
110 * If "wtime" == 0 do not wait for characters.
111 * If "wtime" == -1 wait forever for characters.
112 * If "wtime" > 0 wait "wtime" milliseconds for a character.
113 *
114 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
115 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
116 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
117 * otherwise.
118 */
119 int
120ui_inchar(buf, maxlen, wtime, tb_change_cnt)
121 char_u *buf;
122 int maxlen;
123 long wtime; /* don't use "time", MIPS cannot handle it */
124 int tb_change_cnt;
125{
126 int retval = 0;
127
128#if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
129 /*
130 * Use the typeahead if there is any.
131 */
132 if (ta_str != NULL)
133 {
134 if (maxlen >= ta_len - ta_off)
135 {
136 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
137 vim_free(ta_str);
138 ta_str = NULL;
139 return ta_len;
140 }
141 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
142 ta_off += maxlen;
143 return maxlen;
144 }
145#endif
146
Bram Moolenaar05159a02005-02-26 23:04:13 +0000147#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000148 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000149 prof_inchar_enter();
150#endif
151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152#ifdef NO_CONSOLE_INPUT
153 /* Don't wait for character input when the window hasn't been opened yet.
154 * Do try reading, this works when redirecting stdin from a file.
155 * Must return something, otherwise we'll loop forever. If we run into
156 * this very often we probably got stuck, exit Vim. */
157 if (no_console_input())
158 {
159 static int count = 0;
160
161# ifndef NO_CONSOLE
Bram Moolenaar43b604c2005-03-22 23:06:55 +0000162 retval = mch_inchar(buf, maxlen, (wtime >= 0 && wtime < 10)
163 ? 10L : wtime, tb_change_cnt);
164 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000165 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166# endif
167 if (wtime == -1 && ++count == 1000)
168 read_error_exit();
169 buf[0] = CAR;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000170 retval = 1;
171 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 }
173#endif
174
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000175 /* If we are going to wait for some time or block... */
176 if (wtime == -1 || wtime > 100L)
177 {
178 /* ... allow signals to kill us. */
179 (void)vim_handle_signal(SIGNAL_UNBLOCK);
180
181 /* ... there is no need for CTRL-C to interrupt something, don't let
182 * it set got_int when it was mapped. */
183 if (mapped_ctrl_c)
184 ctrl_c_interrupts = FALSE;
185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186
187#ifdef FEAT_GUI
188 if (gui.in_use)
189 {
190 if (gui_wait_for_chars(wtime) && !typebuf_changed(tb_change_cnt))
191 retval = read_from_input_buf(buf, (long)maxlen);
192 }
193#endif
194#ifndef NO_CONSOLE
195# ifdef FEAT_GUI
196 else
197# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000198 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#endif
202
Bram Moolenaarc8da3112007-03-08 12:36:46 +0000203 if (wtime == -1 || wtime > 100L)
204 /* block SIGHUP et al. */
205 (void)vim_handle_signal(SIGNAL_BLOCK);
206
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 ctrl_c_interrupts = TRUE;
208
Bram Moolenaar05159a02005-02-26 23:04:13 +0000209#ifdef NO_CONSOLE_INPUT
210theend:
211#endif
212#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000213 if (do_profiling == PROF_YES && wtime != 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000214 prof_inchar_exit();
215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 return retval;
217}
218
219/*
220 * return non-zero if a character is available
221 */
222 int
223ui_char_avail()
224{
225#ifdef FEAT_GUI
226 if (gui.in_use)
227 {
228 gui_mch_update();
229 return input_available();
230 }
231#endif
232#ifndef NO_CONSOLE
233# ifdef NO_CONSOLE_INPUT
234 if (no_console_input())
235 return 0;
236# endif
237 return mch_char_avail();
238#else
239 return 0;
240#endif
241}
242
243/*
244 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
245 * cancel the delay if a key is hit.
246 */
247 void
248ui_delay(msec, ignoreinput)
249 long msec;
250 int ignoreinput;
251{
252#ifdef FEAT_GUI
253 if (gui.in_use && !ignoreinput)
254 gui_wait_for_chars(msec);
255 else
256#endif
257 mch_delay(msec, ignoreinput);
258}
259
260/*
261 * If the machine has job control, use it to suspend the program,
262 * otherwise fake it by starting a new shell.
263 * When running the GUI iconify the window.
264 */
265 void
266ui_suspend()
267{
268#ifdef FEAT_GUI
269 if (gui.in_use)
270 {
271 gui_mch_iconify();
272 return;
273 }
274#endif
275 mch_suspend();
276}
277
278#if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
279/*
280 * When the OS can't really suspend, call this function to start a shell.
281 * This is never called in the GUI.
282 */
283 void
284suspend_shell()
285{
286 if (*p_sh == NUL)
287 EMSG(_(e_shellempty));
288 else
289 {
290 MSG_PUTS(_("new shell started\n"));
291 do_shell(NULL, 0);
292 }
293}
294#endif
295
296/*
297 * Try to get the current Vim shell size. Put the result in Rows and Columns.
298 * Use the new sizes as defaults for 'columns' and 'lines'.
299 * Return OK when size could be determined, FAIL otherwise.
300 */
301 int
302ui_get_shellsize()
303{
304 int retval;
305
306#ifdef FEAT_GUI
307 if (gui.in_use)
308 retval = gui_get_shellsize();
309 else
310#endif
311 retval = mch_get_shellsize();
312
313 check_shellsize();
314
315 /* adjust the default for 'lines' and 'columns' */
316 if (retval == OK)
317 {
318 set_number_default("lines", Rows);
319 set_number_default("columns", Columns);
320 }
321 return retval;
322}
323
324/*
325 * Set the size of the Vim shell according to Rows and Columns, if possible.
326 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
327 * new size. If this is not possible, it will adjust Rows and Columns.
328 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 void
330ui_set_shellsize(mustset)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +0000331 int mustset UNUSED; /* set by the user */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332{
333#ifdef FEAT_GUI
334 if (gui.in_use)
Bram Moolenaar8968a312013-07-03 16:58:44 +0200335 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 else
337#endif
338 mch_set_shellsize();
339}
340
341/*
342 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
343 * region.
344 */
345 void
346ui_new_shellsize()
347{
348 if (full_screen && !exiting)
349 {
350#ifdef FEAT_GUI
351 if (gui.in_use)
352 gui_new_shellsize();
353 else
354#endif
355 mch_new_shellsize();
356 }
357}
358
359 void
360ui_breakcheck()
361{
362#ifdef FEAT_GUI
363 if (gui.in_use)
364 gui_mch_update();
365 else
366#endif
367 mch_breakcheck();
368}
369
370/*****************************************************************************
371 * Functions for copying and pasting text between applications.
372 * This is always included in a GUI version, but may also be included when the
373 * clipboard and mouse is available to a terminal version such as xterm.
374 * Note: there are some more functions in ops.c that handle selection stuff.
375 *
376 * Also note that the majority of functions here deal with the X 'primary'
377 * (visible - for Visual mode use) selection, and only that. There are no
378 * versions of these for the 'clipboard' selection, as Visual mode has no use
379 * for them.
380 */
381
382#if defined(FEAT_CLIPBOARD) || defined(PROTO)
383
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200384static void clip_copy_selection __ARGS((VimClipboard *clip));
385
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386/*
387 * Selection stuff using Visual mode, for cutting and pasting text to other
388 * windows.
389 */
390
391/*
392 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
393 * is included, but the clipboard can not be used, or TRUE if the clipboard can
394 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
395 * the GUI starts.
396 */
397 void
398clip_init(can_use)
399 int can_use;
400{
401 VimClipboard *cb;
402
403 cb = &clip_star;
404 for (;;)
405 {
406 cb->available = can_use;
407 cb->owned = FALSE;
408 cb->start.lnum = 0;
409 cb->start.col = 0;
410 cb->end.lnum = 0;
411 cb->end.col = 0;
412 cb->state = SELECT_CLEARED;
413
414 if (cb == &clip_plus)
415 break;
416 cb = &clip_plus;
417 }
418}
419
420/*
421 * Check whether the VIsual area has changed, and if so try to become the owner
422 * of the selection, and free any old converted selection we may still have
423 * lying around. If the VIsual mode has ended, make a copy of what was
424 * selected so we can still give it to others. Will probably have to make sure
425 * this is called whenever VIsual mode is ended.
426 */
427 void
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200428clip_update_selection(clip)
429 VimClipboard *clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200431 pos_T start, end;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433 /* If visual mode is only due to a redo command ("."), then ignore it */
434 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
435 {
436 if (lt(VIsual, curwin->w_cursor))
437 {
438 start = VIsual;
439 end = curwin->w_cursor;
440#ifdef FEAT_MBYTE
441 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000442 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443#endif
444 }
445 else
446 {
447 start = curwin->w_cursor;
448 end = VIsual;
449 }
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200450 if (!equalpos(clip->start, start)
451 || !equalpos(clip->end, end)
452 || clip->vmode != VIsual_mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200454 clip_clear_selection(clip);
455 clip->start = start;
456 clip->end = end;
457 clip->vmode = VIsual_mode;
458 clip_free_selection(clip);
459 clip_own_selection(clip);
460 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 }
462 }
463}
464
465 void
466clip_own_selection(cbd)
467 VimClipboard *cbd;
468{
469 /*
470 * Also want to check somehow that we are reading from the keyboard rather
471 * than a mapping etc.
472 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473#ifdef FEAT_X11
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200474 /* Always own the selection, we might have lost it without being
Bram Moolenaar62b42182010-09-21 22:09:37 +0200475 * notified, e.g. during a ":sh" command. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200476 if (cbd->available)
477 {
478 int was_owned = cbd->owned;
479
480 cbd->owned = (clip_gen_own_selection(cbd) == OK);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200481 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 {
Bram Moolenaarebefac62005-12-28 22:39:57 +0000483 /* May have to show a different kind of highlighting for the
484 * selected area. There is no specific redraw command for this,
485 * just redraw all windows on the current buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 if (cbd->owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000487 && (get_real_state() == VISUAL
488 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200489 && (cbd == &clip_star ? clip_isautosel_star()
490 : clip_isautosel_plus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
492 redraw_curbuf_later(INVERTED_ALL);
493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200495#else
Bram Moolenaarb6101cf2012-10-21 00:58:39 +0200496 /* Only own the clipboard when we didn't own it yet. */
Bram Moolenaar7cfea752010-06-22 06:07:12 +0200497 if (!cbd->owned && cbd->available)
498 cbd->owned = (clip_gen_own_selection(cbd) == OK);
499#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500}
501
502 void
503clip_lose_selection(cbd)
504 VimClipboard *cbd;
505{
506#ifdef FEAT_X11
507 int was_owned = cbd->owned;
508#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200509 int visual_selection = FALSE;
510
511 if (cbd == &clip_star || cbd == &clip_plus)
512 visual_selection = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513
514 clip_free_selection(cbd);
515 cbd->owned = FALSE;
516 if (visual_selection)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200517 clip_clear_selection(cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 clip_gen_lose_selection(cbd);
519#ifdef FEAT_X11
520 if (visual_selection)
521 {
522 /* May have to show a different kind of highlighting for the selected
523 * area. There is no specific redraw command for this, just redraw all
524 * windows on the current buffer. */
525 if (was_owned
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000526 && (get_real_state() == VISUAL
527 || get_real_state() == SELECTMODE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200528 && (cbd == &clip_star ?
529 clip_isautosel_star() : clip_isautosel_plus())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
531 {
532 update_curbuf(INVERTED_ALL);
533 setcursor();
534 cursor_on();
535 out_flush();
536# ifdef FEAT_GUI
537 if (gui.in_use)
538 gui_update_cursor(TRUE, FALSE);
539# endif
540 }
541 }
542#endif
543}
544
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200545 static void
546clip_copy_selection(clip)
547 VimClipboard *clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200549 if (VIsual_active && (State & NORMAL) && clip->available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200551 clip_update_selection(clip);
552 clip_free_selection(clip);
553 clip_own_selection(clip);
554 if (clip->owned)
555 clip_get_selection(clip);
556 clip_gen_set_selection(clip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 }
558}
559
560/*
561 * Called when Visual mode is ended: update the selection.
562 */
563 void
564clip_auto_select()
565{
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200566 if (clip_isautosel_star())
567 clip_copy_selection(&clip_star);
568 if (clip_isautosel_plus())
569 clip_copy_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570}
571
572/*
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200573 * Return TRUE if automatic selection of Visual area is desired for the *
574 * register.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 */
576 int
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200577clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578{
579 return (
580#ifdef FEAT_GUI
581 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
582#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200583 clip_autoselect_star);
584}
585
586/*
587 * Return TRUE if automatic selection of Visual area is desired for the +
588 * register.
589 */
590 int
591clip_isautosel_plus()
592{
593 return (
594#ifdef FEAT_GUI
595 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) :
596#endif
597 clip_autoselect_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598}
599
600
601/*
602 * Stuff for general mouse selection, without using Visual mode.
603 */
604
605static int clip_compare_pos __ARGS((int row1, int col1, int row2, int col2));
606static void clip_invert_area __ARGS((int, int, int, int, int how));
607static void clip_invert_rectangle __ARGS((int row, int col, int height, int width, int invert));
608static void clip_get_word_boundaries __ARGS((VimClipboard *, int, int));
609static int clip_get_line_end __ARGS((int));
610static void clip_update_modeless_selection __ARGS((VimClipboard *, int, int,
611 int, int));
612
613/* flags for clip_invert_area() */
614#define CLIP_CLEAR 1
615#define CLIP_SET 2
616#define CLIP_TOGGLE 3
617
618/*
619 * Start, continue or end a modeless selection. Used when editing the
620 * command-line and in the cmdline window.
621 */
622 void
623clip_modeless(button, is_click, is_drag)
624 int button;
625 int is_click;
626 int is_drag;
627{
628 int repeat;
629
630 repeat = ((clip_star.mode == SELECT_MODE_CHAR
631 || clip_star.mode == SELECT_MODE_LINE)
632 && (mod_mask & MOD_MASK_2CLICK))
633 || (clip_star.mode == SELECT_MODE_WORD
634 && (mod_mask & MOD_MASK_3CLICK));
635 if (is_click && button == MOUSE_RIGHT)
636 {
637 /* Right mouse button: If there was no selection, start one.
638 * Otherwise extend the existing selection. */
639 if (clip_star.state == SELECT_CLEARED)
640 clip_start_selection(mouse_col, mouse_row, FALSE);
641 clip_process_selection(button, mouse_col, mouse_row, repeat);
642 }
643 else if (is_click)
644 clip_start_selection(mouse_col, mouse_row, repeat);
645 else if (is_drag)
646 {
647 /* Don't try extending a selection if there isn't one. Happens when
648 * button-down is in the cmdline and them moving mouse upwards. */
649 if (clip_star.state != SELECT_CLEARED)
650 clip_process_selection(button, mouse_col, mouse_row, repeat);
651 }
652 else /* release */
653 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
654}
655
656/*
657 * Compare two screen positions ala strcmp()
658 */
659 static int
660clip_compare_pos(row1, col1, row2, col2)
661 int row1;
662 int col1;
663 int row2;
664 int col2;
665{
666 if (row1 > row2) return(1);
667 if (row1 < row2) return(-1);
668 if (col1 > col2) return(1);
669 if (col1 < col2) return(-1);
670 return(0);
671}
672
673/*
674 * Start the selection
675 */
676 void
677clip_start_selection(col, row, repeated_click)
678 int col;
679 int row;
680 int repeated_click;
681{
682 VimClipboard *cb = &clip_star;
683
684 if (cb->state == SELECT_DONE)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200685 clip_clear_selection(cb);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686
687 row = check_row(row);
688 col = check_col(col);
689#ifdef FEAT_MBYTE
690 col = mb_fix_col(col, row);
691#endif
692
693 cb->start.lnum = row;
694 cb->start.col = col;
695 cb->end = cb->start;
696 cb->origin_row = (short_u)cb->start.lnum;
697 cb->state = SELECT_IN_PROGRESS;
698
699 if (repeated_click)
700 {
701 if (++cb->mode > SELECT_MODE_LINE)
702 cb->mode = SELECT_MODE_CHAR;
703 }
704 else
705 cb->mode = SELECT_MODE_CHAR;
706
707#ifdef FEAT_GUI
708 /* clear the cursor until the selection is made */
709 if (gui.in_use)
710 gui_undraw_cursor();
711#endif
712
713 switch (cb->mode)
714 {
715 case SELECT_MODE_CHAR:
716 cb->origin_start_col = cb->start.col;
717 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
718 break;
719
720 case SELECT_MODE_WORD:
721 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
722 cb->origin_start_col = cb->word_start_col;
723 cb->origin_end_col = cb->word_end_col;
724
725 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
726 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
727 cb->start.col = cb->word_start_col;
728 cb->end.col = cb->word_end_col;
729 break;
730
731 case SELECT_MODE_LINE:
732 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
733 (int)Columns, CLIP_SET);
734 cb->start.col = 0;
735 cb->end.col = Columns;
736 break;
737 }
738
739 cb->prev = cb->start;
740
741#ifdef DEBUG_SELECTION
742 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
743#endif
744}
745
746/*
747 * Continue processing the selection
748 */
749 void
750clip_process_selection(button, col, row, repeated_click)
751 int button;
752 int col;
753 int row;
754 int_u repeated_click;
755{
756 VimClipboard *cb = &clip_star;
757 int diff;
758 int slen = 1; /* cursor shape width */
759
760 if (button == MOUSE_RELEASE)
761 {
762 /* Check to make sure we have something selected */
763 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
764 {
765#ifdef FEAT_GUI
766 if (gui.in_use)
767 gui_update_cursor(FALSE, FALSE);
768#endif
769 cb->state = SELECT_CLEARED;
770 return;
771 }
772
773#ifdef DEBUG_SELECTION
774 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
775 cb->start.col, cb->end.lnum, cb->end.col);
776#endif
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200777 if (clip_isautosel_star()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 || (
779#ifdef FEAT_GUI
780 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
781#endif
782 clip_autoselectml))
783 clip_copy_modeless_selection(FALSE);
784#ifdef FEAT_GUI
785 if (gui.in_use)
786 gui_update_cursor(FALSE, FALSE);
787#endif
788
789 cb->state = SELECT_DONE;
790 return;
791 }
792
793 row = check_row(row);
794 col = check_col(col);
795#ifdef FEAT_MBYTE
796 col = mb_fix_col(col, row);
797#endif
798
799 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
800 return;
801
802 /*
803 * When extending the selection with the right mouse button, swap the
804 * start and end if the position is before half the selection
805 */
806 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
807 {
808 /*
809 * If the click is before the start, or the click is inside the
810 * selection and the start is the closest side, set the origin to the
811 * end of the selection.
812 */
813 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
814 || (clip_compare_pos(row, col,
815 (int)cb->end.lnum, cb->end.col) < 0
816 && (((cb->start.lnum == cb->end.lnum
817 && cb->end.col - col > col - cb->start.col))
818 || ((diff = (cb->end.lnum - row) -
819 (row - cb->start.lnum)) > 0
820 || (diff == 0 && col < (int)(cb->start.col +
821 cb->end.col) / 2)))))
822 {
823 cb->origin_row = (short_u)cb->end.lnum;
824 cb->origin_start_col = cb->end.col - 1;
825 cb->origin_end_col = cb->end.col;
826 }
827 else
828 {
829 cb->origin_row = (short_u)cb->start.lnum;
830 cb->origin_start_col = cb->start.col;
831 cb->origin_end_col = cb->start.col;
832 }
833 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
834 cb->mode = SELECT_MODE_CHAR;
835 }
836
837 /* set state, for when using the right mouse button */
838 cb->state = SELECT_IN_PROGRESS;
839
840#ifdef DEBUG_SELECTION
841 printf("Selection extending to (%d,%d)\n", row, col);
842#endif
843
844 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
845 cb->mode = SELECT_MODE_CHAR;
846
847 switch (cb->mode)
848 {
849 case SELECT_MODE_CHAR:
850 /* If we're on a different line, find where the line ends */
851 if (row != cb->prev.lnum)
852 cb->word_end_col = clip_get_line_end(row);
853
854 /* See if we are before or after the origin of the selection */
855 if (clip_compare_pos(row, col, cb->origin_row,
856 cb->origin_start_col) >= 0)
857 {
858 if (col >= (int)cb->word_end_col)
859 clip_update_modeless_selection(cb, cb->origin_row,
860 cb->origin_start_col, row, (int)Columns);
861 else
862 {
863#ifdef FEAT_MBYTE
864 if (has_mbyte && mb_lefthalve(row, col))
865 slen = 2;
866#endif
867 clip_update_modeless_selection(cb, cb->origin_row,
868 cb->origin_start_col, row, col + slen);
869 }
870 }
871 else
872 {
873#ifdef FEAT_MBYTE
874 if (has_mbyte
875 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
876 slen = 2;
877#endif
878 if (col >= (int)cb->word_end_col)
879 clip_update_modeless_selection(cb, row, cb->word_end_col,
880 cb->origin_row, cb->origin_start_col + slen);
881 else
882 clip_update_modeless_selection(cb, row, col,
883 cb->origin_row, cb->origin_start_col + slen);
884 }
885 break;
886
887 case SELECT_MODE_WORD:
888 /* If we are still within the same word, do nothing */
889 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
890 && col < (int)cb->word_end_col && !repeated_click)
891 return;
892
893 /* Get new word boundaries */
894 clip_get_word_boundaries(cb, row, col);
895
896 /* Handle being after the origin point of selection */
897 if (clip_compare_pos(row, col, cb->origin_row,
898 cb->origin_start_col) >= 0)
899 clip_update_modeless_selection(cb, cb->origin_row,
900 cb->origin_start_col, row, cb->word_end_col);
901 else
902 clip_update_modeless_selection(cb, row, cb->word_start_col,
903 cb->origin_row, cb->origin_end_col);
904 break;
905
906 case SELECT_MODE_LINE:
907 if (row == cb->prev.lnum && !repeated_click)
908 return;
909
910 if (clip_compare_pos(row, col, cb->origin_row,
911 cb->origin_start_col) >= 0)
912 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
913 (int)Columns);
914 else
915 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
916 (int)Columns);
917 break;
918 }
919
920 cb->prev.lnum = row;
921 cb->prev.col = col;
922
923#ifdef DEBUG_SELECTION
924 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
925 cb->start.col, cb->end.lnum, cb->end.col);
926#endif
927}
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929# if defined(FEAT_GUI) || defined(PROTO)
930/*
931 * Redraw part of the selection if character at "row,col" is inside of it.
932 * Only used for the GUI.
933 */
934 void
935clip_may_redraw_selection(row, col, len)
936 int row, col;
937 int len;
938{
939 int start = col;
940 int end = col + len;
941
942 if (clip_star.state != SELECT_CLEARED
943 && row >= clip_star.start.lnum
944 && row <= clip_star.end.lnum)
945 {
946 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
947 start = clip_star.start.col;
948 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
949 end = clip_star.end.col;
950 if (end > start)
951 clip_invert_area(row, start, row, end, 0);
952 }
953}
954# endif
955
956/*
957 * Called from outside to clear selected region from the display
958 */
959 void
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200960clip_clear_selection(cbd)
961 VimClipboard *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200964 if (cbd->state == SELECT_CLEARED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 return;
966
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200967 clip_invert_area((int)cbd->start.lnum, cbd->start.col, (int)cbd->end.lnum,
968 cbd->end.col, CLIP_CLEAR);
969 cbd->state = SELECT_CLEARED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970}
971
972/*
973 * Clear the selection if any lines from "row1" to "row2" are inside of it.
974 */
975 void
976clip_may_clear_selection(row1, row2)
977 int row1, row2;
978{
979 if (clip_star.state == SELECT_DONE
980 && row2 >= clip_star.start.lnum
981 && row1 <= clip_star.end.lnum)
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200982 clip_clear_selection(&clip_star);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983}
984
985/*
986 * Called before the screen is scrolled up or down. Adjusts the line numbers
987 * of the selection. Call with big number when clearing the screen.
988 */
989 void
990clip_scroll_selection(rows)
991 int rows; /* negative for scroll down */
992{
993 int lnum;
994
995 if (clip_star.state == SELECT_CLEARED)
996 return;
997
998 lnum = clip_star.start.lnum - rows;
999 if (lnum <= 0)
1000 clip_star.start.lnum = 0;
1001 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1002 clip_star.state = SELECT_CLEARED;
1003 else
1004 clip_star.start.lnum = lnum;
1005
1006 lnum = clip_star.end.lnum - rows;
1007 if (lnum < 0) /* scrolled off of the screen */
1008 clip_star.state = SELECT_CLEARED;
1009 else if (lnum >= screen_Rows)
1010 clip_star.end.lnum = screen_Rows - 1;
1011 else
1012 clip_star.end.lnum = lnum;
1013}
1014
1015/*
1016 * Invert a region of the display between a starting and ending row and column
1017 * Values for "how":
1018 * CLIP_CLEAR: undo inversion
1019 * CLIP_SET: set inversion
1020 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1021 * 0: invert (GUI only).
1022 */
1023 static void
1024clip_invert_area(row1, col1, row2, col2, how)
1025 int row1;
1026 int col1;
1027 int row2;
1028 int col2;
1029 int how;
1030{
1031 int invert = FALSE;
1032
1033 if (how == CLIP_SET)
1034 invert = TRUE;
1035
1036 /* Swap the from and to positions so the from is always before */
1037 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1038 {
1039 int tmp_row, tmp_col;
1040
1041 tmp_row = row1;
1042 tmp_col = col1;
1043 row1 = row2;
1044 col1 = col2;
1045 row2 = tmp_row;
1046 col2 = tmp_col;
1047 }
1048 else if (how == CLIP_TOGGLE)
1049 invert = TRUE;
1050
1051 /* If all on the same line, do it the easy way */
1052 if (row1 == row2)
1053 {
1054 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1055 }
1056 else
1057 {
1058 /* Handle a piece of the first line */
1059 if (col1 > 0)
1060 {
1061 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1062 row1++;
1063 }
1064
1065 /* Handle a piece of the last line */
1066 if (col2 < Columns - 1)
1067 {
1068 clip_invert_rectangle(row2, 0, 1, col2, invert);
1069 row2--;
1070 }
1071
1072 /* Handle the rectangle thats left */
1073 if (row2 >= row1)
1074 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1075 invert);
1076 }
1077}
1078
1079/*
1080 * Invert or un-invert a rectangle of the screen.
1081 * "invert" is true if the result is inverted.
1082 */
1083 static void
1084clip_invert_rectangle(row, col, height, width, invert)
1085 int row;
1086 int col;
1087 int height;
1088 int width;
1089 int invert;
1090{
1091#ifdef FEAT_GUI
1092 if (gui.in_use)
1093 gui_mch_invert_rectangle(row, col, height, width);
1094 else
1095#endif
1096 screen_draw_rectangle(row, col, height, width, invert);
1097}
1098
1099/*
1100 * Copy the currently selected area into the '*' register so it will be
1101 * available for pasting.
1102 * When "both" is TRUE also copy to the '+' register.
1103 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 void
1105clip_copy_modeless_selection(both)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001106 int both UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107{
1108 char_u *buffer;
1109 char_u *bufp;
1110 int row;
1111 int start_col;
1112 int end_col;
1113 int line_end_col;
1114 int add_newline_flag = FALSE;
1115 int len;
1116#ifdef FEAT_MBYTE
1117 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118#endif
1119 int row1 = clip_star.start.lnum;
1120 int col1 = clip_star.start.col;
1121 int row2 = clip_star.end.lnum;
1122 int col2 = clip_star.end.col;
1123
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001124 /* Can't use ScreenLines unless initialized */
1125 if (ScreenLines == NULL)
1126 return;
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 /*
1129 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1130 */
1131 if (row1 > row2)
1132 {
1133 row = row1; row1 = row2; row2 = row;
1134 row = col1; col1 = col2; col2 = row;
1135 }
1136 else if (row1 == row2 && col1 > col2)
1137 {
1138 row = col1; col1 = col2; col2 = row;
1139 }
1140#ifdef FEAT_MBYTE
1141 /* correct starting point for being on right halve of double-wide char */
1142 p = ScreenLines + LineOffset[row1];
1143 if (enc_dbcs != 0)
1144 col1 -= (*mb_head_off)(p, p + col1);
1145 else if (enc_utf8 && p[col1] == 0)
1146 --col1;
1147#endif
1148
1149 /* Create a temporary buffer for storing the text */
1150 len = (row2 - row1 + 1) * Columns + 1;
1151#ifdef FEAT_MBYTE
1152 if (enc_dbcs != 0)
1153 len *= 2; /* max. 2 bytes per display cell */
1154 else if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001155 len *= MB_MAXBYTES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156#endif
1157 buffer = lalloc((long_u)len, TRUE);
1158 if (buffer == NULL) /* out of memory */
1159 return;
1160
1161 /* Process each row in the selection */
1162 for (bufp = buffer, row = row1; row <= row2; row++)
1163 {
1164 if (row == row1)
1165 start_col = col1;
1166 else
1167 start_col = 0;
1168
1169 if (row == row2)
1170 end_col = col2;
1171 else
1172 end_col = Columns;
1173
1174 line_end_col = clip_get_line_end(row);
1175
1176 /* See if we need to nuke some trailing whitespace */
1177 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1178 {
1179 /* Get rid of trailing whitespace */
1180 end_col = line_end_col;
1181 if (end_col < start_col)
1182 end_col = start_col;
1183
1184 /* If the last line extended to the end, add an extra newline */
1185 if (row == row2)
1186 add_newline_flag = TRUE;
1187 }
1188
1189 /* If after the first row, we need to always add a newline */
1190 if (row > row1 && !LineWraps[row - 1])
1191 *bufp++ = NL;
1192
1193 if (row < screen_Rows && end_col <= screen_Columns)
1194 {
1195#ifdef FEAT_MBYTE
1196 if (enc_dbcs != 0)
1197 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001198 int i;
1199
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 p = ScreenLines + LineOffset[row];
1201 for (i = start_col; i < end_col; ++i)
1202 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1203 {
1204 /* single-width double-byte char */
1205 *bufp++ = 0x8e;
1206 *bufp++ = ScreenLines2[LineOffset[row] + i];
1207 }
1208 else
1209 {
1210 *bufp++ = p[i];
1211 if (MB_BYTE2LEN(p[i]) == 2)
1212 *bufp++ = p[++i];
1213 }
1214 }
1215 else if (enc_utf8)
1216 {
1217 int off;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001218 int i;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001219 int ci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220
1221 off = LineOffset[row];
1222 for (i = start_col; i < end_col; ++i)
1223 {
1224 /* The base character is either in ScreenLinesUC[] or
1225 * ScreenLines[]. */
1226 if (ScreenLinesUC[off + i] == 0)
1227 *bufp++ = ScreenLines[off + i];
1228 else
1229 {
1230 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001231 for (ci = 0; ci < Screen_mco; ++ci)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001233 /* Add a composing character. */
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001234 if (ScreenLinesC[ci][off + i] == 0)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001235 break;
Bram Moolenaar34e9e2f2006-03-14 23:07:19 +00001236 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 bufp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 }
1239 }
1240 /* Skip right halve of double-wide character. */
1241 if (ScreenLines[off + i + 1] == 0)
1242 ++i;
1243 }
1244 }
1245 else
1246#endif
1247 {
1248 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1249 end_col - start_col);
1250 bufp += end_col - start_col;
1251 }
1252 }
1253 }
1254
1255 /* Add a newline at the end if the selection ended there */
1256 if (add_newline_flag)
1257 *bufp++ = NL;
1258
1259 /* First cleanup any old selection and become the owner. */
1260 clip_free_selection(&clip_star);
1261 clip_own_selection(&clip_star);
1262
1263 /* Yank the text into the '*' register. */
1264 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1265
1266 /* Make the register contents available to the outside world. */
1267 clip_gen_set_selection(&clip_star);
1268
1269#ifdef FEAT_X11
1270 if (both)
1271 {
1272 /* Do the same for the '+' register. */
1273 clip_free_selection(&clip_plus);
1274 clip_own_selection(&clip_plus);
1275 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1276 clip_gen_set_selection(&clip_plus);
1277 }
1278#endif
1279 vim_free(buffer);
1280}
1281
1282/*
1283 * Find the starting and ending positions of the word at the given row and
1284 * column. Only white-separated words are recognized here.
1285 */
1286#define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1287
1288 static void
1289clip_get_word_boundaries(cb, row, col)
1290 VimClipboard *cb;
1291 int row;
1292 int col;
1293{
1294 int start_class;
1295 int temp_col;
1296 char_u *p;
1297#ifdef FEAT_MBYTE
1298 int mboff;
1299#endif
1300
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001301 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 return;
1303
1304 p = ScreenLines + LineOffset[row];
1305#ifdef FEAT_MBYTE
1306 /* Correct for starting in the right halve of a double-wide char */
1307 if (enc_dbcs != 0)
1308 col -= dbcs_screen_head_off(p, p + col);
1309 else if (enc_utf8 && p[col] == 0)
1310 --col;
1311#endif
1312 start_class = CHAR_CLASS(p[col]);
1313
1314 temp_col = col;
1315 for ( ; temp_col > 0; temp_col--)
1316#ifdef FEAT_MBYTE
1317 if (enc_dbcs != 0
1318 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1319 temp_col -= mboff;
1320 else
1321#endif
1322 if (CHAR_CLASS(p[temp_col - 1]) != start_class
1323#ifdef FEAT_MBYTE
1324 && !(enc_utf8 && p[temp_col - 1] == 0)
1325#endif
1326 )
1327 break;
1328 cb->word_start_col = temp_col;
1329
1330 temp_col = col;
1331 for ( ; temp_col < screen_Columns; temp_col++)
1332#ifdef FEAT_MBYTE
1333 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1334 ++temp_col;
1335 else
1336#endif
1337 if (CHAR_CLASS(p[temp_col]) != start_class
1338#ifdef FEAT_MBYTE
1339 && !(enc_utf8 && p[temp_col] == 0)
1340#endif
1341 )
1342 break;
1343 cb->word_end_col = temp_col;
1344}
1345
1346/*
1347 * Find the column position for the last non-whitespace character on the given
1348 * line.
1349 */
1350 static int
1351clip_get_line_end(row)
1352 int row;
1353{
1354 int i;
1355
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001356 if (row >= screen_Rows || ScreenLines == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 return 0;
1358 for (i = screen_Columns; i > 0; i--)
1359 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1360 break;
1361 return i;
1362}
1363
1364/*
1365 * Update the currently selected region by adding and/or subtracting from the
1366 * beginning or end and inverting the changed area(s).
1367 */
1368 static void
1369clip_update_modeless_selection(cb, row1, col1, row2, col2)
1370 VimClipboard *cb;
1371 int row1;
1372 int col1;
1373 int row2;
1374 int col2;
1375{
1376 /* See if we changed at the beginning of the selection */
1377 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1378 {
1379 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1380 CLIP_TOGGLE);
1381 cb->start.lnum = row1;
1382 cb->start.col = col1;
1383 }
1384
1385 /* See if we changed at the end of the selection */
1386 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1387 {
1388 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1389 CLIP_TOGGLE);
1390 cb->end.lnum = row2;
1391 cb->end.col = col2;
1392 }
1393}
1394
1395 int
1396clip_gen_own_selection(cbd)
1397 VimClipboard *cbd;
1398{
1399#ifdef FEAT_XCLIPBOARD
1400# ifdef FEAT_GUI
1401 if (gui.in_use)
1402 return clip_mch_own_selection(cbd);
1403 else
1404# endif
1405 return clip_xterm_own_selection(cbd);
1406#else
1407 return clip_mch_own_selection(cbd);
1408#endif
1409}
1410
1411 void
1412clip_gen_lose_selection(cbd)
1413 VimClipboard *cbd;
1414{
1415#ifdef FEAT_XCLIPBOARD
1416# ifdef FEAT_GUI
1417 if (gui.in_use)
1418 clip_mch_lose_selection(cbd);
1419 else
1420# endif
1421 clip_xterm_lose_selection(cbd);
1422#else
1423 clip_mch_lose_selection(cbd);
1424#endif
1425}
1426
1427 void
1428clip_gen_set_selection(cbd)
1429 VimClipboard *cbd;
1430{
1431#ifdef FEAT_XCLIPBOARD
1432# ifdef FEAT_GUI
1433 if (gui.in_use)
1434 clip_mch_set_selection(cbd);
1435 else
1436# endif
1437 clip_xterm_set_selection(cbd);
1438#else
1439 clip_mch_set_selection(cbd);
1440#endif
1441}
1442
1443 void
1444clip_gen_request_selection(cbd)
1445 VimClipboard *cbd;
1446{
1447#ifdef FEAT_XCLIPBOARD
1448# ifdef FEAT_GUI
1449 if (gui.in_use)
1450 clip_mch_request_selection(cbd);
1451 else
1452# endif
1453 clip_xterm_request_selection(cbd);
1454#else
1455 clip_mch_request_selection(cbd);
1456#endif
1457}
1458
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001459 int
1460clip_gen_owner_exists(cbd)
Bram Moolenaar81851112013-04-12 12:27:30 +02001461 VimClipboard *cbd UNUSED;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001462{
1463#ifdef FEAT_XCLIPBOARD
1464# ifdef FEAT_GUI_GTK
1465 if (gui.in_use)
1466 return clip_gtk_owner_exists(cbd);
1467 else
1468# endif
1469 return clip_x11_owner_exists(cbd);
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001470#else
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001471 return TRUE;
Bram Moolenaar690ae9c2013-07-13 20:58:11 +02001472#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001473}
1474
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475#endif /* FEAT_CLIPBOARD */
1476
1477/*****************************************************************************
1478 * Functions that handle the input buffer.
1479 * This is used for any GUI version, and the unix terminal version.
1480 *
1481 * For Unix, the input characters are buffered to be able to check for a
1482 * CTRL-C. This should be done with signals, but I don't know how to do that
1483 * in a portable way for a tty in RAW mode.
1484 *
1485 * For the client-server code in the console the received keys are put in the
1486 * input buffer.
1487 */
1488
1489#if defined(USE_INPUT_BUF) || defined(PROTO)
1490
1491/*
1492 * Internal typeahead buffer. Includes extra space for long key code
1493 * descriptions which would otherwise overflow. The buffer is considered full
1494 * when only this extra space (or part of it) remains.
1495 */
1496#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
1497 || defined(FEAT_CLIENTSERVER)
1498 /*
1499 * Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
1500 * This requires a larger buffer...
1501 * (Madsen) Go with this for remote input as well ...
1502 */
1503# define INBUFLEN 4096
1504#else
1505# define INBUFLEN 250
1506#endif
1507
1508static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1509static int inbufcount = 0; /* number of chars in inbuf[] */
1510
1511/*
1512 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1513 * trash_input_buf() are functions for manipulating the input buffer. These
1514 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1515 */
1516
1517 int
1518vim_is_input_buf_full()
1519{
1520 return (inbufcount >= INBUFLEN);
1521}
1522
1523 int
1524vim_is_input_buf_empty()
1525{
1526 return (inbufcount == 0);
1527}
1528
1529#if defined(FEAT_OLE) || defined(PROTO)
1530 int
1531vim_free_in_input_buf()
1532{
1533 return (INBUFLEN - inbufcount);
1534}
1535#endif
1536
Bram Moolenaar241a8aa2005-12-06 20:04:44 +00001537#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 int
1539vim_used_in_input_buf()
1540{
1541 return inbufcount;
1542}
1543#endif
1544
1545#if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO)
1546/*
1547 * Return the current contents of the input buffer and make it empty.
1548 * The returned pointer must be passed to set_input_buf() later.
1549 */
1550 char_u *
1551get_input_buf()
1552{
1553 garray_T *gap;
1554
1555 /* We use a growarray to store the data pointer and the length. */
1556 gap = (garray_T *)alloc((unsigned)sizeof(garray_T));
1557 if (gap != NULL)
1558 {
1559 /* Add one to avoid a zero size. */
1560 gap->ga_data = alloc((unsigned)inbufcount + 1);
1561 if (gap->ga_data != NULL)
1562 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1563 gap->ga_len = inbufcount;
1564 }
1565 trash_input_buf();
1566 return (char_u *)gap;
1567}
1568
1569/*
1570 * Restore the input buffer with a pointer returned from get_input_buf().
1571 * The allocated memory is freed, this only works once!
1572 */
1573 void
1574set_input_buf(p)
1575 char_u *p;
1576{
1577 garray_T *gap = (garray_T *)p;
1578
1579 if (gap != NULL)
1580 {
1581 if (gap->ga_data != NULL)
1582 {
1583 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1584 inbufcount = gap->ga_len;
1585 vim_free(gap->ga_data);
1586 }
1587 vim_free(gap);
1588 }
1589}
1590#endif
1591
Bram Moolenaar446cb832008-06-24 21:56:24 +00001592#if defined(FEAT_GUI) \
1593 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 || defined(FEAT_XCLIPBOARD) || defined(VMS) \
Bram Moolenaarf52c7252006-02-10 23:23:57 +00001595 || defined(FEAT_SNIFF) || defined(FEAT_CLIENTSERVER) \
Bram Moolenaarf52c7252006-02-10 23:23:57 +00001596 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597/*
1598 * Add the given bytes to the input buffer
1599 * Special keys start with CSI. A real CSI must have been translated to
1600 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1601 */
1602 void
1603add_to_input_buf(s, len)
1604 char_u *s;
1605 int len;
1606{
1607 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1608 return; /* Shouldn't ever happen! */
1609
1610#ifdef FEAT_HANGULIN
1611 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1612 if ((len = hangul_input_process(s, len)) == 0)
1613 return;
1614#endif
1615
1616 while (len--)
1617 inbuf[inbufcount++] = *s++;
1618}
1619#endif
1620
Bram Moolenaar70c2a632007-08-15 18:08:50 +00001621#if ((defined(FEAT_XIM) || defined(FEAT_DND)) && defined(FEAT_GUI_GTK)) \
1622 || defined(FEAT_GUI_MSWIN) \
1623 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 || (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \
Bram Moolenaarf52c7252006-02-10 23:23:57 +00001625 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
1626 || defined(FEAT_MENU))) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 || defined(PROTO)
1628/*
1629 * Add "str[len]" to the input buffer while escaping CSI bytes.
1630 */
1631 void
1632add_to_input_buf_csi(char_u *str, int len)
1633{
1634 int i;
1635 char_u buf[2];
1636
1637 for (i = 0; i < len; ++i)
1638 {
1639 add_to_input_buf(str + i, 1);
1640 if (str[i] == CSI)
1641 {
1642 /* Turn CSI into K_CSI. */
1643 buf[0] = KS_EXTRA;
1644 buf[1] = (int)KE_CSI;
1645 add_to_input_buf(buf, 2);
1646 }
1647 }
1648}
1649#endif
1650
1651#if defined(FEAT_HANGULIN) || defined(PROTO)
1652 void
Bram Moolenaard44347f2011-06-19 01:14:29 +02001653push_raw_key(s, len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 char_u *s;
1655 int len;
1656{
1657 while (len--)
1658 inbuf[inbufcount++] = *s++;
1659}
1660#endif
1661
1662#if defined(FEAT_GUI) || defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) \
1663 || defined(PROTO)
1664/* Remove everything from the input buffer. Called when ^C is found */
1665 void
1666trash_input_buf()
1667{
1668 inbufcount = 0;
1669}
1670#endif
1671
1672/*
1673 * Read as much data from the input buffer as possible up to maxlen, and store
1674 * it in buf.
1675 * Note: this function used to be Read() in unix.c
1676 */
1677 int
1678read_from_input_buf(buf, maxlen)
1679 char_u *buf;
1680 long maxlen;
1681{
1682 if (inbufcount == 0) /* if the buffer is empty, fill it */
1683 fill_input_buf(TRUE);
1684 if (maxlen > inbufcount)
1685 maxlen = inbufcount;
1686 mch_memmove(buf, inbuf, (size_t)maxlen);
1687 inbufcount -= maxlen;
1688 if (inbufcount)
1689 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
1690 return (int)maxlen;
1691}
1692
1693 void
1694fill_input_buf(exit_on_error)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001695 int exit_on_error UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696{
1697#if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX)
1698 int len;
1699 int try;
1700 static int did_read_something = FALSE;
1701# ifdef FEAT_MBYTE
1702 static char_u *rest = NULL; /* unconverted rest of previous read */
1703 static int restlen = 0;
1704 int unconverted;
1705# endif
1706#endif
1707
1708#ifdef FEAT_GUI
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001709 if (gui.in_use
1710# ifdef NO_CONSOLE_INPUT
1711 /* Don't use the GUI input when the window hasn't been opened yet.
1712 * We get here from ui_inchar() when we should try reading from stdin. */
1713 && !no_console_input()
1714# endif
1715 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 {
1717 gui_mch_update();
1718 return;
1719 }
1720#endif
1721#if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX)
1722 if (vim_is_input_buf_full())
1723 return;
1724 /*
1725 * Fill_input_buf() is only called when we really need a character.
1726 * If we can't get any, but there is some in the buffer, just return.
1727 * If we can't get any, and there isn't any in the buffer, we give up and
1728 * exit Vim.
1729 */
1730# ifdef __BEOS__
1731 /*
1732 * On the BeBox version (for now), all input is secretly performed within
1733 * beos_select() which is called from RealWaitForChar().
1734 */
1735 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
1736 ;
1737 len = inbufcount;
1738 inbufcount = 0;
1739# else
1740
1741# ifdef FEAT_SNIFF
1742 if (sniff_request_waiting)
1743 {
1744 add_to_input_buf((char_u *)"\233sniff",6); /* results in K_SNIFF */
1745 sniff_request_waiting = 0;
1746 want_sniff_request = 0;
1747 return;
1748 }
1749# endif
1750
1751# ifdef FEAT_MBYTE
1752 if (rest != NULL)
1753 {
1754 /* Use remainder of previous call, starts with an invalid character
1755 * that may become valid when reading more. */
1756 if (restlen > INBUFLEN - inbufcount)
1757 unconverted = INBUFLEN - inbufcount;
1758 else
1759 unconverted = restlen;
1760 mch_memmove(inbuf + inbufcount, rest, unconverted);
1761 if (unconverted == restlen)
1762 {
1763 vim_free(rest);
1764 rest = NULL;
1765 }
1766 else
1767 {
1768 restlen -= unconverted;
1769 mch_memmove(rest, rest + unconverted, restlen);
1770 }
1771 inbufcount += unconverted;
1772 }
1773 else
1774 unconverted = 0;
1775#endif
1776
1777 len = 0; /* to avoid gcc warning */
1778 for (try = 0; try < 100; ++try)
1779 {
1780# ifdef VMS
1781 len = vms_read(
1782# else
1783 len = read(read_cmd_fd,
1784# endif
1785 (char *)inbuf + inbufcount, (size_t)((INBUFLEN - inbufcount)
1786# ifdef FEAT_MBYTE
1787 / input_conv.vc_factor
1788# endif
1789 ));
1790# if 0
1791 ) /* avoid syntax highlight error */
1792# endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001793
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 if (len > 0 || got_int)
1795 break;
1796 /*
1797 * If reading stdin results in an error, continue reading stderr.
1798 * This helps when using "foo | xargs vim".
1799 */
1800 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
1801 {
1802 int m = cur_tmode;
1803
1804 /* We probably set the wrong file descriptor to raw mode. Switch
1805 * back to cooked mode, use another descriptor and set the mode to
1806 * what it was. */
1807 settmode(TMODE_COOK);
1808#ifdef HAVE_DUP
1809 /* Use stderr for stdin, also works for shell commands. */
1810 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001811 ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812#else
1813 read_cmd_fd = 2; /* read from stderr instead of stdin */
1814#endif
1815 settmode(m);
1816 }
1817 if (!exit_on_error)
1818 return;
1819 }
1820# endif
1821 if (len <= 0 && !got_int)
1822 read_error_exit();
1823 if (len > 0)
1824 did_read_something = TRUE;
1825 if (got_int)
1826 {
1827 /* Interrupted, pretend a CTRL-C was typed. */
1828 inbuf[0] = 3;
1829 inbufcount = 1;
1830 }
1831 else
1832 {
1833# ifdef FEAT_MBYTE
1834 /*
1835 * May perform conversion on the input characters.
1836 * Include the unconverted rest of the previous call.
1837 * If there is an incomplete char at the end it is kept for the next
1838 * time, reading more bytes should make conversion possible.
1839 * Don't do this in the unlikely event that the input buffer is too
1840 * small ("rest" still contains more bytes).
1841 */
1842 if (input_conv.vc_type != CONV_NONE)
1843 {
1844 inbufcount -= unconverted;
1845 len = convert_input_safe(inbuf + inbufcount,
1846 len + unconverted, INBUFLEN - inbufcount,
1847 rest == NULL ? &rest : NULL, &restlen);
1848 }
1849# endif
1850 while (len-- > 0)
1851 {
1852 /*
1853 * if a CTRL-C was typed, remove it from the buffer and set got_int
1854 */
1855 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
1856 {
1857 /* remove everything typed before the CTRL-C */
1858 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
1859 inbufcount = 0;
1860 got_int = TRUE;
1861 }
1862 ++inbufcount;
1863 }
1864 }
1865#endif /* UNIX or OS2 or VMS*/
1866}
1867#endif /* defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS) */
1868
1869/*
1870 * Exit because of an input read error.
1871 */
1872 void
1873read_error_exit()
1874{
1875 if (silent_mode) /* Normal way to exit for "ex -s" */
1876 getout(0);
1877 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
1878 preserve_exit();
1879}
1880
1881#if defined(CURSOR_SHAPE) || defined(PROTO)
1882/*
1883 * May update the shape of the cursor.
1884 */
1885 void
1886ui_cursor_shape()
1887{
1888# ifdef FEAT_GUI
1889 if (gui.in_use)
1890 gui_update_cursor_later();
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001891 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892# endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001893 term_cursor_shape();
1894
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895# ifdef MCH_CURSOR_SHAPE
1896 mch_update_cursor();
1897# endif
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001898
1899# ifdef FEAT_CONCEAL
Bram Moolenaar8e469272010-07-28 19:38:16 +02001900 conceal_check_cursur_line();
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001901# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902}
1903#endif
1904
1905#if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
Bram Moolenaaraf51e662008-07-14 19:48:05 +00001906 || defined(FEAT_MBYTE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907/*
1908 * Check bounds for column number
1909 */
1910 int
1911check_col(col)
1912 int col;
1913{
1914 if (col < 0)
1915 return 0;
1916 if (col >= (int)screen_Columns)
1917 return (int)screen_Columns - 1;
1918 return col;
1919}
1920
1921/*
1922 * Check bounds for row number
1923 */
1924 int
1925check_row(row)
1926 int row;
1927{
1928 if (row < 0)
1929 return 0;
1930 if (row >= (int)screen_Rows)
1931 return (int)screen_Rows - 1;
1932 return row;
1933}
1934#endif
1935
1936/*
1937 * Stuff for the X clipboard. Shared between VMS and Unix.
1938 */
1939
1940#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
1941# include <X11/Xatom.h>
1942# include <X11/Intrinsic.h>
1943
1944/*
1945 * Open the application context (if it hasn't been opened yet).
1946 * Used for Motif and Athena GUI and the xterm clipboard.
1947 */
1948 void
1949open_app_context()
1950{
1951 if (app_context == NULL)
1952 {
1953 XtToolkitInitialize();
1954 app_context = XtCreateApplicationContext();
1955 }
1956}
1957
1958static Atom vim_atom; /* Vim's own special selection format */
1959#ifdef FEAT_MBYTE
1960static Atom vimenc_atom; /* Vim's extended selection format */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01001961static Atom utf8_atom;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962#endif
1963static Atom compound_text_atom;
1964static Atom text_atom;
1965static Atom targets_atom;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001966static Atom timestamp_atom; /* Used to get a timestamp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967
1968 void
1969x11_setup_atoms(dpy)
1970 Display *dpy;
1971{
1972 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
1973#ifdef FEAT_MBYTE
1974 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01001975 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976#endif
1977 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
1978 text_atom = XInternAtom(dpy, "TEXT", False);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001979 targets_atom = XInternAtom(dpy, "TARGETS", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 clip_star.sel_atom = XA_PRIMARY;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001981 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
1982 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983}
1984
1985/*
1986 * X Selection stuff, for cutting and pasting text to other windows.
1987 */
1988
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001989static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *));
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001990static void clip_x11_lose_ownership_cb __ARGS((Widget, Atom *));
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001991static void clip_x11_timestamp_cb __ARGS((Widget w, XtPointer n, XEvent *event, Boolean *cont));
Bram Moolenaar62b42182010-09-21 22:09:37 +02001992static void clip_x11_request_selection_cb __ARGS((Widget, XtPointer, Atom *, Atom *, XtPointer, long_u *, int *));
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001993
1994/*
1995 * Property callback to get a timestamp for XtOwnSelection.
1996 */
1997 static void
1998clip_x11_timestamp_cb(w, n, event, cont)
1999 Widget w;
2000 XtPointer n UNUSED;
2001 XEvent *event;
2002 Boolean *cont UNUSED;
2003{
2004 Atom actual_type;
2005 int format;
2006 unsigned long nitems, bytes_after;
2007 unsigned char *prop=NULL;
2008 XPropertyEvent *xproperty=&event->xproperty;
2009
2010 /* Must be a property notify, state can't be Delete (True), has to be
2011 * one of the supported selection types. */
2012 if (event->type != PropertyNotify || xproperty->state
2013 || (xproperty->atom != clip_star.sel_atom
2014 && xproperty->atom != clip_plus.sel_atom))
2015 return;
2016
2017 if (XGetWindowProperty(xproperty->display, xproperty->window,
2018 xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format,
2019 &nitems, &bytes_after, &prop))
2020 return;
2021
2022 if (prop)
2023 XFree(prop);
2024
2025 /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */
2026 if (actual_type != timestamp_atom || format != 32)
2027 return;
2028
2029 /* Get the selection, using the event timestamp. */
Bram Moolenaar62b42182010-09-21 22:09:37 +02002030 if (XtOwnSelection(w, xproperty->atom, xproperty->time,
2031 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
2032 NULL) == OK)
2033 {
2034 /* Set the "owned" flag now, there may have been a call to
2035 * lose_ownership_cb in between. */
2036 if (xproperty->atom == clip_plus.sel_atom)
2037 clip_plus.owned = TRUE;
2038 else
2039 clip_star.owned = TRUE;
2040 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002041}
2042
2043 void
2044x11_setup_selection(w)
2045 Widget w;
2046{
2047 XtAddEventHandler(w, PropertyChangeMask, False,
2048 /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL);
2049}
2050
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 static void
2052clip_x11_request_selection_cb(w, success, sel_atom, type, value, length,
2053 format)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002054 Widget w UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 XtPointer success;
2056 Atom *sel_atom;
2057 Atom *type;
2058 XtPointer value;
2059 long_u *length;
2060 int *format;
2061{
Bram Moolenaard44347f2011-06-19 01:14:29 +02002062 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 long_u len;
2064 char_u *p;
2065 char **text_list = NULL;
2066 VimClipboard *cbd;
2067#ifdef FEAT_MBYTE
2068 char_u *tmpbuf = NULL;
2069#endif
2070
2071 if (*sel_atom == clip_plus.sel_atom)
2072 cbd = &clip_plus;
2073 else
2074 cbd = &clip_star;
2075
2076 if (value == NULL || *length == 0)
2077 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002078 clip_free_selection(cbd); /* nothing received, clear register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 *(int *)success = FALSE;
2080 return;
2081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 p = (char_u *)value;
2083 len = *length;
2084 if (*type == vim_atom)
2085 {
2086 motion_type = *p++;
2087 len--;
2088 }
2089
2090#ifdef FEAT_MBYTE
2091 else if (*type == vimenc_atom)
2092 {
2093 char_u *enc;
2094 vimconv_T conv;
2095 int convlen;
2096
2097 motion_type = *p++;
2098 --len;
2099
2100 enc = p;
2101 p += STRLEN(p) + 1;
2102 len -= p - enc;
2103
2104 /* If the encoding of the text is different from 'encoding', attempt
2105 * converting it. */
2106 conv.vc_type = CONV_NONE;
2107 convert_setup(&conv, enc, p_enc);
2108 if (conv.vc_type != CONV_NONE)
2109 {
2110 convlen = len; /* Need to use an int here. */
2111 tmpbuf = string_convert(&conv, p, &convlen);
2112 len = convlen;
2113 if (tmpbuf != NULL)
2114 p = tmpbuf;
2115 convert_setup(&conv, NULL, NULL);
2116 }
2117 }
2118#endif
2119
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002120 else if (*type == compound_text_atom
2121#ifdef FEAT_MBYTE
2122 || *type == utf8_atom
2123#endif
2124 || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125#ifdef FEAT_MBYTE
2126 enc_dbcs != 0 &&
2127#endif
2128 *type == text_atom))
2129 {
2130 XTextProperty text_prop;
2131 int n_text = 0;
2132 int status;
2133
2134 text_prop.value = (unsigned char *)value;
2135 text_prop.encoding = *type;
2136 text_prop.format = *format;
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002137 text_prop.nitems = len;
Bram Moolenaar81851112013-04-12 12:27:30 +02002138#if defined(FEAT_MBYTE) && defined(X_HAVE_UTF8_STRING)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01002139 if (*type == utf8_atom)
2140 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop,
2141 &text_list, &n_text);
2142 else
2143#endif
2144 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 &text_list, &n_text);
2146 if (status != Success || n_text < 1)
2147 {
2148 *(int *)success = FALSE;
2149 return;
2150 }
2151 p = (char_u *)text_list[0];
2152 len = STRLEN(p);
2153 }
2154 clip_yank_selection(motion_type, p, (long)len, cbd);
2155
2156 if (text_list != NULL)
2157 XFreeStringList(text_list);
2158#ifdef FEAT_MBYTE
2159 vim_free(tmpbuf);
2160#endif
2161 XtFree((char *)value);
2162 *(int *)success = TRUE;
2163}
2164
2165 void
2166clip_x11_request_selection(myShell, dpy, cbd)
2167 Widget myShell;
2168 Display *dpy;
2169 VimClipboard *cbd;
2170{
2171 XEvent event;
2172 Atom type;
2173 static int success;
2174 int i;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002175 time_t start_time;
2176 int timed_out = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178 for (i =
2179#ifdef FEAT_MBYTE
2180 0
2181#else
2182 1
2183#endif
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002184 ; i < 6; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 {
2186 switch (i)
2187 {
2188#ifdef FEAT_MBYTE
2189 case 0: type = vimenc_atom; break;
2190#endif
2191 case 1: type = vim_atom; break;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002192#ifdef FEAT_MBYTE
2193 case 2: type = utf8_atom; break;
2194#endif
2195 case 3: type = compound_text_atom; break;
2196 case 4: type = text_atom; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 default: type = XA_STRING;
2198 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002199#ifdef FEAT_MBYTE
Bram Moolenaar81851112013-04-12 12:27:30 +02002200 if (type == utf8_atom
2201# if defined(X_HAVE_UTF8_STRING)
2202 && !enc_utf8
2203# endif
2204 )
2205 /* Only request utf-8 when 'encoding' is utf8 and
2206 * Xutf8TextPropertyToTextList is available. */
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002207 continue;
2208#endif
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002209 success = MAYBE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2211 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2212
2213 /* Make sure the request for the selection goes out before waiting for
2214 * a response. */
2215 XFlush(dpy);
2216
2217 /*
2218 * Wait for result of selection request, otherwise if we type more
2219 * characters, then they will appear before the one that requested the
2220 * paste! Don't worry, we will catch up with any other events later.
2221 */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002222 start_time = time(NULL);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002223 while (success == MAYBE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002225 if (XCheckTypedEvent(dpy, SelectionNotify, &event)
2226 || XCheckTypedEvent(dpy, SelectionRequest, &event)
2227 || XCheckTypedEvent(dpy, PropertyNotify, &event))
Bram Moolenaar89417b92008-09-07 19:48:53 +00002228 {
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002229 /* This is where clip_x11_request_selection_cb() should be
2230 * called. It may actually happen a bit later, so we loop
2231 * until "success" changes.
2232 * We may get a SelectionRequest here and if we don't handle
2233 * it we hang. KDE klipper does this, for example.
2234 * We need to handle a PropertyNotify for large selections. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002235 XtDispatchEvent(&event);
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002236 continue;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002237 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238
Bram Moolenaar89417b92008-09-07 19:48:53 +00002239 /* Time out after 2 to 3 seconds to avoid that we hang when the
2240 * other process doesn't respond. Note that the SelectionNotify
2241 * event may still come later when the selection owner comes back
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002242 * to life and the text gets inserted unexpectedly. Don't know
2243 * why that happens or how to avoid that :-(. */
Bram Moolenaar89417b92008-09-07 19:48:53 +00002244 if (time(NULL) > start_time + 2)
2245 {
2246 timed_out = TRUE;
2247 break;
2248 }
2249
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 /* Do we need this? Probably not. */
2251 XSync(dpy, False);
2252
Bram Moolenaar89417b92008-09-07 19:48:53 +00002253 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2254 ui_delay(1L, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 }
2256
Bram Moolenaar24d92ce2008-09-14 13:58:34 +00002257 if (success == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 return;
Bram Moolenaar89417b92008-09-07 19:48:53 +00002259
2260 /* don't do a retry with another type after timing out, otherwise we
2261 * hang for 15 seconds. */
2262 if (timed_out)
2263 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 }
2265
2266 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002267 yank_cut_buffer0(dpy, cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268}
2269
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 static Boolean
2271clip_x11_convert_selection_cb(w, sel_atom, target, type, value, length, format)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002272 Widget w UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 Atom *sel_atom;
2274 Atom *target;
2275 Atom *type;
2276 XtPointer *value;
2277 long_u *length;
2278 int *format;
2279{
2280 char_u *string;
2281 char_u *result;
2282 int motion_type;
2283 VimClipboard *cbd;
2284 int i;
2285
2286 if (*sel_atom == clip_plus.sel_atom)
2287 cbd = &clip_plus;
2288 else
2289 cbd = &clip_star;
2290
2291 if (!cbd->owned)
2292 return False; /* Shouldn't ever happen */
2293
2294 /* requestor wants to know what target types we support */
2295 if (*target == targets_atom)
2296 {
2297 Atom *array;
2298
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002299 if ((array = (Atom *)XtMalloc((unsigned)(sizeof(Atom) * 7))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 return False;
2301 *value = (XtPointer)array;
2302 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 array[i++] = targets_atom;
2304#ifdef FEAT_MBYTE
2305 array[i++] = vimenc_atom;
2306#endif
2307 array[i++] = vim_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002308#ifdef FEAT_MBYTE
2309 if (enc_utf8)
2310 array[i++] = utf8_atom;
2311#endif
2312 array[i++] = XA_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 array[i++] = text_atom;
2314 array[i++] = compound_text_atom;
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002315
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 *type = XA_ATOM;
2317 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2318 * crashes on 64 bit machines. (Peter Derr) */
2319 *format = 32;
2320 *length = i;
2321 return True;
2322 }
2323
2324 if ( *target != XA_STRING
2325#ifdef FEAT_MBYTE
2326 && *target != vimenc_atom
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002327 && *target != utf8_atom
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328#endif
2329 && *target != vim_atom
2330 && *target != text_atom
2331 && *target != compound_text_atom)
2332 return False;
2333
2334 clip_get_selection(cbd);
2335 motion_type = clip_convert_selection(&string, length, cbd);
2336 if (motion_type < 0)
2337 return False;
2338
2339 /* For our own format, the first byte contains the motion type */
2340 if (*target == vim_atom)
2341 (*length)++;
2342
2343#ifdef FEAT_MBYTE
2344 /* Our own format with encoding: motion 'encoding' NUL text */
2345 if (*target == vimenc_atom)
2346 *length += STRLEN(p_enc) + 2;
2347#endif
2348
2349 *value = XtMalloc((Cardinal)*length);
2350 result = (char_u *)*value;
2351 if (result == NULL)
2352 {
2353 vim_free(string);
2354 return False;
2355 }
2356
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002357 if (*target == XA_STRING
2358#ifdef FEAT_MBYTE
2359 || (*target == utf8_atom && enc_utf8)
2360#endif
2361 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 {
2363 mch_memmove(result, string, (size_t)(*length));
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002364 *type = *target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 }
Bram Moolenaarefcb54b2012-02-12 01:35:10 +01002366 else if (*target == compound_text_atom || *target == text_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 {
2368 XTextProperty text_prop;
2369 char *string_nt = (char *)alloc((unsigned)*length + 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002370 int conv_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371
2372 /* create NUL terminated string which XmbTextListToTextProperty wants */
2373 mch_memmove(string_nt, string, (size_t)*length);
2374 string_nt[*length] = NUL;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002375 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt,
2376 1, XCompoundTextStyle, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 vim_free(string_nt);
2378 XtFree(*value); /* replace with COMPOUND text */
Bram Moolenaarfe17e762013-06-29 14:17:02 +02002379 if (conv_result != Success)
2380 {
2381 vim_free(string);
2382 return False;
2383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 *value = (XtPointer)(text_prop.value); /* from plain text */
2385 *length = text_prop.nitems;
2386 *type = compound_text_atom;
2387 }
2388
2389#ifdef FEAT_MBYTE
2390 else if (*target == vimenc_atom)
2391 {
2392 int l = STRLEN(p_enc);
2393
2394 result[0] = motion_type;
2395 STRCPY(result + 1, p_enc);
2396 mch_memmove(result + l + 2, string, (size_t)(*length - l - 2));
2397 *type = vimenc_atom;
2398 }
2399#endif
2400
2401 else
2402 {
2403 result[0] = motion_type;
2404 mch_memmove(result + 1, string, (size_t)(*length - 1));
2405 *type = vim_atom;
2406 }
2407 *format = 8; /* 8 bits per char */
2408 vim_free(string);
2409 return True;
2410}
2411
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 static void
2413clip_x11_lose_ownership_cb(w, sel_atom)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002414 Widget w UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 Atom *sel_atom;
2416{
2417 if (*sel_atom == clip_plus.sel_atom)
2418 clip_lose_selection(&clip_plus);
2419 else
2420 clip_lose_selection(&clip_star);
2421}
2422
2423 void
2424clip_x11_lose_selection(myShell, cbd)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002425 Widget myShell;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 VimClipboard *cbd;
2427{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002428 XtDisownSelection(myShell, cbd->sel_atom,
2429 XtLastTimestampProcessed(XtDisplay(myShell)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430}
2431
2432 int
2433clip_x11_own_selection(myShell, cbd)
Bram Moolenaar62b42182010-09-21 22:09:37 +02002434 Widget myShell;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 VimClipboard *cbd;
2436{
Bram Moolenaar62b42182010-09-21 22:09:37 +02002437 /* When using the GUI we have proper timestamps, use the one of the last
2438 * event. When in the console we don't get events (the terminal gets
2439 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will
2440 * be called with the current timestamp. */
2441#ifdef FEAT_GUI
2442 if (gui.in_use)
2443 {
2444 if (XtOwnSelection(myShell, cbd->sel_atom,
2445 XtLastTimestampProcessed(XtDisplay(myShell)),
2446 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
2447 NULL) == False)
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002448 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002449 }
2450 else
2451#endif
2452 {
2453 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell),
2454 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0))
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +01002455 return FAIL;
Bram Moolenaar62b42182010-09-21 22:09:37 +02002456 }
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002457 /* Flush is required in a terminal as nothing else is doing it. */
2458 XFlush(XtDisplay(myShell));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 return OK;
2460}
2461
2462/*
2463 * Send the current selection to the clipboard. Do nothing for X because we
2464 * will fill in the selection only when requested by another app.
2465 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 void
2467clip_x11_set_selection(cbd)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002468 VimClipboard *cbd UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469{
2470}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01002471
2472 int
2473clip_x11_owner_exists(cbd)
2474 VimClipboard *cbd;
2475{
2476 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None;
2477}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478#endif
2479
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002480#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \
2481 || defined(FEAT_GUI_GTK) || defined(PROTO)
2482/*
2483 * Get the contents of the X CUT_BUFFER0 and put it in "cbd".
2484 */
2485 void
2486yank_cut_buffer0(dpy, cbd)
2487 Display *dpy;
2488 VimClipboard *cbd;
2489{
2490 int nbytes = 0;
2491 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2492
2493 if (nbytes > 0)
2494 {
2495#ifdef FEAT_MBYTE
2496 int done = FALSE;
2497
2498 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when
2499 * using a multi-byte encoding. Conversion between two 8-bit
2500 * character sets usually fails and the text might actually be in
2501 * 'enc' anyway. */
2502 if (has_mbyte)
2503 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002504 char_u *conv_buf;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00002505 vimconv_T vc;
2506
2507 vc.vc_type = CONV_NONE;
2508 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK)
2509 {
2510 conv_buf = string_convert(&vc, buffer, &nbytes);
2511 if (conv_buf != NULL)
2512 {
2513 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd);
2514 vim_free(conv_buf);
2515 done = TRUE;
2516 }
2517 convert_setup(&vc, NULL, NULL);
2518 }
2519 }
2520 if (!done) /* use the text without conversion */
2521#endif
2522 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2523 XFree((void *)buffer);
2524 if (p_verbose > 0)
2525 {
2526 verbose_enter();
2527 verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
2528 verbose_leave();
2529 }
2530 }
2531}
2532#endif
2533
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534#if defined(FEAT_MOUSE) || defined(PROTO)
2535
2536/*
2537 * Move the cursor to the specified row and column on the screen.
Bram Moolenaar49325942007-05-10 19:19:59 +00002538 * Change current window if necessary. Returns an integer with the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2540 *
2541 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2542 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2543 *
2544 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2545 * if the mouse is outside the window then the text will scroll, or if the
2546 * mouse was previously on a status line, then the status line may be dragged.
2547 *
2548 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2549 * cursor is moved unless the cursor was on a status line.
2550 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2551 * IN_SEP_LINE depending on where the cursor was clicked.
2552 *
2553 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2554 * the mouse is on the status line of the same window.
2555 *
2556 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2557 * the last call.
2558 *
2559 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2560 * remembered.
2561 */
2562 int
2563jump_to_mouse(flags, inclusive, which_button)
2564 int flags;
2565 int *inclusive; /* used for inclusive operator, can be NULL */
2566 int which_button; /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
2567{
2568 static int on_status_line = 0; /* #lines below bottom of window */
2569#ifdef FEAT_VERTSPLIT
2570 static int on_sep_line = 0; /* on separator right of window */
2571#endif
2572 static int prev_row = -1;
2573 static int prev_col = -1;
2574 static win_T *dragwin = NULL; /* window being dragged */
2575 static int did_drag = FALSE; /* drag was noticed */
2576
2577 win_T *wp, *old_curwin;
2578 pos_T old_cursor;
2579 int count;
2580 int first;
2581 int row = mouse_row;
2582 int col = mouse_col;
2583#ifdef FEAT_FOLDING
2584 int mouse_char;
2585#endif
2586
2587 mouse_past_bottom = FALSE;
2588 mouse_past_eol = FALSE;
2589
2590 if (flags & MOUSE_RELEASED)
2591 {
2592 /* On button release we may change window focus if positioned on a
2593 * status line and no dragging happened. */
2594 if (dragwin != NULL && !did_drag)
2595 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2596 dragwin = NULL;
2597 did_drag = FALSE;
2598 }
2599
2600 if ((flags & MOUSE_DID_MOVE)
2601 && prev_row == mouse_row
2602 && prev_col == mouse_col)
2603 {
2604retnomove:
Bram Moolenaar49325942007-05-10 19:19:59 +00002605 /* before moving the cursor for a left click which is NOT in a status
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 * line, stop Visual mode */
2607 if (on_status_line)
2608 return IN_STATUS_LINE;
2609#ifdef FEAT_VERTSPLIT
2610 if (on_sep_line)
2611 return IN_SEP_LINE;
2612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 if (flags & MOUSE_MAY_STOP_VIS)
2614 {
2615 end_visual_mode();
2616 redraw_curbuf_later(INVERTED); /* delete the inversion */
2617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2619 /* Continue a modeless selection in another window. */
2620 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2621 return IN_OTHER_WIN;
2622#endif
2623 return IN_BUFFER;
2624 }
2625
2626 prev_row = mouse_row;
2627 prev_col = mouse_col;
2628
2629 if (flags & MOUSE_SETPOS)
2630 goto retnomove; /* ugly goto... */
2631
2632#ifdef FEAT_FOLDING
2633 /* Remember the character under the mouse, it might be a '-' or '+' in the
2634 * fold column. */
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00002635 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2636 && ScreenLines != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 mouse_char = ScreenLines[LineOffset[row] + col];
2638 else
2639 mouse_char = ' ';
2640#endif
2641
2642 old_curwin = curwin;
2643 old_cursor = curwin->w_cursor;
2644
2645 if (!(flags & MOUSE_FOCUS))
2646 {
2647 if (row < 0 || col < 0) /* check if it makes sense */
2648 return IN_UNKNOWN;
2649
2650#ifdef FEAT_WINDOWS
2651 /* find the window where the row is in */
2652 wp = mouse_find_win(&row, &col);
2653#else
2654 wp = firstwin;
2655#endif
2656 dragwin = NULL;
2657 /*
2658 * winpos and height may change in win_enter()!
2659 */
2660 if (row >= wp->w_height) /* In (or below) status line */
2661 {
2662 on_status_line = row - wp->w_height + 1;
2663 dragwin = wp;
2664 }
2665 else
2666 on_status_line = 0;
2667#ifdef FEAT_VERTSPLIT
2668 if (col >= wp->w_width) /* In separator line */
2669 {
2670 on_sep_line = col - wp->w_width + 1;
2671 dragwin = wp;
2672 }
2673 else
2674 on_sep_line = 0;
2675
2676 /* The rightmost character of the status line might be a vertical
2677 * separator character if there is no connecting window to the right. */
2678 if (on_status_line && on_sep_line)
2679 {
2680 if (stl_connected(wp))
2681 on_sep_line = 0;
2682 else
2683 on_status_line = 0;
2684 }
2685#endif
2686
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 /* Before jumping to another buffer, or moving the cursor for a left
2688 * click, stop Visual mode. */
2689 if (VIsual_active
2690 && (wp->w_buffer != curwin->w_buffer
2691 || (!on_status_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002692#ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 && !on_sep_line
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002694#endif
2695#ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 && (
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002697# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 wp->w_p_rl ? col < W_WIDTH(wp) - wp->w_p_fdc :
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699# endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002700 col >= wp->w_p_fdc
2701# ifdef FEAT_CMDWIN
2702 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
2703# endif
2704 )
2705#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706 && (flags & MOUSE_MAY_STOP_VIS))))
2707 {
2708 end_visual_mode();
2709 redraw_curbuf_later(INVERTED); /* delete the inversion */
2710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711#ifdef FEAT_CMDWIN
2712 if (cmdwin_type != 0 && wp != curwin)
2713 {
2714 /* A click outside the command-line window: Use modeless
Bram Moolenaarf679a432010-03-02 18:16:09 +01002715 * selection if possible. Allow dragging the status lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716# ifdef FEAT_VERTSPLIT
2717 on_sep_line = 0;
2718# endif
2719# ifdef FEAT_CLIPBOARD
2720 if (on_status_line)
2721 return IN_STATUS_LINE;
2722 return IN_OTHER_WIN;
2723# else
2724 row = 0;
2725 col += wp->w_wincol;
2726 wp = curwin;
2727# endif
2728 }
2729#endif
2730#ifdef FEAT_WINDOWS
2731 /* Only change window focus when not clicking on or dragging the
2732 * status line. Do change focus when releasing the mouse button
2733 * (MOUSE_FOCUS was set above if we dragged first). */
2734 if (dragwin == NULL || (flags & MOUSE_RELEASED))
2735 win_enter(wp, TRUE); /* can make wp invalid! */
2736# ifdef CHECK_DOUBLE_CLICK
2737 /* set topline, to be able to check for double click ourselves */
2738 if (curwin != old_curwin)
2739 set_mouse_topline(curwin);
2740# endif
2741#endif
2742 if (on_status_line) /* In (or below) status line */
2743 {
2744 /* Don't use start_arrow() if we're in the same window */
2745 if (curwin == old_curwin)
2746 return IN_STATUS_LINE;
2747 else
2748 return IN_STATUS_LINE | CURSOR_MOVED;
2749 }
2750#ifdef FEAT_VERTSPLIT
2751 if (on_sep_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_SEP_LINE;
2756 else
2757 return IN_SEP_LINE | CURSOR_MOVED;
2758 }
2759#endif
2760
2761 curwin->w_cursor.lnum = curwin->w_topline;
2762#ifdef FEAT_GUI
2763 /* remember topline, needed for double click */
2764 gui_prev_topline = curwin->w_topline;
2765# ifdef FEAT_DIFF
2766 gui_prev_topfill = curwin->w_topfill;
2767# endif
2768#endif
2769 }
2770 else if (on_status_line && which_button == MOUSE_LEFT)
2771 {
2772#ifdef FEAT_WINDOWS
2773 if (dragwin != NULL)
2774 {
2775 /* Drag the status line */
2776 count = row - dragwin->w_winrow - dragwin->w_height + 1
2777 - on_status_line;
2778 win_drag_status_line(dragwin, count);
2779 did_drag |= count;
2780 }
2781#endif
2782 return IN_STATUS_LINE; /* Cursor didn't move */
2783 }
2784#ifdef FEAT_VERTSPLIT
2785 else if (on_sep_line && which_button == MOUSE_LEFT)
2786 {
2787 if (dragwin != NULL)
2788 {
2789 /* Drag the separator column */
2790 count = col - dragwin->w_wincol - dragwin->w_width + 1
2791 - on_sep_line;
2792 win_drag_vsep_line(dragwin, count);
2793 did_drag |= count;
2794 }
2795 return IN_SEP_LINE; /* Cursor didn't move */
2796 }
2797#endif
2798 else /* keep_window_focus must be TRUE */
2799 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 /* before moving the cursor for a left click, stop Visual mode */
2801 if (flags & MOUSE_MAY_STOP_VIS)
2802 {
2803 end_visual_mode();
2804 redraw_curbuf_later(INVERTED); /* delete the inversion */
2805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806
2807#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2808 /* Continue a modeless selection in another window. */
2809 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2810 return IN_OTHER_WIN;
2811#endif
2812
2813 row -= W_WINROW(curwin);
2814#ifdef FEAT_VERTSPLIT
2815 col -= W_WINCOL(curwin);
2816#endif
2817
2818 /*
2819 * When clicking beyond the end of the window, scroll the screen.
2820 * Scroll by however many rows outside the window we are.
2821 */
2822 if (row < 0)
2823 {
2824 count = 0;
2825 for (first = TRUE; curwin->w_topline > 1; )
2826 {
2827#ifdef FEAT_DIFF
2828 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2829 ++count;
2830 else
2831#endif
2832 count += plines(curwin->w_topline - 1);
2833 if (!first && count > -row)
2834 break;
2835 first = FALSE;
2836#ifdef FEAT_FOLDING
2837 hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2838#endif
2839#ifdef FEAT_DIFF
2840 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2841 ++curwin->w_topfill;
2842 else
2843#endif
2844 {
2845 --curwin->w_topline;
2846#ifdef FEAT_DIFF
2847 curwin->w_topfill = 0;
2848#endif
2849 }
2850 }
2851#ifdef FEAT_DIFF
2852 check_topfill(curwin, FALSE);
2853#endif
2854 curwin->w_valid &=
2855 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2856 redraw_later(VALID);
2857 row = 0;
2858 }
2859 else if (row >= curwin->w_height)
2860 {
2861 count = 0;
2862 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
2863 {
2864#ifdef FEAT_DIFF
2865 if (curwin->w_topfill > 0)
2866 ++count;
2867 else
2868#endif
2869 count += plines(curwin->w_topline);
2870 if (!first && count > row - curwin->w_height + 1)
2871 break;
2872 first = FALSE;
2873#ifdef FEAT_FOLDING
2874 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
2875 && curwin->w_topline == curbuf->b_ml.ml_line_count)
2876 break;
2877#endif
2878#ifdef FEAT_DIFF
2879 if (curwin->w_topfill > 0)
2880 --curwin->w_topfill;
2881 else
2882#endif
2883 {
2884 ++curwin->w_topline;
2885#ifdef FEAT_DIFF
2886 curwin->w_topfill =
2887 diff_check_fill(curwin, curwin->w_topline);
2888#endif
2889 }
2890 }
2891#ifdef FEAT_DIFF
2892 check_topfill(curwin, FALSE);
2893#endif
2894 redraw_later(VALID);
2895 curwin->w_valid &=
2896 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2897 row = curwin->w_height - 1;
2898 }
2899 else if (row == 0)
2900 {
2901 /* When dragging the mouse, while the text has been scrolled up as
2902 * far as it goes, moving the mouse in the top line should scroll
2903 * the text down (done later when recomputing w_topline). */
Bram Moolenaar8cfdc0d2007-05-06 14:12:36 +00002904 if (mouse_dragging > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 && curwin->w_cursor.lnum
2906 == curwin->w_buffer->b_ml.ml_line_count
2907 && curwin->w_cursor.lnum == curwin->w_topline)
2908 curwin->w_valid &= ~(VALID_TOPLINE);
2909 }
2910 }
2911
2912#ifdef FEAT_FOLDING
2913 /* Check for position outside of the fold column. */
2914 if (
2915# ifdef FEAT_RIGHTLEFT
2916 curwin->w_p_rl ? col < W_WIDTH(curwin) - curwin->w_p_fdc :
2917# endif
2918 col >= curwin->w_p_fdc
2919# ifdef FEAT_CMDWIN
2920 + (cmdwin_type == 0 ? 0 : 1)
2921# endif
2922 )
2923 mouse_char = ' ';
2924#endif
2925
2926 /* compute the position in the buffer line from the posn on the screen */
2927 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
2928 mouse_past_bottom = TRUE;
2929
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
2931 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
2932 {
2933 check_visual_highlight();
2934 VIsual = old_cursor;
2935 VIsual_active = TRUE;
2936 VIsual_reselect = TRUE;
2937 /* if 'selectmode' contains "mouse", start Select mode */
2938 may_start_select('o');
2939 setmouse();
Bram Moolenaar7df351e2006-01-23 22:30:28 +00002940 if (p_smd && msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 redraw_cmdline = TRUE; /* show visual mode later */
2942 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
2944 curwin->w_curswant = col;
2945 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
2946 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
2947 {
2948 if (inclusive != NULL)
2949 *inclusive = TRUE;
2950 mouse_past_eol = TRUE;
2951 }
2952 else if (inclusive != NULL)
2953 *inclusive = FALSE;
2954
2955 count = IN_BUFFER;
2956 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
2957 || curwin->w_cursor.col != old_cursor.col)
2958 count |= CURSOR_MOVED; /* Cursor has moved */
2959
2960#ifdef FEAT_FOLDING
2961 if (mouse_char == '+')
2962 count |= MOUSE_FOLD_OPEN;
2963 else if (mouse_char != ' ')
2964 count |= MOUSE_FOLD_CLOSE;
2965#endif
2966
2967 return count;
2968}
2969
2970/*
2971 * Compute the position in the buffer line from the posn on the screen in
2972 * window "win".
2973 * Returns TRUE if the position is below the last line.
2974 */
2975 int
2976mouse_comp_pos(win, rowp, colp, lnump)
2977 win_T *win;
2978 int *rowp;
2979 int *colp;
2980 linenr_T *lnump;
2981{
2982 int col = *colp;
2983 int row = *rowp;
2984 linenr_T lnum;
2985 int retval = FALSE;
2986 int off;
2987 int count;
2988
2989#ifdef FEAT_RIGHTLEFT
2990 if (win->w_p_rl)
2991 col = W_WIDTH(win) - 1 - col;
2992#endif
2993
2994 lnum = win->w_topline;
2995
2996 while (row > 0)
2997 {
2998#ifdef FEAT_DIFF
2999 /* Don't include filler lines in "count" */
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003000 if (win->w_p_diff
3001# ifdef FEAT_FOLDING
3002 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3003# endif
3004 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 {
3006 if (lnum == win->w_topline)
3007 row -= win->w_topfill;
3008 else
3009 row -= diff_check_fill(win, lnum);
3010 count = plines_win_nofill(win, lnum, TRUE);
3011 }
3012 else
3013#endif
3014 count = plines_win(win, lnum, TRUE);
3015 if (count > row)
3016 break; /* Position is in this buffer line. */
3017#ifdef FEAT_FOLDING
3018 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3019#endif
3020 if (lnum == win->w_buffer->b_ml.ml_line_count)
3021 {
3022 retval = TRUE;
3023 break; /* past end of file */
3024 }
3025 row -= count;
3026 ++lnum;
3027 }
3028
3029 if (!retval)
3030 {
3031 /* Compute the column without wrapping. */
3032 off = win_col_off(win) - win_col_off2(win);
3033 if (col < off)
3034 col = off;
3035 col += row * (W_WIDTH(win) - off);
3036 /* add skip column (for long wrapping line) */
3037 col += win->w_skipcol;
3038 }
3039
3040 if (!win->w_p_wrap)
3041 col += win->w_leftcol;
3042
3043 /* skip line number and fold column in front of the line */
3044 col -= win_col_off(win);
3045 if (col < 0)
3046 {
3047#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003048 netbeans_gutter_click(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049#endif
3050 col = 0;
3051 }
3052
3053 *colp = col;
3054 *rowp = row;
3055 *lnump = lnum;
3056 return retval;
3057}
3058
3059#if defined(FEAT_WINDOWS) || defined(PROTO)
3060/*
3061 * Find the window at screen position "*rowp" and "*colp". The positions are
3062 * updated to become relative to the top-left of the window.
3063 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 win_T *
3065mouse_find_win(rowp, colp)
3066 int *rowp;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003067 int *colp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 frame_T *fp;
3070
3071 fp = topframe;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003072 *rowp -= firstwin->w_winrow;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 for (;;)
3074 {
3075 if (fp->fr_layout == FR_LEAF)
3076 break;
3077#ifdef FEAT_VERTSPLIT
3078 if (fp->fr_layout == FR_ROW)
3079 {
3080 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3081 {
3082 if (*colp < fp->fr_width)
3083 break;
3084 *colp -= fp->fr_width;
3085 }
3086 }
3087#endif
3088 else /* fr_layout == FR_COL */
3089 {
3090 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3091 {
3092 if (*rowp < fp->fr_height)
3093 break;
3094 *rowp -= fp->fr_height;
3095 }
3096 }
3097 }
3098 return fp->fr_win;
3099}
3100#endif
3101
Bram Moolenaar860cae12010-06-05 23:22:07 +02003102#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
3104 || defined(FEAT_GUI_PHOTON) || defined(PROTO)
3105/*
3106 * Translate window coordinates to buffer position without any side effects
3107 */
3108 int
3109get_fpos_of_mouse(mpos)
3110 pos_T *mpos;
3111{
3112 win_T *wp;
3113 int row = mouse_row;
3114 int col = mouse_col;
3115
3116 if (row < 0 || col < 0) /* check if it makes sense */
3117 return IN_UNKNOWN;
3118
3119#ifdef FEAT_WINDOWS
3120 /* find the window where the row is in */
3121 wp = mouse_find_win(&row, &col);
3122#else
3123 wp = firstwin;
3124#endif
3125 /*
3126 * winpos and height may change in win_enter()!
3127 */
3128 if (row >= wp->w_height) /* In (or below) status line */
3129 return IN_STATUS_LINE;
3130#ifdef FEAT_VERTSPLIT
3131 if (col >= wp->w_width) /* In vertical separator line */
3132 return IN_SEP_LINE;
3133#endif
3134
3135 if (wp != curwin)
3136 return IN_UNKNOWN;
3137
3138 /* compute the position in the buffer line from the posn on the screen */
3139 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3140 return IN_STATUS_LINE; /* past bottom */
3141
3142 mpos->col = vcol2col(wp, mpos->lnum, col);
3143
3144 if (mpos->col > 0)
3145 --mpos->col;
Bram Moolenaara9d52e32010-07-31 16:44:19 +02003146#ifdef FEAT_VIRTUALEDIT
3147 mpos->coladd = 0;
3148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 return IN_BUFFER;
3150}
3151
3152/*
3153 * Convert a virtual (screen) column to a character column.
3154 * The first column is one.
3155 */
3156 int
3157vcol2col(wp, lnum, vcol)
3158 win_T *wp;
3159 linenr_T lnum;
3160 int vcol;
3161{
3162 /* try to advance to the specified column */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 int count = 0;
3164 char_u *ptr;
Bram Moolenaar86c800a2009-09-11 14:48:27 +00003165 char_u *start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166
Bram Moolenaar86c800a2009-09-11 14:48:27 +00003167 start = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
Bram Moolenaarb6101cf2012-10-21 00:58:39 +02003168 while (count < vcol && *ptr != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 count += win_lbr_chartabsize(wp, ptr, count, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003171 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 }
Bram Moolenaar86c800a2009-09-11 14:48:27 +00003173 return (int)(ptr - start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174}
3175#endif
3176
3177#endif /* FEAT_MOUSE */
3178
3179#if defined(FEAT_GUI) || defined(WIN3264) || defined(PROTO)
3180/*
3181 * Called when focus changed. Used for the GUI or for systems where this can
3182 * be done in the console (Win32).
3183 */
3184 void
3185ui_focus_change(in_focus)
3186 int in_focus; /* TRUE if focus gained. */
3187{
3188 static time_t last_time = (time_t)0;
3189 int need_redraw = FALSE;
3190
3191 /* When activated: Check if any file was modified outside of Vim.
3192 * Only do this when not done within the last two seconds (could get
3193 * several events in a row). */
3194 if (in_focus && last_time + 2 < time(NULL))
3195 {
3196 need_redraw = check_timestamps(
3197# ifdef FEAT_GUI
3198 gui.in_use
3199# else
3200 FALSE
3201# endif
3202 );
3203 last_time = time(NULL);
3204 }
3205
3206#ifdef FEAT_AUTOCMD
3207 /*
3208 * Fire the focus gained/lost autocommand.
3209 */
3210 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3211 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
3212#endif
3213
3214 if (need_redraw)
3215 {
3216 /* Something was executed, make sure the cursor is put back where it
3217 * belongs. */
3218 need_wait_return = FALSE;
3219
3220 if (State & CMDLINE)
3221 redrawcmdline();
3222 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3223 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3224 repeat_message();
3225 else if ((State & NORMAL) || (State & INSERT))
3226 {
3227 if (must_redraw != 0)
3228 update_screen(0);
3229 setcursor();
3230 }
3231 cursor_on(); /* redrawing may have switched it off */
3232 out_flush();
3233# ifdef FEAT_GUI
3234 if (gui.in_use)
3235 {
3236 gui_update_cursor(FALSE, TRUE);
3237 gui_update_scrollbars(FALSE);
3238 }
3239# endif
3240 }
3241#ifdef FEAT_TITLE
3242 /* File may have been changed from 'readonly' to 'noreadonly' */
3243 if (need_maketitle)
3244 maketitle();
3245#endif
3246}
3247#endif
3248
3249#if defined(USE_IM_CONTROL) || defined(PROTO)
3250/*
3251 * Save current Input Method status to specified place.
3252 */
3253 void
3254im_save_status(psave)
3255 long *psave;
3256{
3257 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3258 * disabled then (but might start later).
3259 * Also don't save when inside a mapping, vgetc_im_active has not been set
3260 * then.
3261 * And don't save when the keys were stuffed (e.g., for a "." command).
3262 * And don't save when the GUI is running but our window doesn't have
3263 * input focus (e.g., when a find dialog is open). */
3264 if (!p_imdisable && KeyTyped && !KeyStuffed
3265# ifdef FEAT_XIM
3266 && xic != NULL
3267# endif
3268# ifdef FEAT_GUI
3269 && (!gui.in_use || gui.in_focus)
3270# endif
3271 )
3272 {
3273 /* Do save when IM is on, or IM is off and saved status is on. */
3274 if (vgetc_im_active)
3275 *psave = B_IMODE_IM;
3276 else if (*psave == B_IMODE_IM)
3277 *psave = B_IMODE_NONE;
3278 }
3279}
3280#endif