Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1 | /* 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 | |
LemonBoy | c27747e | 2022-05-07 12:25:40 +0100 | [diff] [blame] | 16 | /* |
| 17 | * Horiziontal and vertical steps used when scrolling. |
| 18 | * When negative scroll by a whole page. |
| 19 | */ |
| 20 | static long mouse_hor_step = 6; |
| 21 | static long mouse_vert_step = 3; |
| 22 | |
| 23 | void |
| 24 | mouse_set_vert_scroll_step(long step) |
| 25 | { |
| 26 | mouse_vert_step = step; |
| 27 | } |
| 28 | |
| 29 | void |
| 30 | mouse_set_hor_scroll_step(long step) |
| 31 | { |
| 32 | mouse_hor_step = step; |
| 33 | } |
| 34 | |
Bram Moolenaar | 85c3502 | 2019-11-22 22:21:59 +0100 | [diff] [blame] | 35 | #ifdef CHECK_DOUBLE_CLICK |
| 36 | /* |
| 37 | * Return the duration from t1 to t2 in milliseconds. |
| 38 | */ |
| 39 | static long |
| 40 | time_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 Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 51 | /* |
| 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 |
| 59 | get_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 |
| 86 | find_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 |
| 110 | find_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 Moolenaar | 910c378 | 2019-09-22 14:11:50 +0200 | [diff] [blame] | 136 | #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \ |
Bram Moolenaar | 0b962e5 | 2022-04-03 18:02:37 +0100 | [diff] [blame] | 137 | || defined(FEAT_GUI_MSWIN) \ |
Bram Moolenaar | 097148e | 2020-08-11 21:58:20 +0200 | [diff] [blame] | 138 | || defined(FEAT_GUI_PHOTON) \ |
Bram Moolenaar | 910c378 | 2019-09-22 14:11:50 +0200 | [diff] [blame] | 139 | || defined(FEAT_TERM_POPUP_MENU) |
| 140 | # define USE_POPUP_SETPOS |
| 141 | # define NEED_VCOL2COL |
| 142 | |
| 143 | /* |
Yee Cheng Chin | 17822c5 | 2022-10-13 13:17:40 +0100 | [diff] [blame] | 144 | * Translate window coordinates to buffer position without any side effects. |
| 145 | * Returns IN_BUFFER and sets "mpos->col" to the column when in buffer text. |
| 146 | * The column is one for the first column. |
Bram Moolenaar | 910c378 | 2019-09-22 14:11:50 +0200 | [diff] [blame] | 147 | */ |
| 148 | static int |
| 149 | get_fpos_of_mouse(pos_T *mpos) |
| 150 | { |
| 151 | win_T *wp; |
| 152 | int row = mouse_row; |
| 153 | int col = mouse_col; |
| 154 | |
| 155 | if (row < 0 || col < 0) // check if it makes sense |
| 156 | return IN_UNKNOWN; |
| 157 | |
| 158 | // find the window where the row is in |
| 159 | wp = mouse_find_win(&row, &col, FAIL_POPUP); |
| 160 | if (wp == NULL) |
| 161 | return IN_UNKNOWN; |
| 162 | // winpos and height may change in win_enter()! |
| 163 | if (row >= wp->w_height) // In (or below) status line |
| 164 | return IN_STATUS_LINE; |
| 165 | if (col >= wp->w_width) // In vertical separator line |
| 166 | return IN_SEP_LINE; |
| 167 | |
| 168 | if (wp != curwin) |
| 169 | return IN_UNKNOWN; |
| 170 | |
| 171 | // compute the position in the buffer line from the posn on the screen |
| 172 | if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL)) |
| 173 | return IN_STATUS_LINE; // past bottom |
| 174 | |
| 175 | mpos->col = vcol2col(wp, mpos->lnum, col); |
| 176 | |
Bram Moolenaar | 910c378 | 2019-09-22 14:11:50 +0200 | [diff] [blame] | 177 | mpos->coladd = 0; |
| 178 | return IN_BUFFER; |
| 179 | } |
| 180 | #endif |
| 181 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 182 | /* |
| 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 |
| 219 | do_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 |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 227 | static int got_click = FALSE; // got a click some time back |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 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 Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 272 | else if (State == MODE_NORMAL && !mouse_has(MOUSE_NORMAL)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 273 | 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. |
zeertzjq | 0f68e6c | 2022-04-05 13:17:01 +0100 | [diff] [blame] | 283 | // 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 Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 287 | { |
| 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 Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 316 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 317 | 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) |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 339 | got_click = TRUE; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 340 | else |
| 341 | { |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 342 | if (!got_click) // didn't get click, ignore |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 343 | return FALSE; |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 344 | if (!is_drag) // release, reset got_click |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 345 | { |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 346 | got_click = FALSE; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 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 Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 358 | if (State & MODE_INSERT) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 359 | stuffcharReadbuff(Ctrl_O); |
| 360 | if (count > 1) |
| 361 | stuffnumReadbuff(count); |
| 362 | stuffcharReadbuff(Ctrl_T); |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 363 | got_click = FALSE; // ignore drag&release now |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 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 Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 402 | if (State == MODE_NORMAL) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 403 | { |
| 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 Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 433 | else if ((State & MODE_INSERT) == 0) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 434 | 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 Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 441 | if ((State & MODE_INSERT) || !mouse_has(MOUSE_NORMAL)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 442 | { |
| 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 Moolenaar | c3516f7 | 2020-09-08 22:45:35 +0200 | [diff] [blame] | 455 | do_put(regname, NULL, BACKWARD, 1L, |
| 456 | fixindent | PUT_CURSEND); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 457 | |
| 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 | |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 474 | if (TabPageIdxs != NULL) // only when initialized |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 475 | { |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 476 | // Check for clicking in the tab page line. |
| 477 | if (mouse_row == 0 && firstwin->w_winrow > 0) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 478 | { |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 479 | if (is_drag) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 480 | { |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 481 | if (in_tab_line) |
| 482 | { |
| 483 | c1 = TabPageIdxs[mouse_col]; |
| 484 | tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab) |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 485 | ? c1 - 1 : c1); |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 486 | } |
| 487 | return FALSE; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 488 | } |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 489 | |
| 490 | // click in a tab selects that tab page |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 491 | if (is_click && cmdwin_type == 0 && mouse_col < Columns) |
Bram Moolenaar | 8052575 | 2022-08-24 19:27:45 +0100 | [diff] [blame] | 492 | { |
| 493 | in_tab_line = TRUE; |
| 494 | c1 = TabPageIdxs[mouse_col]; |
| 495 | if (c1 >= 0) |
| 496 | { |
| 497 | if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK) |
| 498 | { |
| 499 | // double click opens new page |
| 500 | end_visual_mode_keep_button(); |
| 501 | tabpage_new(); |
| 502 | tabpage_move(c1 == 0 ? 9999 : c1 - 1); |
| 503 | } |
| 504 | else |
| 505 | { |
| 506 | // Go to specified tab page, or next one if not clicking |
| 507 | // on a label. |
| 508 | goto_tabpage(c1); |
| 509 | |
| 510 | // It's like clicking on the status line of a window. |
| 511 | if (curwin != old_curwin) |
| 512 | end_visual_mode_keep_button(); |
| 513 | } |
| 514 | } |
| 515 | else |
| 516 | { |
| 517 | tabpage_T *tp; |
| 518 | |
| 519 | // Close the current or specified tab page. |
| 520 | if (c1 == -999) |
| 521 | tp = curtab; |
| 522 | else |
| 523 | tp = find_tabpage(-c1); |
| 524 | if (tp == curtab) |
| 525 | { |
| 526 | if (first_tabpage->tp_next != NULL) |
| 527 | tabpage_close(FALSE); |
| 528 | } |
| 529 | else if (tp != NULL) |
| 530 | tabpage_close_other(tp, FALSE); |
| 531 | } |
| 532 | } |
| 533 | return TRUE; |
| 534 | } |
| 535 | else if (is_drag && in_tab_line) |
| 536 | { |
| 537 | c1 = TabPageIdxs[mouse_col]; |
| 538 | tabpage_move(c1 <= 0 ? 9999 : c1 - 1); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 539 | return FALSE; |
| 540 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | // When 'mousemodel' is "popup" or "popup_setpos", translate mouse events: |
| 544 | // right button up -> pop-up menu |
| 545 | // shift-left button -> right button |
| 546 | // alt-left button -> alt-right button |
| 547 | if (mouse_model_popup()) |
| 548 | { |
| 549 | if (which_button == MOUSE_RIGHT |
| 550 | && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))) |
| 551 | { |
Bram Moolenaar | 910c378 | 2019-09-22 14:11:50 +0200 | [diff] [blame] | 552 | #ifdef USE_POPUP_SETPOS |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 553 | # ifdef FEAT_GUI |
| 554 | if (gui.in_use) |
| 555 | { |
| 556 | # if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \ |
Bram Moolenaar | 097148e | 2020-08-11 21:58:20 +0200 | [diff] [blame] | 557 | || defined(FEAT_GUI_PHOTON) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 558 | if (!is_click) |
| 559 | // Ignore right button release events, only shows the popup |
| 560 | // menu on the button down event. |
| 561 | return FALSE; |
| 562 | # endif |
Bram Moolenaar | 0b962e5 | 2022-04-03 18:02:37 +0100 | [diff] [blame] | 563 | # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 564 | if (is_click || is_drag) |
| 565 | // Ignore right button down and drag mouse events. Windows |
| 566 | // only shows the popup menu on the button up event. |
| 567 | return FALSE; |
| 568 | # endif |
| 569 | } |
| 570 | # endif |
| 571 | # if defined(FEAT_GUI) && defined(FEAT_TERM_POPUP_MENU) |
| 572 | else |
| 573 | # endif |
| 574 | # if defined(FEAT_TERM_POPUP_MENU) |
| 575 | if (!is_click) |
| 576 | // Ignore right button release events, only shows the popup |
| 577 | // menu on the button down event. |
| 578 | return FALSE; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 579 | # endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 580 | |
| 581 | jump_flags = 0; |
| 582 | if (STRCMP(p_mousem, "popup_setpos") == 0) |
| 583 | { |
| 584 | // First set the cursor position before showing the popup |
| 585 | // menu. |
| 586 | if (VIsual_active) |
| 587 | { |
| 588 | pos_T m_pos; |
| 589 | |
| 590 | // set MOUSE_MAY_STOP_VIS if we are outside the |
| 591 | // selection or the current window (might have false |
| 592 | // negative here) |
| 593 | if (mouse_row < curwin->w_winrow |
| 594 | || mouse_row |
| 595 | > (curwin->w_winrow + curwin->w_height)) |
| 596 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 597 | else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER) |
| 598 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 599 | else |
| 600 | { |
Yee Cheng Chin | 17822c5 | 2022-10-13 13:17:40 +0100 | [diff] [blame] | 601 | if (VIsual_mode == 'V') |
| 602 | { |
| 603 | if ((curwin->w_cursor.lnum <= VIsual.lnum |
| 604 | && (m_pos.lnum < curwin->w_cursor.lnum |
| 605 | || VIsual.lnum < m_pos.lnum)) |
| 606 | || (VIsual.lnum < curwin->w_cursor.lnum |
| 607 | && (m_pos.lnum < VIsual.lnum |
| 608 | || curwin->w_cursor.lnum < m_pos.lnum))) |
| 609 | { |
| 610 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 611 | } |
| 612 | } |
| 613 | else if ((LTOREQ_POS(curwin->w_cursor, VIsual) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 614 | && (LT_POS(m_pos, curwin->w_cursor) |
| 615 | || LT_POS(VIsual, m_pos))) |
| 616 | || (LT_POS(VIsual, curwin->w_cursor) |
| 617 | && (LT_POS(m_pos, VIsual) |
| 618 | || LT_POS(curwin->w_cursor, m_pos)))) |
| 619 | { |
| 620 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 621 | } |
| 622 | else if (VIsual_mode == Ctrl_V) |
| 623 | { |
| 624 | getvcols(curwin, &curwin->w_cursor, &VIsual, |
| 625 | &leftcol, &rightcol); |
| 626 | getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL); |
| 627 | if (m_pos.col < leftcol || m_pos.col > rightcol) |
| 628 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 629 | } |
| 630 | } |
| 631 | } |
| 632 | else |
| 633 | jump_flags = MOUSE_MAY_STOP_VIS; |
| 634 | } |
| 635 | if (jump_flags) |
| 636 | { |
| 637 | jump_flags = jump_to_mouse(jump_flags, NULL, which_button); |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 638 | update_curbuf(VIsual_active ? UPD_INVERTED : UPD_VALID); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 639 | setcursor(); |
| 640 | out_flush(); // Update before showing popup menu |
| 641 | } |
| 642 | # ifdef FEAT_MENU |
| 643 | show_popupmenu(); |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 644 | got_click = FALSE; // ignore release events |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 645 | # endif |
| 646 | return (jump_flags & CURSOR_MOVED) != 0; |
| 647 | #else |
| 648 | return FALSE; |
| 649 | #endif |
| 650 | } |
| 651 | if (which_button == MOUSE_LEFT |
| 652 | && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))) |
| 653 | { |
| 654 | which_button = MOUSE_RIGHT; |
| 655 | mod_mask &= ~MOD_MASK_SHIFT; |
| 656 | } |
| 657 | } |
| 658 | |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 659 | if ((State & (MODE_NORMAL | MODE_INSERT)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 660 | && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))) |
| 661 | { |
| 662 | if (which_button == MOUSE_LEFT) |
| 663 | { |
| 664 | if (is_click) |
| 665 | { |
| 666 | // stop Visual mode for a left click in a window, but not when |
| 667 | // on a status line |
| 668 | if (VIsual_active) |
| 669 | jump_flags |= MOUSE_MAY_STOP_VIS; |
| 670 | } |
| 671 | else if (mouse_has(MOUSE_VISUAL)) |
| 672 | jump_flags |= MOUSE_MAY_VIS; |
| 673 | } |
| 674 | else if (which_button == MOUSE_RIGHT) |
| 675 | { |
| 676 | if (is_click && VIsual_active) |
| 677 | { |
| 678 | // Remember the start and end of visual before moving the |
| 679 | // cursor. |
| 680 | if (LT_POS(curwin->w_cursor, VIsual)) |
| 681 | { |
| 682 | start_visual = curwin->w_cursor; |
| 683 | end_visual = VIsual; |
| 684 | } |
| 685 | else |
| 686 | { |
| 687 | start_visual = VIsual; |
| 688 | end_visual = curwin->w_cursor; |
| 689 | } |
| 690 | } |
| 691 | jump_flags |= MOUSE_FOCUS; |
| 692 | if (mouse_has(MOUSE_VISUAL)) |
| 693 | jump_flags |= MOUSE_MAY_VIS; |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | // If an operator is pending, ignore all drags and releases until the |
| 698 | // next mouse click. |
| 699 | if (!is_drag && oap != NULL && oap->op_type != OP_NOP) |
| 700 | { |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 701 | got_click = FALSE; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 702 | oap->motion_type = MCHAR; |
| 703 | } |
| 704 | |
| 705 | // When releasing the button let jump_to_mouse() know. |
| 706 | if (!is_click && !is_drag) |
| 707 | jump_flags |= MOUSE_RELEASED; |
| 708 | |
| 709 | // JUMP! |
| 710 | jump_flags = jump_to_mouse(jump_flags, |
| 711 | oap == NULL ? NULL : &(oap->inclusive), which_button); |
| 712 | |
| 713 | #ifdef FEAT_MENU |
| 714 | // A click in the window toolbar has no side effects. |
| 715 | if (jump_flags & MOUSE_WINBAR) |
| 716 | return FALSE; |
| 717 | #endif |
| 718 | moved = (jump_flags & CURSOR_MOVED); |
| 719 | in_status_line = (jump_flags & IN_STATUS_LINE); |
| 720 | in_sep_line = (jump_flags & IN_SEP_LINE); |
| 721 | |
| 722 | #ifdef FEAT_NETBEANS_INTG |
| 723 | if (isNetbeansBuffer(curbuf) |
| 724 | && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE))) |
| 725 | { |
| 726 | int key = KEY2TERMCAP1(c); |
| 727 | |
| 728 | if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE |
| 729 | || key == (int)KE_RIGHTRELEASE) |
| 730 | netbeans_button_release(which_button); |
| 731 | } |
| 732 | #endif |
| 733 | |
| 734 | // When jumping to another window, clear a pending operator. That's a bit |
| 735 | // friendlier than beeping and not jumping to that window. |
| 736 | if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP) |
| 737 | clearop(oap); |
| 738 | |
| 739 | #ifdef FEAT_FOLDING |
| 740 | if (mod_mask == 0 |
| 741 | && !is_drag |
| 742 | && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN)) |
| 743 | && which_button == MOUSE_LEFT) |
| 744 | { |
| 745 | // open or close a fold at this line |
| 746 | if (jump_flags & MOUSE_FOLD_OPEN) |
| 747 | openFold(curwin->w_cursor.lnum, 1L); |
| 748 | else |
| 749 | closeFold(curwin->w_cursor.lnum, 1L); |
| 750 | // don't move the cursor if still in the same window |
| 751 | if (curwin == old_curwin) |
| 752 | curwin->w_cursor = save_cursor; |
| 753 | } |
| 754 | #endif |
| 755 | |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 756 | #if defined(FEAT_CLIPBOARD) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 757 | if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available) |
| 758 | { |
| 759 | clip_modeless(which_button, is_click, is_drag); |
| 760 | return FALSE; |
| 761 | } |
| 762 | #endif |
| 763 | |
| 764 | // Set global flag that we are extending the Visual area with mouse |
| 765 | // dragging; temporarily minimize 'scrolloff'. |
| 766 | if (VIsual_active && is_drag && get_scrolloff_value()) |
| 767 | { |
| 768 | // In the very first line, allow scrolling one line |
| 769 | if (mouse_row == 0) |
| 770 | mouse_dragging = 2; |
| 771 | else |
| 772 | mouse_dragging = 1; |
| 773 | } |
| 774 | |
| 775 | // When dragging the mouse above the window, scroll down. |
| 776 | if (is_drag && mouse_row < 0 && !in_status_line) |
| 777 | { |
| 778 | scroll_redraw(FALSE, 1L); |
| 779 | mouse_row = 0; |
| 780 | } |
| 781 | |
| 782 | if (start_visual.lnum) // right click in visual mode |
| 783 | { |
| 784 | // When ALT is pressed make Visual mode blockwise. |
| 785 | if (mod_mask & MOD_MASK_ALT) |
| 786 | VIsual_mode = Ctrl_V; |
| 787 | |
| 788 | // In Visual-block mode, divide the area in four, pick up the corner |
| 789 | // that is in the quarter that the cursor is in. |
| 790 | if (VIsual_mode == Ctrl_V) |
| 791 | { |
| 792 | getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol); |
| 793 | if (curwin->w_curswant > (leftcol + rightcol) / 2) |
| 794 | end_visual.col = leftcol; |
| 795 | else |
| 796 | end_visual.col = rightcol; |
| 797 | if (curwin->w_cursor.lnum >= |
| 798 | (start_visual.lnum + end_visual.lnum) / 2) |
| 799 | end_visual.lnum = start_visual.lnum; |
| 800 | |
| 801 | // move VIsual to the right column |
| 802 | start_visual = curwin->w_cursor; // save the cursor pos |
| 803 | curwin->w_cursor = end_visual; |
| 804 | coladvance(end_visual.col); |
| 805 | VIsual = curwin->w_cursor; |
| 806 | curwin->w_cursor = start_visual; // restore the cursor |
| 807 | } |
| 808 | else |
| 809 | { |
| 810 | // If the click is before the start of visual, change the start. |
| 811 | // If the click is after the end of visual, change the end. If |
| 812 | // the click is inside the visual, change the closest side. |
| 813 | if (LT_POS(curwin->w_cursor, start_visual)) |
| 814 | VIsual = end_visual; |
| 815 | else if (LT_POS(end_visual, curwin->w_cursor)) |
| 816 | VIsual = start_visual; |
| 817 | else |
| 818 | { |
| 819 | // In the same line, compare column number |
| 820 | if (end_visual.lnum == start_visual.lnum) |
| 821 | { |
| 822 | if (curwin->w_cursor.col - start_visual.col > |
| 823 | end_visual.col - curwin->w_cursor.col) |
| 824 | VIsual = start_visual; |
| 825 | else |
| 826 | VIsual = end_visual; |
| 827 | } |
| 828 | |
| 829 | // In different lines, compare line number |
| 830 | else |
| 831 | { |
| 832 | diff = (curwin->w_cursor.lnum - start_visual.lnum) - |
| 833 | (end_visual.lnum - curwin->w_cursor.lnum); |
| 834 | |
| 835 | if (diff > 0) // closest to end |
| 836 | VIsual = start_visual; |
| 837 | else if (diff < 0) // closest to start |
| 838 | VIsual = end_visual; |
| 839 | else // in the middle line |
| 840 | { |
| 841 | if (curwin->w_cursor.col < |
| 842 | (start_visual.col + end_visual.col) / 2) |
| 843 | VIsual = end_visual; |
| 844 | else |
| 845 | VIsual = start_visual; |
| 846 | } |
| 847 | } |
| 848 | } |
| 849 | } |
| 850 | } |
| 851 | // If Visual mode started in insert mode, execute "CTRL-O" |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 852 | else if ((State & MODE_INSERT) && VIsual_active) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 853 | stuffcharReadbuff(Ctrl_O); |
| 854 | |
| 855 | // Middle mouse click: Put text before cursor. |
| 856 | if (which_button == MOUSE_MIDDLE) |
| 857 | { |
| 858 | #ifdef FEAT_CLIPBOARD |
| 859 | if (clip_star.available && regname == 0) |
| 860 | regname = '*'; |
| 861 | #endif |
| 862 | if (yank_register_mline(regname)) |
| 863 | { |
| 864 | if (mouse_past_bottom) |
| 865 | dir = FORWARD; |
| 866 | } |
| 867 | else if (mouse_past_eol) |
| 868 | dir = FORWARD; |
| 869 | |
| 870 | if (fixindent) |
| 871 | { |
| 872 | c1 = (dir == BACKWARD) ? '[' : ']'; |
| 873 | c2 = 'p'; |
| 874 | } |
| 875 | else |
| 876 | { |
| 877 | c1 = (dir == FORWARD) ? 'p' : 'P'; |
| 878 | c2 = NUL; |
| 879 | } |
| 880 | prep_redo(regname, count, NUL, c1, NUL, c2, NUL); |
| 881 | |
| 882 | // Remember where the paste started, so in edit() Insstart can be set |
| 883 | // to this position |
| 884 | if (restart_edit != 0) |
| 885 | where_paste_started = curwin->w_cursor; |
Bram Moolenaar | c3516f7 | 2020-09-08 22:45:35 +0200 | [diff] [blame] | 886 | do_put(regname, NULL, dir, count, fixindent | PUT_CURSEND); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | #if defined(FEAT_QUICKFIX) |
| 890 | // Ctrl-Mouse click or double click in a quickfix window jumps to the |
| 891 | // error under the mouse pointer. |
| 892 | else if (((mod_mask & MOD_MASK_CTRL) |
| 893 | || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK) |
| 894 | && bt_quickfix(curbuf)) |
| 895 | { |
| 896 | if (curwin->w_llist_ref == NULL) // quickfix window |
| 897 | do_cmdline_cmd((char_u *)".cc"); |
| 898 | else // location list window |
| 899 | do_cmdline_cmd((char_u *)".ll"); |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 900 | got_click = FALSE; // ignore drag&release now |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 901 | } |
| 902 | #endif |
| 903 | |
| 904 | // Ctrl-Mouse click (or double click in a help window) jumps to the tag |
| 905 | // under the mouse pointer. |
| 906 | else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help |
| 907 | && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)) |
| 908 | { |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 909 | if (State & MODE_INSERT) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 910 | stuffcharReadbuff(Ctrl_O); |
| 911 | stuffcharReadbuff(Ctrl_RSB); |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 912 | got_click = FALSE; // ignore drag&release now |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | // Shift-Mouse click searches for the next occurrence of the word under |
| 916 | // the mouse pointer |
| 917 | else if ((mod_mask & MOD_MASK_SHIFT)) |
| 918 | { |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 919 | if ((State & MODE_INSERT) || (VIsual_active && VIsual_select)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 920 | stuffcharReadbuff(Ctrl_O); |
| 921 | if (which_button == MOUSE_LEFT) |
| 922 | stuffcharReadbuff('*'); |
| 923 | else // MOUSE_RIGHT |
| 924 | stuffcharReadbuff('#'); |
| 925 | } |
| 926 | |
| 927 | // Handle double clicks, unless on status line |
| 928 | else if (in_status_line) |
| 929 | { |
| 930 | #ifdef FEAT_MOUSESHAPE |
| 931 | if ((is_drag || is_click) && !drag_status_line) |
| 932 | { |
| 933 | drag_status_line = TRUE; |
| 934 | update_mouseshape(-1); |
| 935 | } |
| 936 | #endif |
| 937 | } |
| 938 | else if (in_sep_line) |
| 939 | { |
| 940 | #ifdef FEAT_MOUSESHAPE |
| 941 | if ((is_drag || is_click) && !drag_sep_line) |
| 942 | { |
| 943 | drag_sep_line = TRUE; |
| 944 | update_mouseshape(-1); |
| 945 | } |
| 946 | #endif |
| 947 | } |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 948 | else if ((mod_mask & MOD_MASK_MULTI_CLICK) |
| 949 | && (State & (MODE_NORMAL | MODE_INSERT)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 950 | && mouse_has(MOUSE_VISUAL)) |
| 951 | { |
| 952 | if (is_click || !VIsual_active) |
| 953 | { |
| 954 | if (VIsual_active) |
| 955 | orig_cursor = VIsual; |
| 956 | else |
| 957 | { |
| 958 | check_visual_highlight(); |
| 959 | VIsual = curwin->w_cursor; |
| 960 | orig_cursor = VIsual; |
| 961 | VIsual_active = TRUE; |
| 962 | VIsual_reselect = TRUE; |
| 963 | // start Select mode if 'selectmode' contains "mouse" |
| 964 | may_start_select('o'); |
| 965 | setmouse(); |
| 966 | } |
| 967 | if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK) |
| 968 | { |
| 969 | // Double click with ALT pressed makes it blockwise. |
| 970 | if (mod_mask & MOD_MASK_ALT) |
| 971 | VIsual_mode = Ctrl_V; |
| 972 | else |
| 973 | VIsual_mode = 'v'; |
| 974 | } |
| 975 | else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK) |
| 976 | VIsual_mode = 'V'; |
| 977 | else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK) |
| 978 | VIsual_mode = Ctrl_V; |
| 979 | #ifdef FEAT_CLIPBOARD |
| 980 | // Make sure the clipboard gets updated. Needed because start and |
| 981 | // end may still be the same, and the selection needs to be owned |
| 982 | clip_star.vmode = NUL; |
| 983 | #endif |
| 984 | } |
| 985 | // A double click selects a word or a block. |
| 986 | if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK) |
| 987 | { |
| 988 | pos_T *pos = NULL; |
| 989 | int gc; |
| 990 | |
| 991 | if (is_click) |
| 992 | { |
| 993 | // If the character under the cursor (skipping white space) is |
| 994 | // not a word character, try finding a match and select a (), |
| 995 | // {}, [], #if/#endif, etc. block. |
| 996 | end_visual = curwin->w_cursor; |
| 997 | while (gc = gchar_pos(&end_visual), VIM_ISWHITE(gc)) |
| 998 | inc(&end_visual); |
| 999 | if (oap != NULL) |
| 1000 | oap->motion_type = MCHAR; |
| 1001 | if (oap != NULL |
| 1002 | && VIsual_mode == 'v' |
| 1003 | && !vim_iswordc(gchar_pos(&end_visual)) |
| 1004 | && EQUAL_POS(curwin->w_cursor, VIsual) |
| 1005 | && (pos = findmatch(oap, NUL)) != NULL) |
| 1006 | { |
| 1007 | curwin->w_cursor = *pos; |
| 1008 | if (oap->motion_type == MLINE) |
| 1009 | VIsual_mode = 'V'; |
| 1010 | else if (*p_sel == 'e') |
| 1011 | { |
| 1012 | if (LT_POS(curwin->w_cursor, VIsual)) |
| 1013 | ++VIsual.col; |
| 1014 | else |
| 1015 | ++curwin->w_cursor.col; |
| 1016 | } |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | if (pos == NULL && (is_click || is_drag)) |
| 1021 | { |
| 1022 | // When not found a match or when dragging: extend to include |
| 1023 | // a word. |
| 1024 | if (LT_POS(curwin->w_cursor, orig_cursor)) |
| 1025 | { |
| 1026 | find_start_of_word(&curwin->w_cursor); |
| 1027 | find_end_of_word(&VIsual); |
| 1028 | } |
| 1029 | else |
| 1030 | { |
| 1031 | find_start_of_word(&VIsual); |
| 1032 | if (*p_sel == 'e' && *ml_get_cursor() != NUL) |
| 1033 | curwin->w_cursor.col += |
| 1034 | (*mb_ptr2len)(ml_get_cursor()); |
| 1035 | find_end_of_word(&curwin->w_cursor); |
| 1036 | } |
| 1037 | } |
| 1038 | curwin->w_set_curswant = TRUE; |
| 1039 | } |
| 1040 | if (is_click) |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 1041 | redraw_curbuf_later(UPD_INVERTED); // update the inversion |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1042 | } |
| 1043 | else if (VIsual_active && !old_active) |
| 1044 | { |
| 1045 | if (mod_mask & MOD_MASK_ALT) |
| 1046 | VIsual_mode = Ctrl_V; |
| 1047 | else |
| 1048 | VIsual_mode = 'v'; |
| 1049 | } |
| 1050 | |
| 1051 | // If Visual mode changed show it later. |
| 1052 | if ((!VIsual_active && old_active && mode_displayed) |
| 1053 | || (VIsual_active && p_smd && msg_silent == 0 |
| 1054 | && (!old_active || VIsual_mode != old_mode))) |
| 1055 | redraw_cmdline = TRUE; |
| 1056 | |
| 1057 | return moved; |
| 1058 | } |
| 1059 | |
| 1060 | void |
| 1061 | ins_mouse(int c) |
| 1062 | { |
| 1063 | pos_T tpos; |
| 1064 | win_T *old_curwin = curwin; |
| 1065 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1066 | #ifdef FEAT_GUI |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1067 | // When GUI is active, also move/paste when 'mouse' is empty |
| 1068 | if (!gui.in_use) |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1069 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1070 | if (!mouse_has(MOUSE_INSERT)) |
| 1071 | return; |
| 1072 | |
| 1073 | undisplay_dollar(); |
| 1074 | tpos = curwin->w_cursor; |
| 1075 | if (do_mouse(NULL, c, BACKWARD, 1L, 0)) |
| 1076 | { |
| 1077 | win_T *new_curwin = curwin; |
| 1078 | |
| 1079 | if (curwin != old_curwin && win_valid(old_curwin)) |
| 1080 | { |
| 1081 | // Mouse took us to another window. We need to go back to the |
| 1082 | // previous one to stop insert there properly. |
| 1083 | curwin = old_curwin; |
| 1084 | curbuf = curwin->w_buffer; |
| 1085 | #ifdef FEAT_JOB_CHANNEL |
| 1086 | if (bt_prompt(curbuf)) |
| 1087 | // Restart Insert mode when re-entering the prompt buffer. |
| 1088 | curbuf->b_prompt_insert = 'A'; |
| 1089 | #endif |
| 1090 | } |
| 1091 | start_arrow(curwin == old_curwin ? &tpos : NULL); |
| 1092 | if (curwin != new_curwin && win_valid(new_curwin)) |
| 1093 | { |
| 1094 | curwin = new_curwin; |
| 1095 | curbuf = curwin->w_buffer; |
| 1096 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1097 | set_can_cindent(TRUE); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | // redraw status lines (in case another window became active) |
| 1101 | redraw_statuslines(); |
| 1102 | } |
| 1103 | |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1104 | /* |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1105 | * Common mouse wheel scrolling, shared between Insert mode and NV modes. |
| 1106 | * Default action is to scroll mouse_vert_step lines (or mouse_hor_step columns |
| 1107 | * depending on the scroll direction) or one page when Shift or Ctrl is used. |
| 1108 | * Direction is indicated by "cap->arg": |
| 1109 | * K_MOUSEUP - MSCR_UP |
| 1110 | * K_MOUSEDOWN - MSCR_DOWN |
| 1111 | * K_MOUSELEFT - MSCR_LEFT |
| 1112 | * K_MOUSERIGHT - MSCR_RIGHT |
| 1113 | * "curwin" may have been changed to the window that should be scrolled and |
| 1114 | * differ from the window that actually has focus. |
| 1115 | */ |
| 1116 | static void |
| 1117 | do_mousescroll(cmdarg_T *cap) |
| 1118 | { |
| 1119 | int shift_or_ctrl = mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL); |
| 1120 | |
| 1121 | #ifdef FEAT_TERMINAL |
| 1122 | if (term_use_loop()) |
| 1123 | // This window is a terminal window, send the mouse event there. |
| 1124 | // Set "typed" to FALSE to avoid an endless loop. |
| 1125 | send_keys_to_term(curbuf->b_term, cap->cmdchar, mod_mask, FALSE); |
| 1126 | else |
| 1127 | #endif |
| 1128 | if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN) |
| 1129 | { |
| 1130 | // Vertical scrolling |
| 1131 | if (!(State & MODE_INSERT) && (mouse_vert_step < 0 || shift_or_ctrl)) |
| 1132 | { |
| 1133 | // whole page up or down |
| 1134 | onepage(cap->arg == MSCR_UP ? FORWARD : BACKWARD, 1L); |
| 1135 | } |
| 1136 | else |
| 1137 | { |
| 1138 | if (mouse_vert_step < 0 || shift_or_ctrl) |
| 1139 | { |
| 1140 | // whole page up or down |
| 1141 | cap->count1 = (long)(curwin->w_botline - curwin->w_topline); |
| 1142 | } |
| 1143 | // Don't scroll more than half the window height. |
| 1144 | else if (curwin->w_height < mouse_vert_step * 2) |
| 1145 | { |
| 1146 | cap->count1 = curwin->w_height / 2; |
| 1147 | if (cap->count1 == 0) |
| 1148 | cap->count1 = 1; |
| 1149 | } |
| 1150 | else |
| 1151 | { |
| 1152 | cap->count1 = mouse_vert_step; |
| 1153 | } |
| 1154 | cap->count0 = cap->count1; |
| 1155 | nv_scroll_line(cap); |
| 1156 | } |
| 1157 | |
| 1158 | #ifdef FEAT_PROP_POPUP |
| 1159 | if (WIN_IS_POPUP(curwin)) |
| 1160 | popup_set_firstline(curwin); |
| 1161 | #endif |
| 1162 | } |
| 1163 | else |
| 1164 | { |
| 1165 | // Horizontal scrolling |
| 1166 | long step = (mouse_hor_step < 0 || shift_or_ctrl) |
| 1167 | ? curwin->w_width : mouse_hor_step; |
| 1168 | long leftcol = curwin->w_leftcol |
| 1169 | + (cap->arg == MSCR_RIGHT ? -step : step); |
| 1170 | if (leftcol < 0) |
| 1171 | leftcol = 0; |
| 1172 | do_mousescroll_horiz((long_u)leftcol); |
| 1173 | } |
| 1174 | may_trigger_winscrolled(); |
| 1175 | } |
| 1176 | |
| 1177 | /* |
| 1178 | * Insert mode implementation for scrolling in direction "dir", which is |
| 1179 | * one of the MSCR_ values. |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1180 | */ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1181 | void |
| 1182 | ins_mousescroll(int dir) |
| 1183 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1184 | cmdarg_T cap; |
| 1185 | oparg_T oa; |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1186 | CLEAR_FIELD(cap); |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1187 | clear_oparg(&oa); |
| 1188 | cap.oap = &oa; |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1189 | cap.arg = dir; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1190 | |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1191 | switch (dir) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1192 | { |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 1193 | case MSCR_UP: |
| 1194 | cap.cmdchar = K_MOUSEUP; |
| 1195 | break; |
| 1196 | case MSCR_DOWN: |
| 1197 | cap.cmdchar = K_MOUSEDOWN; |
| 1198 | break; |
| 1199 | case MSCR_LEFT: |
| 1200 | cap.cmdchar = K_MOUSELEFT; |
| 1201 | break; |
| 1202 | case MSCR_RIGHT: |
| 1203 | cap.cmdchar = K_MOUSERIGHT; |
| 1204 | break; |
| 1205 | default: |
| 1206 | siemsg("Invalid ins_mousescroll() argument: %d", dir); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1207 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1208 | |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1209 | win_T *old_curwin = curwin; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1210 | if (mouse_row >= 0 && mouse_col >= 0) |
| 1211 | { |
| 1212 | // Find the window at the mouse pointer coordinates. |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1213 | // NOTE: Must restore "curwin" to "old_curwin" before returning! |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1214 | int row = mouse_row; |
| 1215 | int col = mouse_col; |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1216 | curwin = mouse_find_win(&row, &col, FIND_POPUP); |
| 1217 | if (curwin == NULL) |
| 1218 | { |
| 1219 | curwin = old_curwin; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1220 | return; |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1221 | } |
| 1222 | curbuf = curwin->w_buffer; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1225 | if (curwin == old_curwin) |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1226 | { |
| 1227 | // Don't scroll the current window if the popup menu is visible. |
| 1228 | if (pum_visible()) |
| 1229 | return; |
| 1230 | |
| 1231 | undisplay_dollar(); |
| 1232 | } |
| 1233 | |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1234 | linenr_T orig_topline = curwin->w_topline; |
| 1235 | colnr_T orig_leftcol = curwin->w_leftcol; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1236 | pos_T orig_cursor = curwin->w_cursor; |
| 1237 | |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1238 | // Call the common mouse scroll function shared with other modes. |
| 1239 | do_mousescroll(&cap); |
| 1240 | |
| 1241 | int did_scroll = (orig_topline != curwin->w_topline |
| 1242 | || orig_leftcol != curwin->w_leftcol); |
| 1243 | |
| 1244 | curwin->w_redr_status = TRUE; |
| 1245 | curwin = old_curwin; |
| 1246 | curbuf = curwin->w_buffer; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1247 | |
| 1248 | // If the window actually scrolled and the popup menu may overlay the |
| 1249 | // window, need to redraw it. |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 1250 | if (did_scroll && pum_visible()) |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1251 | { |
| 1252 | // TODO: Would be more efficient to only redraw the windows that are |
| 1253 | // overlapped by the popup menu. |
| 1254 | redraw_all_later(UPD_NOT_VALID); |
| 1255 | ins_compl_show_pum(); |
| 1256 | } |
| 1257 | |
| 1258 | if (!EQUAL_POS(curwin->w_cursor, orig_cursor)) |
| 1259 | { |
| 1260 | start_arrow(&orig_cursor); |
| 1261 | set_can_cindent(TRUE); |
| 1262 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1263 | } |
| 1264 | |
| 1265 | /* |
| 1266 | * Return TRUE if "c" is a mouse key. |
| 1267 | */ |
| 1268 | int |
| 1269 | is_mouse_key(int c) |
| 1270 | { |
| 1271 | return c == K_LEFTMOUSE |
| 1272 | || c == K_LEFTMOUSE_NM |
| 1273 | || c == K_LEFTDRAG |
| 1274 | || c == K_LEFTRELEASE |
| 1275 | || c == K_LEFTRELEASE_NM |
| 1276 | || c == K_MOUSEMOVE |
| 1277 | || c == K_MIDDLEMOUSE |
| 1278 | || c == K_MIDDLEDRAG |
| 1279 | || c == K_MIDDLERELEASE |
| 1280 | || c == K_RIGHTMOUSE |
| 1281 | || c == K_RIGHTDRAG |
| 1282 | || c == K_RIGHTRELEASE |
| 1283 | || c == K_MOUSEDOWN |
| 1284 | || c == K_MOUSEUP |
| 1285 | || c == K_MOUSELEFT |
| 1286 | || c == K_MOUSERIGHT |
| 1287 | || c == K_X1MOUSE |
| 1288 | || c == K_X1DRAG |
| 1289 | || c == K_X1RELEASE |
| 1290 | || c == K_X2MOUSE |
| 1291 | || c == K_X2DRAG |
| 1292 | || c == K_X2RELEASE; |
| 1293 | } |
| 1294 | |
| 1295 | static struct mousetable |
| 1296 | { |
| 1297 | int pseudo_code; // Code for pseudo mouse event |
| 1298 | int button; // Which mouse button is it? |
| 1299 | int is_click; // Is it a mouse button click event? |
| 1300 | int is_drag; // Is it a mouse drag event? |
| 1301 | } mouse_table[] = |
| 1302 | { |
| 1303 | {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE}, |
| 1304 | #ifdef FEAT_GUI |
| 1305 | {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE}, |
| 1306 | #endif |
| 1307 | {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE}, |
| 1308 | {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE}, |
| 1309 | #ifdef FEAT_GUI |
| 1310 | {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE}, |
| 1311 | #endif |
| 1312 | {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE}, |
| 1313 | {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE}, |
| 1314 | {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE}, |
| 1315 | {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE}, |
| 1316 | {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE}, |
| 1317 | {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE}, |
| 1318 | {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE}, |
| 1319 | {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE}, |
| 1320 | {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE}, |
| 1321 | {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE}, |
| 1322 | {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE}, |
| 1323 | {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE}, |
| 1324 | // DRAG without CLICK |
| 1325 | {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE}, |
| 1326 | // RELEASE without CLICK |
| 1327 | {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE}, |
| 1328 | {0, 0, 0, 0}, |
| 1329 | }; |
| 1330 | |
| 1331 | /* |
| 1332 | * Look up the given mouse code to return the relevant information in the other |
| 1333 | * arguments. Return which button is down or was released. |
| 1334 | */ |
| 1335 | int |
| 1336 | get_mouse_button(int code, int *is_click, int *is_drag) |
| 1337 | { |
| 1338 | int i; |
| 1339 | |
| 1340 | for (i = 0; mouse_table[i].pseudo_code; i++) |
| 1341 | if (code == mouse_table[i].pseudo_code) |
| 1342 | { |
| 1343 | *is_click = mouse_table[i].is_click; |
| 1344 | *is_drag = mouse_table[i].is_drag; |
| 1345 | return mouse_table[i].button; |
| 1346 | } |
| 1347 | return 0; // Shouldn't get here |
| 1348 | } |
| 1349 | |
| 1350 | /* |
| 1351 | * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on |
| 1352 | * the given information about which mouse button is down, and whether the |
| 1353 | * mouse was clicked, dragged or released. |
| 1354 | */ |
| 1355 | int |
| 1356 | get_pseudo_mouse_code( |
| 1357 | int button, // eg MOUSE_LEFT |
| 1358 | int is_click, |
| 1359 | int is_drag) |
| 1360 | { |
| 1361 | int i; |
| 1362 | |
| 1363 | for (i = 0; mouse_table[i].pseudo_code; i++) |
| 1364 | if (button == mouse_table[i].button |
| 1365 | && is_click == mouse_table[i].is_click |
| 1366 | && is_drag == mouse_table[i].is_drag) |
| 1367 | { |
| 1368 | #ifdef FEAT_GUI |
| 1369 | // Trick: a non mappable left click and release has mouse_col -1 |
| 1370 | // or added MOUSE_COLOFF. Used for 'mousefocus' in |
| 1371 | // gui_mouse_moved() |
| 1372 | if (mouse_col < 0 || mouse_col > MOUSE_COLOFF) |
| 1373 | { |
| 1374 | if (mouse_col < 0) |
| 1375 | mouse_col = 0; |
| 1376 | else |
| 1377 | mouse_col -= MOUSE_COLOFF; |
| 1378 | if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE) |
| 1379 | return (int)KE_LEFTMOUSE_NM; |
| 1380 | if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE) |
| 1381 | return (int)KE_LEFTRELEASE_NM; |
| 1382 | } |
| 1383 | #endif |
| 1384 | return mouse_table[i].pseudo_code; |
| 1385 | } |
| 1386 | return (int)KE_IGNORE; // not recognized, ignore it |
| 1387 | } |
| 1388 | |
Bram Moolenaar | a1cb1d1 | 2019-10-17 23:00:07 +0200 | [diff] [blame] | 1389 | # define HMT_NORMAL 1 |
| 1390 | # define HMT_NETTERM 2 |
| 1391 | # define HMT_DEC 4 |
| 1392 | # define HMT_JSBTERM 8 |
| 1393 | # define HMT_PTERM 16 |
| 1394 | # define HMT_URXVT 32 |
| 1395 | # define HMT_GPM 64 |
| 1396 | # define HMT_SGR 128 |
| 1397 | # define HMT_SGR_REL 256 |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1398 | static int has_mouse_termcode = 0; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1399 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1400 | void |
| 1401 | set_mouse_termcode( |
| 1402 | int n, // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE |
| 1403 | char_u *s) |
| 1404 | { |
| 1405 | char_u name[2]; |
| 1406 | |
| 1407 | name[0] = n; |
| 1408 | name[1] = KE_FILLER; |
| 1409 | add_termcode(name, s, FALSE); |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1410 | #ifdef FEAT_MOUSE_JSB |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1411 | if (n == KS_JSBTERM_MOUSE) |
| 1412 | has_mouse_termcode |= HMT_JSBTERM; |
| 1413 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1414 | #endif |
| 1415 | #ifdef FEAT_MOUSE_NET |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1416 | if (n == KS_NETTERM_MOUSE) |
| 1417 | has_mouse_termcode |= HMT_NETTERM; |
| 1418 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1419 | #endif |
| 1420 | #ifdef FEAT_MOUSE_DEC |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1421 | if (n == KS_DEC_MOUSE) |
| 1422 | has_mouse_termcode |= HMT_DEC; |
| 1423 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1424 | #endif |
| 1425 | #ifdef FEAT_MOUSE_PTERM |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1426 | if (n == KS_PTERM_MOUSE) |
| 1427 | has_mouse_termcode |= HMT_PTERM; |
| 1428 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1429 | #endif |
| 1430 | #ifdef FEAT_MOUSE_URXVT |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1431 | if (n == KS_URXVT_MOUSE) |
| 1432 | has_mouse_termcode |= HMT_URXVT; |
| 1433 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1434 | #endif |
| 1435 | #ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1436 | if (n == KS_GPM_MOUSE) |
| 1437 | has_mouse_termcode |= HMT_GPM; |
| 1438 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1439 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1440 | if (n == KS_SGR_MOUSE) |
| 1441 | has_mouse_termcode |= HMT_SGR; |
| 1442 | else if (n == KS_SGR_MOUSE_RELEASE) |
| 1443 | has_mouse_termcode |= HMT_SGR_REL; |
| 1444 | else |
| 1445 | has_mouse_termcode |= HMT_NORMAL; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1446 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1447 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1448 | #if defined(UNIX) || defined(VMS) || defined(PROTO) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1449 | void |
| 1450 | del_mouse_termcode( |
| 1451 | int n) // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE |
| 1452 | { |
| 1453 | char_u name[2]; |
| 1454 | |
| 1455 | name[0] = n; |
| 1456 | name[1] = KE_FILLER; |
| 1457 | del_termcode(name); |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1458 | # ifdef FEAT_MOUSE_JSB |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1459 | if (n == KS_JSBTERM_MOUSE) |
| 1460 | has_mouse_termcode &= ~HMT_JSBTERM; |
| 1461 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1462 | # endif |
| 1463 | # ifdef FEAT_MOUSE_NET |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1464 | if (n == KS_NETTERM_MOUSE) |
| 1465 | has_mouse_termcode &= ~HMT_NETTERM; |
| 1466 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1467 | # endif |
| 1468 | # ifdef FEAT_MOUSE_DEC |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1469 | if (n == KS_DEC_MOUSE) |
| 1470 | has_mouse_termcode &= ~HMT_DEC; |
| 1471 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1472 | # endif |
| 1473 | # ifdef FEAT_MOUSE_PTERM |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1474 | if (n == KS_PTERM_MOUSE) |
| 1475 | has_mouse_termcode &= ~HMT_PTERM; |
| 1476 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1477 | # endif |
| 1478 | # ifdef FEAT_MOUSE_URXVT |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1479 | if (n == KS_URXVT_MOUSE) |
| 1480 | has_mouse_termcode &= ~HMT_URXVT; |
| 1481 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1482 | # endif |
| 1483 | # ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1484 | if (n == KS_GPM_MOUSE) |
| 1485 | has_mouse_termcode &= ~HMT_GPM; |
| 1486 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1487 | # endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1488 | if (n == KS_SGR_MOUSE) |
| 1489 | has_mouse_termcode &= ~HMT_SGR; |
| 1490 | else if (n == KS_SGR_MOUSE_RELEASE) |
| 1491 | has_mouse_termcode &= ~HMT_SGR_REL; |
| 1492 | else |
| 1493 | has_mouse_termcode &= ~HMT_NORMAL; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1494 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1495 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1496 | |
| 1497 | /* |
| 1498 | * setmouse() - switch mouse on/off depending on current mode and 'mouse' |
| 1499 | */ |
| 1500 | void |
| 1501 | setmouse(void) |
| 1502 | { |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1503 | int checkfor; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1504 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1505 | #ifdef FEAT_MOUSESHAPE |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1506 | update_mouseshape(-1); |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1507 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1508 | |
Bram Moolenaar | a1cb1d1 | 2019-10-17 23:00:07 +0200 | [diff] [blame] | 1509 | // Should be outside proc, but may break MOUSESHAPE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1510 | #ifdef FEAT_GUI |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1511 | // In the GUI the mouse is always enabled. |
| 1512 | if (gui.in_use) |
| 1513 | return; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1514 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1515 | // be quick when mouse is off |
| 1516 | if (*p_mouse == NUL || has_mouse_termcode == 0) |
| 1517 | return; |
| 1518 | |
| 1519 | // don't switch mouse on when not in raw mode (Ex mode) |
| 1520 | if (cur_tmode != TMODE_RAW) |
| 1521 | { |
| 1522 | mch_setmouse(FALSE); |
| 1523 | return; |
| 1524 | } |
| 1525 | |
| 1526 | if (VIsual_active) |
| 1527 | checkfor = MOUSE_VISUAL; |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 1528 | else if (State == MODE_HITRETURN || State == MODE_ASKMORE |
| 1529 | || State == MODE_SETWSIZE) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1530 | checkfor = MOUSE_RETURN; |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 1531 | else if (State & MODE_INSERT) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1532 | checkfor = MOUSE_INSERT; |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 1533 | else if (State & MODE_CMDLINE) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1534 | checkfor = MOUSE_COMMAND; |
Bram Moolenaar | 2495910 | 2022-05-07 20:01:16 +0100 | [diff] [blame] | 1535 | else if (State == MODE_CONFIRM || State == MODE_EXTERNCMD) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1536 | checkfor = ' '; // don't use mouse for ":confirm" or ":!cmd" |
| 1537 | else |
| 1538 | checkfor = MOUSE_NORMAL; // assume normal mode |
| 1539 | |
| 1540 | if (mouse_has(checkfor)) |
| 1541 | mch_setmouse(TRUE); |
| 1542 | else |
| 1543 | mch_setmouse(FALSE); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | /* |
| 1547 | * Return TRUE if |
| 1548 | * - "c" is in 'mouse', or |
| 1549 | * - 'a' is in 'mouse' and "c" is in MOUSE_A, or |
| 1550 | * - the current buffer is a help file and 'h' is in 'mouse' and we are in a |
| 1551 | * normal editing mode (not at hit-return message). |
| 1552 | */ |
| 1553 | int |
| 1554 | mouse_has(int c) |
| 1555 | { |
| 1556 | char_u *p; |
| 1557 | |
| 1558 | for (p = p_mouse; *p; ++p) |
| 1559 | switch (*p) |
| 1560 | { |
| 1561 | case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL) |
| 1562 | return TRUE; |
| 1563 | break; |
| 1564 | case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help) |
| 1565 | return TRUE; |
| 1566 | break; |
| 1567 | default: if (c == *p) return TRUE; break; |
| 1568 | } |
| 1569 | return FALSE; |
| 1570 | } |
| 1571 | |
| 1572 | /* |
| 1573 | * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos". |
| 1574 | */ |
| 1575 | int |
| 1576 | mouse_model_popup(void) |
| 1577 | { |
| 1578 | return (p_mousem[0] == 'p'); |
| 1579 | } |
| 1580 | |
zeertzjq | 8e0ccb6 | 2022-11-01 18:35:27 +0000 | [diff] [blame] | 1581 | static win_T *dragwin = NULL; // window being dragged |
| 1582 | |
| 1583 | /* |
| 1584 | * Reset the window being dragged. To be called when switching tab page. |
| 1585 | */ |
| 1586 | void |
| 1587 | reset_dragwin(void) |
| 1588 | { |
| 1589 | dragwin = NULL; |
| 1590 | } |
| 1591 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1592 | /* |
| 1593 | * Move the cursor to the specified row and column on the screen. |
| 1594 | * Change current window if necessary. Returns an integer with the |
| 1595 | * CURSOR_MOVED bit set if the cursor has moved or unset otherwise. |
| 1596 | * |
| 1597 | * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column. |
| 1598 | * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column. |
| 1599 | * |
| 1600 | * If flags has MOUSE_FOCUS, then the current window will not be changed, and |
| 1601 | * if the mouse is outside the window then the text will scroll, or if the |
| 1602 | * mouse was previously on a status line, then the status line may be dragged. |
| 1603 | * |
| 1604 | * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the |
| 1605 | * cursor is moved unless the cursor was on a status line. |
| 1606 | * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or |
| 1607 | * IN_SEP_LINE depending on where the cursor was clicked. |
| 1608 | * |
| 1609 | * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless |
| 1610 | * the mouse is on the status line of the same window. |
| 1611 | * |
| 1612 | * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since |
| 1613 | * the last call. |
| 1614 | * |
| 1615 | * If flags has MOUSE_SETPOS, nothing is done, only the current position is |
| 1616 | * remembered. |
| 1617 | */ |
| 1618 | int |
| 1619 | jump_to_mouse( |
| 1620 | int flags, |
| 1621 | int *inclusive, // used for inclusive operator, can be NULL |
| 1622 | int which_button) // MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE |
| 1623 | { |
| 1624 | static int on_status_line = 0; // #lines below bottom of window |
| 1625 | static int on_sep_line = 0; // on separator right of window |
| 1626 | #ifdef FEAT_MENU |
| 1627 | static int in_winbar = FALSE; |
| 1628 | #endif |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 1629 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1630 | static int in_popup_win = FALSE; |
| 1631 | static win_T *click_in_popup_win = NULL; |
| 1632 | #endif |
| 1633 | static int prev_row = -1; |
| 1634 | static int prev_col = -1; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1635 | static int did_drag = FALSE; // drag was noticed |
| 1636 | |
| 1637 | win_T *wp, *old_curwin; |
| 1638 | pos_T old_cursor; |
| 1639 | int count; |
| 1640 | int first; |
| 1641 | int row = mouse_row; |
| 1642 | int col = mouse_col; |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 1643 | colnr_T col_from_screen = -1; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1644 | #ifdef FEAT_FOLDING |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 1645 | int mouse_char = ' '; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1646 | #endif |
| 1647 | |
| 1648 | mouse_past_bottom = FALSE; |
| 1649 | mouse_past_eol = FALSE; |
| 1650 | |
| 1651 | if (flags & MOUSE_RELEASED) |
| 1652 | { |
| 1653 | // On button release we may change window focus if positioned on a |
| 1654 | // status line and no dragging happened. |
| 1655 | if (dragwin != NULL && !did_drag) |
| 1656 | flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE); |
| 1657 | dragwin = NULL; |
| 1658 | did_drag = FALSE; |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 1659 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1660 | if (click_in_popup_win != NULL && popup_dragwin == NULL) |
| 1661 | popup_close_for_mouse_click(click_in_popup_win); |
| 1662 | |
| 1663 | popup_dragwin = NULL; |
| 1664 | click_in_popup_win = NULL; |
| 1665 | #endif |
| 1666 | } |
| 1667 | |
| 1668 | if ((flags & MOUSE_DID_MOVE) |
| 1669 | && prev_row == mouse_row |
| 1670 | && prev_col == mouse_col) |
| 1671 | { |
| 1672 | retnomove: |
| 1673 | // before moving the cursor for a left click which is NOT in a status |
| 1674 | // line, stop Visual mode |
| 1675 | if (on_status_line) |
| 1676 | return IN_STATUS_LINE; |
| 1677 | if (on_sep_line) |
| 1678 | return IN_SEP_LINE; |
| 1679 | #ifdef FEAT_MENU |
| 1680 | if (in_winbar) |
| 1681 | { |
| 1682 | // A quick second click may arrive as a double-click, but we use it |
| 1683 | // as a second click in the WinBar. |
| 1684 | if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED)) |
| 1685 | { |
| 1686 | wp = mouse_find_win(&row, &col, FAIL_POPUP); |
| 1687 | if (wp == NULL) |
| 1688 | return IN_UNKNOWN; |
| 1689 | winbar_click(wp, col); |
| 1690 | } |
| 1691 | return IN_OTHER_WIN | MOUSE_WINBAR; |
| 1692 | } |
| 1693 | #endif |
| 1694 | if (flags & MOUSE_MAY_STOP_VIS) |
| 1695 | { |
Bram Moolenaar | 4f3c57f | 2021-06-03 22:11:08 +0200 | [diff] [blame] | 1696 | end_visual_mode_keep_button(); |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 1697 | redraw_curbuf_later(UPD_INVERTED); // delete the inversion |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1698 | } |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 1699 | #if defined(FEAT_CLIPBOARD) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1700 | // Continue a modeless selection in another window. |
| 1701 | if (cmdwin_type != 0 && row < curwin->w_winrow) |
| 1702 | return IN_OTHER_WIN; |
| 1703 | #endif |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 1704 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1705 | // Continue a modeless selection in a popup window or dragging it. |
| 1706 | if (in_popup_win) |
| 1707 | { |
| 1708 | click_in_popup_win = NULL; // don't close it on release |
| 1709 | if (popup_dragwin != NULL) |
| 1710 | { |
| 1711 | // dragging a popup window |
| 1712 | popup_drag(popup_dragwin); |
| 1713 | return IN_UNKNOWN; |
| 1714 | } |
| 1715 | return IN_OTHER_WIN; |
| 1716 | } |
| 1717 | #endif |
| 1718 | return IN_BUFFER; |
| 1719 | } |
| 1720 | |
| 1721 | prev_row = mouse_row; |
| 1722 | prev_col = mouse_col; |
| 1723 | |
| 1724 | if (flags & MOUSE_SETPOS) |
| 1725 | goto retnomove; // ugly goto... |
| 1726 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1727 | old_curwin = curwin; |
| 1728 | old_cursor = curwin->w_cursor; |
| 1729 | |
| 1730 | if (!(flags & MOUSE_FOCUS)) |
| 1731 | { |
| 1732 | if (row < 0 || col < 0) // check if it makes sense |
| 1733 | return IN_UNKNOWN; |
| 1734 | |
| 1735 | // find the window where the row is in and adjust "row" and "col" to be |
| 1736 | // relative to top-left of the window |
| 1737 | wp = mouse_find_win(&row, &col, FIND_POPUP); |
| 1738 | if (wp == NULL) |
| 1739 | return IN_UNKNOWN; |
| 1740 | dragwin = NULL; |
| 1741 | |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 1742 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1743 | // Click in a popup window may start dragging or modeless selection, |
| 1744 | // but not much else. |
| 1745 | if (WIN_IS_POPUP(wp)) |
| 1746 | { |
| 1747 | on_sep_line = 0; |
Bram Moolenaar | bfc5786 | 2021-11-26 15:57:40 +0000 | [diff] [blame] | 1748 | on_status_line = 0; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1749 | in_popup_win = TRUE; |
| 1750 | if (which_button == MOUSE_LEFT && popup_close_if_on_X(wp, row, col)) |
| 1751 | { |
| 1752 | return IN_UNKNOWN; |
| 1753 | } |
Bram Moolenaar | 0b74d00 | 2021-11-29 17:38:02 +0000 | [diff] [blame] | 1754 | else if (((wp->w_popup_flags & (POPF_DRAG | POPF_RESIZE)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1755 | && popup_on_border(wp, row, col)) |
Bram Moolenaar | 0b74d00 | 2021-11-29 17:38:02 +0000 | [diff] [blame] | 1756 | || (wp->w_popup_flags & POPF_DRAGALL)) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1757 | { |
| 1758 | popup_dragwin = wp; |
| 1759 | popup_start_drag(wp, row, col); |
| 1760 | return IN_UNKNOWN; |
| 1761 | } |
| 1762 | // Only close on release, otherwise it's not possible to drag or do |
| 1763 | // modeless selection. |
| 1764 | else if (wp->w_popup_close == POPCLOSE_CLICK |
| 1765 | && which_button == MOUSE_LEFT) |
| 1766 | { |
| 1767 | click_in_popup_win = wp; |
| 1768 | } |
| 1769 | else if (which_button == MOUSE_LEFT) |
| 1770 | // If the click is in the scrollbar, may scroll up/down. |
| 1771 | popup_handle_scrollbar_click(wp, row, col); |
| 1772 | # ifdef FEAT_CLIPBOARD |
| 1773 | return IN_OTHER_WIN; |
| 1774 | # else |
| 1775 | return IN_UNKNOWN; |
| 1776 | # endif |
| 1777 | } |
| 1778 | in_popup_win = FALSE; |
| 1779 | popup_dragwin = NULL; |
| 1780 | #endif |
| 1781 | #ifdef FEAT_MENU |
| 1782 | if (row == -1) |
| 1783 | { |
| 1784 | // A click in the window toolbar does not enter another window or |
| 1785 | // change Visual highlighting. |
| 1786 | winbar_click(wp, col); |
| 1787 | in_winbar = TRUE; |
| 1788 | return IN_OTHER_WIN | MOUSE_WINBAR; |
| 1789 | } |
| 1790 | in_winbar = FALSE; |
| 1791 | #endif |
| 1792 | |
| 1793 | // winpos and height may change in win_enter()! |
| 1794 | if (row >= wp->w_height) // In (or below) status line |
| 1795 | { |
| 1796 | on_status_line = row - wp->w_height + 1; |
| 1797 | dragwin = wp; |
| 1798 | } |
| 1799 | else |
| 1800 | on_status_line = 0; |
| 1801 | if (col >= wp->w_width) // In separator line |
| 1802 | { |
| 1803 | on_sep_line = col - wp->w_width + 1; |
| 1804 | dragwin = wp; |
| 1805 | } |
| 1806 | else |
| 1807 | on_sep_line = 0; |
| 1808 | |
| 1809 | // The rightmost character of the status line might be a vertical |
| 1810 | // separator character if there is no connecting window to the right. |
| 1811 | if (on_status_line && on_sep_line) |
| 1812 | { |
| 1813 | if (stl_connected(wp)) |
| 1814 | on_sep_line = 0; |
| 1815 | else |
| 1816 | on_status_line = 0; |
| 1817 | } |
| 1818 | |
| 1819 | // Before jumping to another buffer, or moving the cursor for a left |
| 1820 | // click, stop Visual mode. |
| 1821 | if (VIsual_active |
| 1822 | && (wp->w_buffer != curwin->w_buffer |
| 1823 | || (!on_status_line && !on_sep_line |
| 1824 | #ifdef FEAT_FOLDING |
| 1825 | && ( |
| 1826 | # ifdef FEAT_RIGHTLEFT |
| 1827 | wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc : |
| 1828 | # endif |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 1829 | col >= wp->w_p_fdc + (cmdwin_type == 0 && wp == curwin ? 0 : 1) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1830 | ) |
| 1831 | #endif |
| 1832 | && (flags & MOUSE_MAY_STOP_VIS)))) |
| 1833 | { |
Bram Moolenaar | 4f3c57f | 2021-06-03 22:11:08 +0200 | [diff] [blame] | 1834 | end_visual_mode_keep_button(); |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 1835 | redraw_curbuf_later(UPD_INVERTED); // delete the inversion |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1836 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1837 | if (cmdwin_type != 0 && wp != curwin) |
| 1838 | { |
| 1839 | // A click outside the command-line window: Use modeless |
| 1840 | // selection if possible. Allow dragging the status lines. |
| 1841 | on_sep_line = 0; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1842 | #ifdef FEAT_CLIPBOARD |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1843 | if (on_status_line) |
| 1844 | return IN_STATUS_LINE; |
| 1845 | return IN_OTHER_WIN; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1846 | #else |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1847 | row = 0; |
| 1848 | col += wp->w_wincol; |
| 1849 | wp = curwin; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 1850 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1851 | } |
Bram Moolenaar | 219c7d0 | 2020-02-01 21:57:29 +0100 | [diff] [blame] | 1852 | #if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL) |
| 1853 | if (popup_is_popup(curwin) && curbuf->b_term != NULL) |
| 1854 | // terminal in popup window: don't jump to another window |
| 1855 | return IN_OTHER_WIN; |
| 1856 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1857 | // Only change window focus when not clicking on or dragging the |
| 1858 | // status line. Do change focus when releasing the mouse button |
| 1859 | // (MOUSE_FOCUS was set above if we dragged first). |
| 1860 | if (dragwin == NULL || (flags & MOUSE_RELEASED)) |
| 1861 | win_enter(wp, TRUE); // can make wp invalid! |
| 1862 | |
| 1863 | if (curwin != old_curwin) |
| 1864 | { |
| 1865 | #ifdef CHECK_DOUBLE_CLICK |
| 1866 | // set topline, to be able to check for double click ourselves |
| 1867 | set_mouse_topline(curwin); |
| 1868 | #endif |
| 1869 | #ifdef FEAT_TERMINAL |
| 1870 | // when entering a terminal window may change state |
| 1871 | term_win_entered(); |
| 1872 | #endif |
| 1873 | } |
| 1874 | if (on_status_line) // In (or below) status line |
| 1875 | { |
| 1876 | // Don't use start_arrow() if we're in the same window |
| 1877 | if (curwin == old_curwin) |
| 1878 | return IN_STATUS_LINE; |
| 1879 | else |
| 1880 | return IN_STATUS_LINE | CURSOR_MOVED; |
| 1881 | } |
| 1882 | if (on_sep_line) // In (or below) status line |
| 1883 | { |
| 1884 | // Don't use start_arrow() if we're in the same window |
| 1885 | if (curwin == old_curwin) |
| 1886 | return IN_SEP_LINE; |
| 1887 | else |
| 1888 | return IN_SEP_LINE | CURSOR_MOVED; |
| 1889 | } |
| 1890 | |
| 1891 | curwin->w_cursor.lnum = curwin->w_topline; |
| 1892 | #ifdef FEAT_GUI |
| 1893 | // remember topline, needed for double click |
| 1894 | gui_prev_topline = curwin->w_topline; |
| 1895 | # ifdef FEAT_DIFF |
| 1896 | gui_prev_topfill = curwin->w_topfill; |
| 1897 | # endif |
| 1898 | #endif |
| 1899 | } |
| 1900 | else if (on_status_line && which_button == MOUSE_LEFT) |
| 1901 | { |
| 1902 | if (dragwin != NULL) |
| 1903 | { |
| 1904 | // Drag the status line |
zeertzjq | 6dab00a | 2022-05-20 13:45:59 +0100 | [diff] [blame] | 1905 | count = row - W_WINROW(dragwin) - dragwin->w_height + 1 |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1906 | - on_status_line; |
| 1907 | win_drag_status_line(dragwin, count); |
| 1908 | did_drag |= count; |
| 1909 | } |
| 1910 | return IN_STATUS_LINE; // Cursor didn't move |
| 1911 | } |
| 1912 | else if (on_sep_line && which_button == MOUSE_LEFT) |
| 1913 | { |
| 1914 | if (dragwin != NULL) |
| 1915 | { |
| 1916 | // Drag the separator column |
| 1917 | count = col - dragwin->w_wincol - dragwin->w_width + 1 |
| 1918 | - on_sep_line; |
| 1919 | win_drag_vsep_line(dragwin, count); |
| 1920 | did_drag |= count; |
| 1921 | } |
| 1922 | return IN_SEP_LINE; // Cursor didn't move |
| 1923 | } |
| 1924 | #ifdef FEAT_MENU |
| 1925 | else if (in_winbar) |
| 1926 | { |
| 1927 | // After a click on the window toolbar don't start Visual mode. |
| 1928 | return IN_OTHER_WIN | MOUSE_WINBAR; |
| 1929 | } |
| 1930 | #endif |
| 1931 | else // keep_window_focus must be TRUE |
| 1932 | { |
| 1933 | // before moving the cursor for a left click, stop Visual mode |
| 1934 | if (flags & MOUSE_MAY_STOP_VIS) |
| 1935 | { |
Bram Moolenaar | 4f3c57f | 2021-06-03 22:11:08 +0200 | [diff] [blame] | 1936 | end_visual_mode_keep_button(); |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 1937 | redraw_curbuf_later(UPD_INVERTED); // delete the inversion |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1938 | } |
| 1939 | |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 1940 | #if defined(FEAT_CLIPBOARD) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1941 | // Continue a modeless selection in another window. |
| 1942 | if (cmdwin_type != 0 && row < curwin->w_winrow) |
| 1943 | return IN_OTHER_WIN; |
| 1944 | #endif |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 1945 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1946 | if (in_popup_win) |
| 1947 | { |
| 1948 | if (popup_dragwin != NULL) |
| 1949 | { |
| 1950 | // dragging a popup window |
| 1951 | popup_drag(popup_dragwin); |
| 1952 | return IN_UNKNOWN; |
| 1953 | } |
| 1954 | // continue a modeless selection in a popup window |
| 1955 | click_in_popup_win = NULL; |
| 1956 | return IN_OTHER_WIN; |
| 1957 | } |
| 1958 | #endif |
| 1959 | |
| 1960 | row -= W_WINROW(curwin); |
| 1961 | col -= curwin->w_wincol; |
| 1962 | |
| 1963 | // When clicking beyond the end of the window, scroll the screen. |
| 1964 | // Scroll by however many rows outside the window we are. |
| 1965 | if (row < 0) |
| 1966 | { |
| 1967 | count = 0; |
| 1968 | for (first = TRUE; curwin->w_topline > 1; ) |
| 1969 | { |
| 1970 | #ifdef FEAT_DIFF |
| 1971 | if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) |
| 1972 | ++count; |
| 1973 | else |
| 1974 | #endif |
| 1975 | count += plines(curwin->w_topline - 1); |
| 1976 | if (!first && count > -row) |
| 1977 | break; |
| 1978 | first = FALSE; |
| 1979 | #ifdef FEAT_FOLDING |
| 1980 | (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL); |
| 1981 | #endif |
| 1982 | #ifdef FEAT_DIFF |
| 1983 | if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) |
| 1984 | ++curwin->w_topfill; |
| 1985 | else |
| 1986 | #endif |
| 1987 | { |
| 1988 | --curwin->w_topline; |
| 1989 | #ifdef FEAT_DIFF |
| 1990 | curwin->w_topfill = 0; |
| 1991 | #endif |
| 1992 | } |
| 1993 | } |
| 1994 | #ifdef FEAT_DIFF |
| 1995 | check_topfill(curwin, FALSE); |
| 1996 | #endif |
| 1997 | curwin->w_valid &= |
| 1998 | ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 1999 | redraw_later(UPD_VALID); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2000 | row = 0; |
| 2001 | } |
| 2002 | else if (row >= curwin->w_height) |
| 2003 | { |
| 2004 | count = 0; |
| 2005 | for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; ) |
| 2006 | { |
| 2007 | #ifdef FEAT_DIFF |
| 2008 | if (curwin->w_topfill > 0) |
| 2009 | ++count; |
| 2010 | else |
| 2011 | #endif |
| 2012 | count += plines(curwin->w_topline); |
| 2013 | if (!first && count > row - curwin->w_height + 1) |
| 2014 | break; |
| 2015 | first = FALSE; |
| 2016 | #ifdef FEAT_FOLDING |
| 2017 | if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline) |
| 2018 | && curwin->w_topline == curbuf->b_ml.ml_line_count) |
| 2019 | break; |
| 2020 | #endif |
| 2021 | #ifdef FEAT_DIFF |
| 2022 | if (curwin->w_topfill > 0) |
| 2023 | --curwin->w_topfill; |
| 2024 | else |
| 2025 | #endif |
| 2026 | { |
| 2027 | ++curwin->w_topline; |
| 2028 | #ifdef FEAT_DIFF |
| 2029 | curwin->w_topfill = |
| 2030 | diff_check_fill(curwin, curwin->w_topline); |
| 2031 | #endif |
| 2032 | } |
| 2033 | } |
| 2034 | #ifdef FEAT_DIFF |
| 2035 | check_topfill(curwin, FALSE); |
| 2036 | #endif |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 2037 | redraw_later(UPD_VALID); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2038 | curwin->w_valid &= |
| 2039 | ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); |
| 2040 | row = curwin->w_height - 1; |
| 2041 | } |
| 2042 | else if (row == 0) |
| 2043 | { |
| 2044 | // When dragging the mouse, while the text has been scrolled up as |
| 2045 | // far as it goes, moving the mouse in the top line should scroll |
| 2046 | // the text down (done later when recomputing w_topline). |
| 2047 | if (mouse_dragging > 0 |
| 2048 | && curwin->w_cursor.lnum |
| 2049 | == curwin->w_buffer->b_ml.ml_line_count |
| 2050 | && curwin->w_cursor.lnum == curwin->w_topline) |
| 2051 | curwin->w_valid &= ~(VALID_TOPLINE); |
| 2052 | } |
| 2053 | } |
| 2054 | |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 2055 | if (prev_row >= 0 && prev_row < Rows && prev_col >= 0 && prev_col <= Columns |
| 2056 | && ScreenLines != NULL) |
| 2057 | { |
| 2058 | int off = LineOffset[prev_row] + prev_col; |
| 2059 | |
| 2060 | // Only use ScreenCols[] after the window was redrawn. Mainly matters |
| 2061 | // for tests, a user would not click before redrawing. |
Bram Moolenaar | 8f49e69 | 2022-08-09 14:19:40 +0100 | [diff] [blame] | 2062 | // Do not use when 'virtualedit' is active. |
Bram Moolenaar | a4d158b | 2022-08-14 14:17:45 +0100 | [diff] [blame] | 2063 | if (curwin->w_redr_type <= UPD_VALID_NO_UPDATE && !virtual_active()) |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 2064 | col_from_screen = ScreenCols[off]; |
| 2065 | #ifdef FEAT_FOLDING |
| 2066 | // Remember the character under the mouse, it might be a '-' or '+' in |
| 2067 | // the fold column. |
| 2068 | mouse_char = ScreenLines[off]; |
| 2069 | #endif |
| 2070 | } |
| 2071 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2072 | #ifdef FEAT_FOLDING |
| 2073 | // Check for position outside of the fold column. |
| 2074 | if ( |
| 2075 | # ifdef FEAT_RIGHTLEFT |
| 2076 | curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc : |
| 2077 | # endif |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 2078 | col >= curwin->w_p_fdc + (cmdwin_type == 0 ? 0 : 1) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2079 | ) |
| 2080 | mouse_char = ' '; |
| 2081 | #endif |
| 2082 | |
| 2083 | // compute the position in the buffer line from the posn on the screen |
| 2084 | if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum, NULL)) |
| 2085 | mouse_past_bottom = TRUE; |
| 2086 | |
| 2087 | // Start Visual mode before coladvance(), for when 'sel' != "old" |
| 2088 | if ((flags & MOUSE_MAY_VIS) && !VIsual_active) |
| 2089 | { |
| 2090 | check_visual_highlight(); |
| 2091 | VIsual = old_cursor; |
| 2092 | VIsual_active = TRUE; |
| 2093 | VIsual_reselect = TRUE; |
| 2094 | // if 'selectmode' contains "mouse", start Select mode |
| 2095 | may_start_select('o'); |
| 2096 | setmouse(); |
| 2097 | if (p_smd && msg_silent == 0) |
| 2098 | redraw_cmdline = TRUE; // show visual mode later |
| 2099 | } |
| 2100 | |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 2101 | if (col_from_screen >= 0) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2102 | { |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 2103 | // Use the column from ScreenCols[], it is accurate also after |
| 2104 | // concealed characters. |
| 2105 | curwin->w_cursor.col = col_from_screen; |
| 2106 | if (col_from_screen == MAXCOL) |
| 2107 | { |
| 2108 | curwin->w_curswant = col_from_screen; |
| 2109 | curwin->w_set_curswant = FALSE; // May still have been TRUE |
| 2110 | mouse_past_eol = TRUE; |
| 2111 | if (inclusive != NULL) |
| 2112 | *inclusive = TRUE; |
| 2113 | } |
| 2114 | else |
| 2115 | { |
| 2116 | curwin->w_set_curswant = TRUE; |
| 2117 | if (inclusive != NULL) |
| 2118 | *inclusive = FALSE; |
| 2119 | } |
| 2120 | check_cursor_col(); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2121 | } |
Bram Moolenaar | b908188 | 2022-07-09 04:56:24 +0100 | [diff] [blame] | 2122 | else |
| 2123 | { |
| 2124 | curwin->w_curswant = col; |
| 2125 | curwin->w_set_curswant = FALSE; // May still have been TRUE |
| 2126 | if (coladvance(col) == FAIL) // Mouse click beyond end of line |
| 2127 | { |
| 2128 | if (inclusive != NULL) |
| 2129 | *inclusive = TRUE; |
| 2130 | mouse_past_eol = TRUE; |
| 2131 | } |
| 2132 | else if (inclusive != NULL) |
| 2133 | *inclusive = FALSE; |
| 2134 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2135 | |
| 2136 | count = IN_BUFFER; |
| 2137 | if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum |
| 2138 | || curwin->w_cursor.col != old_cursor.col) |
| 2139 | count |= CURSOR_MOVED; // Cursor has moved |
| 2140 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2141 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 96ba25a | 2022-07-04 17:34:33 +0100 | [diff] [blame] | 2142 | if (mouse_char == curwin->w_fill_chars.foldclosed) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2143 | count |= MOUSE_FOLD_OPEN; |
| 2144 | else if (mouse_char != ' ') |
| 2145 | count |= MOUSE_FOLD_CLOSE; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2146 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2147 | |
| 2148 | return count; |
| 2149 | } |
| 2150 | |
| 2151 | /* |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 2152 | * Make a horizontal scroll to "leftcol". |
| 2153 | * Return TRUE if the cursor moved, FALSE otherwise. |
| 2154 | */ |
| 2155 | int |
| 2156 | do_mousescroll_horiz(long_u leftcol) |
| 2157 | { |
| 2158 | if (curwin->w_p_wrap) |
| 2159 | return FALSE; // no wrapping, no scrolling |
| 2160 | |
| 2161 | if (curwin->w_leftcol == (colnr_T)leftcol) |
| 2162 | return FALSE; // already there |
| 2163 | |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 2164 | // When the line of the cursor is too short, move the cursor to the |
| 2165 | // longest visible line. |
| 2166 | if ( |
| 2167 | #ifdef FEAT_GUI |
| 2168 | (!gui.in_use || vim_strchr(p_go, GO_HORSCROLL) == NULL) && |
| 2169 | #endif |
| 2170 | !virtual_active() |
| 2171 | && (long)leftcol > scroll_line_len(curwin->w_cursor.lnum)) |
| 2172 | { |
| 2173 | curwin->w_cursor.lnum = ui_find_longest_lnum(); |
| 2174 | curwin->w_cursor.col = 0; |
| 2175 | } |
| 2176 | |
Bram Moolenaar | 0c34d56 | 2022-11-18 14:07:20 +0000 | [diff] [blame] | 2177 | return set_leftcol((colnr_T)leftcol); |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 2178 | } |
| 2179 | |
| 2180 | /* |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2181 | * Normal and Visual modes implementation for scrolling in direction |
| 2182 | * "cap->arg", which is one of the MSCR_ values. |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2183 | */ |
| 2184 | void |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2185 | nv_mousescroll(cmdarg_T *cap) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2186 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2187 | win_T *old_curwin = curwin; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2188 | |
| 2189 | if (mouse_row >= 0 && mouse_col >= 0) |
| 2190 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2191 | // Find the window at the mouse pointer coordinates. |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2192 | // NOTE: Must restore "curwin" to "old_curwin" before returning! |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2193 | int row = mouse_row; |
| 2194 | int col = mouse_col; |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2195 | curwin = mouse_find_win(&row, &col, FIND_POPUP); |
| 2196 | if (curwin == NULL) |
| 2197 | { |
| 2198 | curwin = old_curwin; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2199 | return; |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2200 | } |
| 2201 | |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 2202 | #ifdef FEAT_PROP_POPUP |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2203 | if (WIN_IS_POPUP(curwin) && !curwin->w_has_scrollbar) |
| 2204 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2205 | // cannot scroll this popup window |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2206 | curwin = old_curwin; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2207 | return; |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2208 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2209 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2210 | curbuf = curwin->w_buffer; |
| 2211 | } |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 2212 | |
Christopher Plewright | ff95ce0 | 2022-11-19 10:47:49 +0000 | [diff] [blame] | 2213 | // Call the common mouse scroll function shared with other modes. |
| 2214 | do_mousescroll(cap); |
Christopher Plewright | 44c2209 | 2022-11-15 17:43:36 +0000 | [diff] [blame] | 2215 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2216 | #ifdef FEAT_SYN_HL |
| 2217 | if (curwin != old_curwin && curwin->w_p_cul) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2218 | redraw_for_cursorline(curwin); |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2219 | #endif |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2220 | curwin->w_redr_status = TRUE; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2221 | curwin = old_curwin; |
| 2222 | curbuf = curwin->w_buffer; |
| 2223 | } |
| 2224 | |
| 2225 | /* |
| 2226 | * Mouse clicks and drags. |
| 2227 | */ |
| 2228 | void |
| 2229 | nv_mouse(cmdarg_T *cap) |
| 2230 | { |
| 2231 | (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0); |
| 2232 | } |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2233 | |
Bram Moolenaar | 85eee5b | 2021-06-03 20:34:57 +0200 | [diff] [blame] | 2234 | static int held_button = MOUSE_RELEASE; |
| 2235 | |
| 2236 | void |
| 2237 | reset_held_button() |
| 2238 | { |
| 2239 | held_button = MOUSE_RELEASE; |
| 2240 | } |
| 2241 | |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2242 | /* |
| 2243 | * Check if typebuf 'tp' contains a terminal mouse code and returns the |
| 2244 | * modifiers found in typebuf in 'modifiers'. |
| 2245 | */ |
| 2246 | int |
| 2247 | check_termcode_mouse( |
| 2248 | char_u *tp, |
| 2249 | int *slen, |
| 2250 | char_u *key_name, |
| 2251 | char_u *modifiers_start, |
| 2252 | int idx, |
| 2253 | int *modifiers) |
| 2254 | { |
| 2255 | int j; |
| 2256 | char_u *p; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2257 | #if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2258 | || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) |
| 2259 | char_u bytes[6]; |
| 2260 | int num_bytes; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2261 | #endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2262 | int mouse_code = 0; // init for GCC |
| 2263 | int is_click, is_drag; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2264 | int is_release, release_is_ambiguous; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2265 | int wheel_code = 0; |
| 2266 | int current_button; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2267 | static int orig_num_clicks = 1; |
| 2268 | static int orig_mouse_code = 0x0; |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2269 | #ifdef CHECK_DOUBLE_CLICK |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2270 | static int orig_mouse_col = 0; |
| 2271 | static int orig_mouse_row = 0; |
| 2272 | static struct timeval orig_mouse_time = {0, 0}; |
| 2273 | // time of previous mouse click |
| 2274 | struct timeval mouse_time; // time of current mouse click |
| 2275 | long timediff; // elapsed time in msec |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2276 | #endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2277 | |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2278 | is_click = is_drag = is_release = release_is_ambiguous = FALSE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2279 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2280 | #if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \ |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2281 | || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE) |
| 2282 | if (key_name[0] == KS_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2283 | # ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2284 | || key_name[0] == KS_GPM_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2285 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2286 | ) |
| 2287 | { |
| 2288 | /* |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2289 | * For xterm we get "<t_mouse>scr", where s == encoded button state: |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2290 | * 0x20 = left button down |
| 2291 | * 0x21 = middle button down |
| 2292 | * 0x22 = right button down |
| 2293 | * 0x23 = any button release |
| 2294 | * 0x60 = button 4 down (scroll wheel down) |
| 2295 | * 0x61 = button 5 down (scroll wheel up) |
| 2296 | * add 0x04 for SHIFT |
| 2297 | * add 0x08 for ALT |
| 2298 | * add 0x10 for CTRL |
| 2299 | * add 0x20 for mouse drag (0x40 is drag with left button) |
| 2300 | * add 0x40 for mouse move (0x80 is move, 0x81 too) |
| 2301 | * 0x43 (drag + release) is also move |
| 2302 | * c == column + ' ' + 1 == column + 33 |
| 2303 | * r == row + ' ' + 1 == row + 33 |
| 2304 | * |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2305 | * The coordinates are passed on through global variables. Ugly, but |
| 2306 | * this avoids trouble with mouse clicks at an unexpected moment and |
| 2307 | * allows for mapping them. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2308 | */ |
| 2309 | for (;;) |
| 2310 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2311 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2312 | if (gui.in_use) |
| 2313 | { |
| 2314 | // GUI uses more bits for columns > 223 |
| 2315 | num_bytes = get_bytes_from_buf(tp + *slen, bytes, 5); |
| 2316 | if (num_bytes == -1) // not enough coordinates |
| 2317 | return -1; |
| 2318 | mouse_code = bytes[0]; |
| 2319 | mouse_col = 128 * (bytes[1] - ' ' - 1) |
| 2320 | + bytes[2] - ' ' - 1; |
| 2321 | mouse_row = 128 * (bytes[3] - ' ' - 1) |
| 2322 | + bytes[4] - ' ' - 1; |
| 2323 | } |
| 2324 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2325 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2326 | { |
| 2327 | num_bytes = get_bytes_from_buf(tp + *slen, bytes, 3); |
| 2328 | if (num_bytes == -1) // not enough coordinates |
| 2329 | return -1; |
| 2330 | mouse_code = bytes[0]; |
| 2331 | mouse_col = bytes[1] - ' ' - 1; |
| 2332 | mouse_row = bytes[2] - ' ' - 1; |
| 2333 | } |
| 2334 | *slen += num_bytes; |
| 2335 | |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2336 | // If the following bytes is also a mouse code and it has the same |
| 2337 | // code, dump this one and get the next. This makes dragging a |
| 2338 | // whole lot faster. |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2339 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2340 | if (gui.in_use) |
| 2341 | j = 3; |
| 2342 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2343 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2344 | j = get_termcode_len(idx); |
| 2345 | if (STRNCMP(tp, tp + *slen, (size_t)j) == 0 |
| 2346 | && tp[*slen + j] == mouse_code |
| 2347 | && tp[*slen + j + 1] != NUL |
| 2348 | && tp[*slen + j + 2] != NUL |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2349 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2350 | && (!gui.in_use |
| 2351 | || (tp[*slen + j + 3] != NUL |
| 2352 | && tp[*slen + j + 4] != NUL)) |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2353 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2354 | ) |
| 2355 | *slen += j; |
| 2356 | else |
| 2357 | break; |
| 2358 | } |
| 2359 | } |
| 2360 | |
| 2361 | if (key_name[0] == KS_URXVT_MOUSE |
| 2362 | || key_name[0] == KS_SGR_MOUSE |
| 2363 | || key_name[0] == KS_SGR_MOUSE_RELEASE) |
| 2364 | { |
| 2365 | // URXVT 1015 mouse reporting mode: |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2366 | // Almost identical to xterm mouse mode, except the values are decimal |
| 2367 | // instead of bytes. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2368 | // |
| 2369 | // \033[%d;%d;%dM |
| 2370 | // ^-- row |
| 2371 | // ^----- column |
| 2372 | // ^-------- code |
| 2373 | // |
| 2374 | // SGR 1006 mouse reporting mode: |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2375 | // Almost identical to xterm mouse mode, except the values are decimal |
| 2376 | // instead of bytes. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2377 | // |
| 2378 | // \033[<%d;%d;%dM |
| 2379 | // ^-- row |
| 2380 | // ^----- column |
| 2381 | // ^-------- code |
| 2382 | // |
Bram Moolenaar | 6ed545e | 2022-05-09 20:09:23 +0100 | [diff] [blame] | 2383 | // \033[<%d;%d;%dm : mouse release event |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2384 | // ^-- row |
| 2385 | // ^----- column |
| 2386 | // ^-------- code |
| 2387 | p = modifiers_start; |
| 2388 | if (p == NULL) |
| 2389 | return -1; |
| 2390 | |
| 2391 | mouse_code = getdigits(&p); |
| 2392 | if (*p++ != ';') |
| 2393 | return -1; |
| 2394 | |
| 2395 | // when mouse reporting is SGR, add 32 to mouse code |
| 2396 | if (key_name[0] == KS_SGR_MOUSE |
| 2397 | || key_name[0] == KS_SGR_MOUSE_RELEASE) |
| 2398 | mouse_code += 32; |
| 2399 | |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2400 | mouse_col = getdigits(&p) - 1; |
| 2401 | if (*p++ != ';') |
| 2402 | return -1; |
| 2403 | |
| 2404 | mouse_row = getdigits(&p) - 1; |
| 2405 | |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2406 | // The modifiers were the mouse coordinates, not the modifier keys |
| 2407 | // (alt/shift/ctrl/meta) state. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2408 | *modifiers = 0; |
| 2409 | } |
| 2410 | |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2411 | if (key_name[0] == KS_SGR_MOUSE |
| 2412 | || key_name[0] == KS_SGR_MOUSE_RELEASE) |
| 2413 | { |
| 2414 | if (key_name[0] == KS_SGR_MOUSE_RELEASE) |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2415 | { |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2416 | is_release = TRUE; |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2417 | // This is used below to set held_button. |
| 2418 | mouse_code |= MOUSE_RELEASE; |
| 2419 | } |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2420 | } |
| 2421 | else |
| 2422 | { |
| 2423 | release_is_ambiguous = TRUE; |
| 2424 | if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE) |
| 2425 | is_release = TRUE; |
| 2426 | } |
| 2427 | |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2428 | if (key_name[0] == KS_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2429 | # ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2430 | || key_name[0] == KS_GPM_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2431 | # endif |
| 2432 | # ifdef FEAT_MOUSE_URXVT |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2433 | || key_name[0] == KS_URXVT_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2434 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2435 | || key_name[0] == KS_SGR_MOUSE |
| 2436 | || key_name[0] == KS_SGR_MOUSE_RELEASE) |
| 2437 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2438 | # if !defined(MSWIN) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2439 | /* |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2440 | * Handle old style mouse events. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2441 | * Recognize the xterm mouse wheel, but not in the GUI, the |
| 2442 | * Linux console with GPM and the MS-DOS or Win32 console |
| 2443 | * (multi-clicks use >= 0x60). |
| 2444 | */ |
| 2445 | if (mouse_code >= MOUSEWHEEL_LOW |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2446 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2447 | && !gui.in_use |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2448 | # endif |
| 2449 | # ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2450 | && key_name[0] != KS_GPM_MOUSE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2451 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2452 | ) |
| 2453 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2454 | # if defined(UNIX) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2455 | if (use_xterm_mouse() > 1 && mouse_code >= 0x80) |
| 2456 | // mouse-move event, using MOUSE_DRAG works |
| 2457 | mouse_code = MOUSE_DRAG; |
| 2458 | else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2459 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2460 | // Keep the mouse_code before it's changed, so that we |
| 2461 | // remember that it was a mouse wheel click. |
| 2462 | wheel_code = mouse_code; |
| 2463 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2464 | # ifdef FEAT_MOUSE_XTERM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2465 | else if (held_button == MOUSE_RELEASE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2466 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2467 | && !gui.in_use |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2468 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2469 | && (mouse_code == 0x23 || mouse_code == 0x24 |
| 2470 | || mouse_code == 0x40 || mouse_code == 0x41)) |
| 2471 | { |
| 2472 | // Apparently 0x23 and 0x24 are used by rxvt scroll wheel. |
| 2473 | // And 0x40 and 0x41 are used by some xterm emulator. |
| 2474 | wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23) |
Bram Moolenaar | d6212b8 | 2022-08-03 15:48:33 +0100 | [diff] [blame] | 2475 | + MOUSEWHEEL_LOW; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2476 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2477 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2478 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2479 | # if defined(UNIX) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2480 | else if (use_xterm_mouse() > 1) |
| 2481 | { |
| 2482 | if (mouse_code & MOUSE_DRAG_XTERM) |
| 2483 | mouse_code |= MOUSE_DRAG; |
| 2484 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2485 | # endif |
| 2486 | # ifdef FEAT_XCLIPBOARD |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2487 | else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK)) |
| 2488 | { |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2489 | if (is_release) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2490 | stop_xterm_trace(); |
| 2491 | else |
| 2492 | start_xterm_trace(mouse_code); |
| 2493 | } |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2494 | # endif |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2495 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2496 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2497 | #endif // !UNIX || FEAT_MOUSE_XTERM |
| 2498 | #ifdef FEAT_MOUSE_NET |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2499 | if (key_name[0] == KS_NETTERM_MOUSE) |
| 2500 | { |
| 2501 | int mc, mr; |
| 2502 | |
| 2503 | // expect a rather limited sequence like: balancing { |
| 2504 | // \033}6,45\r |
| 2505 | // '6' is the row, 45 is the column |
| 2506 | p = tp + *slen; |
| 2507 | mr = getdigits(&p); |
| 2508 | if (*p++ != ',') |
| 2509 | return -1; |
| 2510 | mc = getdigits(&p); |
| 2511 | if (*p++ != '\r') |
| 2512 | return -1; |
| 2513 | |
| 2514 | mouse_col = mc - 1; |
| 2515 | mouse_row = mr - 1; |
| 2516 | mouse_code = MOUSE_LEFT; |
| 2517 | *slen += (int)(p - (tp + *slen)); |
| 2518 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2519 | #endif // FEAT_MOUSE_NET |
| 2520 | #ifdef FEAT_MOUSE_JSB |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2521 | if (key_name[0] == KS_JSBTERM_MOUSE) |
| 2522 | { |
| 2523 | int mult, val, iter, button, status; |
| 2524 | |
| 2525 | /* |
| 2526 | * JSBTERM Input Model |
| 2527 | * \033[0~zw uniq escape sequence |
| 2528 | * (L-x) Left button pressed - not pressed x not reporting |
| 2529 | * (M-x) Middle button pressed - not pressed x not reporting |
| 2530 | * (R-x) Right button pressed - not pressed x not reporting |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2531 | * (SDmdu) Single , Double click, m: mouse move, d: button down, |
| 2532 | * u: button up |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2533 | * ### X cursor position padded to 3 digits |
| 2534 | * ### Y cursor position padded to 3 digits |
| 2535 | * (s-x) SHIFT key pressed - not pressed x not reporting |
| 2536 | * (c-x) CTRL key pressed - not pressed x not reporting |
| 2537 | * \033\\ terminating sequence |
| 2538 | */ |
| 2539 | p = tp + *slen; |
| 2540 | button = mouse_code = 0; |
| 2541 | switch (*p++) |
| 2542 | { |
| 2543 | case 'L': button = 1; break; |
| 2544 | case '-': break; |
| 2545 | case 'x': break; // ignore sequence |
| 2546 | default: return -1; // Unknown Result |
| 2547 | } |
| 2548 | switch (*p++) |
| 2549 | { |
| 2550 | case 'M': button |= 2; break; |
| 2551 | case '-': break; |
| 2552 | case 'x': break; // ignore sequence |
| 2553 | default: return -1; // Unknown Result |
| 2554 | } |
| 2555 | switch (*p++) |
| 2556 | { |
| 2557 | case 'R': button |= 4; break; |
| 2558 | case '-': break; |
| 2559 | case 'x': break; // ignore sequence |
| 2560 | default: return -1; // Unknown Result |
| 2561 | } |
| 2562 | status = *p++; |
| 2563 | for (val = 0, mult = 100, iter = 0; iter < 3; iter++, |
| 2564 | mult /= 10, p++) |
| 2565 | if (*p >= '0' && *p <= '9') |
| 2566 | val += (*p - '0') * mult; |
| 2567 | else |
| 2568 | return -1; |
| 2569 | mouse_col = val; |
| 2570 | for (val = 0, mult = 100, iter = 0; iter < 3; iter++, |
| 2571 | mult /= 10, p++) |
| 2572 | if (*p >= '0' && *p <= '9') |
| 2573 | val += (*p - '0') * mult; |
| 2574 | else |
| 2575 | return -1; |
| 2576 | mouse_row = val; |
| 2577 | switch (*p++) |
| 2578 | { |
| 2579 | case 's': button |= 8; break; // SHIFT key Pressed |
| 2580 | case '-': break; // Not Pressed |
| 2581 | case 'x': break; // Not Reporting |
| 2582 | default: return -1; // Unknown Result |
| 2583 | } |
| 2584 | switch (*p++) |
| 2585 | { |
| 2586 | case 'c': button |= 16; break; // CTRL key Pressed |
| 2587 | case '-': break; // Not Pressed |
| 2588 | case 'x': break; // Not Reporting |
| 2589 | default: return -1; // Unknown Result |
| 2590 | } |
| 2591 | if (*p++ != '\033') |
| 2592 | return -1; |
| 2593 | if (*p++ != '\\') |
| 2594 | return -1; |
| 2595 | switch (status) |
| 2596 | { |
| 2597 | case 'D': // Double Click |
| 2598 | case 'S': // Single Click |
| 2599 | if (button & 1) mouse_code |= MOUSE_LEFT; |
| 2600 | if (button & 2) mouse_code |= MOUSE_MIDDLE; |
| 2601 | if (button & 4) mouse_code |= MOUSE_RIGHT; |
| 2602 | if (button & 8) mouse_code |= MOUSE_SHIFT; |
| 2603 | if (button & 16) mouse_code |= MOUSE_CTRL; |
| 2604 | break; |
| 2605 | case 'm': // Mouse move |
| 2606 | if (button & 1) mouse_code |= MOUSE_LEFT; |
| 2607 | if (button & 2) mouse_code |= MOUSE_MIDDLE; |
| 2608 | if (button & 4) mouse_code |= MOUSE_RIGHT; |
| 2609 | if (button & 8) mouse_code |= MOUSE_SHIFT; |
| 2610 | if (button & 16) mouse_code |= MOUSE_CTRL; |
| 2611 | if ((button & 7) != 0) |
| 2612 | { |
| 2613 | held_button = mouse_code; |
| 2614 | mouse_code |= MOUSE_DRAG; |
| 2615 | } |
| 2616 | is_drag = TRUE; |
| 2617 | showmode(); |
| 2618 | break; |
| 2619 | case 'd': // Button Down |
| 2620 | if (button & 1) mouse_code |= MOUSE_LEFT; |
| 2621 | if (button & 2) mouse_code |= MOUSE_MIDDLE; |
| 2622 | if (button & 4) mouse_code |= MOUSE_RIGHT; |
| 2623 | if (button & 8) mouse_code |= MOUSE_SHIFT; |
| 2624 | if (button & 16) mouse_code |= MOUSE_CTRL; |
| 2625 | break; |
| 2626 | case 'u': // Button Up |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2627 | is_release = TRUE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2628 | if (button & 1) |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2629 | mouse_code |= MOUSE_LEFT; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2630 | if (button & 2) |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2631 | mouse_code |= MOUSE_MIDDLE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2632 | if (button & 4) |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2633 | mouse_code |= MOUSE_RIGHT; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2634 | if (button & 8) |
| 2635 | mouse_code |= MOUSE_SHIFT; |
| 2636 | if (button & 16) |
| 2637 | mouse_code |= MOUSE_CTRL; |
| 2638 | break; |
| 2639 | default: return -1; // Unknown Result |
| 2640 | } |
| 2641 | |
| 2642 | *slen += (p - (tp + *slen)); |
| 2643 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2644 | #endif // FEAT_MOUSE_JSB |
| 2645 | #ifdef FEAT_MOUSE_DEC |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2646 | if (key_name[0] == KS_DEC_MOUSE) |
| 2647 | { |
| 2648 | /* |
| 2649 | * The DEC Locator Input Model |
| 2650 | * Netterm delivers the code sequence: |
| 2651 | * \033[2;4;24;80&w (left button down) |
| 2652 | * \033[3;0;24;80&w (left button up) |
| 2653 | * \033[6;1;24;80&w (right button down) |
| 2654 | * \033[7;0;24;80&w (right button up) |
| 2655 | * CSI Pe ; Pb ; Pr ; Pc ; Pp & w |
| 2656 | * Pe is the event code |
| 2657 | * Pb is the button code |
| 2658 | * Pr is the row coordinate |
| 2659 | * Pc is the column coordinate |
| 2660 | * Pp is the third coordinate (page number) |
| 2661 | * Pe, the event code indicates what event caused this report |
| 2662 | * The following event codes are defined: |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2663 | * 0 - request, the terminal received an explicit request for a |
Bram Moolenaar | 6ed545e | 2022-05-09 20:09:23 +0100 | [diff] [blame] | 2664 | * locator report, but the locator is unavailable |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2665 | * 1 - request, the terminal received an explicit request for a |
Bram Moolenaar | 6ed545e | 2022-05-09 20:09:23 +0100 | [diff] [blame] | 2666 | * locator report |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2667 | * 2 - left button down |
| 2668 | * 3 - left button up |
| 2669 | * 4 - middle button down |
| 2670 | * 5 - middle button up |
| 2671 | * 6 - right button down |
| 2672 | * 7 - right button up |
| 2673 | * 8 - fourth button down |
| 2674 | * 9 - fourth button up |
| 2675 | * 10 - locator outside filter rectangle |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2676 | * Pb, the button code, ASCII decimal 0-15 indicating which buttons are |
| 2677 | * down if any. The state of the four buttons on the locator |
| 2678 | * correspond to the low four bits of the decimal value, "1" means |
| 2679 | * button depressed |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2680 | * 0 - no buttons down, |
| 2681 | * 1 - right, |
| 2682 | * 2 - middle, |
| 2683 | * 4 - left, |
| 2684 | * 8 - fourth |
| 2685 | * Pr is the row coordinate of the locator position in the page, |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2686 | * encoded as an ASCII decimal value. If Pr is omitted, the locator |
| 2687 | * position is undefined (outside the terminal window for example). |
| 2688 | * Pc is the column coordinate of the locator position in the page, |
| 2689 | * encoded as an ASCII decimal value. If Pc is omitted, the locator |
| 2690 | * position is undefined (outside the terminal window for example). |
| 2691 | * Pp is the page coordinate of the locator position encoded as an |
| 2692 | * ASCII decimal value. The page coordinate may be omitted if the |
| 2693 | * locator is on page one (the default). We ignore it anyway. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2694 | */ |
| 2695 | int Pe, Pb, Pr, Pc; |
| 2696 | |
| 2697 | p = tp + *slen; |
| 2698 | |
| 2699 | // get event status |
| 2700 | Pe = getdigits(&p); |
| 2701 | if (*p++ != ';') |
| 2702 | return -1; |
| 2703 | |
| 2704 | // get button status |
| 2705 | Pb = getdigits(&p); |
| 2706 | if (*p++ != ';') |
| 2707 | return -1; |
| 2708 | |
| 2709 | // get row status |
| 2710 | Pr = getdigits(&p); |
| 2711 | if (*p++ != ';') |
| 2712 | return -1; |
| 2713 | |
| 2714 | // get column status |
| 2715 | Pc = getdigits(&p); |
| 2716 | |
| 2717 | // the page parameter is optional |
| 2718 | if (*p == ';') |
| 2719 | { |
| 2720 | p++; |
| 2721 | (void)getdigits(&p); |
| 2722 | } |
| 2723 | if (*p++ != '&') |
| 2724 | return -1; |
| 2725 | if (*p++ != 'w') |
| 2726 | return -1; |
| 2727 | |
| 2728 | mouse_code = 0; |
| 2729 | switch (Pe) |
| 2730 | { |
| 2731 | case 0: return -1; // position request while unavailable |
| 2732 | case 1: // a response to a locator position request includes |
| 2733 | // the status of all buttons |
| 2734 | Pb &= 7; // mask off and ignore fourth button |
| 2735 | if (Pb & 4) |
| 2736 | mouse_code = MOUSE_LEFT; |
| 2737 | if (Pb & 2) |
| 2738 | mouse_code = MOUSE_MIDDLE; |
| 2739 | if (Pb & 1) |
| 2740 | mouse_code = MOUSE_RIGHT; |
| 2741 | if (Pb) |
| 2742 | { |
| 2743 | held_button = mouse_code; |
| 2744 | mouse_code |= MOUSE_DRAG; |
| 2745 | WantQueryMouse = TRUE; |
| 2746 | } |
| 2747 | is_drag = TRUE; |
| 2748 | showmode(); |
| 2749 | break; |
| 2750 | case 2: mouse_code = MOUSE_LEFT; |
| 2751 | WantQueryMouse = TRUE; |
| 2752 | break; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2753 | case 3: mouse_code = MOUSE_LEFT; |
| 2754 | is_release = TRUE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2755 | break; |
| 2756 | case 4: mouse_code = MOUSE_MIDDLE; |
| 2757 | WantQueryMouse = TRUE; |
| 2758 | break; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2759 | case 5: mouse_code = MOUSE_MIDDLE; |
| 2760 | is_release = TRUE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2761 | break; |
| 2762 | case 6: mouse_code = MOUSE_RIGHT; |
| 2763 | WantQueryMouse = TRUE; |
| 2764 | break; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2765 | case 7: mouse_code = MOUSE_RIGHT; |
| 2766 | is_release = TRUE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2767 | break; |
| 2768 | case 8: return -1; // fourth button down |
| 2769 | case 9: return -1; // fourth button up |
| 2770 | case 10: return -1; // mouse outside of filter rectangle |
| 2771 | default: return -1; // should never occur |
| 2772 | } |
| 2773 | |
| 2774 | mouse_col = Pc - 1; |
| 2775 | mouse_row = Pr - 1; |
| 2776 | |
| 2777 | *slen += (int)(p - (tp + *slen)); |
| 2778 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2779 | #endif // FEAT_MOUSE_DEC |
| 2780 | #ifdef FEAT_MOUSE_PTERM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2781 | if (key_name[0] == KS_PTERM_MOUSE) |
| 2782 | { |
| 2783 | int button, num_clicks, action; |
| 2784 | |
| 2785 | p = tp + *slen; |
| 2786 | |
| 2787 | action = getdigits(&p); |
| 2788 | if (*p++ != ';') |
| 2789 | return -1; |
| 2790 | |
| 2791 | mouse_row = getdigits(&p); |
| 2792 | if (*p++ != ';') |
| 2793 | return -1; |
| 2794 | mouse_col = getdigits(&p); |
| 2795 | if (*p++ != ';') |
| 2796 | return -1; |
| 2797 | |
| 2798 | button = getdigits(&p); |
| 2799 | mouse_code = 0; |
| 2800 | |
| 2801 | switch (button) |
| 2802 | { |
| 2803 | case 4: mouse_code = MOUSE_LEFT; break; |
| 2804 | case 1: mouse_code = MOUSE_RIGHT; break; |
| 2805 | case 2: mouse_code = MOUSE_MIDDLE; break; |
| 2806 | default: return -1; |
| 2807 | } |
| 2808 | |
| 2809 | switch (action) |
| 2810 | { |
| 2811 | case 31: // Initial press |
| 2812 | if (*p++ != ';') |
| 2813 | return -1; |
| 2814 | |
| 2815 | num_clicks = getdigits(&p); // Not used |
| 2816 | break; |
| 2817 | |
| 2818 | case 32: // Release |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2819 | is_release = TRUE; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2820 | break; |
| 2821 | |
| 2822 | case 33: // Drag |
| 2823 | held_button = mouse_code; |
| 2824 | mouse_code |= MOUSE_DRAG; |
| 2825 | break; |
| 2826 | |
| 2827 | default: |
| 2828 | return -1; |
| 2829 | } |
| 2830 | |
| 2831 | if (*p++ != 't') |
| 2832 | return -1; |
| 2833 | |
| 2834 | *slen += (p - (tp + *slen)); |
| 2835 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2836 | #endif // FEAT_MOUSE_PTERM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2837 | |
| 2838 | // Interpret the mouse code |
| 2839 | current_button = (mouse_code & MOUSE_CLICK_MASK); |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2840 | if (is_release) |
| 2841 | current_button |= MOUSE_RELEASE; |
| 2842 | |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2843 | if (current_button == MOUSE_RELEASE |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2844 | #ifdef FEAT_MOUSE_XTERM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2845 | && wheel_code == 0 |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2846 | #endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2847 | ) |
| 2848 | { |
| 2849 | /* |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2850 | * If we get a mouse drag or release event when there is no mouse |
| 2851 | * button held down (held_button == MOUSE_RELEASE), produce a K_IGNORE |
| 2852 | * below. |
| 2853 | * (can happen when you hold down two buttons and then let them go, or |
| 2854 | * click in the menu bar, but not on a menu, and drag into the text). |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2855 | */ |
| 2856 | if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG) |
| 2857 | is_drag = TRUE; |
| 2858 | current_button = held_button; |
| 2859 | } |
Bram Moolenaar | d6212b8 | 2022-08-03 15:48:33 +0100 | [diff] [blame] | 2860 | else |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2861 | { |
Bram Moolenaar | d6212b8 | 2022-08-03 15:48:33 +0100 | [diff] [blame] | 2862 | if (wheel_code == 0) |
| 2863 | { |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2864 | #ifdef CHECK_DOUBLE_CLICK |
| 2865 | # ifdef FEAT_MOUSE_GPM |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2866 | /* |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2867 | * Only for Unix, when GUI not active, we handle multi-clicks here, but |
| 2868 | * not for GPM mouse events. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2869 | */ |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2870 | # ifdef FEAT_GUI |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2871 | if (key_name[0] != KS_GPM_MOUSE && !gui.in_use) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2872 | # else |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2873 | if (key_name[0] != KS_GPM_MOUSE) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2874 | # endif |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2875 | # else |
| 2876 | # ifdef FEAT_GUI |
| 2877 | if (!gui.in_use) |
| 2878 | # endif |
| 2879 | # endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2880 | { |
| 2881 | /* |
| 2882 | * Compute the time elapsed since the previous mouse click. |
| 2883 | */ |
| 2884 | gettimeofday(&mouse_time, NULL); |
| 2885 | if (orig_mouse_time.tv_sec == 0) |
| 2886 | { |
| 2887 | /* |
| 2888 | * Avoid computing the difference between mouse_time |
| 2889 | * and orig_mouse_time for the first click, as the |
| 2890 | * difference would be huge and would cause |
| 2891 | * multiplication overflow. |
| 2892 | */ |
| 2893 | timediff = p_mouset; |
| 2894 | } |
| 2895 | else |
Bram Moolenaar | 85c3502 | 2019-11-22 22:21:59 +0100 | [diff] [blame] | 2896 | timediff = time_diff_ms(&orig_mouse_time, &mouse_time); |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2897 | orig_mouse_time = mouse_time; |
| 2898 | if (mouse_code == orig_mouse_code |
| 2899 | && timediff < p_mouset |
| 2900 | && orig_num_clicks != 4 |
| 2901 | && orig_mouse_col == mouse_col |
| 2902 | && orig_mouse_row == mouse_row |
| 2903 | && (is_mouse_topline(curwin) |
| 2904 | // Double click in tab pages line also works |
| 2905 | // when window contents changes. |
| 2906 | || (mouse_row == 0 && firstwin->w_winrow > 0)) |
| 2907 | ) |
| 2908 | ++orig_num_clicks; |
| 2909 | else |
| 2910 | orig_num_clicks = 1; |
| 2911 | orig_mouse_col = mouse_col; |
| 2912 | orig_mouse_row = mouse_row; |
| 2913 | set_mouse_topline(curwin); |
| 2914 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2915 | # if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2916 | else |
| 2917 | orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2918 | # endif |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 2919 | #else |
| 2920 | orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code); |
| 2921 | #endif |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2922 | is_click = TRUE; |
Bram Moolenaar | d6212b8 | 2022-08-03 15:48:33 +0100 | [diff] [blame] | 2923 | } |
| 2924 | orig_mouse_code = mouse_code; |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2925 | } |
| 2926 | if (!is_drag) |
| 2927 | held_button = mouse_code & MOUSE_CLICK_MASK; |
| 2928 | |
| 2929 | /* |
| 2930 | * Translate the actual mouse event into a pseudo mouse event. |
| 2931 | * First work out what modifiers are to be used. |
| 2932 | */ |
| 2933 | if (orig_mouse_code & MOUSE_SHIFT) |
| 2934 | *modifiers |= MOD_MASK_SHIFT; |
| 2935 | if (orig_mouse_code & MOUSE_CTRL) |
| 2936 | *modifiers |= MOD_MASK_CTRL; |
| 2937 | if (orig_mouse_code & MOUSE_ALT) |
| 2938 | *modifiers |= MOD_MASK_ALT; |
| 2939 | if (orig_num_clicks == 2) |
| 2940 | *modifiers |= MOD_MASK_2CLICK; |
| 2941 | else if (orig_num_clicks == 3) |
| 2942 | *modifiers |= MOD_MASK_3CLICK; |
| 2943 | else if (orig_num_clicks == 4) |
| 2944 | *modifiers |= MOD_MASK_4CLICK; |
| 2945 | |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2946 | // Work out our pseudo mouse event. Note that MOUSE_RELEASE gets added, |
| 2947 | // then it's not mouse up/down. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2948 | key_name[0] = KS_EXTRA; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2949 | if (wheel_code != 0 && (!is_release || release_is_ambiguous)) |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2950 | { |
| 2951 | if (wheel_code & MOUSE_CTRL) |
| 2952 | *modifiers |= MOD_MASK_CTRL; |
| 2953 | if (wheel_code & MOUSE_ALT) |
| 2954 | *modifiers |= MOD_MASK_ALT; |
Bram Moolenaar | d58d4f9 | 2020-07-01 15:49:29 +0200 | [diff] [blame] | 2955 | |
| 2956 | if (wheel_code & 1 && wheel_code & 2) |
| 2957 | key_name[1] = (int)KE_MOUSELEFT; |
| 2958 | else if (wheel_code & 2) |
| 2959 | key_name[1] = (int)KE_MOUSERIGHT; |
| 2960 | else if (wheel_code & 1) |
| 2961 | key_name[1] = (int)KE_MOUSEUP; |
| 2962 | else |
| 2963 | key_name[1] = (int)KE_MOUSEDOWN; |
| 2964 | |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2965 | held_button = MOUSE_RELEASE; |
| 2966 | } |
| 2967 | else |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2968 | key_name[1] = get_pseudo_mouse_code(current_button, is_click, is_drag); |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2969 | |
Bram Moolenaar | 13c0463 | 2020-07-12 13:47:42 +0200 | [diff] [blame] | 2970 | |
| 2971 | // Make sure the mouse position is valid. Some terminals may return weird |
| 2972 | // values. |
Bram Moolenaar | b8ff5c2 | 2019-09-23 21:16:54 +0200 | [diff] [blame] | 2973 | if (mouse_col >= Columns) |
| 2974 | mouse_col = Columns - 1; |
| 2975 | if (mouse_row >= Rows) |
| 2976 | mouse_row = Rows - 1; |
| 2977 | |
| 2978 | return 0; |
| 2979 | } |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2980 | |
| 2981 | // Functions also used for popup windows. |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2982 | |
| 2983 | /* |
| 2984 | * Compute the buffer line position from the screen position "rowp" / "colp" in |
| 2985 | * window "win". |
Bram Moolenaar | 452143c | 2020-07-15 17:38:21 +0200 | [diff] [blame] | 2986 | * "plines_cache" can be NULL (no cache) or an array with "Rows" entries that |
| 2987 | * caches the plines_win() result from a previous call. Entry is zero if not |
| 2988 | * computed yet. There must be no text or setting changes since the entry is |
| 2989 | * put in the cache. |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 2990 | * Returns TRUE if the position is below the last line. |
| 2991 | */ |
| 2992 | int |
| 2993 | mouse_comp_pos( |
| 2994 | win_T *win, |
| 2995 | int *rowp, |
| 2996 | int *colp, |
| 2997 | linenr_T *lnump, |
| 2998 | int *plines_cache) |
| 2999 | { |
| 3000 | int col = *colp; |
| 3001 | int row = *rowp; |
| 3002 | linenr_T lnum; |
| 3003 | int retval = FALSE; |
| 3004 | int off; |
| 3005 | int count; |
| 3006 | |
| 3007 | #ifdef FEAT_RIGHTLEFT |
| 3008 | if (win->w_p_rl) |
| 3009 | col = win->w_width - 1 - col; |
| 3010 | #endif |
| 3011 | |
| 3012 | lnum = win->w_topline; |
| 3013 | |
| 3014 | while (row > 0) |
| 3015 | { |
| 3016 | int cache_idx = lnum - win->w_topline; |
| 3017 | |
Bram Moolenaar | 452143c | 2020-07-15 17:38:21 +0200 | [diff] [blame] | 3018 | // Only "Rows" lines are cached, with folding we'll run out of entries |
| 3019 | // and use the slow way. |
| 3020 | if (plines_cache != NULL && cache_idx < Rows |
| 3021 | && plines_cache[cache_idx] > 0) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3022 | count = plines_cache[cache_idx]; |
| 3023 | else |
| 3024 | { |
| 3025 | #ifdef FEAT_DIFF |
| 3026 | // Don't include filler lines in "count" |
| 3027 | if (win->w_p_diff |
| 3028 | # ifdef FEAT_FOLDING |
| 3029 | && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL) |
| 3030 | # endif |
| 3031 | ) |
| 3032 | { |
| 3033 | if (lnum == win->w_topline) |
| 3034 | row -= win->w_topfill; |
| 3035 | else |
| 3036 | row -= diff_check_fill(win, lnum); |
Yee Cheng Chin | e6392b1 | 2022-11-19 14:31:08 +0000 | [diff] [blame] | 3037 | count = plines_win_nofill(win, lnum, FALSE); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3038 | } |
| 3039 | else |
| 3040 | #endif |
Yee Cheng Chin | e6392b1 | 2022-11-19 14:31:08 +0000 | [diff] [blame] | 3041 | count = plines_win(win, lnum, FALSE); |
Bram Moolenaar | 452143c | 2020-07-15 17:38:21 +0200 | [diff] [blame] | 3042 | if (plines_cache != NULL && cache_idx < Rows) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3043 | plines_cache[cache_idx] = count; |
| 3044 | } |
Yee Cheng Chin | e6392b1 | 2022-11-19 14:31:08 +0000 | [diff] [blame] | 3045 | |
| 3046 | if (win->w_skipcol > 0 && lnum == win->w_topline) |
| 3047 | { |
| 3048 | // Adjust for 'smoothscroll' clipping the top screen lines. |
| 3049 | // A similar formula is used in curs_columns(). |
| 3050 | int width1 = win->w_width - win_col_off(win); |
| 3051 | int skip_lines = 0; |
| 3052 | if (win->w_skipcol > width1) |
| 3053 | skip_lines = (win->w_skipcol - width1) |
| 3054 | / (width1 + win_col_off2(win)) + 1; |
| 3055 | else if (win->w_skipcol > 0) |
| 3056 | skip_lines = 1; |
| 3057 | count -= skip_lines; |
| 3058 | } |
| 3059 | |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3060 | if (count > row) |
| 3061 | break; // Position is in this buffer line. |
| 3062 | #ifdef FEAT_FOLDING |
| 3063 | (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL); |
| 3064 | #endif |
| 3065 | if (lnum == win->w_buffer->b_ml.ml_line_count) |
| 3066 | { |
| 3067 | retval = TRUE; |
| 3068 | break; // past end of file |
| 3069 | } |
| 3070 | row -= count; |
| 3071 | ++lnum; |
| 3072 | } |
| 3073 | |
| 3074 | if (!retval) |
| 3075 | { |
| 3076 | // Compute the column without wrapping. |
| 3077 | off = win_col_off(win) - win_col_off2(win); |
| 3078 | if (col < off) |
| 3079 | col = off; |
| 3080 | col += row * (win->w_width - off); |
Yee Cheng Chin | e6392b1 | 2022-11-19 14:31:08 +0000 | [diff] [blame] | 3081 | |
| 3082 | // Add skip column for the topline. |
| 3083 | if (lnum == win->w_topline) |
| 3084 | col += win->w_skipcol; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3085 | } |
| 3086 | |
| 3087 | if (!win->w_p_wrap) |
| 3088 | col += win->w_leftcol; |
| 3089 | |
| 3090 | // skip line number and fold column in front of the line |
| 3091 | col -= win_col_off(win); |
Bram Moolenaar | dbfa795 | 2020-11-02 20:04:22 +0100 | [diff] [blame] | 3092 | if (col <= 0) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3093 | { |
| 3094 | #ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | dbfa795 | 2020-11-02 20:04:22 +0100 | [diff] [blame] | 3095 | // if mouse is clicked on the gutter, then inform the netbeans server |
| 3096 | if (*colp < win_col_off(win)) |
| 3097 | netbeans_gutter_click(lnum); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3098 | #endif |
| 3099 | col = 0; |
| 3100 | } |
| 3101 | |
| 3102 | *colp = col; |
| 3103 | *rowp = row; |
| 3104 | *lnump = lnum; |
| 3105 | return retval; |
| 3106 | } |
| 3107 | |
| 3108 | /* |
| 3109 | * Find the window at screen position "*rowp" and "*colp". The positions are |
| 3110 | * updated to become relative to the top-left of the window. |
| 3111 | * When "popup" is FAIL_POPUP and the position is in a popup window then NULL |
| 3112 | * is returned. When "popup" is IGNORE_POPUP then do not even check popup |
| 3113 | * windows. |
| 3114 | * Returns NULL when something is wrong. |
| 3115 | */ |
| 3116 | win_T * |
| 3117 | mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED) |
| 3118 | { |
| 3119 | frame_T *fp; |
| 3120 | win_T *wp; |
| 3121 | |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 3122 | #ifdef FEAT_PROP_POPUP |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3123 | win_T *pwp = NULL; |
| 3124 | |
| 3125 | if (popup != IGNORE_POPUP) |
| 3126 | { |
Bram Moolenaar | afe45b6 | 2019-11-13 22:35:19 +0100 | [diff] [blame] | 3127 | popup_reset_handled(POPUP_HANDLED_1); |
| 3128 | while ((wp = find_next_popup(TRUE, POPUP_HANDLED_1)) != NULL) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3129 | { |
| 3130 | if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp) |
| 3131 | && *colp >= wp->w_wincol |
| 3132 | && *colp < wp->w_wincol + popup_width(wp)) |
| 3133 | pwp = wp; |
| 3134 | } |
| 3135 | if (pwp != NULL) |
| 3136 | { |
| 3137 | if (popup == FAIL_POPUP) |
| 3138 | return NULL; |
| 3139 | *rowp -= pwp->w_winrow; |
| 3140 | *colp -= pwp->w_wincol; |
| 3141 | return pwp; |
| 3142 | } |
| 3143 | } |
| 3144 | #endif |
| 3145 | |
| 3146 | fp = topframe; |
| 3147 | *rowp -= firstwin->w_winrow; |
| 3148 | for (;;) |
| 3149 | { |
| 3150 | if (fp->fr_layout == FR_LEAF) |
| 3151 | break; |
| 3152 | if (fp->fr_layout == FR_ROW) |
| 3153 | { |
| 3154 | for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
| 3155 | { |
| 3156 | if (*colp < fp->fr_width) |
| 3157 | break; |
| 3158 | *colp -= fp->fr_width; |
| 3159 | } |
| 3160 | } |
| 3161 | else // fr_layout == FR_COL |
| 3162 | { |
| 3163 | for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
| 3164 | { |
| 3165 | if (*rowp < fp->fr_height) |
| 3166 | break; |
| 3167 | *rowp -= fp->fr_height; |
| 3168 | } |
| 3169 | } |
| 3170 | } |
| 3171 | // When using a timer that closes a window the window might not actually |
| 3172 | // exist. |
| 3173 | FOR_ALL_WINDOWS(wp) |
| 3174 | if (wp == fp->fr_win) |
| 3175 | { |
| 3176 | #ifdef FEAT_MENU |
| 3177 | *rowp -= wp->w_winbar_height; |
| 3178 | #endif |
| 3179 | return wp; |
| 3180 | } |
| 3181 | return NULL; |
| 3182 | } |
| 3183 | |
Bram Moolenaar | 05ad5ff | 2019-11-30 22:48:27 +0100 | [diff] [blame] | 3184 | #if defined(NEED_VCOL2COL) || defined(FEAT_BEVAL) || defined(FEAT_PROP_POPUP) \ |
Bram Moolenaar | 424da7a | 2022-03-13 19:08:48 +0000 | [diff] [blame] | 3185 | || defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3186 | /* |
| 3187 | * Convert a virtual (screen) column to a character column. |
| 3188 | * The first column is one. |
| 3189 | */ |
| 3190 | int |
| 3191 | vcol2col(win_T *wp, linenr_T lnum, int vcol) |
| 3192 | { |
Bram Moolenaar | 7f9969c | 2022-07-25 18:13:54 +0100 | [diff] [blame] | 3193 | char_u *line; |
| 3194 | chartabsize_T cts; |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3195 | |
Bram Moolenaar | 7f9969c | 2022-07-25 18:13:54 +0100 | [diff] [blame] | 3196 | // try to advance to the specified column |
| 3197 | line = ml_get_buf(wp->w_buffer, lnum, FALSE); |
| 3198 | init_chartabsize_arg(&cts, wp, lnum, 0, line, line); |
| 3199 | while (cts.cts_vcol < vcol && *cts.cts_ptr != NUL) |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3200 | { |
Bram Moolenaar | 7f9969c | 2022-07-25 18:13:54 +0100 | [diff] [blame] | 3201 | cts.cts_vcol += win_lbr_chartabsize(&cts, NULL); |
| 3202 | MB_PTR_ADV(cts.cts_ptr); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3203 | } |
Bram Moolenaar | 7f9969c | 2022-07-25 18:13:54 +0100 | [diff] [blame] | 3204 | clear_chartabsize_arg(&cts); |
| 3205 | |
| 3206 | return (int)(cts.cts_ptr - line); |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 3207 | } |
| 3208 | #endif |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3209 | |
| 3210 | #if defined(FEAT_EVAL) || defined(PROTO) |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 3211 | /* |
| 3212 | * "getmousepos()" function. |
| 3213 | */ |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3214 | void |
| 3215 | f_getmousepos(typval_T *argvars UNUSED, typval_T *rettv) |
| 3216 | { |
| 3217 | dict_T *d; |
| 3218 | win_T *wp; |
| 3219 | int row = mouse_row; |
| 3220 | int col = mouse_col; |
| 3221 | varnumber_T winid = 0; |
| 3222 | varnumber_T winrow = 0; |
| 3223 | varnumber_T wincol = 0; |
Bram Moolenaar | 533870a | 2022-03-13 15:52:44 +0000 | [diff] [blame] | 3224 | linenr_T lnum = 0; |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3225 | varnumber_T column = 0; |
| 3226 | |
Bram Moolenaar | 93a1096 | 2022-06-16 11:42:09 +0100 | [diff] [blame] | 3227 | if (rettv_dict_alloc(rettv) == FAIL) |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3228 | return; |
| 3229 | d = rettv->vval.v_dict; |
| 3230 | |
| 3231 | dict_add_number(d, "screenrow", (varnumber_T)mouse_row + 1); |
| 3232 | dict_add_number(d, "screencol", (varnumber_T)mouse_col + 1); |
| 3233 | |
| 3234 | wp = mouse_find_win(&row, &col, FIND_POPUP); |
| 3235 | if (wp != NULL) |
| 3236 | { |
| 3237 | int top_off = 0; |
| 3238 | int left_off = 0; |
| 3239 | int height = wp->w_height + wp->w_status_height; |
| 3240 | |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 3241 | # ifdef FEAT_PROP_POPUP |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3242 | if (WIN_IS_POPUP(wp)) |
| 3243 | { |
| 3244 | top_off = popup_top_extra(wp); |
| 3245 | left_off = popup_left_extra(wp); |
| 3246 | height = popup_height(wp); |
| 3247 | } |
Christopher Plewright | 696d0a8 | 2022-11-18 17:53:34 +0000 | [diff] [blame] | 3248 | # endif |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3249 | if (row < height) |
| 3250 | { |
| 3251 | winid = wp->w_id; |
| 3252 | winrow = row + 1; |
| 3253 | wincol = col + 1; |
| 3254 | row -= top_off; |
| 3255 | col -= left_off; |
| 3256 | if (row >= 0 && row < wp->w_height && col >= 0 && col < wp->w_width) |
| 3257 | { |
Sean Dewar | 10792fe | 2022-03-15 09:46:54 +0000 | [diff] [blame] | 3258 | (void)mouse_comp_pos(wp, &row, &col, &lnum, NULL); |
| 3259 | col = vcol2col(wp, lnum, col); |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3260 | column = col + 1; |
| 3261 | } |
| 3262 | } |
| 3263 | } |
| 3264 | dict_add_number(d, "winid", winid); |
| 3265 | dict_add_number(d, "winrow", winrow); |
| 3266 | dict_add_number(d, "wincol", wincol); |
Bram Moolenaar | 533870a | 2022-03-13 15:52:44 +0000 | [diff] [blame] | 3267 | dict_add_number(d, "line", (varnumber_T)lnum); |
Bram Moolenaar | db3a205 | 2019-11-16 18:22:41 +0100 | [diff] [blame] | 3268 | dict_add_number(d, "column", column); |
| 3269 | } |
| 3270 | #endif |