Fix <C-Tab> regression
[MacVim.git] / src / ui.c
blobb8b52d79aed5c49de9da02d2d172ac9435087a90
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
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.
19 #include "vim.h"
21 void
22 ui_write(s, len)
23 char_u *s;
24 int len;
26 #ifdef FEAT_GUI
27 if (gui.in_use && !gui.dying && !gui.starting)
29 gui_write(s, len);
30 if (p_wd)
31 gui_wait_for_chars(p_wd);
32 return;
34 #endif
35 #ifndef NO_CONSOLE
36 /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */
37 if (!(silent_mode && p_verbose == 0))
39 #ifdef FEAT_MBYTE
40 char_u *tofree = NULL;
42 if (output_conv.vc_type != CONV_NONE)
44 /* Convert characters from 'encoding' to 'termencoding'. */
45 tofree = string_convert(&output_conv, s, &len);
46 if (tofree != NULL)
47 s = tofree;
49 #endif
51 mch_write(s, len);
53 #ifdef FEAT_MBYTE
54 if (output_conv.vc_type != CONV_NONE)
55 vim_free(tofree);
56 #endif
58 #endif
61 #if defined(UNIX) || defined(VMS) || defined(PROTO)
63 * When executing an external program, there may be some typed characters that
64 * are not consumed by it. Give them back to ui_inchar() and they are stored
65 * here for the next call.
67 static char_u *ta_str = NULL;
68 static int ta_off; /* offset for next char to use when ta_str != NULL */
69 static int ta_len; /* length of ta_str when it's not NULL*/
71 void
72 ui_inchar_undo(s, len)
73 char_u *s;
74 int len;
76 char_u *new;
77 int newlen;
79 newlen = len;
80 if (ta_str != NULL)
81 newlen += ta_len - ta_off;
82 new = alloc(newlen);
83 if (new != NULL)
85 if (ta_str != NULL)
87 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off));
88 mch_memmove(new + ta_len - ta_off, s, (size_t)len);
89 vim_free(ta_str);
91 else
92 mch_memmove(new, s, (size_t)len);
93 ta_str = new;
94 ta_len = newlen;
95 ta_off = 0;
98 #endif
101 * ui_inchar(): low level input funcion.
102 * Get characters from the keyboard.
103 * Return the number of characters that are available.
104 * If "wtime" == 0 do not wait for characters.
105 * If "wtime" == -1 wait forever for characters.
106 * If "wtime" > 0 wait "wtime" milliseconds for a character.
108 * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into
109 * it. When typebuf.tb_change_cnt changes (e.g., when a message is received
110 * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL
111 * otherwise.
114 ui_inchar(buf, maxlen, wtime, tb_change_cnt)
115 char_u *buf;
116 int maxlen;
117 long wtime; /* don't use "time", MIPS cannot handle it */
118 int tb_change_cnt;
120 int retval = 0;
122 #if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS))
124 * Use the typeahead if there is any.
126 if (ta_str != NULL)
128 if (maxlen >= ta_len - ta_off)
130 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len);
131 vim_free(ta_str);
132 ta_str = NULL;
133 return ta_len;
135 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen);
136 ta_off += maxlen;
137 return maxlen;
139 #endif
141 #ifdef FEAT_PROFILE
142 if (do_profiling == PROF_YES && wtime != 0)
143 prof_inchar_enter();
144 #endif
146 #ifdef NO_CONSOLE_INPUT
147 /* Don't wait for character input when the window hasn't been opened yet.
148 * Do try reading, this works when redirecting stdin from a file.
149 * Must return something, otherwise we'll loop forever. If we run into
150 * this very often we probably got stuck, exit Vim. */
151 if (no_console_input())
153 static int count = 0;
155 # ifndef NO_CONSOLE
156 retval = mch_inchar(buf, maxlen, (wtime >= 0 && wtime < 10)
157 ? 10L : wtime, tb_change_cnt);
158 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0)
159 goto theend;
160 # endif
161 if (wtime == -1 && ++count == 1000)
162 read_error_exit();
163 buf[0] = CAR;
164 retval = 1;
165 goto theend;
167 #endif
169 /* If we are going to wait for some time or block... */
170 if (wtime == -1 || wtime > 100L)
172 /* ... allow signals to kill us. */
173 (void)vim_handle_signal(SIGNAL_UNBLOCK);
175 /* ... there is no need for CTRL-C to interrupt something, don't let
176 * it set got_int when it was mapped. */
177 if (mapped_ctrl_c)
178 ctrl_c_interrupts = FALSE;
181 #ifdef FEAT_GUI
182 if (gui.in_use)
184 if (gui_wait_for_chars(wtime) && !typebuf_changed(tb_change_cnt))
185 retval = read_from_input_buf(buf, (long)maxlen);
187 #endif
188 #ifndef NO_CONSOLE
189 # ifdef FEAT_GUI
190 else
191 # endif
193 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt);
195 #endif
197 if (wtime == -1 || wtime > 100L)
198 /* block SIGHUP et al. */
199 (void)vim_handle_signal(SIGNAL_BLOCK);
201 ctrl_c_interrupts = TRUE;
203 #ifdef NO_CONSOLE_INPUT
204 theend:
205 #endif
206 #ifdef FEAT_PROFILE
207 if (do_profiling == PROF_YES && wtime != 0)
208 prof_inchar_exit();
209 #endif
210 return retval;
214 * return non-zero if a character is available
217 ui_char_avail()
219 #ifdef FEAT_GUI
220 if (gui.in_use)
222 gui_mch_update();
223 return input_available();
225 #endif
226 #ifndef NO_CONSOLE
227 # ifdef NO_CONSOLE_INPUT
228 if (no_console_input())
229 return 0;
230 # endif
231 return mch_char_avail();
232 #else
233 return 0;
234 #endif
238 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we
239 * cancel the delay if a key is hit.
241 void
242 ui_delay(msec, ignoreinput)
243 long msec;
244 int ignoreinput;
246 #ifdef FEAT_GUI
247 if (gui.in_use && !ignoreinput)
248 gui_wait_for_chars(msec);
249 else
250 #endif
252 #if defined(FEAT_GUI_MACVIM)
253 /* MacVim tries to be conservative with flushing, but when Vim takes a
254 * nap it really must flush (else timed error messages might not appear
255 * etc.). Note that gui_mch_wait_for_chars() already does force a
256 * flush, so only do it here. */
257 if (gui.in_use)
258 gui_macvim_force_flush();
259 #endif
260 mch_delay(msec, ignoreinput);
265 * If the machine has job control, use it to suspend the program,
266 * otherwise fake it by starting a new shell.
267 * When running the GUI iconify the window.
269 void
270 ui_suspend()
272 #ifdef FEAT_GUI
273 if (gui.in_use)
275 gui_mch_iconify();
276 return;
278 #endif
279 mch_suspend();
282 #if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__)
284 * When the OS can't really suspend, call this function to start a shell.
285 * This is never called in the GUI.
287 void
288 suspend_shell()
290 if (*p_sh == NUL)
291 EMSG(_(e_shellempty));
292 else
294 MSG_PUTS(_("new shell started\n"));
295 do_shell(NULL, 0);
298 #endif
301 * Try to get the current Vim shell size. Put the result in Rows and Columns.
302 * Use the new sizes as defaults for 'columns' and 'lines'.
303 * Return OK when size could be determined, FAIL otherwise.
306 ui_get_shellsize()
308 int retval;
310 #ifdef FEAT_GUI
311 if (gui.in_use)
312 retval = gui_get_shellsize();
313 else
314 #endif
315 retval = mch_get_shellsize();
317 check_shellsize();
319 /* adjust the default for 'lines' and 'columns' */
320 if (retval == OK)
322 set_number_default("lines", Rows);
323 set_number_default("columns", Columns);
325 return retval;
329 * Set the size of the Vim shell according to Rows and Columns, if possible.
330 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the
331 * new size. If this is not possible, it will adjust Rows and Columns.
333 /*ARGSUSED*/
334 void
335 ui_set_shellsize(mustset)
336 int mustset; /* set by the user */
338 #ifdef FEAT_GUI
339 if (gui.in_use)
340 gui_set_shellsize(mustset,
341 # ifdef WIN3264
342 TRUE
343 # else
344 FALSE
345 # endif
346 , RESIZE_BOTH);
347 else
348 #endif
349 mch_set_shellsize();
353 * Called when Rows and/or Columns changed. Adjust scroll region and mouse
354 * region.
356 void
357 ui_new_shellsize()
359 if (full_screen && !exiting)
361 #ifdef FEAT_GUI
362 if (gui.in_use)
363 gui_new_shellsize();
364 else
365 #endif
366 mch_new_shellsize();
370 void
371 ui_breakcheck()
373 #ifdef FEAT_GUI
374 if (gui.in_use)
375 gui_mch_update();
376 else
377 #endif
378 mch_breakcheck();
381 /*****************************************************************************
382 * Functions for copying and pasting text between applications.
383 * This is always included in a GUI version, but may also be included when the
384 * clipboard and mouse is available to a terminal version such as xterm.
385 * Note: there are some more functions in ops.c that handle selection stuff.
387 * Also note that the majority of functions here deal with the X 'primary'
388 * (visible - for Visual mode use) selection, and only that. There are no
389 * versions of these for the 'clipboard' selection, as Visual mode has no use
390 * for them.
393 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
396 * Selection stuff using Visual mode, for cutting and pasting text to other
397 * windows.
401 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code
402 * is included, but the clipboard can not be used, or TRUE if the clipboard can
403 * be used. Eg unix may call this with FALSE, then call it again with TRUE if
404 * the GUI starts.
406 void
407 clip_init(can_use)
408 int can_use;
410 VimClipboard *cb;
412 cb = &clip_star;
413 for (;;)
415 cb->available = can_use;
416 cb->owned = FALSE;
417 cb->start.lnum = 0;
418 cb->start.col = 0;
419 cb->end.lnum = 0;
420 cb->end.col = 0;
421 cb->state = SELECT_CLEARED;
423 if (cb == &clip_plus)
424 break;
425 cb = &clip_plus;
430 * Check whether the VIsual area has changed, and if so try to become the owner
431 * of the selection, and free any old converted selection we may still have
432 * lying around. If the VIsual mode has ended, make a copy of what was
433 * selected so we can still give it to others. Will probably have to make sure
434 * this is called whenever VIsual mode is ended.
436 void
437 clip_update_selection()
439 pos_T start, end;
441 /* If visual mode is only due to a redo command ("."), then ignore it */
442 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL))
444 if (lt(VIsual, curwin->w_cursor))
446 start = VIsual;
447 end = curwin->w_cursor;
448 #ifdef FEAT_MBYTE
449 if (has_mbyte)
450 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1;
451 #endif
453 else
455 start = curwin->w_cursor;
456 end = VIsual;
458 if (!equalpos(clip_star.start, start)
459 || !equalpos(clip_star.end, end)
460 || clip_star.vmode != VIsual_mode)
462 clip_clear_selection();
463 clip_star.start = start;
464 clip_star.end = end;
465 clip_star.vmode = VIsual_mode;
466 clip_free_selection(&clip_star);
467 clip_own_selection(&clip_star);
468 clip_gen_set_selection(&clip_star);
473 void
474 clip_own_selection(cbd)
475 VimClipboard *cbd;
478 * Also want to check somehow that we are reading from the keyboard rather
479 * than a mapping etc.
481 if (!cbd->owned && cbd->available)
483 cbd->owned = (clip_gen_own_selection(cbd) == OK);
484 #ifdef FEAT_X11
485 if (cbd == &clip_star)
487 /* May have to show a different kind of highlighting for the
488 * selected area. There is no specific redraw command for this,
489 * just redraw all windows on the current buffer. */
490 if (cbd->owned
491 && (get_real_state() == VISUAL
492 || get_real_state() == SELECTMODE)
493 && clip_isautosel()
494 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
495 redraw_curbuf_later(INVERTED_ALL);
497 #endif
501 void
502 clip_lose_selection(cbd)
503 VimClipboard *cbd;
505 #ifdef FEAT_X11
506 int was_owned = cbd->owned;
507 #endif
508 int visual_selection = (cbd == &clip_star);
510 clip_free_selection(cbd);
511 cbd->owned = FALSE;
512 if (visual_selection)
513 clip_clear_selection();
514 clip_gen_lose_selection(cbd);
515 #ifdef FEAT_X11
516 if (visual_selection)
518 /* May have to show a different kind of highlighting for the selected
519 * area. There is no specific redraw command for this, just redraw all
520 * windows on the current buffer. */
521 if (was_owned
522 && (get_real_state() == VISUAL
523 || get_real_state() == SELECTMODE)
524 && clip_isautosel()
525 && hl_attr(HLF_V) != hl_attr(HLF_VNC))
527 update_curbuf(INVERTED_ALL);
528 setcursor();
529 cursor_on();
530 out_flush();
531 # ifdef FEAT_GUI
532 if (gui.in_use)
533 gui_update_cursor(TRUE, FALSE);
534 # endif
537 #endif
540 void
541 clip_copy_selection()
543 if (VIsual_active && (State & NORMAL) && clip_star.available)
545 if (clip_isautosel())
546 clip_update_selection();
547 clip_free_selection(&clip_star);
548 clip_own_selection(&clip_star);
549 if (clip_star.owned)
550 clip_get_selection(&clip_star);
551 clip_gen_set_selection(&clip_star);
556 * Called when Visual mode is ended: update the selection.
558 void
559 clip_auto_select()
561 if (clip_isautosel())
562 clip_copy_selection();
566 * Return TRUE if automatic selection of Visual area is desired.
569 clip_isautosel()
571 return (
572 #ifdef FEAT_GUI
573 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) :
574 #endif
575 clip_autoselect);
580 * Stuff for general mouse selection, without using Visual mode.
583 static int clip_compare_pos __ARGS((int row1, int col1, int row2, int col2));
584 static void clip_invert_area __ARGS((int, int, int, int, int how));
585 static void clip_invert_rectangle __ARGS((int row, int col, int height, int width, int invert));
586 static void clip_get_word_boundaries __ARGS((VimClipboard *, int, int));
587 static int clip_get_line_end __ARGS((int));
588 static void clip_update_modeless_selection __ARGS((VimClipboard *, int, int,
589 int, int));
591 /* flags for clip_invert_area() */
592 #define CLIP_CLEAR 1
593 #define CLIP_SET 2
594 #define CLIP_TOGGLE 3
597 * Start, continue or end a modeless selection. Used when editing the
598 * command-line and in the cmdline window.
600 void
601 clip_modeless(button, is_click, is_drag)
602 int button;
603 int is_click;
604 int is_drag;
606 int repeat;
608 repeat = ((clip_star.mode == SELECT_MODE_CHAR
609 || clip_star.mode == SELECT_MODE_LINE)
610 && (mod_mask & MOD_MASK_2CLICK))
611 || (clip_star.mode == SELECT_MODE_WORD
612 && (mod_mask & MOD_MASK_3CLICK));
613 if (is_click && button == MOUSE_RIGHT)
615 /* Right mouse button: If there was no selection, start one.
616 * Otherwise extend the existing selection. */
617 if (clip_star.state == SELECT_CLEARED)
618 clip_start_selection(mouse_col, mouse_row, FALSE);
619 clip_process_selection(button, mouse_col, mouse_row, repeat);
621 else if (is_click)
622 clip_start_selection(mouse_col, mouse_row, repeat);
623 else if (is_drag)
625 /* Don't try extending a selection if there isn't one. Happens when
626 * button-down is in the cmdline and them moving mouse upwards. */
627 if (clip_star.state != SELECT_CLEARED)
628 clip_process_selection(button, mouse_col, mouse_row, repeat);
630 else /* release */
631 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE);
635 * Compare two screen positions ala strcmp()
637 static int
638 clip_compare_pos(row1, col1, row2, col2)
639 int row1;
640 int col1;
641 int row2;
642 int col2;
644 if (row1 > row2) return(1);
645 if (row1 < row2) return(-1);
646 if (col1 > col2) return(1);
647 if (col1 < col2) return(-1);
648 return(0);
652 * Start the selection
654 void
655 clip_start_selection(col, row, repeated_click)
656 int col;
657 int row;
658 int repeated_click;
660 VimClipboard *cb = &clip_star;
662 if (cb->state == SELECT_DONE)
663 clip_clear_selection();
665 row = check_row(row);
666 col = check_col(col);
667 #ifdef FEAT_MBYTE
668 col = mb_fix_col(col, row);
669 #endif
671 cb->start.lnum = row;
672 cb->start.col = col;
673 cb->end = cb->start;
674 cb->origin_row = (short_u)cb->start.lnum;
675 cb->state = SELECT_IN_PROGRESS;
677 if (repeated_click)
679 if (++cb->mode > SELECT_MODE_LINE)
680 cb->mode = SELECT_MODE_CHAR;
682 else
683 cb->mode = SELECT_MODE_CHAR;
685 #ifdef FEAT_GUI
686 /* clear the cursor until the selection is made */
687 if (gui.in_use)
688 gui_undraw_cursor();
689 #endif
691 switch (cb->mode)
693 case SELECT_MODE_CHAR:
694 cb->origin_start_col = cb->start.col;
695 cb->word_end_col = clip_get_line_end((int)cb->start.lnum);
696 break;
698 case SELECT_MODE_WORD:
699 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col);
700 cb->origin_start_col = cb->word_start_col;
701 cb->origin_end_col = cb->word_end_col;
703 clip_invert_area((int)cb->start.lnum, cb->word_start_col,
704 (int)cb->end.lnum, cb->word_end_col, CLIP_SET);
705 cb->start.col = cb->word_start_col;
706 cb->end.col = cb->word_end_col;
707 break;
709 case SELECT_MODE_LINE:
710 clip_invert_area((int)cb->start.lnum, 0, (int)cb->start.lnum,
711 (int)Columns, CLIP_SET);
712 cb->start.col = 0;
713 cb->end.col = Columns;
714 break;
717 cb->prev = cb->start;
719 #ifdef DEBUG_SELECTION
720 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col);
721 #endif
725 * Continue processing the selection
727 void
728 clip_process_selection(button, col, row, repeated_click)
729 int button;
730 int col;
731 int row;
732 int_u repeated_click;
734 VimClipboard *cb = &clip_star;
735 int diff;
736 int slen = 1; /* cursor shape width */
738 if (button == MOUSE_RELEASE)
740 /* Check to make sure we have something selected */
741 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col)
743 #ifdef FEAT_GUI
744 if (gui.in_use)
745 gui_update_cursor(FALSE, FALSE);
746 #endif
747 cb->state = SELECT_CLEARED;
748 return;
751 #ifdef DEBUG_SELECTION
752 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum,
753 cb->start.col, cb->end.lnum, cb->end.col);
754 #endif
755 if (clip_isautosel()
756 || (
757 #ifdef FEAT_GUI
758 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) :
759 #endif
760 clip_autoselectml))
761 clip_copy_modeless_selection(FALSE);
762 #ifdef FEAT_GUI
763 if (gui.in_use)
764 gui_update_cursor(FALSE, FALSE);
765 #endif
767 cb->state = SELECT_DONE;
768 return;
771 row = check_row(row);
772 col = check_col(col);
773 #ifdef FEAT_MBYTE
774 col = mb_fix_col(col, row);
775 #endif
777 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click)
778 return;
781 * When extending the selection with the right mouse button, swap the
782 * start and end if the position is before half the selection
784 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT)
787 * If the click is before the start, or the click is inside the
788 * selection and the start is the closest side, set the origin to the
789 * end of the selection.
791 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0
792 || (clip_compare_pos(row, col,
793 (int)cb->end.lnum, cb->end.col) < 0
794 && (((cb->start.lnum == cb->end.lnum
795 && cb->end.col - col > col - cb->start.col))
796 || ((diff = (cb->end.lnum - row) -
797 (row - cb->start.lnum)) > 0
798 || (diff == 0 && col < (int)(cb->start.col +
799 cb->end.col) / 2)))))
801 cb->origin_row = (short_u)cb->end.lnum;
802 cb->origin_start_col = cb->end.col - 1;
803 cb->origin_end_col = cb->end.col;
805 else
807 cb->origin_row = (short_u)cb->start.lnum;
808 cb->origin_start_col = cb->start.col;
809 cb->origin_end_col = cb->start.col;
811 if (cb->mode == SELECT_MODE_WORD && !repeated_click)
812 cb->mode = SELECT_MODE_CHAR;
815 /* set state, for when using the right mouse button */
816 cb->state = SELECT_IN_PROGRESS;
818 #ifdef DEBUG_SELECTION
819 printf("Selection extending to (%d,%d)\n", row, col);
820 #endif
822 if (repeated_click && ++cb->mode > SELECT_MODE_LINE)
823 cb->mode = SELECT_MODE_CHAR;
825 switch (cb->mode)
827 case SELECT_MODE_CHAR:
828 /* If we're on a different line, find where the line ends */
829 if (row != cb->prev.lnum)
830 cb->word_end_col = clip_get_line_end(row);
832 /* See if we are before or after the origin of the selection */
833 if (clip_compare_pos(row, col, cb->origin_row,
834 cb->origin_start_col) >= 0)
836 if (col >= (int)cb->word_end_col)
837 clip_update_modeless_selection(cb, cb->origin_row,
838 cb->origin_start_col, row, (int)Columns);
839 else
841 #ifdef FEAT_MBYTE
842 if (has_mbyte && mb_lefthalve(row, col))
843 slen = 2;
844 #endif
845 clip_update_modeless_selection(cb, cb->origin_row,
846 cb->origin_start_col, row, col + slen);
849 else
851 #ifdef FEAT_MBYTE
852 if (has_mbyte
853 && mb_lefthalve(cb->origin_row, cb->origin_start_col))
854 slen = 2;
855 #endif
856 if (col >= (int)cb->word_end_col)
857 clip_update_modeless_selection(cb, row, cb->word_end_col,
858 cb->origin_row, cb->origin_start_col + slen);
859 else
860 clip_update_modeless_selection(cb, row, col,
861 cb->origin_row, cb->origin_start_col + slen);
863 break;
865 case SELECT_MODE_WORD:
866 /* If we are still within the same word, do nothing */
867 if (row == cb->prev.lnum && col >= (int)cb->word_start_col
868 && col < (int)cb->word_end_col && !repeated_click)
869 return;
871 /* Get new word boundaries */
872 clip_get_word_boundaries(cb, row, col);
874 /* Handle being after the origin point of selection */
875 if (clip_compare_pos(row, col, cb->origin_row,
876 cb->origin_start_col) >= 0)
877 clip_update_modeless_selection(cb, cb->origin_row,
878 cb->origin_start_col, row, cb->word_end_col);
879 else
880 clip_update_modeless_selection(cb, row, cb->word_start_col,
881 cb->origin_row, cb->origin_end_col);
882 break;
884 case SELECT_MODE_LINE:
885 if (row == cb->prev.lnum && !repeated_click)
886 return;
888 if (clip_compare_pos(row, col, cb->origin_row,
889 cb->origin_start_col) >= 0)
890 clip_update_modeless_selection(cb, cb->origin_row, 0, row,
891 (int)Columns);
892 else
893 clip_update_modeless_selection(cb, row, 0, cb->origin_row,
894 (int)Columns);
895 break;
898 cb->prev.lnum = row;
899 cb->prev.col = col;
901 #ifdef DEBUG_SELECTION
902 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum,
903 cb->start.col, cb->end.lnum, cb->end.col);
904 #endif
907 #if 0 /* not used */
909 * Called after an Expose event to redraw the selection
911 void
912 clip_redraw_selection(x, y, w, h)
913 int x;
914 int y;
915 int w;
916 int h;
918 VimClipboard *cb = &clip_star;
919 int row1, col1, row2, col2;
920 int row;
921 int start;
922 int end;
924 if (cb->state == SELECT_CLEARED)
925 return;
927 row1 = check_row(Y_2_ROW(y));
928 col1 = check_col(X_2_COL(x));
929 row2 = check_row(Y_2_ROW(y + h - 1));
930 col2 = check_col(X_2_COL(x + w - 1));
932 /* Limit the rows that need to be re-drawn */
933 if (cb->start.lnum > row1)
934 row1 = cb->start.lnum;
935 if (cb->end.lnum < row2)
936 row2 = cb->end.lnum;
938 /* Look at each row that might need to be re-drawn */
939 for (row = row1; row <= row2; row++)
941 /* For the first selection row, use the starting selection column */
942 if (row == cb->start.lnum)
943 start = cb->start.col;
944 else
945 start = 0;
947 /* For the last selection row, use the ending selection column */
948 if (row == cb->end.lnum)
949 end = cb->end.col;
950 else
951 end = Columns;
953 if (col1 > start)
954 start = col1;
956 if (col2 < end)
957 end = col2 + 1;
959 if (end > start)
960 gui_mch_invert_rectangle(row, start, 1, end - start);
963 #endif
965 # if defined(FEAT_GUI) || defined(PROTO)
967 * Redraw part of the selection if character at "row,col" is inside of it.
968 * Only used for the GUI.
970 void
971 clip_may_redraw_selection(row, col, len)
972 int row, col;
973 int len;
975 int start = col;
976 int end = col + len;
978 if (clip_star.state != SELECT_CLEARED
979 && row >= clip_star.start.lnum
980 && row <= clip_star.end.lnum)
982 if (row == clip_star.start.lnum && start < (int)clip_star.start.col)
983 start = clip_star.start.col;
984 if (row == clip_star.end.lnum && end > (int)clip_star.end.col)
985 end = clip_star.end.col;
986 if (end > start)
987 clip_invert_area(row, start, row, end, 0);
990 # endif
993 * Called from outside to clear selected region from the display
995 void
996 clip_clear_selection()
998 VimClipboard *cb = &clip_star;
1000 if (cb->state == SELECT_CLEARED)
1001 return;
1003 clip_invert_area((int)cb->start.lnum, cb->start.col, (int)cb->end.lnum,
1004 cb->end.col, CLIP_CLEAR);
1005 cb->state = SELECT_CLEARED;
1009 * Clear the selection if any lines from "row1" to "row2" are inside of it.
1011 void
1012 clip_may_clear_selection(row1, row2)
1013 int row1, row2;
1015 if (clip_star.state == SELECT_DONE
1016 && row2 >= clip_star.start.lnum
1017 && row1 <= clip_star.end.lnum)
1018 clip_clear_selection();
1022 * Called before the screen is scrolled up or down. Adjusts the line numbers
1023 * of the selection. Call with big number when clearing the screen.
1025 void
1026 clip_scroll_selection(rows)
1027 int rows; /* negative for scroll down */
1029 int lnum;
1031 if (clip_star.state == SELECT_CLEARED)
1032 return;
1034 lnum = clip_star.start.lnum - rows;
1035 if (lnum <= 0)
1036 clip_star.start.lnum = 0;
1037 else if (lnum >= screen_Rows) /* scrolled off of the screen */
1038 clip_star.state = SELECT_CLEARED;
1039 else
1040 clip_star.start.lnum = lnum;
1042 lnum = clip_star.end.lnum - rows;
1043 if (lnum < 0) /* scrolled off of the screen */
1044 clip_star.state = SELECT_CLEARED;
1045 else if (lnum >= screen_Rows)
1046 clip_star.end.lnum = screen_Rows - 1;
1047 else
1048 clip_star.end.lnum = lnum;
1052 * Invert a region of the display between a starting and ending row and column
1053 * Values for "how":
1054 * CLIP_CLEAR: undo inversion
1055 * CLIP_SET: set inversion
1056 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise.
1057 * 0: invert (GUI only).
1059 static void
1060 clip_invert_area(row1, col1, row2, col2, how)
1061 int row1;
1062 int col1;
1063 int row2;
1064 int col2;
1065 int how;
1067 int invert = FALSE;
1069 if (how == CLIP_SET)
1070 invert = TRUE;
1072 /* Swap the from and to positions so the from is always before */
1073 if (clip_compare_pos(row1, col1, row2, col2) > 0)
1075 int tmp_row, tmp_col;
1077 tmp_row = row1;
1078 tmp_col = col1;
1079 row1 = row2;
1080 col1 = col2;
1081 row2 = tmp_row;
1082 col2 = tmp_col;
1084 else if (how == CLIP_TOGGLE)
1085 invert = TRUE;
1087 /* If all on the same line, do it the easy way */
1088 if (row1 == row2)
1090 clip_invert_rectangle(row1, col1, 1, col2 - col1, invert);
1092 else
1094 /* Handle a piece of the first line */
1095 if (col1 > 0)
1097 clip_invert_rectangle(row1, col1, 1, (int)Columns - col1, invert);
1098 row1++;
1101 /* Handle a piece of the last line */
1102 if (col2 < Columns - 1)
1104 clip_invert_rectangle(row2, 0, 1, col2, invert);
1105 row2--;
1108 /* Handle the rectangle thats left */
1109 if (row2 >= row1)
1110 clip_invert_rectangle(row1, 0, row2 - row1 + 1, (int)Columns,
1111 invert);
1116 * Invert or un-invert a rectangle of the screen.
1117 * "invert" is true if the result is inverted.
1119 static void
1120 clip_invert_rectangle(row, col, height, width, invert)
1121 int row;
1122 int col;
1123 int height;
1124 int width;
1125 int invert;
1127 #ifdef FEAT_GUI
1128 if (gui.in_use)
1129 # ifdef FEAT_GUI_MACVIM
1130 gui_mch_invert_rectangle(row, col, height, width, invert);
1131 # else
1132 gui_mch_invert_rectangle(row, col, height, width);
1133 #endif
1134 else
1135 #endif
1136 screen_draw_rectangle(row, col, height, width, invert);
1140 * Copy the currently selected area into the '*' register so it will be
1141 * available for pasting.
1142 * When "both" is TRUE also copy to the '+' register.
1144 /*ARGSUSED*/
1145 void
1146 clip_copy_modeless_selection(both)
1147 int both;
1149 char_u *buffer;
1150 char_u *bufp;
1151 int row;
1152 int start_col;
1153 int end_col;
1154 int line_end_col;
1155 int add_newline_flag = FALSE;
1156 int len;
1157 #ifdef FEAT_MBYTE
1158 char_u *p;
1159 #endif
1160 int row1 = clip_star.start.lnum;
1161 int col1 = clip_star.start.col;
1162 int row2 = clip_star.end.lnum;
1163 int col2 = clip_star.end.col;
1165 /* Can't use ScreenLines unless initialized */
1166 if (ScreenLines == NULL)
1167 return;
1170 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2.
1172 if (row1 > row2)
1174 row = row1; row1 = row2; row2 = row;
1175 row = col1; col1 = col2; col2 = row;
1177 else if (row1 == row2 && col1 > col2)
1179 row = col1; col1 = col2; col2 = row;
1181 #ifdef FEAT_MBYTE
1182 /* correct starting point for being on right halve of double-wide char */
1183 p = ScreenLines + LineOffset[row1];
1184 if (enc_dbcs != 0)
1185 col1 -= (*mb_head_off)(p, p + col1);
1186 else if (enc_utf8 && p[col1] == 0)
1187 --col1;
1188 #endif
1190 /* Create a temporary buffer for storing the text */
1191 len = (row2 - row1 + 1) * Columns + 1;
1192 #ifdef FEAT_MBYTE
1193 if (enc_dbcs != 0)
1194 len *= 2; /* max. 2 bytes per display cell */
1195 else if (enc_utf8)
1196 len *= MB_MAXBYTES;
1197 #endif
1198 buffer = lalloc((long_u)len, TRUE);
1199 if (buffer == NULL) /* out of memory */
1200 return;
1202 /* Process each row in the selection */
1203 for (bufp = buffer, row = row1; row <= row2; row++)
1205 if (row == row1)
1206 start_col = col1;
1207 else
1208 start_col = 0;
1210 if (row == row2)
1211 end_col = col2;
1212 else
1213 end_col = Columns;
1215 line_end_col = clip_get_line_end(row);
1217 /* See if we need to nuke some trailing whitespace */
1218 if (end_col >= Columns && (row < row2 || end_col > line_end_col))
1220 /* Get rid of trailing whitespace */
1221 end_col = line_end_col;
1222 if (end_col < start_col)
1223 end_col = start_col;
1225 /* If the last line extended to the end, add an extra newline */
1226 if (row == row2)
1227 add_newline_flag = TRUE;
1230 /* If after the first row, we need to always add a newline */
1231 if (row > row1 && !LineWraps[row - 1])
1232 *bufp++ = NL;
1234 if (row < screen_Rows && end_col <= screen_Columns)
1236 #ifdef FEAT_MBYTE
1237 if (enc_dbcs != 0)
1239 int i;
1241 p = ScreenLines + LineOffset[row];
1242 for (i = start_col; i < end_col; ++i)
1243 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e)
1245 /* single-width double-byte char */
1246 *bufp++ = 0x8e;
1247 *bufp++ = ScreenLines2[LineOffset[row] + i];
1249 else
1251 *bufp++ = p[i];
1252 if (MB_BYTE2LEN(p[i]) == 2)
1253 *bufp++ = p[++i];
1256 else if (enc_utf8)
1258 int off;
1259 int i;
1260 int ci;
1262 off = LineOffset[row];
1263 for (i = start_col; i < end_col; ++i)
1265 /* The base character is either in ScreenLinesUC[] or
1266 * ScreenLines[]. */
1267 if (ScreenLinesUC[off + i] == 0)
1268 *bufp++ = ScreenLines[off + i];
1269 else
1271 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp);
1272 for (ci = 0; ci < Screen_mco; ++ci)
1274 /* Add a composing character. */
1275 if (ScreenLinesC[ci][off + i] == 0)
1276 break;
1277 bufp += utf_char2bytes(ScreenLinesC[ci][off + i],
1278 bufp);
1281 /* Skip right halve of double-wide character. */
1282 if (ScreenLines[off + i + 1] == 0)
1283 ++i;
1286 else
1287 #endif
1289 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col,
1290 end_col - start_col);
1291 bufp += end_col - start_col;
1296 /* Add a newline at the end if the selection ended there */
1297 if (add_newline_flag)
1298 *bufp++ = NL;
1300 /* First cleanup any old selection and become the owner. */
1301 clip_free_selection(&clip_star);
1302 clip_own_selection(&clip_star);
1304 /* Yank the text into the '*' register. */
1305 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star);
1307 /* Make the register contents available to the outside world. */
1308 clip_gen_set_selection(&clip_star);
1310 #ifdef FEAT_X11
1311 if (both)
1313 /* Do the same for the '+' register. */
1314 clip_free_selection(&clip_plus);
1315 clip_own_selection(&clip_plus);
1316 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus);
1317 clip_gen_set_selection(&clip_plus);
1319 #endif
1320 vim_free(buffer);
1324 * Find the starting and ending positions of the word at the given row and
1325 * column. Only white-separated words are recognized here.
1327 #define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c))
1329 static void
1330 clip_get_word_boundaries(cb, row, col)
1331 VimClipboard *cb;
1332 int row;
1333 int col;
1335 int start_class;
1336 int temp_col;
1337 char_u *p;
1338 #ifdef FEAT_MBYTE
1339 int mboff;
1340 #endif
1342 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL)
1343 return;
1345 p = ScreenLines + LineOffset[row];
1346 #ifdef FEAT_MBYTE
1347 /* Correct for starting in the right halve of a double-wide char */
1348 if (enc_dbcs != 0)
1349 col -= dbcs_screen_head_off(p, p + col);
1350 else if (enc_utf8 && p[col] == 0)
1351 --col;
1352 #endif
1353 start_class = CHAR_CLASS(p[col]);
1355 temp_col = col;
1356 for ( ; temp_col > 0; temp_col--)
1357 #ifdef FEAT_MBYTE
1358 if (enc_dbcs != 0
1359 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0)
1360 temp_col -= mboff;
1361 else
1362 #endif
1363 if (CHAR_CLASS(p[temp_col - 1]) != start_class
1364 #ifdef FEAT_MBYTE
1365 && !(enc_utf8 && p[temp_col - 1] == 0)
1366 #endif
1368 break;
1369 cb->word_start_col = temp_col;
1371 temp_col = col;
1372 for ( ; temp_col < screen_Columns; temp_col++)
1373 #ifdef FEAT_MBYTE
1374 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2)
1375 ++temp_col;
1376 else
1377 #endif
1378 if (CHAR_CLASS(p[temp_col]) != start_class
1379 #ifdef FEAT_MBYTE
1380 && !(enc_utf8 && p[temp_col] == 0)
1381 #endif
1383 break;
1384 cb->word_end_col = temp_col;
1388 * Find the column position for the last non-whitespace character on the given
1389 * line.
1391 static int
1392 clip_get_line_end(row)
1393 int row;
1395 int i;
1397 if (row >= screen_Rows || ScreenLines == NULL)
1398 return 0;
1399 for (i = screen_Columns; i > 0; i--)
1400 if (ScreenLines[LineOffset[row] + i - 1] != ' ')
1401 break;
1402 return i;
1406 * Update the currently selected region by adding and/or subtracting from the
1407 * beginning or end and inverting the changed area(s).
1409 static void
1410 clip_update_modeless_selection(cb, row1, col1, row2, col2)
1411 VimClipboard *cb;
1412 int row1;
1413 int col1;
1414 int row2;
1415 int col2;
1417 /* See if we changed at the beginning of the selection */
1418 if (row1 != cb->start.lnum || col1 != (int)cb->start.col)
1420 clip_invert_area(row1, col1, (int)cb->start.lnum, cb->start.col,
1421 CLIP_TOGGLE);
1422 cb->start.lnum = row1;
1423 cb->start.col = col1;
1426 /* See if we changed at the end of the selection */
1427 if (row2 != cb->end.lnum || col2 != (int)cb->end.col)
1429 clip_invert_area((int)cb->end.lnum, cb->end.col, row2, col2,
1430 CLIP_TOGGLE);
1431 cb->end.lnum = row2;
1432 cb->end.col = col2;
1437 clip_gen_own_selection(cbd)
1438 VimClipboard *cbd;
1440 #ifdef FEAT_XCLIPBOARD
1441 # ifdef FEAT_GUI
1442 if (gui.in_use)
1443 return clip_mch_own_selection(cbd);
1444 else
1445 # endif
1446 return clip_xterm_own_selection(cbd);
1447 #else
1448 return clip_mch_own_selection(cbd);
1449 #endif
1452 void
1453 clip_gen_lose_selection(cbd)
1454 VimClipboard *cbd;
1456 #ifdef FEAT_XCLIPBOARD
1457 # ifdef FEAT_GUI
1458 if (gui.in_use)
1459 clip_mch_lose_selection(cbd);
1460 else
1461 # endif
1462 clip_xterm_lose_selection(cbd);
1463 #else
1464 clip_mch_lose_selection(cbd);
1465 #endif
1468 void
1469 clip_gen_set_selection(cbd)
1470 VimClipboard *cbd;
1472 #ifdef FEAT_XCLIPBOARD
1473 # ifdef FEAT_GUI
1474 if (gui.in_use)
1475 clip_mch_set_selection(cbd);
1476 else
1477 # endif
1478 clip_xterm_set_selection(cbd);
1479 #else
1480 clip_mch_set_selection(cbd);
1481 #endif
1484 void
1485 clip_gen_request_selection(cbd)
1486 VimClipboard *cbd;
1488 #ifdef FEAT_XCLIPBOARD
1489 # ifdef FEAT_GUI
1490 if (gui.in_use)
1491 clip_mch_request_selection(cbd);
1492 else
1493 # endif
1494 clip_xterm_request_selection(cbd);
1495 #else
1496 clip_mch_request_selection(cbd);
1497 #endif
1500 #endif /* FEAT_CLIPBOARD */
1502 /*****************************************************************************
1503 * Functions that handle the input buffer.
1504 * This is used for any GUI version, and the unix terminal version.
1506 * For Unix, the input characters are buffered to be able to check for a
1507 * CTRL-C. This should be done with signals, but I don't know how to do that
1508 * in a portable way for a tty in RAW mode.
1510 * For the client-server code in the console the received keys are put in the
1511 * input buffer.
1514 #if defined(USE_INPUT_BUF) || defined(PROTO)
1517 * Internal typeahead buffer. Includes extra space for long key code
1518 * descriptions which would otherwise overflow. The buffer is considered full
1519 * when only this extra space (or part of it) remains.
1521 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
1522 || defined(FEAT_CLIENTSERVER)
1524 * Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
1525 * This requires a larger buffer...
1526 * (Madsen) Go with this for remote input as well ...
1528 # define INBUFLEN 4096
1529 #else
1530 # define INBUFLEN 250
1531 #endif
1533 static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
1534 static int inbufcount = 0; /* number of chars in inbuf[] */
1537 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and
1538 * trash_input_buf() are functions for manipulating the input buffer. These
1539 * are used by the gui_* calls when a GUI is used to handle keyboard input.
1543 vim_is_input_buf_full()
1545 return (inbufcount >= INBUFLEN);
1549 vim_is_input_buf_empty()
1551 return (inbufcount == 0);
1554 #if defined(FEAT_OLE) || defined(PROTO)
1556 vim_free_in_input_buf()
1558 return (INBUFLEN - inbufcount);
1560 #endif
1562 #if defined(FEAT_GUI_GTK) || defined(PROTO)
1564 vim_used_in_input_buf()
1566 return inbufcount;
1568 #endif
1570 #if defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) || defined(PROTO)
1572 * Return the current contents of the input buffer and make it empty.
1573 * The returned pointer must be passed to set_input_buf() later.
1575 char_u *
1576 get_input_buf()
1578 garray_T *gap;
1580 /* We use a growarray to store the data pointer and the length. */
1581 gap = (garray_T *)alloc((unsigned)sizeof(garray_T));
1582 if (gap != NULL)
1584 /* Add one to avoid a zero size. */
1585 gap->ga_data = alloc((unsigned)inbufcount + 1);
1586 if (gap->ga_data != NULL)
1587 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount);
1588 gap->ga_len = inbufcount;
1590 trash_input_buf();
1591 return (char_u *)gap;
1595 * Restore the input buffer with a pointer returned from get_input_buf().
1596 * The allocated memory is freed, this only works once!
1598 void
1599 set_input_buf(p)
1600 char_u *p;
1602 garray_T *gap = (garray_T *)p;
1604 if (gap != NULL)
1606 if (gap->ga_data != NULL)
1608 mch_memmove(inbuf, gap->ga_data, gap->ga_len);
1609 inbufcount = gap->ga_len;
1610 vim_free(gap->ga_data);
1612 vim_free(gap);
1615 #endif
1617 #if defined(FEAT_GUI) \
1618 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) \
1619 || defined(FEAT_XCLIPBOARD) || defined(VMS) \
1620 || defined(FEAT_SNIFF) || defined(FEAT_CLIENTSERVER) \
1621 || defined(PROTO)
1623 * Add the given bytes to the input buffer
1624 * Special keys start with CSI. A real CSI must have been translated to
1625 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation.
1627 void
1628 add_to_input_buf(s, len)
1629 char_u *s;
1630 int len;
1632 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN)
1633 return; /* Shouldn't ever happen! */
1635 #ifdef FEAT_HANGULIN
1636 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get())
1637 if ((len = hangul_input_process(s, len)) == 0)
1638 return;
1639 #endif
1641 while (len--)
1642 inbuf[inbufcount++] = *s++;
1644 #endif
1646 #if ((defined(FEAT_XIM) || defined(FEAT_DND)) && defined(FEAT_GUI_GTK)) \
1647 || defined(FEAT_GUI_MSWIN) \
1648 || defined(FEAT_GUI_MAC) \
1649 || (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \
1650 || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
1651 || defined(FEAT_MENU))) \
1652 || defined(PROTO)
1654 * Add "str[len]" to the input buffer while escaping CSI bytes.
1656 void
1657 add_to_input_buf_csi(char_u *str, int len)
1659 int i;
1660 char_u buf[2];
1662 for (i = 0; i < len; ++i)
1664 add_to_input_buf(str + i, 1);
1665 if (str[i] == CSI)
1667 /* Turn CSI into K_CSI. */
1668 buf[0] = KS_EXTRA;
1669 buf[1] = (int)KE_CSI;
1670 add_to_input_buf(buf, 2);
1674 #endif
1676 #if defined(FEAT_HANGULIN) || defined(PROTO)
1677 void
1678 push_raw_key (s, len)
1679 char_u *s;
1680 int len;
1682 while (len--)
1683 inbuf[inbufcount++] = *s++;
1685 #endif
1687 #if defined(FEAT_GUI) || defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) \
1688 || defined(PROTO)
1689 /* Remove everything from the input buffer. Called when ^C is found */
1690 void
1691 trash_input_buf()
1693 inbufcount = 0;
1695 #endif
1698 * Read as much data from the input buffer as possible up to maxlen, and store
1699 * it in buf.
1700 * Note: this function used to be Read() in unix.c
1703 read_from_input_buf(buf, maxlen)
1704 char_u *buf;
1705 long maxlen;
1707 if (inbufcount == 0) /* if the buffer is empty, fill it */
1708 fill_input_buf(TRUE);
1709 if (maxlen > inbufcount)
1710 maxlen = inbufcount;
1711 mch_memmove(buf, inbuf, (size_t)maxlen);
1712 inbufcount -= maxlen;
1713 if (inbufcount)
1714 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount);
1715 return (int)maxlen;
1718 /*ARGSUSED*/
1719 void
1720 fill_input_buf(exit_on_error)
1721 int exit_on_error;
1723 #if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX)
1724 int len;
1725 int try;
1726 static int did_read_something = FALSE;
1727 # ifdef FEAT_MBYTE
1728 static char_u *rest = NULL; /* unconverted rest of previous read */
1729 static int restlen = 0;
1730 int unconverted;
1731 # endif
1732 #endif
1734 #ifdef FEAT_GUI
1735 if (gui.in_use
1736 # ifdef NO_CONSOLE_INPUT
1737 /* Don't use the GUI input when the window hasn't been opened yet.
1738 * We get here from ui_inchar() when we should try reading from stdin. */
1739 && !no_console_input()
1740 # endif
1743 gui_mch_update();
1744 return;
1746 #endif
1747 #if defined(UNIX) || defined(OS2) || defined(VMS) || defined(MACOS_X_UNIX)
1748 if (vim_is_input_buf_full())
1749 return;
1751 * Fill_input_buf() is only called when we really need a character.
1752 * If we can't get any, but there is some in the buffer, just return.
1753 * If we can't get any, and there isn't any in the buffer, we give up and
1754 * exit Vim.
1756 # ifdef __BEOS__
1758 * On the BeBox version (for now), all input is secretly performed within
1759 * beos_select() which is called from RealWaitForChar().
1761 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL))
1763 len = inbufcount;
1764 inbufcount = 0;
1765 # else
1767 # ifdef FEAT_SNIFF
1768 if (sniff_request_waiting)
1770 add_to_input_buf((char_u *)"\233sniff",6); /* results in K_SNIFF */
1771 sniff_request_waiting = 0;
1772 want_sniff_request = 0;
1773 return;
1775 # endif
1777 # ifdef FEAT_MBYTE
1778 if (rest != NULL)
1780 /* Use remainder of previous call, starts with an invalid character
1781 * that may become valid when reading more. */
1782 if (restlen > INBUFLEN - inbufcount)
1783 unconverted = INBUFLEN - inbufcount;
1784 else
1785 unconverted = restlen;
1786 mch_memmove(inbuf + inbufcount, rest, unconverted);
1787 if (unconverted == restlen)
1789 vim_free(rest);
1790 rest = NULL;
1792 else
1794 restlen -= unconverted;
1795 mch_memmove(rest, rest + unconverted, restlen);
1797 inbufcount += unconverted;
1799 else
1800 unconverted = 0;
1801 #endif
1803 len = 0; /* to avoid gcc warning */
1804 for (try = 0; try < 100; ++try)
1806 # ifdef VMS
1807 len = vms_read(
1808 # else
1809 len = read(read_cmd_fd,
1810 # endif
1811 (char *)inbuf + inbufcount, (size_t)((INBUFLEN - inbufcount)
1812 # ifdef FEAT_MBYTE
1813 / input_conv.vc_factor
1814 # endif
1816 # if 0
1817 ) /* avoid syntax highlight error */
1818 # endif
1820 if (len > 0 || got_int)
1821 break;
1823 * If reading stdin results in an error, continue reading stderr.
1824 * This helps when using "foo | xargs vim".
1826 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0)
1828 int m = cur_tmode;
1830 /* We probably set the wrong file descriptor to raw mode. Switch
1831 * back to cooked mode, use another descriptor and set the mode to
1832 * what it was. */
1833 settmode(TMODE_COOK);
1834 #ifdef HAVE_DUP
1835 /* Use stderr for stdin, also works for shell commands. */
1836 close(0);
1837 ignored = dup(2);
1838 #else
1839 read_cmd_fd = 2; /* read from stderr instead of stdin */
1840 #endif
1841 settmode(m);
1843 if (!exit_on_error)
1844 return;
1846 # endif
1847 if (len <= 0 && !got_int)
1848 read_error_exit();
1849 if (len > 0)
1850 did_read_something = TRUE;
1851 if (got_int)
1853 /* Interrupted, pretend a CTRL-C was typed. */
1854 inbuf[0] = 3;
1855 inbufcount = 1;
1857 else
1859 # ifdef FEAT_MBYTE
1861 * May perform conversion on the input characters.
1862 * Include the unconverted rest of the previous call.
1863 * If there is an incomplete char at the end it is kept for the next
1864 * time, reading more bytes should make conversion possible.
1865 * Don't do this in the unlikely event that the input buffer is too
1866 * small ("rest" still contains more bytes).
1868 if (input_conv.vc_type != CONV_NONE)
1870 inbufcount -= unconverted;
1871 len = convert_input_safe(inbuf + inbufcount,
1872 len + unconverted, INBUFLEN - inbufcount,
1873 rest == NULL ? &rest : NULL, &restlen);
1875 # endif
1876 while (len-- > 0)
1879 * if a CTRL-C was typed, remove it from the buffer and set got_int
1881 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts)
1883 /* remove everything typed before the CTRL-C */
1884 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1));
1885 inbufcount = 0;
1886 got_int = TRUE;
1888 ++inbufcount;
1891 #endif /* UNIX or OS2 or VMS*/
1893 #endif /* defined(UNIX) || defined(FEAT_GUI) || defined(OS2) || defined(VMS) */
1896 * Exit because of an input read error.
1898 void
1899 read_error_exit()
1901 if (silent_mode) /* Normal way to exit for "ex -s" */
1902 getout(0);
1903 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n"));
1904 preserve_exit();
1907 #if defined(CURSOR_SHAPE) || defined(PROTO)
1909 * May update the shape of the cursor.
1911 void
1912 ui_cursor_shape()
1914 # ifdef FEAT_GUI
1915 if (gui.in_use)
1916 gui_update_cursor_later();
1917 else
1918 # endif
1919 term_cursor_shape();
1921 # ifdef MCH_CURSOR_SHAPE
1922 mch_update_cursor();
1923 # endif
1925 #endif
1927 #if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
1928 || defined(FEAT_MBYTE) || defined(PROTO)
1930 * Check bounds for column number
1933 check_col(col)
1934 int col;
1936 if (col < 0)
1937 return 0;
1938 if (col >= (int)screen_Columns)
1939 return (int)screen_Columns - 1;
1940 return col;
1944 * Check bounds for row number
1947 check_row(row)
1948 int row;
1950 if (row < 0)
1951 return 0;
1952 if (row >= (int)screen_Rows)
1953 return (int)screen_Rows - 1;
1954 return row;
1956 #endif
1959 * Stuff for the X clipboard. Shared between VMS and Unix.
1962 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO)
1963 # include <X11/Xatom.h>
1964 # include <X11/Intrinsic.h>
1967 * Open the application context (if it hasn't been opened yet).
1968 * Used for Motif and Athena GUI and the xterm clipboard.
1970 void
1971 open_app_context()
1973 if (app_context == NULL)
1975 XtToolkitInitialize();
1976 app_context = XtCreateApplicationContext();
1980 static Atom vim_atom; /* Vim's own special selection format */
1981 #ifdef FEAT_MBYTE
1982 static Atom vimenc_atom; /* Vim's extended selection format */
1983 #endif
1984 static Atom compound_text_atom;
1985 static Atom text_atom;
1986 static Atom targets_atom;
1988 void
1989 x11_setup_atoms(dpy)
1990 Display *dpy;
1992 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False);
1993 #ifdef FEAT_MBYTE
1994 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False);
1995 #endif
1996 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False);
1997 text_atom = XInternAtom(dpy, "TEXT", False);
1998 targets_atom = XInternAtom(dpy, "TARGETS", False);
1999 clip_star.sel_atom = XA_PRIMARY;
2000 clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False);
2004 * X Selection stuff, for cutting and pasting text to other windows.
2007 static void clip_x11_request_selection_cb __ARGS((Widget, XtPointer, Atom *, Atom *, XtPointer, long_u *, int *));
2009 /* ARGSUSED */
2010 static void
2011 clip_x11_request_selection_cb(w, success, sel_atom, type, value, length,
2012 format)
2013 Widget w;
2014 XtPointer success;
2015 Atom *sel_atom;
2016 Atom *type;
2017 XtPointer value;
2018 long_u *length;
2019 int *format;
2021 int motion_type;
2022 long_u len;
2023 char_u *p;
2024 char **text_list = NULL;
2025 VimClipboard *cbd;
2026 #ifdef FEAT_MBYTE
2027 char_u *tmpbuf = NULL;
2028 #endif
2030 if (*sel_atom == clip_plus.sel_atom)
2031 cbd = &clip_plus;
2032 else
2033 cbd = &clip_star;
2035 if (value == NULL || *length == 0)
2037 clip_free_selection(cbd); /* nothing received, clear register */
2038 *(int *)success = FALSE;
2039 return;
2041 motion_type = MCHAR;
2042 p = (char_u *)value;
2043 len = *length;
2044 if (*type == vim_atom)
2046 motion_type = *p++;
2047 len--;
2050 #ifdef FEAT_MBYTE
2051 else if (*type == vimenc_atom)
2053 char_u *enc;
2054 vimconv_T conv;
2055 int convlen;
2057 motion_type = *p++;
2058 --len;
2060 enc = p;
2061 p += STRLEN(p) + 1;
2062 len -= p - enc;
2064 /* If the encoding of the text is different from 'encoding', attempt
2065 * converting it. */
2066 conv.vc_type = CONV_NONE;
2067 convert_setup(&conv, enc, p_enc);
2068 if (conv.vc_type != CONV_NONE)
2070 convlen = len; /* Need to use an int here. */
2071 tmpbuf = string_convert(&conv, p, &convlen);
2072 len = convlen;
2073 if (tmpbuf != NULL)
2074 p = tmpbuf;
2075 convert_setup(&conv, NULL, NULL);
2078 #endif
2080 else if (*type == compound_text_atom || (
2081 #ifdef FEAT_MBYTE
2082 enc_dbcs != 0 &&
2083 #endif
2084 *type == text_atom))
2086 XTextProperty text_prop;
2087 int n_text = 0;
2088 int status;
2090 text_prop.value = (unsigned char *)value;
2091 text_prop.encoding = *type;
2092 text_prop.format = *format;
2093 text_prop.nitems = len;
2094 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop,
2095 &text_list, &n_text);
2096 if (status != Success || n_text < 1)
2098 *(int *)success = FALSE;
2099 return;
2101 p = (char_u *)text_list[0];
2102 len = STRLEN(p);
2104 clip_yank_selection(motion_type, p, (long)len, cbd);
2106 if (text_list != NULL)
2107 XFreeStringList(text_list);
2108 #ifdef FEAT_MBYTE
2109 vim_free(tmpbuf);
2110 #endif
2111 XtFree((char *)value);
2112 *(int *)success = TRUE;
2115 void
2116 clip_x11_request_selection(myShell, dpy, cbd)
2117 Widget myShell;
2118 Display *dpy;
2119 VimClipboard *cbd;
2121 XEvent event;
2122 Atom type;
2123 static int success;
2124 int i;
2125 int nbytes = 0;
2126 char_u *buffer;
2127 time_t start_time;
2128 int timed_out = FALSE;
2130 for (i =
2131 #ifdef FEAT_MBYTE
2133 #else
2135 #endif
2136 ; i < 5; i++)
2138 switch (i)
2140 #ifdef FEAT_MBYTE
2141 case 0: type = vimenc_atom; break;
2142 #endif
2143 case 1: type = vim_atom; break;
2144 case 2: type = compound_text_atom; break;
2145 case 3: type = text_atom; break;
2146 default: type = XA_STRING;
2148 success = MAYBE;
2149 XtGetSelectionValue(myShell, cbd->sel_atom, type,
2150 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime);
2152 /* Make sure the request for the selection goes out before waiting for
2153 * a response. */
2154 XFlush(dpy);
2157 * Wait for result of selection request, otherwise if we type more
2158 * characters, then they will appear before the one that requested the
2159 * paste! Don't worry, we will catch up with any other events later.
2161 start_time = time(NULL);
2162 while (success == MAYBE)
2164 if (XCheckTypedEvent(dpy, SelectionNotify, &event)
2165 || XCheckTypedEvent(dpy, SelectionRequest, &event)
2166 || XCheckTypedEvent(dpy, PropertyNotify, &event))
2168 /* This is where clip_x11_request_selection_cb() should be
2169 * called. It may actually happen a bit later, so we loop
2170 * until "success" changes.
2171 * We may get a SelectionRequest here and if we don't handle
2172 * it we hang. KDE klipper does this, for example.
2173 * We need to handle a PropertyNotify for large selections. */
2174 XtDispatchEvent(&event);
2175 continue;
2178 /* Time out after 2 to 3 seconds to avoid that we hang when the
2179 * other process doesn't respond. Note that the SelectionNotify
2180 * event may still come later when the selection owner comes back
2181 * to life and the text gets inserted unexpectedly. Don't know
2182 * why that happens or how to avoid that :-(. */
2183 if (time(NULL) > start_time + 2)
2185 timed_out = TRUE;
2186 break;
2189 /* Do we need this? Probably not. */
2190 XSync(dpy, False);
2192 /* Wait for 1 msec to avoid that we eat up all CPU time. */
2193 ui_delay(1L, TRUE);
2196 if (success == TRUE)
2197 return;
2199 /* don't do a retry with another type after timing out, otherwise we
2200 * hang for 15 seconds. */
2201 if (timed_out)
2202 break;
2205 /* Final fallback position - use the X CUT_BUFFER0 store */
2206 buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0);
2207 if (nbytes > 0)
2209 /* Got something */
2210 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd);
2211 XFree((void *)buffer);
2212 if (p_verbose > 0)
2213 verb_msg((char_u *)_("Used CUT_BUFFER0 instead of empty selection"));
2217 static Boolean clip_x11_convert_selection_cb __ARGS((Widget, Atom *, Atom *, Atom *, XtPointer *, long_u *, int *));
2219 /* ARGSUSED */
2220 static Boolean
2221 clip_x11_convert_selection_cb(w, sel_atom, target, type, value, length, format)
2222 Widget w;
2223 Atom *sel_atom;
2224 Atom *target;
2225 Atom *type;
2226 XtPointer *value;
2227 long_u *length;
2228 int *format;
2230 char_u *string;
2231 char_u *result;
2232 int motion_type;
2233 VimClipboard *cbd;
2234 int i;
2236 if (*sel_atom == clip_plus.sel_atom)
2237 cbd = &clip_plus;
2238 else
2239 cbd = &clip_star;
2241 if (!cbd->owned)
2242 return False; /* Shouldn't ever happen */
2244 /* requestor wants to know what target types we support */
2245 if (*target == targets_atom)
2247 Atom *array;
2249 if ((array = (Atom *)XtMalloc((unsigned)(sizeof(Atom) * 6))) == NULL)
2250 return False;
2251 *value = (XtPointer)array;
2252 i = 0;
2253 array[i++] = XA_STRING;
2254 array[i++] = targets_atom;
2255 #ifdef FEAT_MBYTE
2256 array[i++] = vimenc_atom;
2257 #endif
2258 array[i++] = vim_atom;
2259 array[i++] = text_atom;
2260 array[i++] = compound_text_atom;
2261 *type = XA_ATOM;
2262 /* This used to be: *format = sizeof(Atom) * 8; but that caused
2263 * crashes on 64 bit machines. (Peter Derr) */
2264 *format = 32;
2265 *length = i;
2266 return True;
2269 if ( *target != XA_STRING
2270 #ifdef FEAT_MBYTE
2271 && *target != vimenc_atom
2272 #endif
2273 && *target != vim_atom
2274 && *target != text_atom
2275 && *target != compound_text_atom)
2276 return False;
2278 clip_get_selection(cbd);
2279 motion_type = clip_convert_selection(&string, length, cbd);
2280 if (motion_type < 0)
2281 return False;
2283 /* For our own format, the first byte contains the motion type */
2284 if (*target == vim_atom)
2285 (*length)++;
2287 #ifdef FEAT_MBYTE
2288 /* Our own format with encoding: motion 'encoding' NUL text */
2289 if (*target == vimenc_atom)
2290 *length += STRLEN(p_enc) + 2;
2291 #endif
2293 *value = XtMalloc((Cardinal)*length);
2294 result = (char_u *)*value;
2295 if (result == NULL)
2297 vim_free(string);
2298 return False;
2301 if (*target == XA_STRING)
2303 mch_memmove(result, string, (size_t)(*length));
2304 *type = XA_STRING;
2306 else if (*target == compound_text_atom
2307 || *target == text_atom)
2309 XTextProperty text_prop;
2310 char *string_nt = (char *)alloc((unsigned)*length + 1);
2312 /* create NUL terminated string which XmbTextListToTextProperty wants */
2313 mch_memmove(string_nt, string, (size_t)*length);
2314 string_nt[*length] = NUL;
2315 XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt, 1,
2316 XCompoundTextStyle, &text_prop);
2317 vim_free(string_nt);
2318 XtFree(*value); /* replace with COMPOUND text */
2319 *value = (XtPointer)(text_prop.value); /* from plain text */
2320 *length = text_prop.nitems;
2321 *type = compound_text_atom;
2324 #ifdef FEAT_MBYTE
2325 else if (*target == vimenc_atom)
2327 int l = STRLEN(p_enc);
2329 result[0] = motion_type;
2330 STRCPY(result + 1, p_enc);
2331 mch_memmove(result + l + 2, string, (size_t)(*length - l - 2));
2332 *type = vimenc_atom;
2334 #endif
2336 else
2338 result[0] = motion_type;
2339 mch_memmove(result + 1, string, (size_t)(*length - 1));
2340 *type = vim_atom;
2342 *format = 8; /* 8 bits per char */
2343 vim_free(string);
2344 return True;
2347 static void clip_x11_lose_ownership_cb __ARGS((Widget, Atom *));
2349 /* ARGSUSED */
2350 static void
2351 clip_x11_lose_ownership_cb(w, sel_atom)
2352 Widget w;
2353 Atom *sel_atom;
2355 if (*sel_atom == clip_plus.sel_atom)
2356 clip_lose_selection(&clip_plus);
2357 else
2358 clip_lose_selection(&clip_star);
2361 void
2362 clip_x11_lose_selection(myShell, cbd)
2363 Widget myShell;
2364 VimClipboard *cbd;
2366 XtDisownSelection(myShell, cbd->sel_atom, CurrentTime);
2370 clip_x11_own_selection(myShell, cbd)
2371 Widget myShell;
2372 VimClipboard *cbd;
2374 if (XtOwnSelection(myShell, cbd->sel_atom, CurrentTime,
2375 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb,
2376 NULL) == False)
2377 return FAIL;
2378 return OK;
2382 * Send the current selection to the clipboard. Do nothing for X because we
2383 * will fill in the selection only when requested by another app.
2385 /*ARGSUSED*/
2386 void
2387 clip_x11_set_selection(cbd)
2388 VimClipboard *cbd;
2391 #endif
2393 #if defined(FEAT_MOUSE) || defined(PROTO)
2396 * Move the cursor to the specified row and column on the screen.
2397 * Change current window if necessary. Returns an integer with the
2398 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
2400 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
2401 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
2403 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
2404 * if the mouse is outside the window then the text will scroll, or if the
2405 * mouse was previously on a status line, then the status line may be dragged.
2407 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
2408 * cursor is moved unless the cursor was on a status line.
2409 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
2410 * IN_SEP_LINE depending on where the cursor was clicked.
2412 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
2413 * the mouse is on the status line of the same window.
2415 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
2416 * the last call.
2418 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
2419 * remembered.
2422 jump_to_mouse(flags, inclusive, which_button)
2423 int flags;
2424 int *inclusive; /* used for inclusive operator, can be NULL */
2425 int which_button; /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
2427 static int on_status_line = 0; /* #lines below bottom of window */
2428 #ifdef FEAT_VERTSPLIT
2429 static int on_sep_line = 0; /* on separator right of window */
2430 #endif
2431 static int prev_row = -1;
2432 static int prev_col = -1;
2433 static win_T *dragwin = NULL; /* window being dragged */
2434 static int did_drag = FALSE; /* drag was noticed */
2436 win_T *wp, *old_curwin;
2437 pos_T old_cursor;
2438 int count;
2439 int first;
2440 int row = mouse_row;
2441 int col = mouse_col;
2442 #ifdef FEAT_FOLDING
2443 int mouse_char;
2444 #endif
2446 mouse_past_bottom = FALSE;
2447 mouse_past_eol = FALSE;
2449 if (flags & MOUSE_RELEASED)
2451 /* On button release we may change window focus if positioned on a
2452 * status line and no dragging happened. */
2453 if (dragwin != NULL && !did_drag)
2454 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
2455 dragwin = NULL;
2456 did_drag = FALSE;
2459 if ((flags & MOUSE_DID_MOVE)
2460 && prev_row == mouse_row
2461 && prev_col == mouse_col)
2463 retnomove:
2464 /* before moving the cursor for a left click which is NOT in a status
2465 * line, stop Visual mode */
2466 if (on_status_line)
2467 return IN_STATUS_LINE;
2468 #ifdef FEAT_VERTSPLIT
2469 if (on_sep_line)
2470 return IN_SEP_LINE;
2471 #endif
2472 #ifdef FEAT_VISUAL
2473 if (flags & MOUSE_MAY_STOP_VIS)
2475 end_visual_mode();
2476 redraw_curbuf_later(INVERTED); /* delete the inversion */
2478 #endif
2479 #if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2480 /* Continue a modeless selection in another window. */
2481 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2482 return IN_OTHER_WIN;
2483 #endif
2484 return IN_BUFFER;
2487 prev_row = mouse_row;
2488 prev_col = mouse_col;
2490 if (flags & MOUSE_SETPOS)
2491 goto retnomove; /* ugly goto... */
2493 #ifdef FEAT_FOLDING
2494 /* Remember the character under the mouse, it might be a '-' or '+' in the
2495 * fold column. */
2496 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
2497 && ScreenLines != NULL)
2498 mouse_char = ScreenLines[LineOffset[row] + col];
2499 else
2500 mouse_char = ' ';
2501 #endif
2503 old_curwin = curwin;
2504 old_cursor = curwin->w_cursor;
2506 if (!(flags & MOUSE_FOCUS))
2508 if (row < 0 || col < 0) /* check if it makes sense */
2509 return IN_UNKNOWN;
2511 #ifdef FEAT_WINDOWS
2512 /* find the window where the row is in */
2513 wp = mouse_find_win(&row, &col);
2514 #else
2515 wp = firstwin;
2516 #endif
2517 dragwin = NULL;
2519 * winpos and height may change in win_enter()!
2521 if (row >= wp->w_height) /* In (or below) status line */
2523 on_status_line = row - wp->w_height + 1;
2524 dragwin = wp;
2526 else
2527 on_status_line = 0;
2528 #ifdef FEAT_VERTSPLIT
2529 if (col >= wp->w_width) /* In separator line */
2531 on_sep_line = col - wp->w_width + 1;
2532 dragwin = wp;
2534 else
2535 on_sep_line = 0;
2537 /* The rightmost character of the status line might be a vertical
2538 * separator character if there is no connecting window to the right. */
2539 if (on_status_line && on_sep_line)
2541 if (stl_connected(wp))
2542 on_sep_line = 0;
2543 else
2544 on_status_line = 0;
2546 #endif
2548 #ifdef FEAT_VISUAL
2549 /* Before jumping to another buffer, or moving the cursor for a left
2550 * click, stop Visual mode. */
2551 if (VIsual_active
2552 && (wp->w_buffer != curwin->w_buffer
2553 || (!on_status_line
2554 # ifdef FEAT_VERTSPLIT
2555 && !on_sep_line
2556 # endif
2557 # ifdef FEAT_FOLDING
2558 && (
2559 # ifdef FEAT_RIGHTLEFT
2560 wp->w_p_rl ? col < W_WIDTH(wp) - wp->w_p_fdc :
2561 # endif
2562 col >= wp->w_p_fdc
2563 # ifdef FEAT_CMDWIN
2564 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
2565 # endif
2567 # endif
2568 && (flags & MOUSE_MAY_STOP_VIS))))
2570 end_visual_mode();
2571 redraw_curbuf_later(INVERTED); /* delete the inversion */
2573 #endif
2574 #ifdef FEAT_CMDWIN
2575 if (cmdwin_type != 0 && wp != curwin)
2577 /* A click outside the command-line window: Use modeless
2578 * selection if possible. Allow dragging the status line of
2579 * windows just above the command-line window. */
2580 if (wp->w_winrow + wp->w_height
2581 != curwin->w_prev->w_winrow + curwin->w_prev->w_height)
2583 on_status_line = 0;
2584 dragwin = NULL;
2586 # ifdef FEAT_VERTSPLIT
2587 on_sep_line = 0;
2588 # endif
2589 # ifdef FEAT_CLIPBOARD
2590 if (on_status_line)
2591 return IN_STATUS_LINE;
2592 return IN_OTHER_WIN;
2593 # else
2594 row = 0;
2595 col += wp->w_wincol;
2596 wp = curwin;
2597 # endif
2599 #endif
2600 #ifdef FEAT_WINDOWS
2601 /* Only change window focus when not clicking on or dragging the
2602 * status line. Do change focus when releasing the mouse button
2603 * (MOUSE_FOCUS was set above if we dragged first). */
2604 if (dragwin == NULL || (flags & MOUSE_RELEASED))
2605 win_enter(wp, TRUE); /* can make wp invalid! */
2606 # ifdef CHECK_DOUBLE_CLICK
2607 /* set topline, to be able to check for double click ourselves */
2608 if (curwin != old_curwin)
2609 set_mouse_topline(curwin);
2610 # endif
2611 #endif
2612 if (on_status_line) /* In (or below) status line */
2614 /* Don't use start_arrow() if we're in the same window */
2615 if (curwin == old_curwin)
2616 return IN_STATUS_LINE;
2617 else
2618 return IN_STATUS_LINE | CURSOR_MOVED;
2620 #ifdef FEAT_VERTSPLIT
2621 if (on_sep_line) /* In (or below) status line */
2623 /* Don't use start_arrow() if we're in the same window */
2624 if (curwin == old_curwin)
2625 return IN_SEP_LINE;
2626 else
2627 return IN_SEP_LINE | CURSOR_MOVED;
2629 #endif
2631 curwin->w_cursor.lnum = curwin->w_topline;
2632 #ifdef FEAT_GUI
2633 /* remember topline, needed for double click */
2634 gui_prev_topline = curwin->w_topline;
2635 # ifdef FEAT_DIFF
2636 gui_prev_topfill = curwin->w_topfill;
2637 # endif
2638 #endif
2640 else if (on_status_line && which_button == MOUSE_LEFT)
2642 #ifdef FEAT_WINDOWS
2643 if (dragwin != NULL)
2645 /* Drag the status line */
2646 count = row - dragwin->w_winrow - dragwin->w_height + 1
2647 - on_status_line;
2648 win_drag_status_line(dragwin, count);
2649 did_drag |= count;
2651 #endif
2652 return IN_STATUS_LINE; /* Cursor didn't move */
2654 #ifdef FEAT_VERTSPLIT
2655 else if (on_sep_line && which_button == MOUSE_LEFT)
2657 if (dragwin != NULL)
2659 /* Drag the separator column */
2660 count = col - dragwin->w_wincol - dragwin->w_width + 1
2661 - on_sep_line;
2662 win_drag_vsep_line(dragwin, count);
2663 did_drag |= count;
2665 return IN_SEP_LINE; /* Cursor didn't move */
2667 #endif
2668 else /* keep_window_focus must be TRUE */
2670 #ifdef FEAT_VISUAL
2671 /* before moving the cursor for a left click, stop Visual mode */
2672 if (flags & MOUSE_MAY_STOP_VIS)
2674 end_visual_mode();
2675 redraw_curbuf_later(INVERTED); /* delete the inversion */
2677 #endif
2679 #if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
2680 /* Continue a modeless selection in another window. */
2681 if (cmdwin_type != 0 && row < W_WINROW(curwin))
2682 return IN_OTHER_WIN;
2683 #endif
2685 row -= W_WINROW(curwin);
2686 #ifdef FEAT_VERTSPLIT
2687 col -= W_WINCOL(curwin);
2688 #endif
2691 * When clicking beyond the end of the window, scroll the screen.
2692 * Scroll by however many rows outside the window we are.
2694 if (row < 0)
2696 count = 0;
2697 for (first = TRUE; curwin->w_topline > 1; )
2699 #ifdef FEAT_DIFF
2700 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2701 ++count;
2702 else
2703 #endif
2704 count += plines(curwin->w_topline - 1);
2705 if (!first && count > -row)
2706 break;
2707 first = FALSE;
2708 #ifdef FEAT_FOLDING
2709 hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
2710 #endif
2711 #ifdef FEAT_DIFF
2712 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
2713 ++curwin->w_topfill;
2714 else
2715 #endif
2717 --curwin->w_topline;
2718 #ifdef FEAT_DIFF
2719 curwin->w_topfill = 0;
2720 #endif
2723 #ifdef FEAT_DIFF
2724 check_topfill(curwin, FALSE);
2725 #endif
2726 curwin->w_valid &=
2727 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2728 redraw_later(VALID);
2729 row = 0;
2731 else if (row >= curwin->w_height)
2733 count = 0;
2734 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
2736 #ifdef FEAT_DIFF
2737 if (curwin->w_topfill > 0)
2738 ++count;
2739 else
2740 #endif
2741 count += plines(curwin->w_topline);
2742 if (!first && count > row - curwin->w_height + 1)
2743 break;
2744 first = FALSE;
2745 #ifdef FEAT_FOLDING
2746 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
2747 && curwin->w_topline == curbuf->b_ml.ml_line_count)
2748 break;
2749 #endif
2750 #ifdef FEAT_DIFF
2751 if (curwin->w_topfill > 0)
2752 --curwin->w_topfill;
2753 else
2754 #endif
2756 ++curwin->w_topline;
2757 #ifdef FEAT_DIFF
2758 curwin->w_topfill =
2759 diff_check_fill(curwin, curwin->w_topline);
2760 #endif
2763 #ifdef FEAT_DIFF
2764 check_topfill(curwin, FALSE);
2765 #endif
2766 redraw_later(VALID);
2767 curwin->w_valid &=
2768 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
2769 row = curwin->w_height - 1;
2771 else if (row == 0)
2773 /* When dragging the mouse, while the text has been scrolled up as
2774 * far as it goes, moving the mouse in the top line should scroll
2775 * the text down (done later when recomputing w_topline). */
2776 if (mouse_dragging > 0
2777 && curwin->w_cursor.lnum
2778 == curwin->w_buffer->b_ml.ml_line_count
2779 && curwin->w_cursor.lnum == curwin->w_topline)
2780 curwin->w_valid &= ~(VALID_TOPLINE);
2784 #ifdef FEAT_FOLDING
2785 /* Check for position outside of the fold column. */
2786 if (
2787 # ifdef FEAT_RIGHTLEFT
2788 curwin->w_p_rl ? col < W_WIDTH(curwin) - curwin->w_p_fdc :
2789 # endif
2790 col >= curwin->w_p_fdc
2791 # ifdef FEAT_CMDWIN
2792 + (cmdwin_type == 0 ? 0 : 1)
2793 # endif
2795 mouse_char = ' ';
2796 #endif
2798 /* compute the position in the buffer line from the posn on the screen */
2799 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum))
2800 mouse_past_bottom = TRUE;
2802 #ifdef FEAT_VISUAL
2803 /* Start Visual mode before coladvance(), for when 'sel' != "old" */
2804 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
2806 check_visual_highlight();
2807 VIsual = old_cursor;
2808 VIsual_active = TRUE;
2809 VIsual_reselect = TRUE;
2810 /* if 'selectmode' contains "mouse", start Select mode */
2811 may_start_select('o');
2812 setmouse();
2813 if (p_smd && msg_silent == 0)
2814 redraw_cmdline = TRUE; /* show visual mode later */
2816 #endif
2818 curwin->w_curswant = col;
2819 curwin->w_set_curswant = FALSE; /* May still have been TRUE */
2820 if (coladvance(col) == FAIL) /* Mouse click beyond end of line */
2822 if (inclusive != NULL)
2823 *inclusive = TRUE;
2824 mouse_past_eol = TRUE;
2826 else if (inclusive != NULL)
2827 *inclusive = FALSE;
2829 count = IN_BUFFER;
2830 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
2831 || curwin->w_cursor.col != old_cursor.col)
2832 count |= CURSOR_MOVED; /* Cursor has moved */
2834 #ifdef FEAT_FOLDING
2835 if (mouse_char == '+')
2836 count |= MOUSE_FOLD_OPEN;
2837 else if (mouse_char != ' ')
2838 count |= MOUSE_FOLD_CLOSE;
2839 #endif
2841 return count;
2845 * Compute the position in the buffer line from the posn on the screen in
2846 * window "win".
2847 * Returns TRUE if the position is below the last line.
2850 mouse_comp_pos(win, rowp, colp, lnump)
2851 win_T *win;
2852 int *rowp;
2853 int *colp;
2854 linenr_T *lnump;
2856 int col = *colp;
2857 int row = *rowp;
2858 linenr_T lnum;
2859 int retval = FALSE;
2860 int off;
2861 int count;
2863 #ifdef FEAT_RIGHTLEFT
2864 if (win->w_p_rl)
2865 col = W_WIDTH(win) - 1 - col;
2866 #endif
2868 lnum = win->w_topline;
2870 while (row > 0)
2872 #ifdef FEAT_DIFF
2873 /* Don't include filler lines in "count" */
2874 if (win->w_p_diff
2875 # ifdef FEAT_FOLDING
2876 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
2877 # endif
2880 if (lnum == win->w_topline)
2881 row -= win->w_topfill;
2882 else
2883 row -= diff_check_fill(win, lnum);
2884 count = plines_win_nofill(win, lnum, TRUE);
2886 else
2887 #endif
2888 count = plines_win(win, lnum, TRUE);
2889 if (count > row)
2890 break; /* Position is in this buffer line. */
2891 #ifdef FEAT_FOLDING
2892 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
2893 #endif
2894 if (lnum == win->w_buffer->b_ml.ml_line_count)
2896 retval = TRUE;
2897 break; /* past end of file */
2899 row -= count;
2900 ++lnum;
2903 if (!retval)
2905 /* Compute the column without wrapping. */
2906 off = win_col_off(win) - win_col_off2(win);
2907 if (col < off)
2908 col = off;
2909 col += row * (W_WIDTH(win) - off);
2910 /* add skip column (for long wrapping line) */
2911 col += win->w_skipcol;
2914 if (!win->w_p_wrap)
2915 col += win->w_leftcol;
2917 /* skip line number and fold column in front of the line */
2918 col -= win_col_off(win);
2919 if (col < 0)
2921 #ifdef FEAT_NETBEANS_INTG
2922 if (usingNetbeans)
2923 netbeans_gutter_click(lnum);
2924 #endif
2925 col = 0;
2928 *colp = col;
2929 *rowp = row;
2930 *lnump = lnum;
2931 return retval;
2934 #if defined(FEAT_WINDOWS) || defined(PROTO)
2936 * Find the window at screen position "*rowp" and "*colp". The positions are
2937 * updated to become relative to the top-left of the window.
2939 /*ARGSUSED*/
2940 win_T *
2941 mouse_find_win(rowp, colp)
2942 int *rowp;
2943 int *colp;
2945 frame_T *fp;
2947 fp = topframe;
2948 *rowp -= firstwin->w_winrow;
2949 for (;;)
2951 if (fp->fr_layout == FR_LEAF)
2952 break;
2953 #ifdef FEAT_VERTSPLIT
2954 if (fp->fr_layout == FR_ROW)
2956 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
2958 if (*colp < fp->fr_width)
2959 break;
2960 *colp -= fp->fr_width;
2963 #endif
2964 else /* fr_layout == FR_COL */
2966 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
2968 if (*rowp < fp->fr_height)
2969 break;
2970 *rowp -= fp->fr_height;
2974 return fp->fr_win;
2976 #endif
2978 #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined (FEAT_GUI_MAC) \
2979 || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \
2980 || defined(FEAT_GUI_PHOTON) || defined(PROTO) \
2981 || defined(FEAT_GUI_MACVIM)
2983 * Translate window coordinates to buffer position without any side effects
2986 get_fpos_of_mouse(mpos)
2987 pos_T *mpos;
2989 win_T *wp;
2990 int row = mouse_row;
2991 int col = mouse_col;
2993 if (row < 0 || col < 0) /* check if it makes sense */
2994 return IN_UNKNOWN;
2996 #ifdef FEAT_WINDOWS
2997 /* find the window where the row is in */
2998 wp = mouse_find_win(&row, &col);
2999 #else
3000 wp = firstwin;
3001 #endif
3003 * winpos and height may change in win_enter()!
3005 if (row >= wp->w_height) /* In (or below) status line */
3006 return IN_STATUS_LINE;
3007 #ifdef FEAT_VERTSPLIT
3008 if (col >= wp->w_width) /* In vertical separator line */
3009 return IN_SEP_LINE;
3010 #endif
3012 if (wp != curwin)
3013 return IN_UNKNOWN;
3015 /* compute the position in the buffer line from the posn on the screen */
3016 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum))
3017 return IN_STATUS_LINE; /* past bottom */
3019 mpos->col = vcol2col(wp, mpos->lnum, col);
3021 if (mpos->col > 0)
3022 --mpos->col;
3023 return IN_BUFFER;
3027 * Convert a virtual (screen) column to a character column.
3028 * The first column is one.
3031 vcol2col(wp, lnum, vcol)
3032 win_T *wp;
3033 linenr_T lnum;
3034 int vcol;
3036 /* try to advance to the specified column */
3037 int col = 0;
3038 int count = 0;
3039 char_u *ptr;
3041 ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3042 while (count <= vcol && *ptr != NUL)
3044 ++col;
3045 count += win_lbr_chartabsize(wp, ptr, count, NULL);
3046 mb_ptr_adv(ptr);
3048 return col;
3050 #endif
3052 #endif /* FEAT_MOUSE */
3054 #if defined(FEAT_GUI) || defined(WIN3264) || defined(PROTO)
3056 * Called when focus changed. Used for the GUI or for systems where this can
3057 * be done in the console (Win32).
3059 void
3060 ui_focus_change(in_focus)
3061 int in_focus; /* TRUE if focus gained. */
3063 static time_t last_time = (time_t)0;
3064 int need_redraw = FALSE;
3066 /* When activated: Check if any file was modified outside of Vim.
3067 * Only do this when not done within the last two seconds (could get
3068 * several events in a row). */
3069 if (in_focus && last_time + 2 < time(NULL))
3071 need_redraw = check_timestamps(
3072 # ifdef FEAT_GUI
3073 gui.in_use
3074 # else
3075 FALSE
3076 # endif
3078 last_time = time(NULL);
3081 #ifdef FEAT_AUTOCMD
3083 * Fire the focus gained/lost autocommand.
3085 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED
3086 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf);
3087 #endif
3089 if (need_redraw)
3091 /* Something was executed, make sure the cursor is put back where it
3092 * belongs. */
3093 need_wait_return = FALSE;
3095 if (State & CMDLINE)
3096 redrawcmdline();
3097 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE
3098 || State == EXTERNCMD || State == CONFIRM || exmode_active)
3099 repeat_message();
3100 else if ((State & NORMAL) || (State & INSERT))
3102 if (must_redraw != 0)
3103 update_screen(0);
3104 setcursor();
3106 cursor_on(); /* redrawing may have switched it off */
3107 out_flush();
3108 # ifdef FEAT_GUI
3109 if (gui.in_use)
3111 gui_update_cursor(FALSE, TRUE);
3112 gui_update_scrollbars(FALSE);
3114 # endif
3116 #ifdef FEAT_TITLE
3117 /* File may have been changed from 'readonly' to 'noreadonly' */
3118 if (need_maketitle)
3119 maketitle();
3120 #endif
3122 #endif
3124 #if defined(USE_IM_CONTROL) || defined(PROTO)
3126 * Save current Input Method status to specified place.
3128 void
3129 im_save_status(psave)
3130 long *psave;
3132 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always
3133 * disabled then (but might start later).
3134 * Also don't save when inside a mapping, vgetc_im_active has not been set
3135 * then.
3136 * And don't save when the keys were stuffed (e.g., for a "." command).
3137 * And don't save when the GUI is running but our window doesn't have
3138 * input focus (e.g., when a find dialog is open). */
3139 if (!p_imdisable && KeyTyped && !KeyStuffed
3140 # ifdef FEAT_XIM
3141 && xic != NULL
3142 # endif
3143 # ifdef FEAT_GUI
3144 && (!gui.in_use || gui.in_focus)
3145 # endif
3148 /* Do save when IM is on, or IM is off and saved status is on. */
3149 if (vgetc_im_active)
3150 *psave = B_IMODE_IM;
3151 else if (*psave == B_IMODE_IM)
3152 *psave = B_IMODE_NONE;
3155 #endif