blob: 2297f81826d2b52f6953a56dae2fb9054ec87cf4 [file] [log] [blame]
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001/* vi:set ts=8 sts=4 sw=4 noet:
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 * mouse.c: mouse handling functions
12 */
13
14#include "vim.h"
15
LemonBoyc27747e2022-05-07 12:25:40 +010016/*
17 * Horiziontal and vertical steps used when scrolling.
18 * When negative scroll by a whole page.
19 */
20static long mouse_hor_step = 6;
21static long mouse_vert_step = 3;
22
23 void
24mouse_set_vert_scroll_step(long step)
25{
26 mouse_vert_step = step;
27}
28
29 void
30mouse_set_hor_scroll_step(long step)
31{
32 mouse_hor_step = step;
33}
34
Bram Moolenaar85c35022019-11-22 22:21:59 +010035#ifdef CHECK_DOUBLE_CLICK
36/*
37 * Return the duration from t1 to t2 in milliseconds.
38 */
39 static long
40time_diff_ms(struct timeval *t1, struct timeval *t2)
41{
42 // This handles wrapping of tv_usec correctly without any special case.
43 // Example of 2 pairs (tv_sec, tv_usec) with a duration of 5 ms:
44 // t1 = (1, 998000) t2 = (2, 3000) gives:
45 // (2 - 1) * 1000 + (3000 - 998000) / 1000 -> 5 ms.
46 return (t2->tv_sec - t1->tv_sec) * 1000
47 + (t2->tv_usec - t1->tv_usec) / 1000;
48}
49#endif
50
Bram Moolenaarb20b9e12019-09-21 20:48:04 +020051/*
52 * Get class of a character for selection: same class means same word.
53 * 0: blank
54 * 1: punctuation groups
55 * 2: normal word character
56 * >2: multi-byte word character.
57 */
58 static int
59get_mouse_class(char_u *p)
60{
61 int c;
62
63 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
64 return mb_get_class(p);
65
66 c = *p;
67 if (c == ' ' || c == '\t')
68 return 0;
69
70 if (vim_iswordc(c))
71 return 2;
72
73 // There are a few special cases where we want certain combinations of
74 // characters to be considered as a single word. These are things like
75 // "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
76 // character is in its own class.
77 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
78 return 1;
79 return c;
80}
81
82/*
83 * Move "pos" back to the start of the word it's in.
84 */
85 static void
86find_start_of_word(pos_T *pos)
87{
88 char_u *line;
89 int cclass;
90 int col;
91
92 line = ml_get(pos->lnum);
93 cclass = get_mouse_class(line + pos->col);
94
95 while (pos->col > 0)
96 {
97 col = pos->col - 1;
98 col -= (*mb_head_off)(line, line + col);
99 if (get_mouse_class(line + col) != cclass)
100 break;
101 pos->col = col;
102 }
103}
104
105/*
106 * Move "pos" forward to the end of the word it's in.
107 * When 'selection' is "exclusive", the position is just after the word.
108 */
109 static void
110find_end_of_word(pos_T *pos)
111{
112 char_u *line;
113 int cclass;
114 int col;
115
116 line = ml_get(pos->lnum);
117 if (*p_sel == 'e' && pos->col > 0)
118 {
119 --pos->col;
120 pos->col -= (*mb_head_off)(line, line + pos->col);
121 }
122 cclass = get_mouse_class(line + pos->col);
123 while (line[pos->col] != NUL)
124 {
125 col = pos->col + (*mb_ptr2len)(line + pos->col);
126 if (get_mouse_class(line + col) != cclass)
127 {
128 if (*p_sel == 'e')
129 pos->col = col;
130 break;
131 }
132 pos->col = col;
133 }
134}
135
Bram Moolenaar910c3782019-09-22 14:11:50 +0200136#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100137 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200138 || defined(FEAT_GUI_PHOTON) \
Bram Moolenaar910c3782019-09-22 14:11:50 +0200139 || defined(FEAT_TERM_POPUP_MENU)
140# define USE_POPUP_SETPOS
141# define NEED_VCOL2COL
142
143/*
144 * Translate window coordinates to buffer position without any side effects
145 */
146 static int
147get_fpos_of_mouse(pos_T *mpos)
148{
149 win_T *wp;
150 int row = mouse_row;
151 int col = mouse_col;
152
153 if (row < 0 || col < 0) // check if it makes sense
154 return IN_UNKNOWN;
155
156 // find the window where the row is in
157 wp = mouse_find_win(&row, &col, FAIL_POPUP);
158 if (wp == NULL)
159 return IN_UNKNOWN;
160 // winpos and height may change in win_enter()!
161 if (row >= wp->w_height) // In (or below) status line
162 return IN_STATUS_LINE;
163 if (col >= wp->w_width) // In vertical separator line
164 return IN_SEP_LINE;
165
166 if (wp != curwin)
167 return IN_UNKNOWN;
168
169 // compute the position in the buffer line from the posn on the screen
170 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL))
171 return IN_STATUS_LINE; // past bottom
172
173 mpos->col = vcol2col(wp, mpos->lnum, col);
174
175 if (mpos->col > 0)
176 --mpos->col;
177 mpos->coladd = 0;
178 return IN_BUFFER;
179}
180#endif
181
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200182/*
183 * Do the appropriate action for the current mouse click in the current mode.
184 * Not used for Command-line mode.
185 *
186 * Normal and Visual Mode:
187 * event modi- position visual change action
188 * fier cursor window
189 * left press - yes end yes
190 * left press C yes end yes "^]" (2)
191 * left press S yes end (popup: extend) yes "*" (2)
192 * left drag - yes start if moved no
193 * left relse - yes start if moved no
194 * middle press - yes if not active no put register
195 * middle press - yes if active no yank and put
196 * right press - yes start or extend yes
197 * right press S yes no change yes "#" (2)
198 * right drag - yes extend no
199 * right relse - yes extend no
200 *
201 * Insert or Replace Mode:
202 * event modi- position visual change action
203 * fier cursor window
204 * left press - yes (cannot be active) yes
205 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
206 * left press S yes (cannot be active) yes "CTRL-O*" (2)
207 * left drag - yes start or extend (1) no CTRL-O (1)
208 * left relse - yes start or extend (1) no CTRL-O (1)
209 * middle press - no (cannot be active) no put register
210 * right press - yes start or extend yes CTRL-O
211 * right press S yes (cannot be active) yes "CTRL-O#" (2)
212 *
213 * (1) only if mouse pointer moved since press
214 * (2) only if click is in same buffer
215 *
216 * Return TRUE if start_arrow() should be called for edit mode.
217 */
218 int
219do_mouse(
220 oparg_T *oap, // operator argument, can be NULL
221 int c, // K_LEFTMOUSE, etc
222 int dir, // Direction to 'put' if necessary
223 long count,
224 int fixindent) // PUT_FIXINDENT if fixing indent necessary
225{
226 static int do_always = FALSE; // ignore 'mouse' setting next time
227 static int got_click = FALSE; // got a click some time back
228
229 int which_button; // MOUSE_LEFT, _MIDDLE or _RIGHT
230 int is_click = FALSE; // If FALSE it's a drag or release event
231 int is_drag = FALSE; // If TRUE it's a drag event
232 int jump_flags = 0; // flags for jump_to_mouse()
233 pos_T start_visual;
234 int moved; // Has cursor moved?
235 int in_status_line; // mouse in status line
236 static int in_tab_line = FALSE; // mouse clicked in tab line
237 int in_sep_line; // mouse in vertical separator line
238 int c1, c2;
239#if defined(FEAT_FOLDING)
240 pos_T save_cursor;
241#endif
242 win_T *old_curwin = curwin;
243 static pos_T orig_cursor;
244 colnr_T leftcol, rightcol;
245 pos_T end_visual;
246 int diff;
247 int old_active = VIsual_active;
248 int old_mode = VIsual_mode;
249 int regname;
250
251#if defined(FEAT_FOLDING)
252 save_cursor = curwin->w_cursor;
253#endif
254
255 // When GUI is active, always recognize mouse events, otherwise:
256 // - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
257 // - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
258 // - For command line and insert mode 'mouse' is checked before calling
259 // do_mouse().
260 if (do_always)
261 do_always = FALSE;
262 else
263#ifdef FEAT_GUI
264 if (!gui.in_use)
265#endif
266 {
267 if (VIsual_active)
268 {
269 if (!mouse_has(MOUSE_VISUAL))
270 return FALSE;
271 }
Bram Moolenaar24959102022-05-07 20:01:16 +0100272 else if (State == MODE_NORMAL && !mouse_has(MOUSE_NORMAL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200273 return FALSE;
274 }
275
276 for (;;)
277 {
278 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
279 if (is_drag)
280 {
281 // If the next character is the same mouse event then use that
282 // one. Speeds up dragging the status line.
zeertzjq0f68e6c2022-04-05 13:17:01 +0100283 // Note: Since characters added to the stuff buffer in the code
284 // below need to come before the next character, do not do this
285 // when the current character was stuffed.
286 if (!KeyStuffed && vpeekc() != NUL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200287 {
288 int nc;
289 int save_mouse_row = mouse_row;
290 int save_mouse_col = mouse_col;
291
292 // Need to get the character, peeking doesn't get the actual
293 // one.
294 nc = safe_vgetc();
295 if (c == nc)
296 continue;
297 vungetc(nc);
298 mouse_row = save_mouse_row;
299 mouse_col = save_mouse_col;
300 }
301 }
302 break;
303 }
304
305 if (c == K_MOUSEMOVE)
306 {
307 // Mouse moved without a button pressed.
308#ifdef FEAT_BEVAL_TERM
309 ui_may_remove_balloon();
310 if (p_bevalterm)
311 {
312 profile_setlimit(p_bdlay, &bevalexpr_due);
313 bevalexpr_due_set = TRUE;
314 }
315#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100316#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200317 popup_handle_mouse_moved();
318#endif
319 return FALSE;
320 }
321
322#ifdef FEAT_MOUSESHAPE
323 // May have stopped dragging the status or separator line. The pointer is
324 // most likely still on the status or separator line.
325 if (!is_drag && drag_status_line)
326 {
327 drag_status_line = FALSE;
328 update_mouseshape(SHAPE_IDX_STATUS);
329 }
330 if (!is_drag && drag_sep_line)
331 {
332 drag_sep_line = FALSE;
333 update_mouseshape(SHAPE_IDX_VSEP);
334 }
335#endif
336
337 // Ignore drag and release events if we didn't get a click.
338 if (is_click)
339 got_click = TRUE;
340 else
341 {
342 if (!got_click) // didn't get click, ignore
343 return FALSE;
344 if (!is_drag) // release, reset got_click
345 {
346 got_click = FALSE;
347 if (in_tab_line)
348 {
349 in_tab_line = FALSE;
350 return FALSE;
351 }
352 }
353 }
354
355 // CTRL right mouse button does CTRL-T
356 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
357 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100358 if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200359 stuffcharReadbuff(Ctrl_O);
360 if (count > 1)
361 stuffnumReadbuff(count);
362 stuffcharReadbuff(Ctrl_T);
363 got_click = FALSE; // ignore drag&release now
364 return FALSE;
365 }
366
367 // CTRL only works with left mouse button
368 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
369 return FALSE;
370
371 // When a modifier is down, ignore drag and release events, as well as
372 // multiple clicks and the middle mouse button.
373 // Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
374 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
375 | MOD_MASK_META))
376 && (!is_click
377 || (mod_mask & MOD_MASK_MULTI_CLICK)
378 || which_button == MOUSE_MIDDLE)
379 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
380 && mouse_model_popup()
381 && which_button == MOUSE_LEFT)
382 && !((mod_mask & MOD_MASK_ALT)
383 && !mouse_model_popup()
384 && which_button == MOUSE_RIGHT)
385 )
386 return FALSE;
387
388 // If the button press was used as the movement command for an operator
389 // (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
390 // drag/release events.
391 if (!is_click && which_button == MOUSE_MIDDLE)
392 return FALSE;
393
394 if (oap != NULL)
395 regname = oap->regname;
396 else
397 regname = 0;
398
399 // Middle mouse button does a 'put' of the selected text
400 if (which_button == MOUSE_MIDDLE)
401 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100402 if (State == MODE_NORMAL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200403 {
404 // If an operator was pending, we don't know what the user wanted
405 // to do. Go back to normal mode: Clear the operator and beep().
406 if (oap != NULL && oap->op_type != OP_NOP)
407 {
408 clearopbeep(oap);
409 return FALSE;
410 }
411
412 // If visual was active, yank the highlighted text and put it
413 // before the mouse pointer position.
414 // In Select mode replace the highlighted text with the clipboard.
415 if (VIsual_active)
416 {
417 if (VIsual_select)
418 {
419 stuffcharReadbuff(Ctrl_G);
420 stuffReadbuff((char_u *)"\"+p");
421 }
422 else
423 {
424 stuffcharReadbuff('y');
425 stuffcharReadbuff(K_MIDDLEMOUSE);
426 }
427 do_always = TRUE; // ignore 'mouse' setting next time
428 return FALSE;
429 }
430 // The rest is below jump_to_mouse()
431 }
432
Bram Moolenaar24959102022-05-07 20:01:16 +0100433 else if ((State & MODE_INSERT) == 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200434 return FALSE;
435
436 // Middle click in insert mode doesn't move the mouse, just insert the
437 // contents of a register. '.' register is special, can't insert that
438 // with do_put().
439 // Also paste at the cursor if the current mode isn't in 'mouse' (only
440 // happens for the GUI).
Bram Moolenaar24959102022-05-07 20:01:16 +0100441 if ((State & MODE_INSERT) || !mouse_has(MOUSE_NORMAL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200442 {
443 if (regname == '.')
444 insert_reg(regname, TRUE);
445 else
446 {
447#ifdef FEAT_CLIPBOARD
448 if (clip_star.available && regname == 0)
449 regname = '*';
450#endif
451 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
452 insert_reg(regname, TRUE);
453 else
454 {
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200455 do_put(regname, NULL, BACKWARD, 1L,
456 fixindent | PUT_CURSEND);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200457
458 // Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r
459 AppendCharToRedobuff(Ctrl_R);
460 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
461 AppendCharToRedobuff(regname == 0 ? '"' : regname);
462 }
463 }
464 return FALSE;
465 }
466 }
467
468 // When dragging or button-up stay in the same window.
469 if (!is_click)
470 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
471
472 start_visual.lnum = 0;
473
474 // Check for clicking in the tab page line.
475 if (mouse_row == 0 && firstwin->w_winrow > 0)
476 {
477 if (is_drag)
478 {
479 if (in_tab_line)
480 {
481 c1 = TabPageIdxs[mouse_col];
482 tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab)
483 ? c1 - 1 : c1);
484 }
485 return FALSE;
486 }
487
488 // click in a tab selects that tab page
489 if (is_click
490# ifdef FEAT_CMDWIN
491 && cmdwin_type == 0
492# endif
493 && mouse_col < Columns)
494 {
495 in_tab_line = TRUE;
496 c1 = TabPageIdxs[mouse_col];
497 if (c1 >= 0)
498 {
499 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
500 {
501 // double click opens new page
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +0200502 end_visual_mode_keep_button();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200503 tabpage_new();
504 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
505 }
506 else
507 {
508 // Go to specified tab page, or next one if not clicking
509 // on a label.
510 goto_tabpage(c1);
511
512 // It's like clicking on the status line of a window.
513 if (curwin != old_curwin)
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +0200514 end_visual_mode_keep_button();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200515 }
516 }
517 else
518 {
519 tabpage_T *tp;
520
521 // Close the current or specified tab page.
522 if (c1 == -999)
523 tp = curtab;
524 else
525 tp = find_tabpage(-c1);
526 if (tp == curtab)
527 {
528 if (first_tabpage->tp_next != NULL)
529 tabpage_close(FALSE);
530 }
531 else if (tp != NULL)
532 tabpage_close_other(tp, FALSE);
533 }
534 }
535 return TRUE;
536 }
537 else if (is_drag && in_tab_line)
538 {
539 c1 = TabPageIdxs[mouse_col];
540 tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
541 return FALSE;
542 }
543
544 // When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
545 // right button up -> pop-up menu
546 // shift-left button -> right button
547 // alt-left button -> alt-right button
548 if (mouse_model_popup())
549 {
550 if (which_button == MOUSE_RIGHT
551 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
552 {
Bram Moolenaar910c3782019-09-22 14:11:50 +0200553#ifdef USE_POPUP_SETPOS
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200554# ifdef FEAT_GUI
555 if (gui.in_use)
556 {
557# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200558 || defined(FEAT_GUI_PHOTON)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200559 if (!is_click)
560 // Ignore right button release events, only shows the popup
561 // menu on the button down event.
562 return FALSE;
563# endif
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100564# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200565 if (is_click || is_drag)
566 // Ignore right button down and drag mouse events. Windows
567 // only shows the popup menu on the button up event.
568 return FALSE;
569# endif
570 }
571# endif
572# if defined(FEAT_GUI) && defined(FEAT_TERM_POPUP_MENU)
573 else
574# endif
575# if defined(FEAT_TERM_POPUP_MENU)
576 if (!is_click)
577 // Ignore right button release events, only shows the popup
578 // menu on the button down event.
579 return FALSE;
580#endif
581
582 jump_flags = 0;
583 if (STRCMP(p_mousem, "popup_setpos") == 0)
584 {
585 // First set the cursor position before showing the popup
586 // menu.
587 if (VIsual_active)
588 {
589 pos_T m_pos;
590
591 // set MOUSE_MAY_STOP_VIS if we are outside the
592 // selection or the current window (might have false
593 // negative here)
594 if (mouse_row < curwin->w_winrow
595 || mouse_row
596 > (curwin->w_winrow + curwin->w_height))
597 jump_flags = MOUSE_MAY_STOP_VIS;
598 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
599 jump_flags = MOUSE_MAY_STOP_VIS;
600 else
601 {
602 if ((LT_POS(curwin->w_cursor, VIsual)
603 && (LT_POS(m_pos, curwin->w_cursor)
604 || LT_POS(VIsual, m_pos)))
605 || (LT_POS(VIsual, curwin->w_cursor)
606 && (LT_POS(m_pos, VIsual)
607 || LT_POS(curwin->w_cursor, m_pos))))
608 {
609 jump_flags = MOUSE_MAY_STOP_VIS;
610 }
611 else if (VIsual_mode == Ctrl_V)
612 {
613 getvcols(curwin, &curwin->w_cursor, &VIsual,
614 &leftcol, &rightcol);
615 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
616 if (m_pos.col < leftcol || m_pos.col > rightcol)
617 jump_flags = MOUSE_MAY_STOP_VIS;
618 }
619 }
620 }
621 else
622 jump_flags = MOUSE_MAY_STOP_VIS;
623 }
624 if (jump_flags)
625 {
626 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
627 update_curbuf(VIsual_active ? INVERTED : VALID);
628 setcursor();
629 out_flush(); // Update before showing popup menu
630 }
631# ifdef FEAT_MENU
632 show_popupmenu();
633 got_click = FALSE; // ignore release events
634# endif
635 return (jump_flags & CURSOR_MOVED) != 0;
636#else
637 return FALSE;
638#endif
639 }
640 if (which_button == MOUSE_LEFT
641 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
642 {
643 which_button = MOUSE_RIGHT;
644 mod_mask &= ~MOD_MASK_SHIFT;
645 }
646 }
647
Bram Moolenaar24959102022-05-07 20:01:16 +0100648 if ((State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200649 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
650 {
651 if (which_button == MOUSE_LEFT)
652 {
653 if (is_click)
654 {
655 // stop Visual mode for a left click in a window, but not when
656 // on a status line
657 if (VIsual_active)
658 jump_flags |= MOUSE_MAY_STOP_VIS;
659 }
660 else if (mouse_has(MOUSE_VISUAL))
661 jump_flags |= MOUSE_MAY_VIS;
662 }
663 else if (which_button == MOUSE_RIGHT)
664 {
665 if (is_click && VIsual_active)
666 {
667 // Remember the start and end of visual before moving the
668 // cursor.
669 if (LT_POS(curwin->w_cursor, VIsual))
670 {
671 start_visual = curwin->w_cursor;
672 end_visual = VIsual;
673 }
674 else
675 {
676 start_visual = VIsual;
677 end_visual = curwin->w_cursor;
678 }
679 }
680 jump_flags |= MOUSE_FOCUS;
681 if (mouse_has(MOUSE_VISUAL))
682 jump_flags |= MOUSE_MAY_VIS;
683 }
684 }
685
686 // If an operator is pending, ignore all drags and releases until the
687 // next mouse click.
688 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
689 {
690 got_click = FALSE;
691 oap->motion_type = MCHAR;
692 }
693
694 // When releasing the button let jump_to_mouse() know.
695 if (!is_click && !is_drag)
696 jump_flags |= MOUSE_RELEASED;
697
698 // JUMP!
699 jump_flags = jump_to_mouse(jump_flags,
700 oap == NULL ? NULL : &(oap->inclusive), which_button);
701
702#ifdef FEAT_MENU
703 // A click in the window toolbar has no side effects.
704 if (jump_flags & MOUSE_WINBAR)
705 return FALSE;
706#endif
707 moved = (jump_flags & CURSOR_MOVED);
708 in_status_line = (jump_flags & IN_STATUS_LINE);
709 in_sep_line = (jump_flags & IN_SEP_LINE);
710
711#ifdef FEAT_NETBEANS_INTG
712 if (isNetbeansBuffer(curbuf)
713 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
714 {
715 int key = KEY2TERMCAP1(c);
716
717 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
718 || key == (int)KE_RIGHTRELEASE)
719 netbeans_button_release(which_button);
720 }
721#endif
722
723 // When jumping to another window, clear a pending operator. That's a bit
724 // friendlier than beeping and not jumping to that window.
725 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
726 clearop(oap);
727
728#ifdef FEAT_FOLDING
729 if (mod_mask == 0
730 && !is_drag
731 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
732 && which_button == MOUSE_LEFT)
733 {
734 // open or close a fold at this line
735 if (jump_flags & MOUSE_FOLD_OPEN)
736 openFold(curwin->w_cursor.lnum, 1L);
737 else
738 closeFold(curwin->w_cursor.lnum, 1L);
739 // don't move the cursor if still in the same window
740 if (curwin == old_curwin)
741 curwin->w_cursor = save_cursor;
742 }
743#endif
744
745#if defined(FEAT_CLIPBOARD) && defined(FEAT_CMDWIN)
746 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
747 {
748 clip_modeless(which_button, is_click, is_drag);
749 return FALSE;
750 }
751#endif
752
753 // Set global flag that we are extending the Visual area with mouse
754 // dragging; temporarily minimize 'scrolloff'.
755 if (VIsual_active && is_drag && get_scrolloff_value())
756 {
757 // In the very first line, allow scrolling one line
758 if (mouse_row == 0)
759 mouse_dragging = 2;
760 else
761 mouse_dragging = 1;
762 }
763
764 // When dragging the mouse above the window, scroll down.
765 if (is_drag && mouse_row < 0 && !in_status_line)
766 {
767 scroll_redraw(FALSE, 1L);
768 mouse_row = 0;
769 }
770
771 if (start_visual.lnum) // right click in visual mode
772 {
773 // When ALT is pressed make Visual mode blockwise.
774 if (mod_mask & MOD_MASK_ALT)
775 VIsual_mode = Ctrl_V;
776
777 // In Visual-block mode, divide the area in four, pick up the corner
778 // that is in the quarter that the cursor is in.
779 if (VIsual_mode == Ctrl_V)
780 {
781 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
782 if (curwin->w_curswant > (leftcol + rightcol) / 2)
783 end_visual.col = leftcol;
784 else
785 end_visual.col = rightcol;
786 if (curwin->w_cursor.lnum >=
787 (start_visual.lnum + end_visual.lnum) / 2)
788 end_visual.lnum = start_visual.lnum;
789
790 // move VIsual to the right column
791 start_visual = curwin->w_cursor; // save the cursor pos
792 curwin->w_cursor = end_visual;
793 coladvance(end_visual.col);
794 VIsual = curwin->w_cursor;
795 curwin->w_cursor = start_visual; // restore the cursor
796 }
797 else
798 {
799 // If the click is before the start of visual, change the start.
800 // If the click is after the end of visual, change the end. If
801 // the click is inside the visual, change the closest side.
802 if (LT_POS(curwin->w_cursor, start_visual))
803 VIsual = end_visual;
804 else if (LT_POS(end_visual, curwin->w_cursor))
805 VIsual = start_visual;
806 else
807 {
808 // In the same line, compare column number
809 if (end_visual.lnum == start_visual.lnum)
810 {
811 if (curwin->w_cursor.col - start_visual.col >
812 end_visual.col - curwin->w_cursor.col)
813 VIsual = start_visual;
814 else
815 VIsual = end_visual;
816 }
817
818 // In different lines, compare line number
819 else
820 {
821 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
822 (end_visual.lnum - curwin->w_cursor.lnum);
823
824 if (diff > 0) // closest to end
825 VIsual = start_visual;
826 else if (diff < 0) // closest to start
827 VIsual = end_visual;
828 else // in the middle line
829 {
830 if (curwin->w_cursor.col <
831 (start_visual.col + end_visual.col) / 2)
832 VIsual = end_visual;
833 else
834 VIsual = start_visual;
835 }
836 }
837 }
838 }
839 }
840 // If Visual mode started in insert mode, execute "CTRL-O"
Bram Moolenaar24959102022-05-07 20:01:16 +0100841 else if ((State & MODE_INSERT) && VIsual_active)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200842 stuffcharReadbuff(Ctrl_O);
843
844 // Middle mouse click: Put text before cursor.
845 if (which_button == MOUSE_MIDDLE)
846 {
847#ifdef FEAT_CLIPBOARD
848 if (clip_star.available && regname == 0)
849 regname = '*';
850#endif
851 if (yank_register_mline(regname))
852 {
853 if (mouse_past_bottom)
854 dir = FORWARD;
855 }
856 else if (mouse_past_eol)
857 dir = FORWARD;
858
859 if (fixindent)
860 {
861 c1 = (dir == BACKWARD) ? '[' : ']';
862 c2 = 'p';
863 }
864 else
865 {
866 c1 = (dir == FORWARD) ? 'p' : 'P';
867 c2 = NUL;
868 }
869 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
870
871 // Remember where the paste started, so in edit() Insstart can be set
872 // to this position
873 if (restart_edit != 0)
874 where_paste_started = curwin->w_cursor;
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200875 do_put(regname, NULL, dir, count, fixindent | PUT_CURSEND);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200876 }
877
878#if defined(FEAT_QUICKFIX)
879 // Ctrl-Mouse click or double click in a quickfix window jumps to the
880 // error under the mouse pointer.
881 else if (((mod_mask & MOD_MASK_CTRL)
882 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
883 && bt_quickfix(curbuf))
884 {
885 if (curwin->w_llist_ref == NULL) // quickfix window
886 do_cmdline_cmd((char_u *)".cc");
887 else // location list window
888 do_cmdline_cmd((char_u *)".ll");
889 got_click = FALSE; // ignore drag&release now
890 }
891#endif
892
893 // Ctrl-Mouse click (or double click in a help window) jumps to the tag
894 // under the mouse pointer.
895 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
896 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
897 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100898 if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200899 stuffcharReadbuff(Ctrl_O);
900 stuffcharReadbuff(Ctrl_RSB);
901 got_click = FALSE; // ignore drag&release now
902 }
903
904 // Shift-Mouse click searches for the next occurrence of the word under
905 // the mouse pointer
906 else if ((mod_mask & MOD_MASK_SHIFT))
907 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100908 if ((State & MODE_INSERT) || (VIsual_active && VIsual_select))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200909 stuffcharReadbuff(Ctrl_O);
910 if (which_button == MOUSE_LEFT)
911 stuffcharReadbuff('*');
912 else // MOUSE_RIGHT
913 stuffcharReadbuff('#');
914 }
915
916 // Handle double clicks, unless on status line
917 else if (in_status_line)
918 {
919#ifdef FEAT_MOUSESHAPE
920 if ((is_drag || is_click) && !drag_status_line)
921 {
922 drag_status_line = TRUE;
923 update_mouseshape(-1);
924 }
925#endif
926 }
927 else if (in_sep_line)
928 {
929#ifdef FEAT_MOUSESHAPE
930 if ((is_drag || is_click) && !drag_sep_line)
931 {
932 drag_sep_line = TRUE;
933 update_mouseshape(-1);
934 }
935#endif
936 }
Bram Moolenaar24959102022-05-07 20:01:16 +0100937 else if ((mod_mask & MOD_MASK_MULTI_CLICK)
938 && (State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200939 && mouse_has(MOUSE_VISUAL))
940 {
941 if (is_click || !VIsual_active)
942 {
943 if (VIsual_active)
944 orig_cursor = VIsual;
945 else
946 {
947 check_visual_highlight();
948 VIsual = curwin->w_cursor;
949 orig_cursor = VIsual;
950 VIsual_active = TRUE;
951 VIsual_reselect = TRUE;
952 // start Select mode if 'selectmode' contains "mouse"
953 may_start_select('o');
954 setmouse();
955 }
956 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
957 {
958 // Double click with ALT pressed makes it blockwise.
959 if (mod_mask & MOD_MASK_ALT)
960 VIsual_mode = Ctrl_V;
961 else
962 VIsual_mode = 'v';
963 }
964 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
965 VIsual_mode = 'V';
966 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
967 VIsual_mode = Ctrl_V;
968#ifdef FEAT_CLIPBOARD
969 // Make sure the clipboard gets updated. Needed because start and
970 // end may still be the same, and the selection needs to be owned
971 clip_star.vmode = NUL;
972#endif
973 }
974 // A double click selects a word or a block.
975 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
976 {
977 pos_T *pos = NULL;
978 int gc;
979
980 if (is_click)
981 {
982 // If the character under the cursor (skipping white space) is
983 // not a word character, try finding a match and select a (),
984 // {}, [], #if/#endif, etc. block.
985 end_visual = curwin->w_cursor;
986 while (gc = gchar_pos(&end_visual), VIM_ISWHITE(gc))
987 inc(&end_visual);
988 if (oap != NULL)
989 oap->motion_type = MCHAR;
990 if (oap != NULL
991 && VIsual_mode == 'v'
992 && !vim_iswordc(gchar_pos(&end_visual))
993 && EQUAL_POS(curwin->w_cursor, VIsual)
994 && (pos = findmatch(oap, NUL)) != NULL)
995 {
996 curwin->w_cursor = *pos;
997 if (oap->motion_type == MLINE)
998 VIsual_mode = 'V';
999 else if (*p_sel == 'e')
1000 {
1001 if (LT_POS(curwin->w_cursor, VIsual))
1002 ++VIsual.col;
1003 else
1004 ++curwin->w_cursor.col;
1005 }
1006 }
1007 }
1008
1009 if (pos == NULL && (is_click || is_drag))
1010 {
1011 // When not found a match or when dragging: extend to include
1012 // a word.
1013 if (LT_POS(curwin->w_cursor, orig_cursor))
1014 {
1015 find_start_of_word(&curwin->w_cursor);
1016 find_end_of_word(&VIsual);
1017 }
1018 else
1019 {
1020 find_start_of_word(&VIsual);
1021 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
1022 curwin->w_cursor.col +=
1023 (*mb_ptr2len)(ml_get_cursor());
1024 find_end_of_word(&curwin->w_cursor);
1025 }
1026 }
1027 curwin->w_set_curswant = TRUE;
1028 }
1029 if (is_click)
1030 redraw_curbuf_later(INVERTED); // update the inversion
1031 }
1032 else if (VIsual_active && !old_active)
1033 {
1034 if (mod_mask & MOD_MASK_ALT)
1035 VIsual_mode = Ctrl_V;
1036 else
1037 VIsual_mode = 'v';
1038 }
1039
1040 // If Visual mode changed show it later.
1041 if ((!VIsual_active && old_active && mode_displayed)
1042 || (VIsual_active && p_smd && msg_silent == 0
1043 && (!old_active || VIsual_mode != old_mode)))
1044 redraw_cmdline = TRUE;
1045
1046 return moved;
1047}
1048
1049 void
1050ins_mouse(int c)
1051{
1052 pos_T tpos;
1053 win_T *old_curwin = curwin;
1054
1055# ifdef FEAT_GUI
1056 // When GUI is active, also move/paste when 'mouse' is empty
1057 if (!gui.in_use)
1058# endif
1059 if (!mouse_has(MOUSE_INSERT))
1060 return;
1061
1062 undisplay_dollar();
1063 tpos = curwin->w_cursor;
1064 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
1065 {
1066 win_T *new_curwin = curwin;
1067
1068 if (curwin != old_curwin && win_valid(old_curwin))
1069 {
1070 // Mouse took us to another window. We need to go back to the
1071 // previous one to stop insert there properly.
1072 curwin = old_curwin;
1073 curbuf = curwin->w_buffer;
1074#ifdef FEAT_JOB_CHANNEL
1075 if (bt_prompt(curbuf))
1076 // Restart Insert mode when re-entering the prompt buffer.
1077 curbuf->b_prompt_insert = 'A';
1078#endif
1079 }
1080 start_arrow(curwin == old_curwin ? &tpos : NULL);
1081 if (curwin != new_curwin && win_valid(new_curwin))
1082 {
1083 curwin = new_curwin;
1084 curbuf = curwin->w_buffer;
1085 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001086 set_can_cindent(TRUE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001087 }
1088
1089 // redraw status lines (in case another window became active)
1090 redraw_statuslines();
1091}
1092
1093 void
1094ins_mousescroll(int dir)
1095{
1096 pos_T tpos;
1097 win_T *old_curwin = curwin, *wp;
1098 int did_scroll = FALSE;
1099
1100 tpos = curwin->w_cursor;
1101
1102 if (mouse_row >= 0 && mouse_col >= 0)
1103 {
1104 int row, col;
1105
1106 row = mouse_row;
1107 col = mouse_col;
1108
1109 // find the window at the pointer coordinates
1110 wp = mouse_find_win(&row, &col, FIND_POPUP);
1111 if (wp == NULL)
1112 return;
1113 curwin = wp;
1114 curbuf = curwin->w_buffer;
1115 }
1116 if (curwin == old_curwin)
1117 undisplay_dollar();
1118
1119 // Don't scroll the window in which completion is being done.
1120 if (!pum_visible() || curwin != old_curwin)
1121 {
LemonBoyc27747e2022-05-07 12:25:40 +01001122 long step;
1123
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001124 if (dir == MSCR_DOWN || dir == MSCR_UP)
1125 {
LemonBoyc27747e2022-05-07 12:25:40 +01001126 if (mouse_vert_step < 0
1127 || mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
1128 step = (long)(curwin->w_botline - curwin->w_topline);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001129 else
LemonBoyc27747e2022-05-07 12:25:40 +01001130 step = mouse_vert_step;
1131 scroll_redraw(dir, step);
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001132# ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001133 if (WIN_IS_POPUP(curwin))
1134 popup_set_firstline(curwin);
1135# endif
1136 }
1137#ifdef FEAT_GUI
1138 else
1139 {
LemonBoyc27747e2022-05-07 12:25:40 +01001140 int val;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001141
LemonBoyc27747e2022-05-07 12:25:40 +01001142 if (mouse_hor_step < 0
1143 || mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001144 step = curwin->w_width;
LemonBoyc27747e2022-05-07 12:25:40 +01001145 else
1146 step = mouse_hor_step;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001147 val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
1148 if (val < 0)
1149 val = 0;
1150 gui_do_horiz_scroll(val, TRUE);
1151 }
1152#endif
1153 did_scroll = TRUE;
LemonBoy66e13ae2022-04-21 22:52:11 +01001154 may_trigger_winscrolled();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001155 }
1156
1157 curwin->w_redr_status = TRUE;
1158
1159 curwin = old_curwin;
1160 curbuf = curwin->w_buffer;
1161
1162 // The popup menu may overlay the window, need to redraw it.
1163 // TODO: Would be more efficient to only redraw the windows that are
1164 // overlapped by the popup menu.
1165 if (pum_visible() && did_scroll)
1166 {
1167 redraw_all_later(NOT_VALID);
1168 ins_compl_show_pum();
1169 }
1170
1171 if (!EQUAL_POS(curwin->w_cursor, tpos))
1172 {
1173 start_arrow(&tpos);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001174 set_can_cindent(TRUE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001175 }
1176}
1177
1178/*
1179 * Return TRUE if "c" is a mouse key.
1180 */
1181 int
1182is_mouse_key(int c)
1183{
1184 return c == K_LEFTMOUSE
1185 || c == K_LEFTMOUSE_NM
1186 || c == K_LEFTDRAG
1187 || c == K_LEFTRELEASE
1188 || c == K_LEFTRELEASE_NM
1189 || c == K_MOUSEMOVE
1190 || c == K_MIDDLEMOUSE
1191 || c == K_MIDDLEDRAG
1192 || c == K_MIDDLERELEASE
1193 || c == K_RIGHTMOUSE
1194 || c == K_RIGHTDRAG
1195 || c == K_RIGHTRELEASE
1196 || c == K_MOUSEDOWN
1197 || c == K_MOUSEUP
1198 || c == K_MOUSELEFT
1199 || c == K_MOUSERIGHT
1200 || c == K_X1MOUSE
1201 || c == K_X1DRAG
1202 || c == K_X1RELEASE
1203 || c == K_X2MOUSE
1204 || c == K_X2DRAG
1205 || c == K_X2RELEASE;
1206}
1207
1208static struct mousetable
1209{
1210 int pseudo_code; // Code for pseudo mouse event
1211 int button; // Which mouse button is it?
1212 int is_click; // Is it a mouse button click event?
1213 int is_drag; // Is it a mouse drag event?
1214} mouse_table[] =
1215{
1216 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
1217#ifdef FEAT_GUI
1218 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
1219#endif
1220 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
1221 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
1222#ifdef FEAT_GUI
1223 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
1224#endif
1225 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
1226 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
1227 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
1228 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
1229 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
1230 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
1231 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
1232 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
1233 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
1234 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
1235 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
1236 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
1237 // DRAG without CLICK
1238 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
1239 // RELEASE without CLICK
1240 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
1241 {0, 0, 0, 0},
1242};
1243
1244/*
1245 * Look up the given mouse code to return the relevant information in the other
1246 * arguments. Return which button is down or was released.
1247 */
1248 int
1249get_mouse_button(int code, int *is_click, int *is_drag)
1250{
1251 int i;
1252
1253 for (i = 0; mouse_table[i].pseudo_code; i++)
1254 if (code == mouse_table[i].pseudo_code)
1255 {
1256 *is_click = mouse_table[i].is_click;
1257 *is_drag = mouse_table[i].is_drag;
1258 return mouse_table[i].button;
1259 }
1260 return 0; // Shouldn't get here
1261}
1262
1263/*
1264 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
1265 * the given information about which mouse button is down, and whether the
1266 * mouse was clicked, dragged or released.
1267 */
1268 int
1269get_pseudo_mouse_code(
1270 int button, // eg MOUSE_LEFT
1271 int is_click,
1272 int is_drag)
1273{
1274 int i;
1275
1276 for (i = 0; mouse_table[i].pseudo_code; i++)
1277 if (button == mouse_table[i].button
1278 && is_click == mouse_table[i].is_click
1279 && is_drag == mouse_table[i].is_drag)
1280 {
1281#ifdef FEAT_GUI
1282 // Trick: a non mappable left click and release has mouse_col -1
1283 // or added MOUSE_COLOFF. Used for 'mousefocus' in
1284 // gui_mouse_moved()
1285 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
1286 {
1287 if (mouse_col < 0)
1288 mouse_col = 0;
1289 else
1290 mouse_col -= MOUSE_COLOFF;
1291 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
1292 return (int)KE_LEFTMOUSE_NM;
1293 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
1294 return (int)KE_LEFTRELEASE_NM;
1295 }
1296#endif
1297 return mouse_table[i].pseudo_code;
1298 }
1299 return (int)KE_IGNORE; // not recognized, ignore it
1300}
1301
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001302# define HMT_NORMAL 1
1303# define HMT_NETTERM 2
1304# define HMT_DEC 4
1305# define HMT_JSBTERM 8
1306# define HMT_PTERM 16
1307# define HMT_URXVT 32
1308# define HMT_GPM 64
1309# define HMT_SGR 128
1310# define HMT_SGR_REL 256
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001311static int has_mouse_termcode = 0;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001312
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001313 void
1314set_mouse_termcode(
1315 int n, // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE
1316 char_u *s)
1317{
1318 char_u name[2];
1319
1320 name[0] = n;
1321 name[1] = KE_FILLER;
1322 add_termcode(name, s, FALSE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001323# ifdef FEAT_MOUSE_JSB
1324 if (n == KS_JSBTERM_MOUSE)
1325 has_mouse_termcode |= HMT_JSBTERM;
1326 else
1327# endif
1328# ifdef FEAT_MOUSE_NET
1329 if (n == KS_NETTERM_MOUSE)
1330 has_mouse_termcode |= HMT_NETTERM;
1331 else
1332# endif
1333# ifdef FEAT_MOUSE_DEC
1334 if (n == KS_DEC_MOUSE)
1335 has_mouse_termcode |= HMT_DEC;
1336 else
1337# endif
1338# ifdef FEAT_MOUSE_PTERM
1339 if (n == KS_PTERM_MOUSE)
1340 has_mouse_termcode |= HMT_PTERM;
1341 else
1342# endif
1343# ifdef FEAT_MOUSE_URXVT
1344 if (n == KS_URXVT_MOUSE)
1345 has_mouse_termcode |= HMT_URXVT;
1346 else
1347# endif
1348# ifdef FEAT_MOUSE_GPM
1349 if (n == KS_GPM_MOUSE)
1350 has_mouse_termcode |= HMT_GPM;
1351 else
1352# endif
1353 if (n == KS_SGR_MOUSE)
1354 has_mouse_termcode |= HMT_SGR;
1355 else if (n == KS_SGR_MOUSE_RELEASE)
1356 has_mouse_termcode |= HMT_SGR_REL;
1357 else
1358 has_mouse_termcode |= HMT_NORMAL;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001359}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001360
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001361# if defined(UNIX) || defined(VMS) || defined(PROTO)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001362 void
1363del_mouse_termcode(
1364 int n) // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE
1365{
1366 char_u name[2];
1367
1368 name[0] = n;
1369 name[1] = KE_FILLER;
1370 del_termcode(name);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001371# ifdef FEAT_MOUSE_JSB
1372 if (n == KS_JSBTERM_MOUSE)
1373 has_mouse_termcode &= ~HMT_JSBTERM;
1374 else
1375# endif
1376# ifdef FEAT_MOUSE_NET
1377 if (n == KS_NETTERM_MOUSE)
1378 has_mouse_termcode &= ~HMT_NETTERM;
1379 else
1380# endif
1381# ifdef FEAT_MOUSE_DEC
1382 if (n == KS_DEC_MOUSE)
1383 has_mouse_termcode &= ~HMT_DEC;
1384 else
1385# endif
1386# ifdef FEAT_MOUSE_PTERM
1387 if (n == KS_PTERM_MOUSE)
1388 has_mouse_termcode &= ~HMT_PTERM;
1389 else
1390# endif
1391# ifdef FEAT_MOUSE_URXVT
1392 if (n == KS_URXVT_MOUSE)
1393 has_mouse_termcode &= ~HMT_URXVT;
1394 else
1395# endif
1396# ifdef FEAT_MOUSE_GPM
1397 if (n == KS_GPM_MOUSE)
1398 has_mouse_termcode &= ~HMT_GPM;
1399 else
1400# endif
1401 if (n == KS_SGR_MOUSE)
1402 has_mouse_termcode &= ~HMT_SGR;
1403 else if (n == KS_SGR_MOUSE_RELEASE)
1404 has_mouse_termcode &= ~HMT_SGR_REL;
1405 else
1406 has_mouse_termcode &= ~HMT_NORMAL;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001407}
1408# endif
1409
1410/*
1411 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
1412 */
1413 void
1414setmouse(void)
1415{
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001416 int checkfor;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001417
1418# ifdef FEAT_MOUSESHAPE
1419 update_mouseshape(-1);
1420# endif
1421
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001422 // Should be outside proc, but may break MOUSESHAPE
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001423# ifdef FEAT_GUI
1424 // In the GUI the mouse is always enabled.
1425 if (gui.in_use)
1426 return;
1427# endif
1428 // be quick when mouse is off
1429 if (*p_mouse == NUL || has_mouse_termcode == 0)
1430 return;
1431
1432 // don't switch mouse on when not in raw mode (Ex mode)
1433 if (cur_tmode != TMODE_RAW)
1434 {
1435 mch_setmouse(FALSE);
1436 return;
1437 }
1438
1439 if (VIsual_active)
1440 checkfor = MOUSE_VISUAL;
Bram Moolenaar24959102022-05-07 20:01:16 +01001441 else if (State == MODE_HITRETURN || State == MODE_ASKMORE
1442 || State == MODE_SETWSIZE)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001443 checkfor = MOUSE_RETURN;
Bram Moolenaar24959102022-05-07 20:01:16 +01001444 else if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001445 checkfor = MOUSE_INSERT;
Bram Moolenaar24959102022-05-07 20:01:16 +01001446 else if (State & MODE_CMDLINE)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001447 checkfor = MOUSE_COMMAND;
Bram Moolenaar24959102022-05-07 20:01:16 +01001448 else if (State == MODE_CONFIRM || State == MODE_EXTERNCMD)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001449 checkfor = ' '; // don't use mouse for ":confirm" or ":!cmd"
1450 else
1451 checkfor = MOUSE_NORMAL; // assume normal mode
1452
1453 if (mouse_has(checkfor))
1454 mch_setmouse(TRUE);
1455 else
1456 mch_setmouse(FALSE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001457}
1458
1459/*
1460 * Return TRUE if
1461 * - "c" is in 'mouse', or
1462 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
1463 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
1464 * normal editing mode (not at hit-return message).
1465 */
1466 int
1467mouse_has(int c)
1468{
1469 char_u *p;
1470
1471 for (p = p_mouse; *p; ++p)
1472 switch (*p)
1473 {
1474 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
1475 return TRUE;
1476 break;
1477 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
1478 return TRUE;
1479 break;
1480 default: if (c == *p) return TRUE; break;
1481 }
1482 return FALSE;
1483}
1484
1485/*
1486 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
1487 */
1488 int
1489mouse_model_popup(void)
1490{
1491 return (p_mousem[0] == 'p');
1492}
1493
1494/*
1495 * Move the cursor to the specified row and column on the screen.
1496 * Change current window if necessary. Returns an integer with the
1497 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
1498 *
1499 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
1500 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
1501 *
1502 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
1503 * if the mouse is outside the window then the text will scroll, or if the
1504 * mouse was previously on a status line, then the status line may be dragged.
1505 *
1506 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
1507 * cursor is moved unless the cursor was on a status line.
1508 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
1509 * IN_SEP_LINE depending on where the cursor was clicked.
1510 *
1511 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
1512 * the mouse is on the status line of the same window.
1513 *
1514 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
1515 * the last call.
1516 *
1517 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
1518 * remembered.
1519 */
1520 int
1521jump_to_mouse(
1522 int flags,
1523 int *inclusive, // used for inclusive operator, can be NULL
1524 int which_button) // MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE
1525{
1526 static int on_status_line = 0; // #lines below bottom of window
1527 static int on_sep_line = 0; // on separator right of window
1528#ifdef FEAT_MENU
1529 static int in_winbar = FALSE;
1530#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001531#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001532 static int in_popup_win = FALSE;
1533 static win_T *click_in_popup_win = NULL;
1534#endif
1535 static int prev_row = -1;
1536 static int prev_col = -1;
1537 static win_T *dragwin = NULL; // window being dragged
1538 static int did_drag = FALSE; // drag was noticed
1539
1540 win_T *wp, *old_curwin;
1541 pos_T old_cursor;
1542 int count;
1543 int first;
1544 int row = mouse_row;
1545 int col = mouse_col;
1546#ifdef FEAT_FOLDING
1547 int mouse_char;
1548#endif
1549
1550 mouse_past_bottom = FALSE;
1551 mouse_past_eol = FALSE;
1552
1553 if (flags & MOUSE_RELEASED)
1554 {
1555 // On button release we may change window focus if positioned on a
1556 // status line and no dragging happened.
1557 if (dragwin != NULL && !did_drag)
1558 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
1559 dragwin = NULL;
1560 did_drag = FALSE;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001561#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001562 if (click_in_popup_win != NULL && popup_dragwin == NULL)
1563 popup_close_for_mouse_click(click_in_popup_win);
1564
1565 popup_dragwin = NULL;
1566 click_in_popup_win = NULL;
1567#endif
1568 }
1569
1570 if ((flags & MOUSE_DID_MOVE)
1571 && prev_row == mouse_row
1572 && prev_col == mouse_col)
1573 {
1574retnomove:
1575 // before moving the cursor for a left click which is NOT in a status
1576 // line, stop Visual mode
1577 if (on_status_line)
1578 return IN_STATUS_LINE;
1579 if (on_sep_line)
1580 return IN_SEP_LINE;
1581#ifdef FEAT_MENU
1582 if (in_winbar)
1583 {
1584 // A quick second click may arrive as a double-click, but we use it
1585 // as a second click in the WinBar.
1586 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
1587 {
1588 wp = mouse_find_win(&row, &col, FAIL_POPUP);
1589 if (wp == NULL)
1590 return IN_UNKNOWN;
1591 winbar_click(wp, col);
1592 }
1593 return IN_OTHER_WIN | MOUSE_WINBAR;
1594 }
1595#endif
1596 if (flags & MOUSE_MAY_STOP_VIS)
1597 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001598 end_visual_mode_keep_button();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001599 redraw_curbuf_later(INVERTED); // delete the inversion
1600 }
1601#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
1602 // Continue a modeless selection in another window.
1603 if (cmdwin_type != 0 && row < curwin->w_winrow)
1604 return IN_OTHER_WIN;
1605#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001606#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001607 // Continue a modeless selection in a popup window or dragging it.
1608 if (in_popup_win)
1609 {
1610 click_in_popup_win = NULL; // don't close it on release
1611 if (popup_dragwin != NULL)
1612 {
1613 // dragging a popup window
1614 popup_drag(popup_dragwin);
1615 return IN_UNKNOWN;
1616 }
1617 return IN_OTHER_WIN;
1618 }
1619#endif
1620 return IN_BUFFER;
1621 }
1622
1623 prev_row = mouse_row;
1624 prev_col = mouse_col;
1625
1626 if (flags & MOUSE_SETPOS)
1627 goto retnomove; // ugly goto...
1628
1629#ifdef FEAT_FOLDING
1630 // Remember the character under the mouse, it might be a '-' or '+' in the
1631 // fold column.
1632 if (row >= 0 && row < Rows && col >= 0 && col <= Columns
1633 && ScreenLines != NULL)
1634 mouse_char = ScreenLines[LineOffset[row] + col];
1635 else
1636 mouse_char = ' ';
1637#endif
1638
1639 old_curwin = curwin;
1640 old_cursor = curwin->w_cursor;
1641
1642 if (!(flags & MOUSE_FOCUS))
1643 {
1644 if (row < 0 || col < 0) // check if it makes sense
1645 return IN_UNKNOWN;
1646
1647 // find the window where the row is in and adjust "row" and "col" to be
1648 // relative to top-left of the window
1649 wp = mouse_find_win(&row, &col, FIND_POPUP);
1650 if (wp == NULL)
1651 return IN_UNKNOWN;
1652 dragwin = NULL;
1653
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001654#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001655 // Click in a popup window may start dragging or modeless selection,
1656 // but not much else.
1657 if (WIN_IS_POPUP(wp))
1658 {
1659 on_sep_line = 0;
Bram Moolenaarbfc57862021-11-26 15:57:40 +00001660 on_status_line = 0;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001661 in_popup_win = TRUE;
1662 if (which_button == MOUSE_LEFT && popup_close_if_on_X(wp, row, col))
1663 {
1664 return IN_UNKNOWN;
1665 }
Bram Moolenaar0b74d002021-11-29 17:38:02 +00001666 else if (((wp->w_popup_flags & (POPF_DRAG | POPF_RESIZE))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001667 && popup_on_border(wp, row, col))
Bram Moolenaar0b74d002021-11-29 17:38:02 +00001668 || (wp->w_popup_flags & POPF_DRAGALL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001669 {
1670 popup_dragwin = wp;
1671 popup_start_drag(wp, row, col);
1672 return IN_UNKNOWN;
1673 }
1674 // Only close on release, otherwise it's not possible to drag or do
1675 // modeless selection.
1676 else if (wp->w_popup_close == POPCLOSE_CLICK
1677 && which_button == MOUSE_LEFT)
1678 {
1679 click_in_popup_win = wp;
1680 }
1681 else if (which_button == MOUSE_LEFT)
1682 // If the click is in the scrollbar, may scroll up/down.
1683 popup_handle_scrollbar_click(wp, row, col);
1684# ifdef FEAT_CLIPBOARD
1685 return IN_OTHER_WIN;
1686# else
1687 return IN_UNKNOWN;
1688# endif
1689 }
1690 in_popup_win = FALSE;
1691 popup_dragwin = NULL;
1692#endif
1693#ifdef FEAT_MENU
1694 if (row == -1)
1695 {
1696 // A click in the window toolbar does not enter another window or
1697 // change Visual highlighting.
1698 winbar_click(wp, col);
1699 in_winbar = TRUE;
1700 return IN_OTHER_WIN | MOUSE_WINBAR;
1701 }
1702 in_winbar = FALSE;
1703#endif
1704
1705 // winpos and height may change in win_enter()!
1706 if (row >= wp->w_height) // In (or below) status line
1707 {
1708 on_status_line = row - wp->w_height + 1;
1709 dragwin = wp;
1710 }
1711 else
1712 on_status_line = 0;
1713 if (col >= wp->w_width) // In separator line
1714 {
1715 on_sep_line = col - wp->w_width + 1;
1716 dragwin = wp;
1717 }
1718 else
1719 on_sep_line = 0;
1720
1721 // The rightmost character of the status line might be a vertical
1722 // separator character if there is no connecting window to the right.
1723 if (on_status_line && on_sep_line)
1724 {
1725 if (stl_connected(wp))
1726 on_sep_line = 0;
1727 else
1728 on_status_line = 0;
1729 }
1730
1731 // Before jumping to another buffer, or moving the cursor for a left
1732 // click, stop Visual mode.
1733 if (VIsual_active
1734 && (wp->w_buffer != curwin->w_buffer
1735 || (!on_status_line && !on_sep_line
1736#ifdef FEAT_FOLDING
1737 && (
1738# ifdef FEAT_RIGHTLEFT
1739 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
1740# endif
1741 col >= wp->w_p_fdc
1742# ifdef FEAT_CMDWIN
1743 + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
1744# endif
1745 )
1746#endif
1747 && (flags & MOUSE_MAY_STOP_VIS))))
1748 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001749 end_visual_mode_keep_button();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001750 redraw_curbuf_later(INVERTED); // delete the inversion
1751 }
1752#ifdef FEAT_CMDWIN
1753 if (cmdwin_type != 0 && wp != curwin)
1754 {
1755 // A click outside the command-line window: Use modeless
1756 // selection if possible. Allow dragging the status lines.
1757 on_sep_line = 0;
1758# ifdef FEAT_CLIPBOARD
1759 if (on_status_line)
1760 return IN_STATUS_LINE;
1761 return IN_OTHER_WIN;
1762# else
1763 row = 0;
1764 col += wp->w_wincol;
1765 wp = curwin;
1766# endif
1767 }
1768#endif
Bram Moolenaar219c7d02020-02-01 21:57:29 +01001769#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1770 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1771 // terminal in popup window: don't jump to another window
1772 return IN_OTHER_WIN;
1773#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001774 // Only change window focus when not clicking on or dragging the
1775 // status line. Do change focus when releasing the mouse button
1776 // (MOUSE_FOCUS was set above if we dragged first).
1777 if (dragwin == NULL || (flags & MOUSE_RELEASED))
1778 win_enter(wp, TRUE); // can make wp invalid!
1779
1780 if (curwin != old_curwin)
1781 {
1782#ifdef CHECK_DOUBLE_CLICK
1783 // set topline, to be able to check for double click ourselves
1784 set_mouse_topline(curwin);
1785#endif
1786#ifdef FEAT_TERMINAL
1787 // when entering a terminal window may change state
1788 term_win_entered();
1789#endif
1790 }
1791 if (on_status_line) // In (or below) status line
1792 {
1793 // Don't use start_arrow() if we're in the same window
1794 if (curwin == old_curwin)
1795 return IN_STATUS_LINE;
1796 else
1797 return IN_STATUS_LINE | CURSOR_MOVED;
1798 }
1799 if (on_sep_line) // In (or below) status line
1800 {
1801 // Don't use start_arrow() if we're in the same window
1802 if (curwin == old_curwin)
1803 return IN_SEP_LINE;
1804 else
1805 return IN_SEP_LINE | CURSOR_MOVED;
1806 }
1807
1808 curwin->w_cursor.lnum = curwin->w_topline;
1809#ifdef FEAT_GUI
1810 // remember topline, needed for double click
1811 gui_prev_topline = curwin->w_topline;
1812# ifdef FEAT_DIFF
1813 gui_prev_topfill = curwin->w_topfill;
1814# endif
1815#endif
1816 }
1817 else if (on_status_line && which_button == MOUSE_LEFT)
1818 {
1819 if (dragwin != NULL)
1820 {
1821 // Drag the status line
zeertzjq6dab00a2022-05-20 13:45:59 +01001822 count = row - W_WINROW(dragwin) - dragwin->w_height + 1
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001823 - on_status_line;
1824 win_drag_status_line(dragwin, count);
1825 did_drag |= count;
1826 }
1827 return IN_STATUS_LINE; // Cursor didn't move
1828 }
1829 else if (on_sep_line && which_button == MOUSE_LEFT)
1830 {
1831 if (dragwin != NULL)
1832 {
1833 // Drag the separator column
1834 count = col - dragwin->w_wincol - dragwin->w_width + 1
1835 - on_sep_line;
1836 win_drag_vsep_line(dragwin, count);
1837 did_drag |= count;
1838 }
1839 return IN_SEP_LINE; // Cursor didn't move
1840 }
1841#ifdef FEAT_MENU
1842 else if (in_winbar)
1843 {
1844 // After a click on the window toolbar don't start Visual mode.
1845 return IN_OTHER_WIN | MOUSE_WINBAR;
1846 }
1847#endif
1848 else // keep_window_focus must be TRUE
1849 {
1850 // before moving the cursor for a left click, stop Visual mode
1851 if (flags & MOUSE_MAY_STOP_VIS)
1852 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001853 end_visual_mode_keep_button();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001854 redraw_curbuf_later(INVERTED); // delete the inversion
1855 }
1856
1857#if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD)
1858 // Continue a modeless selection in another window.
1859 if (cmdwin_type != 0 && row < curwin->w_winrow)
1860 return IN_OTHER_WIN;
1861#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001862#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001863 if (in_popup_win)
1864 {
1865 if (popup_dragwin != NULL)
1866 {
1867 // dragging a popup window
1868 popup_drag(popup_dragwin);
1869 return IN_UNKNOWN;
1870 }
1871 // continue a modeless selection in a popup window
1872 click_in_popup_win = NULL;
1873 return IN_OTHER_WIN;
1874 }
1875#endif
1876
1877 row -= W_WINROW(curwin);
1878 col -= curwin->w_wincol;
1879
1880 // When clicking beyond the end of the window, scroll the screen.
1881 // Scroll by however many rows outside the window we are.
1882 if (row < 0)
1883 {
1884 count = 0;
1885 for (first = TRUE; curwin->w_topline > 1; )
1886 {
1887#ifdef FEAT_DIFF
1888 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
1889 ++count;
1890 else
1891#endif
1892 count += plines(curwin->w_topline - 1);
1893 if (!first && count > -row)
1894 break;
1895 first = FALSE;
1896#ifdef FEAT_FOLDING
1897 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1898#endif
1899#ifdef FEAT_DIFF
1900 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
1901 ++curwin->w_topfill;
1902 else
1903#endif
1904 {
1905 --curwin->w_topline;
1906#ifdef FEAT_DIFF
1907 curwin->w_topfill = 0;
1908#endif
1909 }
1910 }
1911#ifdef FEAT_DIFF
1912 check_topfill(curwin, FALSE);
1913#endif
1914 curwin->w_valid &=
1915 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
1916 redraw_later(VALID);
1917 row = 0;
1918 }
1919 else if (row >= curwin->w_height)
1920 {
1921 count = 0;
1922 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
1923 {
1924#ifdef FEAT_DIFF
1925 if (curwin->w_topfill > 0)
1926 ++count;
1927 else
1928#endif
1929 count += plines(curwin->w_topline);
1930 if (!first && count > row - curwin->w_height + 1)
1931 break;
1932 first = FALSE;
1933#ifdef FEAT_FOLDING
1934 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
1935 && curwin->w_topline == curbuf->b_ml.ml_line_count)
1936 break;
1937#endif
1938#ifdef FEAT_DIFF
1939 if (curwin->w_topfill > 0)
1940 --curwin->w_topfill;
1941 else
1942#endif
1943 {
1944 ++curwin->w_topline;
1945#ifdef FEAT_DIFF
1946 curwin->w_topfill =
1947 diff_check_fill(curwin, curwin->w_topline);
1948#endif
1949 }
1950 }
1951#ifdef FEAT_DIFF
1952 check_topfill(curwin, FALSE);
1953#endif
1954 redraw_later(VALID);
1955 curwin->w_valid &=
1956 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
1957 row = curwin->w_height - 1;
1958 }
1959 else if (row == 0)
1960 {
1961 // When dragging the mouse, while the text has been scrolled up as
1962 // far as it goes, moving the mouse in the top line should scroll
1963 // the text down (done later when recomputing w_topline).
1964 if (mouse_dragging > 0
1965 && curwin->w_cursor.lnum
1966 == curwin->w_buffer->b_ml.ml_line_count
1967 && curwin->w_cursor.lnum == curwin->w_topline)
1968 curwin->w_valid &= ~(VALID_TOPLINE);
1969 }
1970 }
1971
1972#ifdef FEAT_FOLDING
1973 // Check for position outside of the fold column.
1974 if (
1975# ifdef FEAT_RIGHTLEFT
1976 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
1977# endif
1978 col >= curwin->w_p_fdc
1979# ifdef FEAT_CMDWIN
1980 + (cmdwin_type == 0 ? 0 : 1)
1981# endif
1982 )
1983 mouse_char = ' ';
1984#endif
1985
1986 // compute the position in the buffer line from the posn on the screen
1987 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum, NULL))
1988 mouse_past_bottom = TRUE;
1989
1990 // Start Visual mode before coladvance(), for when 'sel' != "old"
1991 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
1992 {
1993 check_visual_highlight();
1994 VIsual = old_cursor;
1995 VIsual_active = TRUE;
1996 VIsual_reselect = TRUE;
1997 // if 'selectmode' contains "mouse", start Select mode
1998 may_start_select('o');
1999 setmouse();
2000 if (p_smd && msg_silent == 0)
2001 redraw_cmdline = TRUE; // show visual mode later
2002 }
2003
2004 curwin->w_curswant = col;
2005 curwin->w_set_curswant = FALSE; // May still have been TRUE
2006 if (coladvance(col) == FAIL) // Mouse click beyond end of line
2007 {
2008 if (inclusive != NULL)
2009 *inclusive = TRUE;
2010 mouse_past_eol = TRUE;
2011 }
2012 else if (inclusive != NULL)
2013 *inclusive = FALSE;
2014
2015 count = IN_BUFFER;
2016 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
2017 || curwin->w_cursor.col != old_cursor.col)
2018 count |= CURSOR_MOVED; // Cursor has moved
2019
2020# ifdef FEAT_FOLDING
Bram Moolenaar3aca5a62021-02-17 13:14:07 +01002021 if (mouse_char == fill_foldclosed)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002022 count |= MOUSE_FOLD_OPEN;
2023 else if (mouse_char != ' ')
2024 count |= MOUSE_FOLD_CLOSE;
2025# endif
2026
2027 return count;
2028}
2029
2030/*
LemonBoyc27747e2022-05-07 12:25:40 +01002031 * Mouse scroll wheel: Default action is to scroll mouse_vert_step lines (or
2032 * mouse_hor_step, depending on the scroll direction), or one page when Shift or
2033 * Ctrl is used.
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002034 * K_MOUSEUP (cap->arg == 1) or K_MOUSEDOWN (cap->arg == 0) or
2035 * K_MOUSELEFT (cap->arg == -1) or K_MOUSERIGHT (cap->arg == -2)
2036 */
2037 void
2038nv_mousescroll(cmdarg_T *cap)
2039{
2040 win_T *old_curwin = curwin, *wp;
2041
2042 if (mouse_row >= 0 && mouse_col >= 0)
2043 {
2044 int row, col;
2045
2046 row = mouse_row;
2047 col = mouse_col;
2048
2049 // find the window at the pointer coordinates
2050 wp = mouse_find_win(&row, &col, FIND_POPUP);
2051 if (wp == NULL)
2052 return;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002053#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002054 if (WIN_IS_POPUP(wp) && !wp->w_has_scrollbar)
2055 return;
2056#endif
2057 curwin = wp;
2058 curbuf = curwin->w_buffer;
2059 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002060 if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
2061 {
2062# ifdef FEAT_TERMINAL
2063 if (term_use_loop())
2064 // This window is a terminal window, send the mouse event there.
2065 // Set "typed" to FALSE to avoid an endless loop.
Bram Moolenaar1e814bc2019-11-03 21:19:41 +01002066 send_keys_to_term(curbuf->b_term, cap->cmdchar, mod_mask, FALSE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002067 else
2068# endif
LemonBoyc27747e2022-05-07 12:25:40 +01002069 if (mouse_vert_step < 0 || mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002070 {
2071 (void)onepage(cap->arg ? FORWARD : BACKWARD, 1L);
2072 }
2073 else
2074 {
2075 // Don't scroll more than half the window height.
LemonBoyc27747e2022-05-07 12:25:40 +01002076 if (curwin->w_height < mouse_vert_step * 2)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002077 {
2078 cap->count1 = curwin->w_height / 2;
2079 if (cap->count1 == 0)
2080 cap->count1 = 1;
2081 }
2082 else
LemonBoyc27747e2022-05-07 12:25:40 +01002083 cap->count1 = mouse_vert_step;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002084 cap->count0 = cap->count1;
2085 nv_scroll_line(cap);
2086 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002087#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002088 if (WIN_IS_POPUP(curwin))
2089 popup_set_firstline(curwin);
2090#endif
2091 }
2092# ifdef FEAT_GUI
2093 else
2094 {
2095 // Horizontal scroll - only allowed when 'wrap' is disabled
2096 if (!curwin->w_p_wrap)
2097 {
LemonBoyc27747e2022-05-07 12:25:40 +01002098 int val, step;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002099
LemonBoyc27747e2022-05-07 12:25:40 +01002100 if (mouse_hor_step < 0
2101 || mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002102 step = curwin->w_width;
LemonBoyc27747e2022-05-07 12:25:40 +01002103 else
2104 step = mouse_hor_step;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002105 val = curwin->w_leftcol + (cap->arg == MSCR_RIGHT ? -step : +step);
2106 if (val < 0)
2107 val = 0;
2108
2109 gui_do_horiz_scroll(val, TRUE);
2110 }
2111 }
2112# endif
2113# ifdef FEAT_SYN_HL
2114 if (curwin != old_curwin && curwin->w_p_cul)
2115 redraw_for_cursorline(curwin);
2116# endif
LemonBoy66e13ae2022-04-21 22:52:11 +01002117 may_trigger_winscrolled();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002118
2119 curwin->w_redr_status = TRUE;
2120
2121 curwin = old_curwin;
2122 curbuf = curwin->w_buffer;
2123}
2124
2125/*
2126 * Mouse clicks and drags.
2127 */
2128 void
2129nv_mouse(cmdarg_T *cap)
2130{
2131 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
2132}
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002133
Bram Moolenaar85eee5b2021-06-03 20:34:57 +02002134static int held_button = MOUSE_RELEASE;
2135
2136 void
2137reset_held_button()
2138{
2139 held_button = MOUSE_RELEASE;
2140}
2141
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002142/*
2143 * Check if typebuf 'tp' contains a terminal mouse code and returns the
2144 * modifiers found in typebuf in 'modifiers'.
2145 */
2146 int
2147check_termcode_mouse(
2148 char_u *tp,
2149 int *slen,
2150 char_u *key_name,
2151 char_u *modifiers_start,
2152 int idx,
2153 int *modifiers)
2154{
2155 int j;
2156 char_u *p;
2157# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
2158 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
2159 char_u bytes[6];
2160 int num_bytes;
2161# endif
2162 int mouse_code = 0; // init for GCC
2163 int is_click, is_drag;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002164 int is_release, release_is_ambiguous;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002165 int wheel_code = 0;
2166 int current_button;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002167 static int orig_num_clicks = 1;
2168 static int orig_mouse_code = 0x0;
2169# ifdef CHECK_DOUBLE_CLICK
2170 static int orig_mouse_col = 0;
2171 static int orig_mouse_row = 0;
2172 static struct timeval orig_mouse_time = {0, 0};
2173 // time of previous mouse click
2174 struct timeval mouse_time; // time of current mouse click
2175 long timediff; // elapsed time in msec
2176# endif
2177
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002178 is_click = is_drag = is_release = release_is_ambiguous = FALSE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002179
2180# if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
2181 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
2182 if (key_name[0] == KS_MOUSE
2183# ifdef FEAT_MOUSE_GPM
2184 || key_name[0] == KS_GPM_MOUSE
2185# endif
2186 )
2187 {
2188 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002189 * For xterm we get "<t_mouse>scr", where s == encoded button state:
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002190 * 0x20 = left button down
2191 * 0x21 = middle button down
2192 * 0x22 = right button down
2193 * 0x23 = any button release
2194 * 0x60 = button 4 down (scroll wheel down)
2195 * 0x61 = button 5 down (scroll wheel up)
2196 * add 0x04 for SHIFT
2197 * add 0x08 for ALT
2198 * add 0x10 for CTRL
2199 * add 0x20 for mouse drag (0x40 is drag with left button)
2200 * add 0x40 for mouse move (0x80 is move, 0x81 too)
2201 * 0x43 (drag + release) is also move
2202 * c == column + ' ' + 1 == column + 33
2203 * r == row + ' ' + 1 == row + 33
2204 *
Bram Moolenaar13c04632020-07-12 13:47:42 +02002205 * The coordinates are passed on through global variables. Ugly, but
2206 * this avoids trouble with mouse clicks at an unexpected moment and
2207 * allows for mapping them.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002208 */
2209 for (;;)
2210 {
2211# ifdef FEAT_GUI
2212 if (gui.in_use)
2213 {
2214 // GUI uses more bits for columns > 223
2215 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 5);
2216 if (num_bytes == -1) // not enough coordinates
2217 return -1;
2218 mouse_code = bytes[0];
2219 mouse_col = 128 * (bytes[1] - ' ' - 1)
2220 + bytes[2] - ' ' - 1;
2221 mouse_row = 128 * (bytes[3] - ' ' - 1)
2222 + bytes[4] - ' ' - 1;
2223 }
2224 else
2225# endif
2226 {
2227 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 3);
2228 if (num_bytes == -1) // not enough coordinates
2229 return -1;
2230 mouse_code = bytes[0];
2231 mouse_col = bytes[1] - ' ' - 1;
2232 mouse_row = bytes[2] - ' ' - 1;
2233 }
2234 *slen += num_bytes;
2235
Bram Moolenaar13c04632020-07-12 13:47:42 +02002236 // If the following bytes is also a mouse code and it has the same
2237 // code, dump this one and get the next. This makes dragging a
2238 // whole lot faster.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002239# ifdef FEAT_GUI
2240 if (gui.in_use)
2241 j = 3;
2242 else
2243# endif
2244 j = get_termcode_len(idx);
2245 if (STRNCMP(tp, tp + *slen, (size_t)j) == 0
2246 && tp[*slen + j] == mouse_code
2247 && tp[*slen + j + 1] != NUL
2248 && tp[*slen + j + 2] != NUL
2249# ifdef FEAT_GUI
2250 && (!gui.in_use
2251 || (tp[*slen + j + 3] != NUL
2252 && tp[*slen + j + 4] != NUL))
2253# endif
2254 )
2255 *slen += j;
2256 else
2257 break;
2258 }
2259 }
2260
2261 if (key_name[0] == KS_URXVT_MOUSE
2262 || key_name[0] == KS_SGR_MOUSE
2263 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2264 {
2265 // URXVT 1015 mouse reporting mode:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002266 // Almost identical to xterm mouse mode, except the values are decimal
2267 // instead of bytes.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002268 //
2269 // \033[%d;%d;%dM
2270 // ^-- row
2271 // ^----- column
2272 // ^-------- code
2273 //
2274 // SGR 1006 mouse reporting mode:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002275 // Almost identical to xterm mouse mode, except the values are decimal
2276 // instead of bytes.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002277 //
2278 // \033[<%d;%d;%dM
2279 // ^-- row
2280 // ^----- column
2281 // ^-------- code
2282 //
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002283 // \033[<%d;%d;%dm : mouse release event
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002284 // ^-- row
2285 // ^----- column
2286 // ^-------- code
2287 p = modifiers_start;
2288 if (p == NULL)
2289 return -1;
2290
2291 mouse_code = getdigits(&p);
2292 if (*p++ != ';')
2293 return -1;
2294
2295 // when mouse reporting is SGR, add 32 to mouse code
2296 if (key_name[0] == KS_SGR_MOUSE
2297 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2298 mouse_code += 32;
2299
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002300 mouse_col = getdigits(&p) - 1;
2301 if (*p++ != ';')
2302 return -1;
2303
2304 mouse_row = getdigits(&p) - 1;
2305
Bram Moolenaar13c04632020-07-12 13:47:42 +02002306 // The modifiers were the mouse coordinates, not the modifier keys
2307 // (alt/shift/ctrl/meta) state.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002308 *modifiers = 0;
2309 }
2310
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002311 if (key_name[0] == KS_SGR_MOUSE
2312 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2313 {
2314 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar13c04632020-07-12 13:47:42 +02002315 {
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002316 is_release = TRUE;
Bram Moolenaar13c04632020-07-12 13:47:42 +02002317 // This is used below to set held_button.
2318 mouse_code |= MOUSE_RELEASE;
2319 }
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002320 }
2321 else
2322 {
2323 release_is_ambiguous = TRUE;
2324 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
2325 is_release = TRUE;
2326 }
2327
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002328 if (key_name[0] == KS_MOUSE
2329# ifdef FEAT_MOUSE_GPM
2330 || key_name[0] == KS_GPM_MOUSE
2331# endif
2332# ifdef FEAT_MOUSE_URXVT
2333 || key_name[0] == KS_URXVT_MOUSE
2334# endif
2335 || key_name[0] == KS_SGR_MOUSE
2336 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2337 {
2338# if !defined(MSWIN)
2339 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002340 * Handle old style mouse events.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002341 * Recognize the xterm mouse wheel, but not in the GUI, the
2342 * Linux console with GPM and the MS-DOS or Win32 console
2343 * (multi-clicks use >= 0x60).
2344 */
2345 if (mouse_code >= MOUSEWHEEL_LOW
2346# ifdef FEAT_GUI
2347 && !gui.in_use
2348# endif
2349# ifdef FEAT_MOUSE_GPM
2350 && key_name[0] != KS_GPM_MOUSE
2351# endif
2352 )
2353 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002354# if defined(UNIX)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002355 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
2356 // mouse-move event, using MOUSE_DRAG works
2357 mouse_code = MOUSE_DRAG;
2358 else
2359# endif
2360 // Keep the mouse_code before it's changed, so that we
2361 // remember that it was a mouse wheel click.
2362 wheel_code = mouse_code;
2363 }
2364# ifdef FEAT_MOUSE_XTERM
2365 else if (held_button == MOUSE_RELEASE
2366# ifdef FEAT_GUI
2367 && !gui.in_use
2368# endif
2369 && (mouse_code == 0x23 || mouse_code == 0x24
2370 || mouse_code == 0x40 || mouse_code == 0x41))
2371 {
2372 // Apparently 0x23 and 0x24 are used by rxvt scroll wheel.
2373 // And 0x40 and 0x41 are used by some xterm emulator.
2374 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23)
2375 + MOUSEWHEEL_LOW;
2376 }
2377# endif
2378
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02002379# if defined(UNIX)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002380 else if (use_xterm_mouse() > 1)
2381 {
2382 if (mouse_code & MOUSE_DRAG_XTERM)
2383 mouse_code |= MOUSE_DRAG;
2384 }
2385# endif
2386# ifdef FEAT_XCLIPBOARD
2387 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
2388 {
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002389 if (is_release)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002390 stop_xterm_trace();
2391 else
2392 start_xterm_trace(mouse_code);
2393 }
2394# endif
2395# endif
2396 }
2397# endif // !UNIX || FEAT_MOUSE_XTERM
2398# ifdef FEAT_MOUSE_NET
2399 if (key_name[0] == KS_NETTERM_MOUSE)
2400 {
2401 int mc, mr;
2402
2403 // expect a rather limited sequence like: balancing {
2404 // \033}6,45\r
2405 // '6' is the row, 45 is the column
2406 p = tp + *slen;
2407 mr = getdigits(&p);
2408 if (*p++ != ',')
2409 return -1;
2410 mc = getdigits(&p);
2411 if (*p++ != '\r')
2412 return -1;
2413
2414 mouse_col = mc - 1;
2415 mouse_row = mr - 1;
2416 mouse_code = MOUSE_LEFT;
2417 *slen += (int)(p - (tp + *slen));
2418 }
2419# endif // FEAT_MOUSE_NET
2420# ifdef FEAT_MOUSE_JSB
2421 if (key_name[0] == KS_JSBTERM_MOUSE)
2422 {
2423 int mult, val, iter, button, status;
2424
2425 /*
2426 * JSBTERM Input Model
2427 * \033[0~zw uniq escape sequence
2428 * (L-x) Left button pressed - not pressed x not reporting
2429 * (M-x) Middle button pressed - not pressed x not reporting
2430 * (R-x) Right button pressed - not pressed x not reporting
Bram Moolenaar13c04632020-07-12 13:47:42 +02002431 * (SDmdu) Single , Double click, m: mouse move, d: button down,
2432 * u: button up
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002433 * ### X cursor position padded to 3 digits
2434 * ### Y cursor position padded to 3 digits
2435 * (s-x) SHIFT key pressed - not pressed x not reporting
2436 * (c-x) CTRL key pressed - not pressed x not reporting
2437 * \033\\ terminating sequence
2438 */
2439 p = tp + *slen;
2440 button = mouse_code = 0;
2441 switch (*p++)
2442 {
2443 case 'L': button = 1; break;
2444 case '-': break;
2445 case 'x': break; // ignore sequence
2446 default: return -1; // Unknown Result
2447 }
2448 switch (*p++)
2449 {
2450 case 'M': button |= 2; break;
2451 case '-': break;
2452 case 'x': break; // ignore sequence
2453 default: return -1; // Unknown Result
2454 }
2455 switch (*p++)
2456 {
2457 case 'R': button |= 4; break;
2458 case '-': break;
2459 case 'x': break; // ignore sequence
2460 default: return -1; // Unknown Result
2461 }
2462 status = *p++;
2463 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
2464 mult /= 10, p++)
2465 if (*p >= '0' && *p <= '9')
2466 val += (*p - '0') * mult;
2467 else
2468 return -1;
2469 mouse_col = val;
2470 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
2471 mult /= 10, p++)
2472 if (*p >= '0' && *p <= '9')
2473 val += (*p - '0') * mult;
2474 else
2475 return -1;
2476 mouse_row = val;
2477 switch (*p++)
2478 {
2479 case 's': button |= 8; break; // SHIFT key Pressed
2480 case '-': break; // Not Pressed
2481 case 'x': break; // Not Reporting
2482 default: return -1; // Unknown Result
2483 }
2484 switch (*p++)
2485 {
2486 case 'c': button |= 16; break; // CTRL key Pressed
2487 case '-': break; // Not Pressed
2488 case 'x': break; // Not Reporting
2489 default: return -1; // Unknown Result
2490 }
2491 if (*p++ != '\033')
2492 return -1;
2493 if (*p++ != '\\')
2494 return -1;
2495 switch (status)
2496 {
2497 case 'D': // Double Click
2498 case 'S': // Single Click
2499 if (button & 1) mouse_code |= MOUSE_LEFT;
2500 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2501 if (button & 4) mouse_code |= MOUSE_RIGHT;
2502 if (button & 8) mouse_code |= MOUSE_SHIFT;
2503 if (button & 16) mouse_code |= MOUSE_CTRL;
2504 break;
2505 case 'm': // Mouse move
2506 if (button & 1) mouse_code |= MOUSE_LEFT;
2507 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2508 if (button & 4) mouse_code |= MOUSE_RIGHT;
2509 if (button & 8) mouse_code |= MOUSE_SHIFT;
2510 if (button & 16) mouse_code |= MOUSE_CTRL;
2511 if ((button & 7) != 0)
2512 {
2513 held_button = mouse_code;
2514 mouse_code |= MOUSE_DRAG;
2515 }
2516 is_drag = TRUE;
2517 showmode();
2518 break;
2519 case 'd': // Button Down
2520 if (button & 1) mouse_code |= MOUSE_LEFT;
2521 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2522 if (button & 4) mouse_code |= MOUSE_RIGHT;
2523 if (button & 8) mouse_code |= MOUSE_SHIFT;
2524 if (button & 16) mouse_code |= MOUSE_CTRL;
2525 break;
2526 case 'u': // Button Up
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002527 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002528 if (button & 1)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002529 mouse_code |= MOUSE_LEFT;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002530 if (button & 2)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002531 mouse_code |= MOUSE_MIDDLE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002532 if (button & 4)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002533 mouse_code |= MOUSE_RIGHT;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002534 if (button & 8)
2535 mouse_code |= MOUSE_SHIFT;
2536 if (button & 16)
2537 mouse_code |= MOUSE_CTRL;
2538 break;
2539 default: return -1; // Unknown Result
2540 }
2541
2542 *slen += (p - (tp + *slen));
2543 }
2544# endif // FEAT_MOUSE_JSB
2545# ifdef FEAT_MOUSE_DEC
2546 if (key_name[0] == KS_DEC_MOUSE)
2547 {
2548 /*
2549 * The DEC Locator Input Model
2550 * Netterm delivers the code sequence:
2551 * \033[2;4;24;80&w (left button down)
2552 * \033[3;0;24;80&w (left button up)
2553 * \033[6;1;24;80&w (right button down)
2554 * \033[7;0;24;80&w (right button up)
2555 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
2556 * Pe is the event code
2557 * Pb is the button code
2558 * Pr is the row coordinate
2559 * Pc is the column coordinate
2560 * Pp is the third coordinate (page number)
2561 * Pe, the event code indicates what event caused this report
2562 * The following event codes are defined:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002563 * 0 - request, the terminal received an explicit request for a
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002564 * locator report, but the locator is unavailable
Bram Moolenaar13c04632020-07-12 13:47:42 +02002565 * 1 - request, the terminal received an explicit request for a
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002566 * locator report
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002567 * 2 - left button down
2568 * 3 - left button up
2569 * 4 - middle button down
2570 * 5 - middle button up
2571 * 6 - right button down
2572 * 7 - right button up
2573 * 8 - fourth button down
2574 * 9 - fourth button up
2575 * 10 - locator outside filter rectangle
Bram Moolenaar13c04632020-07-12 13:47:42 +02002576 * Pb, the button code, ASCII decimal 0-15 indicating which buttons are
2577 * down if any. The state of the four buttons on the locator
2578 * correspond to the low four bits of the decimal value, "1" means
2579 * button depressed
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002580 * 0 - no buttons down,
2581 * 1 - right,
2582 * 2 - middle,
2583 * 4 - left,
2584 * 8 - fourth
2585 * Pr is the row coordinate of the locator position in the page,
Bram Moolenaar13c04632020-07-12 13:47:42 +02002586 * encoded as an ASCII decimal value. If Pr is omitted, the locator
2587 * position is undefined (outside the terminal window for example).
2588 * Pc is the column coordinate of the locator position in the page,
2589 * encoded as an ASCII decimal value. If Pc is omitted, the locator
2590 * position is undefined (outside the terminal window for example).
2591 * Pp is the page coordinate of the locator position encoded as an
2592 * ASCII decimal value. The page coordinate may be omitted if the
2593 * locator is on page one (the default). We ignore it anyway.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002594 */
2595 int Pe, Pb, Pr, Pc;
2596
2597 p = tp + *slen;
2598
2599 // get event status
2600 Pe = getdigits(&p);
2601 if (*p++ != ';')
2602 return -1;
2603
2604 // get button status
2605 Pb = getdigits(&p);
2606 if (*p++ != ';')
2607 return -1;
2608
2609 // get row status
2610 Pr = getdigits(&p);
2611 if (*p++ != ';')
2612 return -1;
2613
2614 // get column status
2615 Pc = getdigits(&p);
2616
2617 // the page parameter is optional
2618 if (*p == ';')
2619 {
2620 p++;
2621 (void)getdigits(&p);
2622 }
2623 if (*p++ != '&')
2624 return -1;
2625 if (*p++ != 'w')
2626 return -1;
2627
2628 mouse_code = 0;
2629 switch (Pe)
2630 {
2631 case 0: return -1; // position request while unavailable
2632 case 1: // a response to a locator position request includes
2633 // the status of all buttons
2634 Pb &= 7; // mask off and ignore fourth button
2635 if (Pb & 4)
2636 mouse_code = MOUSE_LEFT;
2637 if (Pb & 2)
2638 mouse_code = MOUSE_MIDDLE;
2639 if (Pb & 1)
2640 mouse_code = MOUSE_RIGHT;
2641 if (Pb)
2642 {
2643 held_button = mouse_code;
2644 mouse_code |= MOUSE_DRAG;
2645 WantQueryMouse = TRUE;
2646 }
2647 is_drag = TRUE;
2648 showmode();
2649 break;
2650 case 2: mouse_code = MOUSE_LEFT;
2651 WantQueryMouse = TRUE;
2652 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002653 case 3: mouse_code = MOUSE_LEFT;
2654 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002655 break;
2656 case 4: mouse_code = MOUSE_MIDDLE;
2657 WantQueryMouse = TRUE;
2658 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002659 case 5: mouse_code = MOUSE_MIDDLE;
2660 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002661 break;
2662 case 6: mouse_code = MOUSE_RIGHT;
2663 WantQueryMouse = TRUE;
2664 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002665 case 7: mouse_code = MOUSE_RIGHT;
2666 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002667 break;
2668 case 8: return -1; // fourth button down
2669 case 9: return -1; // fourth button up
2670 case 10: return -1; // mouse outside of filter rectangle
2671 default: return -1; // should never occur
2672 }
2673
2674 mouse_col = Pc - 1;
2675 mouse_row = Pr - 1;
2676
2677 *slen += (int)(p - (tp + *slen));
2678 }
2679# endif // FEAT_MOUSE_DEC
2680# ifdef FEAT_MOUSE_PTERM
2681 if (key_name[0] == KS_PTERM_MOUSE)
2682 {
2683 int button, num_clicks, action;
2684
2685 p = tp + *slen;
2686
2687 action = getdigits(&p);
2688 if (*p++ != ';')
2689 return -1;
2690
2691 mouse_row = getdigits(&p);
2692 if (*p++ != ';')
2693 return -1;
2694 mouse_col = getdigits(&p);
2695 if (*p++ != ';')
2696 return -1;
2697
2698 button = getdigits(&p);
2699 mouse_code = 0;
2700
2701 switch (button)
2702 {
2703 case 4: mouse_code = MOUSE_LEFT; break;
2704 case 1: mouse_code = MOUSE_RIGHT; break;
2705 case 2: mouse_code = MOUSE_MIDDLE; break;
2706 default: return -1;
2707 }
2708
2709 switch (action)
2710 {
2711 case 31: // Initial press
2712 if (*p++ != ';')
2713 return -1;
2714
2715 num_clicks = getdigits(&p); // Not used
2716 break;
2717
2718 case 32: // Release
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002719 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002720 break;
2721
2722 case 33: // Drag
2723 held_button = mouse_code;
2724 mouse_code |= MOUSE_DRAG;
2725 break;
2726
2727 default:
2728 return -1;
2729 }
2730
2731 if (*p++ != 't')
2732 return -1;
2733
2734 *slen += (p - (tp + *slen));
2735 }
2736# endif // FEAT_MOUSE_PTERM
2737
2738 // Interpret the mouse code
2739 current_button = (mouse_code & MOUSE_CLICK_MASK);
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002740 if (is_release)
2741 current_button |= MOUSE_RELEASE;
2742
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002743 if (current_button == MOUSE_RELEASE
2744# ifdef FEAT_MOUSE_XTERM
2745 && wheel_code == 0
2746# endif
2747 )
2748 {
2749 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002750 * If we get a mouse drag or release event when there is no mouse
2751 * button held down (held_button == MOUSE_RELEASE), produce a K_IGNORE
2752 * below.
2753 * (can happen when you hold down two buttons and then let them go, or
2754 * click in the menu bar, but not on a menu, and drag into the text).
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002755 */
2756 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
2757 is_drag = TRUE;
2758 current_button = held_button;
2759 }
2760 else if (wheel_code == 0)
2761 {
2762# ifdef CHECK_DOUBLE_CLICK
2763# ifdef FEAT_MOUSE_GPM
2764 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002765 * Only for Unix, when GUI not active, we handle multi-clicks here, but
2766 * not for GPM mouse events.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002767 */
2768# ifdef FEAT_GUI
2769 if (key_name[0] != KS_GPM_MOUSE && !gui.in_use)
2770# else
2771 if (key_name[0] != KS_GPM_MOUSE)
2772# endif
2773# else
2774# ifdef FEAT_GUI
2775 if (!gui.in_use)
2776# endif
2777# endif
2778 {
2779 /*
2780 * Compute the time elapsed since the previous mouse click.
2781 */
2782 gettimeofday(&mouse_time, NULL);
2783 if (orig_mouse_time.tv_sec == 0)
2784 {
2785 /*
2786 * Avoid computing the difference between mouse_time
2787 * and orig_mouse_time for the first click, as the
2788 * difference would be huge and would cause
2789 * multiplication overflow.
2790 */
2791 timediff = p_mouset;
2792 }
2793 else
Bram Moolenaar85c35022019-11-22 22:21:59 +01002794 timediff = time_diff_ms(&orig_mouse_time, &mouse_time);
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002795 orig_mouse_time = mouse_time;
2796 if (mouse_code == orig_mouse_code
2797 && timediff < p_mouset
2798 && orig_num_clicks != 4
2799 && orig_mouse_col == mouse_col
2800 && orig_mouse_row == mouse_row
2801 && (is_mouse_topline(curwin)
2802 // Double click in tab pages line also works
2803 // when window contents changes.
2804 || (mouse_row == 0 && firstwin->w_winrow > 0))
2805 )
2806 ++orig_num_clicks;
2807 else
2808 orig_num_clicks = 1;
2809 orig_mouse_col = mouse_col;
2810 orig_mouse_row = mouse_row;
2811 set_mouse_topline(curwin);
2812 }
2813# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
2814 else
2815 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
2816# endif
2817# else
2818 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
2819# endif
2820 is_click = TRUE;
2821 orig_mouse_code = mouse_code;
2822 }
2823 if (!is_drag)
2824 held_button = mouse_code & MOUSE_CLICK_MASK;
2825
2826 /*
2827 * Translate the actual mouse event into a pseudo mouse event.
2828 * First work out what modifiers are to be used.
2829 */
2830 if (orig_mouse_code & MOUSE_SHIFT)
2831 *modifiers |= MOD_MASK_SHIFT;
2832 if (orig_mouse_code & MOUSE_CTRL)
2833 *modifiers |= MOD_MASK_CTRL;
2834 if (orig_mouse_code & MOUSE_ALT)
2835 *modifiers |= MOD_MASK_ALT;
2836 if (orig_num_clicks == 2)
2837 *modifiers |= MOD_MASK_2CLICK;
2838 else if (orig_num_clicks == 3)
2839 *modifiers |= MOD_MASK_3CLICK;
2840 else if (orig_num_clicks == 4)
2841 *modifiers |= MOD_MASK_4CLICK;
2842
Bram Moolenaar13c04632020-07-12 13:47:42 +02002843 // Work out our pseudo mouse event. Note that MOUSE_RELEASE gets added,
2844 // then it's not mouse up/down.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002845 key_name[0] = KS_EXTRA;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002846 if (wheel_code != 0 && (!is_release || release_is_ambiguous))
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002847 {
2848 if (wheel_code & MOUSE_CTRL)
2849 *modifiers |= MOD_MASK_CTRL;
2850 if (wheel_code & MOUSE_ALT)
2851 *modifiers |= MOD_MASK_ALT;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002852
2853 if (wheel_code & 1 && wheel_code & 2)
2854 key_name[1] = (int)KE_MOUSELEFT;
2855 else if (wheel_code & 2)
2856 key_name[1] = (int)KE_MOUSERIGHT;
2857 else if (wheel_code & 1)
2858 key_name[1] = (int)KE_MOUSEUP;
2859 else
2860 key_name[1] = (int)KE_MOUSEDOWN;
2861
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002862 held_button = MOUSE_RELEASE;
2863 }
2864 else
Bram Moolenaar13c04632020-07-12 13:47:42 +02002865 key_name[1] = get_pseudo_mouse_code(current_button, is_click, is_drag);
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002866
Bram Moolenaar13c04632020-07-12 13:47:42 +02002867
2868 // Make sure the mouse position is valid. Some terminals may return weird
2869 // values.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002870 if (mouse_col >= Columns)
2871 mouse_col = Columns - 1;
2872 if (mouse_row >= Rows)
2873 mouse_row = Rows - 1;
2874
2875 return 0;
2876}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002877
2878// Functions also used for popup windows.
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002879
2880/*
2881 * Compute the buffer line position from the screen position "rowp" / "colp" in
2882 * window "win".
Bram Moolenaar452143c2020-07-15 17:38:21 +02002883 * "plines_cache" can be NULL (no cache) or an array with "Rows" entries that
2884 * caches the plines_win() result from a previous call. Entry is zero if not
2885 * computed yet. There must be no text or setting changes since the entry is
2886 * put in the cache.
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002887 * Returns TRUE if the position is below the last line.
2888 */
2889 int
2890mouse_comp_pos(
2891 win_T *win,
2892 int *rowp,
2893 int *colp,
2894 linenr_T *lnump,
2895 int *plines_cache)
2896{
2897 int col = *colp;
2898 int row = *rowp;
2899 linenr_T lnum;
2900 int retval = FALSE;
2901 int off;
2902 int count;
2903
2904#ifdef FEAT_RIGHTLEFT
2905 if (win->w_p_rl)
2906 col = win->w_width - 1 - col;
2907#endif
2908
2909 lnum = win->w_topline;
2910
2911 while (row > 0)
2912 {
2913 int cache_idx = lnum - win->w_topline;
2914
Bram Moolenaar452143c2020-07-15 17:38:21 +02002915 // Only "Rows" lines are cached, with folding we'll run out of entries
2916 // and use the slow way.
2917 if (plines_cache != NULL && cache_idx < Rows
2918 && plines_cache[cache_idx] > 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002919 count = plines_cache[cache_idx];
2920 else
2921 {
2922#ifdef FEAT_DIFF
2923 // Don't include filler lines in "count"
2924 if (win->w_p_diff
2925# ifdef FEAT_FOLDING
2926 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
2927# endif
2928 )
2929 {
2930 if (lnum == win->w_topline)
2931 row -= win->w_topfill;
2932 else
2933 row -= diff_check_fill(win, lnum);
2934 count = plines_win_nofill(win, lnum, TRUE);
2935 }
2936 else
2937#endif
2938 count = plines_win(win, lnum, TRUE);
Bram Moolenaar452143c2020-07-15 17:38:21 +02002939 if (plines_cache != NULL && cache_idx < Rows)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002940 plines_cache[cache_idx] = count;
2941 }
2942 if (count > row)
2943 break; // Position is in this buffer line.
2944#ifdef FEAT_FOLDING
2945 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
2946#endif
2947 if (lnum == win->w_buffer->b_ml.ml_line_count)
2948 {
2949 retval = TRUE;
2950 break; // past end of file
2951 }
2952 row -= count;
2953 ++lnum;
2954 }
2955
2956 if (!retval)
2957 {
2958 // Compute the column without wrapping.
2959 off = win_col_off(win) - win_col_off2(win);
2960 if (col < off)
2961 col = off;
2962 col += row * (win->w_width - off);
2963 // add skip column (for long wrapping line)
2964 col += win->w_skipcol;
2965 }
2966
2967 if (!win->w_p_wrap)
2968 col += win->w_leftcol;
2969
2970 // skip line number and fold column in front of the line
2971 col -= win_col_off(win);
Bram Moolenaardbfa7952020-11-02 20:04:22 +01002972 if (col <= 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002973 {
2974#ifdef FEAT_NETBEANS_INTG
Bram Moolenaardbfa7952020-11-02 20:04:22 +01002975 // if mouse is clicked on the gutter, then inform the netbeans server
2976 if (*colp < win_col_off(win))
2977 netbeans_gutter_click(lnum);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002978#endif
2979 col = 0;
2980 }
2981
2982 *colp = col;
2983 *rowp = row;
2984 *lnump = lnum;
2985 return retval;
2986}
2987
2988/*
2989 * Find the window at screen position "*rowp" and "*colp". The positions are
2990 * updated to become relative to the top-left of the window.
2991 * When "popup" is FAIL_POPUP and the position is in a popup window then NULL
2992 * is returned. When "popup" is IGNORE_POPUP then do not even check popup
2993 * windows.
2994 * Returns NULL when something is wrong.
2995 */
2996 win_T *
2997mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
2998{
2999 frame_T *fp;
3000 win_T *wp;
3001
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003002#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003003 win_T *pwp = NULL;
3004
3005 if (popup != IGNORE_POPUP)
3006 {
Bram Moolenaarafe45b62019-11-13 22:35:19 +01003007 popup_reset_handled(POPUP_HANDLED_1);
3008 while ((wp = find_next_popup(TRUE, POPUP_HANDLED_1)) != NULL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003009 {
3010 if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp)
3011 && *colp >= wp->w_wincol
3012 && *colp < wp->w_wincol + popup_width(wp))
3013 pwp = wp;
3014 }
3015 if (pwp != NULL)
3016 {
3017 if (popup == FAIL_POPUP)
3018 return NULL;
3019 *rowp -= pwp->w_winrow;
3020 *colp -= pwp->w_wincol;
3021 return pwp;
3022 }
3023 }
3024#endif
3025
3026 fp = topframe;
3027 *rowp -= firstwin->w_winrow;
3028 for (;;)
3029 {
3030 if (fp->fr_layout == FR_LEAF)
3031 break;
3032 if (fp->fr_layout == FR_ROW)
3033 {
3034 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3035 {
3036 if (*colp < fp->fr_width)
3037 break;
3038 *colp -= fp->fr_width;
3039 }
3040 }
3041 else // fr_layout == FR_COL
3042 {
3043 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3044 {
3045 if (*rowp < fp->fr_height)
3046 break;
3047 *rowp -= fp->fr_height;
3048 }
3049 }
3050 }
3051 // When using a timer that closes a window the window might not actually
3052 // exist.
3053 FOR_ALL_WINDOWS(wp)
3054 if (wp == fp->fr_win)
3055 {
3056#ifdef FEAT_MENU
3057 *rowp -= wp->w_winbar_height;
3058#endif
3059 return wp;
3060 }
3061 return NULL;
3062}
3063
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003064#if defined(NEED_VCOL2COL) || defined(FEAT_BEVAL) || defined(FEAT_PROP_POPUP) \
Bram Moolenaar424da7a2022-03-13 19:08:48 +00003065 || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003066/*
3067 * Convert a virtual (screen) column to a character column.
3068 * The first column is one.
3069 */
3070 int
3071vcol2col(win_T *wp, linenr_T lnum, int vcol)
3072{
3073 // try to advance to the specified column
3074 int count = 0;
3075 char_u *ptr;
3076 char_u *line;
3077
3078 line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE);
3079 while (count < vcol && *ptr != NUL)
3080 {
3081 count += win_lbr_chartabsize(wp, line, ptr, count, NULL);
3082 MB_PTR_ADV(ptr);
3083 }
3084 return (int)(ptr - line);
3085}
3086#endif
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003087
3088#if defined(FEAT_EVAL) || defined(PROTO)
3089 void
3090f_getmousepos(typval_T *argvars UNUSED, typval_T *rettv)
3091{
3092 dict_T *d;
3093 win_T *wp;
3094 int row = mouse_row;
3095 int col = mouse_col;
3096 varnumber_T winid = 0;
3097 varnumber_T winrow = 0;
3098 varnumber_T wincol = 0;
Bram Moolenaar533870a2022-03-13 15:52:44 +00003099 linenr_T lnum = 0;
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003100 varnumber_T column = 0;
3101
Bram Moolenaar93a10962022-06-16 11:42:09 +01003102 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003103 return;
3104 d = rettv->vval.v_dict;
3105
3106 dict_add_number(d, "screenrow", (varnumber_T)mouse_row + 1);
3107 dict_add_number(d, "screencol", (varnumber_T)mouse_col + 1);
3108
3109 wp = mouse_find_win(&row, &col, FIND_POPUP);
3110 if (wp != NULL)
3111 {
3112 int top_off = 0;
3113 int left_off = 0;
3114 int height = wp->w_height + wp->w_status_height;
3115
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003116#ifdef FEAT_PROP_POPUP
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003117 if (WIN_IS_POPUP(wp))
3118 {
3119 top_off = popup_top_extra(wp);
3120 left_off = popup_left_extra(wp);
3121 height = popup_height(wp);
3122 }
3123#endif
3124 if (row < height)
3125 {
3126 winid = wp->w_id;
3127 winrow = row + 1;
3128 wincol = col + 1;
3129 row -= top_off;
3130 col -= left_off;
3131 if (row >= 0 && row < wp->w_height && col >= 0 && col < wp->w_width)
3132 {
Sean Dewar10792fe2022-03-15 09:46:54 +00003133 (void)mouse_comp_pos(wp, &row, &col, &lnum, NULL);
3134 col = vcol2col(wp, lnum, col);
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003135 column = col + 1;
3136 }
3137 }
3138 }
3139 dict_add_number(d, "winid", winid);
3140 dict_add_number(d, "winrow", winrow);
3141 dict_add_number(d, "wincol", wincol);
Bram Moolenaar533870a2022-03-13 15:52:44 +00003142 dict_add_number(d, "line", (varnumber_T)lnum);
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003143 dict_add_number(d, "column", column);
3144}
3145#endif